From c0b1fb226259310794ac9296a2c5294cf506bf11 Mon Sep 17 00:00:00 2001 From: Pysis Date: Wed, 8 Mar 2023 16:35:16 -0500 Subject: [PATCH] Adding missing commit data and cleaning Removing files now that changes have been added to the actual target files now. Mostly just missing changelog entries that may have just been rewritten. Nicer to keep the data around and just hide them in a newer commit. Further edit seems identical. Added game to support list in readme. The db export script probably had all the better edits now. Ignoring the `Always` variable since the `ar` table may be useful to track now. Original metadata: From 63acb67ad9d807fb45b81d4d06e897f55a17e960 Mon Sep 17 00:00:00 2001 From: Pysis868 Date: Fri, 17 Apr 2020 01:17:47 -0400 Subject: [PATCH 1/3] Refreshing project files from production. The database export sql file mainly. Using initial changelog I had locally before later edits, just to preserve. Updated db export script to ignore internal ar table. Did some folding organization and other cleaning. From fff6065b9c918942afc00c7b34e0685c524f4b46 Mon Sep 17 00:00:00 2001 From: Pysis868 Date: Fri, 17 Apr 2020 01:18:35 -0400 Subject: [PATCH 2/3] Later changelog edits now. From b0122ec54dda8ed19e42bb8f757b0f052302d76d Mon Sep 17 00:00:00 2001 From: Pysis868 Date: Fri, 17 Apr 2020 01:22:23 -0400 Subject: [PATCH 3/3] Adding game to list where the project gained support already. --- README.md => Readme.md | 1 + ...eshing-project-files-from-production.patch | 3360 ----------------- dev/0002-Later-changelog-edits-now.patch | 61 - ...ist-where-the-project-gained-support.patch | 25 - dev/db/samples/tingle.sql | 12 +- 5 files changed, 11 insertions(+), 3448 deletions(-) rename README.md => Readme.md (96%) delete mode 100644 dev/0001-Refreshing-project-files-from-production.patch delete mode 100644 dev/0002-Later-changelog-edits-now.patch delete mode 100644 dev/0003-Adding-game-to-list-where-the-project-gained-support.patch diff --git a/README.md b/Readme.md similarity index 96% rename from README.md rename to Readme.md index f1b96bd9..7f31968f 100644 --- a/README.md +++ b/Readme.md @@ -3,6 +3,7 @@ Currently supports: - The Legend of Zelda: Breath of the Wild for the Nintendo Switch and Wii U (March 3, 2017) + - The Legend of Zelda: Link's Awakening for the Nintendo Switch (September 20, 2019) ## Help Sections - [Installation Instructions](https://github.com/Zelda-Universe/Zelda-Maps/blob/master/Installation.md) diff --git a/dev/0001-Refreshing-project-files-from-production.patch b/dev/0001-Refreshing-project-files-from-production.patch deleted file mode 100644 index 824b2f2e..00000000 --- a/dev/0001-Refreshing-project-files-from-production.patch +++ /dev/null @@ -1,3360 +0,0 @@ -From 63acb67ad9d807fb45b81d4d06e897f55a17e960 Mon Sep 17 00:00:00 2001 -From: Pysis868 -Date: Fri, 17 Apr 2020 01:17:47 -0400 -Subject: [PATCH 1/3] Refreshing project files from production. The database - export sql file mainly. Using initial changelog I had locally before later - edits, just to preserve. Updated db export script to ignore internal ar - table. Did some folding organization and other cleaning. - ---- - dev/db/exportDatabaseForDev.sh | 209 +-- - dev/db/zeldamaps.sql | 2886 +++++++++++++++++++++++++++++++- - 2 files changed, 2954 insertions(+), 141 deletions(-) - -diff --git a/dev/db/exportDatabaseForDev.sh b/dev/db/exportDatabaseForDev.sh -index aad1e49..11d895b 100755 ---- a/dev/db/exportDatabaseForDev.sh -+++ b/dev/db/exportDatabaseForDev.sh -@@ -103,113 +103,132 @@ - - ## Derived Configuration & Internal Variables - { -- # `marker_tab` looked like user data that could be skipped, but apparently not, as no markers appeared using the current query 'monster' :X -- noAITables="user user_completed_marker"; -- ignoreTablesOptions=''; -- for table in $noAITables; do ignoreTablesOptions+="--ignore-table='$DB_NAME.$table' "; done; -- structureOptions="--no-data"; -- dataOptions="--no-create-info --skip-add-drop-table --skip-extended-insert"; -- if [[ "$VERBOSE" == "true" ]]; then -- errorRedirectionString=""; -- mysqlVerboseString="-v"; -- else -- errorRedirectionString="2>/dev/null"; -- mysqlVerboseString=""; -- fi -- if [[ "$BRIEF_MESSAGES" == "true" ]]; then -- availableMessageCharacters="$(expr "$(tput cols)" - 12 - 3)"; # For the result messages, their wrapping characters, the message prefix, and then the ellipsis. -- messageRedirectionString="head --bytes=$availableMessageCharacters"; -- else -- messageRedirectionString="cat"; -- fi -- # Additional SQL query function files to use but not modify. -- generateDevUsersQueryFilePath="$SDIR/exportDatabaseForDev-generateDevUsers.sql"; -- sqlizeSedFilePath="$SDIR/exportDatabaseForDev-sqlize.sed"; -- -- # Intermediate, temporary, working files to be deleted at the end of the process. -- keepAIFilePath="$SDIR/zeldamaps-structure_with-AI.sql"; -- toRemoveAIFilePath="$SDIR/zeldamaps-structure_to-remove-AI.sql"; -- aiRemovedFilePath="$SDIR/zeldamaps-structure_AI-removed.sql"; -- dataFilePath="$SDIR/zeldamaps-data.sql"; -- sanitizedPartialUserDataFilePath="$SDIR/zeldamaps-sanitizedPartialUserData.txt"; -- generatedDevUserDataFilePath="$SDIR/zeldamaps-devUserData.sql"; -- -- allIntermediateFilePaths="'$keepAIFilePath' '$toRemoveAIFilePath' '$aiRemovedFilePath' '$dataFilePath' '$sanitizedPartialUserDataFilePath' '$generatedDevUserDataFilePath'"; -- -- # Resultant, generated file to keep at the end of the process. -- # completeFilePath="$SDIR/zeldamaps-complete.sql"; -- completeFilePath="$SDIR/zeldamaps.sql"; # Since the it is already version-tracked, we can just overwrite the main file now. -+ -+ ## Program/Command options/flags/switches -+ { -+ # `marker_tab` looked like user data that could be skipped, but apparently not, as no markers appeared using the current query 'monster' :X -+ noAlwaysTables="ar_internal_metadata"; -+ noAITables="user user_completed_marker"; -+ ignoreAlwaysTablesOptions=''; -+ ignoreAITablesOptions=''; -+ for table in $noAlwaysTables; do ignoreAlwaysTablesOptions+="--ignore-table='$DB_NAME.$table' "; done; -+ for table in $noAITables; do ignoreAITablesOptions+="--ignore-table='$DB_NAME.$table' "; done; -+ structureOptions="--no-data"; -+ dataOptions="--no-create-info --skip-add-drop-table --skip-extended-insert"; -+ -+ if [[ "$VERBOSE" == "true" ]]; then -+ errorRedirectionString=""; -+ mysqlVerboseString="-v"; -+ else -+ errorRedirectionString="2>/dev/null"; -+ mysqlVerboseString=""; -+ fi -+ -+ if [[ "$BRIEF_MESSAGES" == "true" ]]; then -+ availableMessageCharacters="$(expr "$(tput cols)" - 12 - 3)"; # For the result messages, their wrapping characters, the message prefix, and then the ellipsis. -+ messageRedirectionString="head --bytes=$availableMessageCharacters"; -+ else -+ messageRedirectionString="cat"; -+ fi -+ } -+ -+ ## File Paths -+ { -+ # Additional SQL query function files to use but not modify. -+ generateDevUsersQueryFilePath="$SDIR/exportDatabaseForDev-generateDevUsers.sql"; -+ sqlizeSedFilePath="$SDIR/exportDatabaseForDev-sqlize.sed"; -+ -+ # Intermediate, temporary, working files to be deleted at the end of the process. -+ keepAIFilePath="$SDIR/zeldamaps-structure_with-AI.sql"; -+ toRemoveAIFilePath="$SDIR/zeldamaps-structure_to-remove-AI.sql"; -+ aiRemovedFilePath="$SDIR/zeldamaps-structure_AI-removed.sql"; -+ dataFilePath="$SDIR/zeldamaps-data.sql"; -+ sanitizedPartialUserDataFilePath="$SDIR/zeldamaps-sanitizedPartialUserData.txt"; -+ generatedDevUserDataFilePath="$SDIR/zeldamaps-devUserData.sql"; -+ -+ allIntermediateFilePaths="'$keepAIFilePath' '$toRemoveAIFilePath' '$aiRemovedFilePath' '$dataFilePath' '$sanitizedPartialUserDataFilePath' '$generatedDevUserDataFilePath'"; -+ -+ # Resultant, generated file to keep at the end of the process. -+ # completeFilePath="$SDIR/zeldamaps-complete.sql"; -+ completeFilePath="$SDIR/zeldamaps.sql"; # Since the it is already version-tracked, we can just overwrite the main file now. -+ } - } - - ## Main Program Flow - { - trap 'statusPrint "\n${RED}User cancels process.${NC}"; cleanAndExit 2;' INT KILL TERM STOP; - -- issueStep \ -- "Exporting majority of the database structure, keeping the auto increment values to match the data later on." \ -- "mysqldump $MYSQL_CONNECTION_STRING $mysqlVerboseString $structureOptions $ignoreTablesOptions --add-drop-database --databases $DB_NAME > '$keepAIFilePath' $errorRedirectionString" \ -- ; -+ ## Main Exporting -+ { -+ issueStep \ -+ "Exporting majority of the database structure, keeping the auto increment values to match the data later on." \ -+ "mysqldump $MYSQL_CONNECTION_STRING $mysqlVerboseString $structureOptions $ignoreAlwaysTablesOptions $ignoreAITablesOptions --add-drop-database --databases $DB_NAME > '$keepAIFilePath' $errorRedirectionString" \ -+ ; - -- issueStep \ -- "Exporting the rest of the database structure, with no way to immediately remove the auto increment values to match not having data later on." \ -- "mysqldump $MYSQL_CONNECTION_STRING $mysqlVerboseString $structureOptions $DB_NAME $noAITables > '$toRemoveAIFilePath' $errorRedirectionString" \ -- ; -+ issueStep \ -+ "Exporting the rest of the database structure, with no way to immediately remove the auto increment values to match not having data later on." \ -+ "mysqldump $MYSQL_CONNECTION_STRING $mysqlVerboseString $structureOptions $DB_NAME $noAITables > '$toRemoveAIFilePath' $errorRedirectionString" \ -+ ; - -- issueStep \ -- "Exporting majority of the database data, ignoring certain tables with more sensitive user or otherwise less useful data for development." \ -- "mysqldump $MYSQL_CONNECTION_STRING $mysqlVerboseString $dataOptions $ignoreTablesOptions $DB_NAME > '$dataFilePath' $errorRedirectionString" \ -- ; -+ issueStep \ -+ "Exporting majority of the database data, ignoring certain tables with more sensitive user or otherwise less useful data for development." \ -+ "mysqldump $MYSQL_CONNECTION_STRING $mysqlVerboseString $dataOptions $ignoreAlwaysTablesOptions $ignoreAITablesOptions $DB_NAME > '$dataFilePath' $errorRedirectionString" \ -+ ; - - -- issueStep \ -- "Exporting and sanitizing only the required user records by id, with their visiblity and level data for later use in development so that all markers can be displayed." \ -- "mysql $MYSQL_CONNECTION_STRING $mysqlVerboseString $DB_NAME > '$sanitizedPartialUserDataFilePath' $errorRedirectionString < '$generateDevUsersQueryFilePath'" \ -- ; -+ issueStep \ -+ "Exporting and sanitizing only the required user records by id, with their visiblity and level data for later use in development so that all markers can be displayed." \ -+ "mysql $MYSQL_CONNECTION_STRING $mysqlVerboseString $DB_NAME > '$sanitizedPartialUserDataFilePath' $errorRedirectionString < '$generateDevUsersQueryFilePath'" \ -+ ; -+ } - -- if [[ "$VERBOSE" == "true" ]]; then -+ ## Other data manipulations / transformations / massagings -+ { -+ if [[ "$VERBOSE" == "true" ]]; then -+ issueStep \ -+ "Removing embedded verbose query." \ -+ "sed -i '1,27d' '$sanitizedPartialUserDataFilePath'" \ -+ ; -+ fi -+ -+ issueStep \ -+ "Preparing the generated user data into a SQL format." \ -+ "sed -i -r -f '$sqlizeSedFilePath' '$sanitizedPartialUserDataFilePath'" \ -+ ; -+ -+ issueStep \ -+ "Writing SQL INSERT header." \ -+ "echo 'INSERT INTO \`user\`' > '$generatedDevUserDataFilePath'" \ -+ ; -+ -+ issueStep \ -+ "Writing header data fields." \ -+ "head -n 1 '$sanitizedPartialUserDataFilePath' >> '$generatedDevUserDataFilePath'" \ -+ ; -+ issueStep \ -+ "Writing intermediate VALUES term." \ -+ "echo 'VALUES' >> '$generatedDevUserDataFilePath'" \ -+ ; - issueStep \ -- "Removing embedded verbose query." \ -- "sed -i '1,27d' '$sanitizedPartialUserDataFilePath'" \ -+ "Writing data fields." \ -+ "tail -n +2 '$sanitizedPartialUserDataFilePath' >> '$generatedDevUserDataFilePath'" \ - ; -- fi -- -- issueStep \ -- "Preparing the generated user data into a SQL format." \ -- "sed -i -r -f '$sqlizeSedFilePath' '$sanitizedPartialUserDataFilePath'" \ -- ; -- -- issueStep \ -- "Writing SQL INSERT header." \ -- "echo 'INSERT INTO \`user\`' > '$generatedDevUserDataFilePath'" \ -- ; -- -- issueStep \ -- "Writing header data fields." \ -- "head -n 1 '$sanitizedPartialUserDataFilePath' >> '$generatedDevUserDataFilePath'" \ -- ; -- issueStep \ -- "Writing intermediate VALUES term." \ -- "echo 'VALUES' >> '$generatedDevUserDataFilePath'" \ -- ; -- issueStep \ -- "Writing data fields." \ -- "tail -n +2 '$sanitizedPartialUserDataFilePath' >> '$generatedDevUserDataFilePath'" \ -- ; -- # "tail -n +2 dev/db/userLevels.txt | sed -r 's|([[:digit:]]+)\s+([[:digit:]]+)\s+([[:digit:]]+)|\(\1, \'test\1\', \'test\1\', \2, \3\)|g'"; -- issueStep \ -- "Writing terminating colon." \ -- "echo ';' >> '$generatedDevUserDataFilePath'" \ -- ; -- -- -- issueStep \ -- "Removing auto increment values in sensitive data table schemas." \ -- "sed -r 's| AUTO_INCREMENT=[[:digit:]]+||g' '$toRemoveAIFilePath' > '$aiRemovedFilePath'" \ -- ; -- -- issueStep \ -- "Combining intermediate SQL files into a single convenient script for later import and version control." \ -- "cat '$keepAIFilePath' '$aiRemovedFilePath' '$dataFilePath' '$generatedDevUserDataFilePath' > '$completeFilePath'" \ -- ; # "cat '$keepAIFilePath' '$aiRemovedFilePath' '$dataFilePath' > '$completeFilePath'" \ -+ # "tail -n +2 dev/db/userLevels.txt | sed -r 's|([[:digit:]]+)\s+([[:digit:]]+)\s+([[:digit:]]+)|\(\1, \'test\1\', \'test\1\', \2, \3\)|g'"; -+ issueStep \ -+ "Writing terminating semicolon." \ -+ "echo ';' >> '$generatedDevUserDataFilePath'" \ -+ ; -+ -+ issueStep \ -+ "Removing auto increment values in sensitive data table schemas." \ -+ "sed -r 's| AUTO_INCREMENT=[[:digit:]]+||g' '$toRemoveAIFilePath' > '$aiRemovedFilePath'" \ -+ ; -+ -+ issueStep \ -+ "Combining intermediate SQL files into a single convenient script for later import and version control." \ -+ "cat '$keepAIFilePath' '$aiRemovedFilePath' '$dataFilePath' '$generatedDevUserDataFilePath' > '$completeFilePath'" \ -+ ; -+ } -+ - clean; - } -diff --git a/dev/db/zeldamaps.sql b/dev/db/zeldamaps.sql -index 2960913..468b2c8 100644 ---- a/dev/db/zeldamaps.sql -+++ b/dev/db/zeldamaps.sql -@@ -25,6 +25,23 @@ CREATE DATABASE /*!32312 IF NOT EXISTS*/ `zeldamaps` /*!40100 DEFAULT CHARACTER - - USE `zeldamaps`; - -+-- -+-- Table structure for table `changelog` -+-- -+ -+DROP TABLE IF EXISTS `changelog`; -+/*!40101 SET @saved_cs_client = @@character_set_client */; -+/*!40101 SET character_set_client = utf8 */; -+CREATE TABLE `changelog` ( -+ `id` bigint(20) NOT NULL AUTO_INCREMENT, -+ `version_major` int(11) NOT NULL, -+ `version_minor` int(11) NOT NULL, -+ `version_patch` int(11) NOT NULL, -+ `content` text, -+ PRIMARY KEY (`id`) -+) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; -+/*!40101 SET character_set_client = @saved_cs_client */; -+ - -- - -- Table structure for table `container` - -- -@@ -39,6 +56,7 @@ CREATE TABLE `container` ( - `marker_url` varchar(250) NOT NULL DEFAULT '/markers/' COMMENT 'Each map can have a set of different markers icons just by changing the marker url', - `marker_ext` char(3) NOT NULL DEFAULT 'png', - `background_color` char(7) NOT NULL DEFAULT '#DEECFD', -+ `icon` varchar(60) NOT NULL, - `show_street_view` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Only for googlemaps (for now)', - `show_map_control` tinyint(1) NOT NULL DEFAULT '1', - `show_zoom_control` tinyint(1) NOT NULL DEFAULT '1', -@@ -46,13 +64,21 @@ CREATE TABLE `container` ( - `show_category_menu` tinyint(1) DEFAULT '1', - `default_pos_x` float NOT NULL DEFAULT '128' COMMENT '0 for googlemap, 128 for leaflet', - `default_pos_y` float NOT NULL DEFAULT '-128' COMMENT '0 for googlemap, -128 for leaflet', -+ `bound_top_pos_x` float NOT NULL DEFAULT '0', -+ `bound_top_pos_y` float NOT NULL DEFAULT '0', -+ `bound_bottom_pos_x` float NOT NULL DEFAULT '-256', -+ `bound_bottom_pos_y` float NOT NULL DEFAULT '256', - `max_zoom` int(2) DEFAULT '6', - `cluster_max_zoom` int(2) NOT NULL DEFAULT '4' COMMENT 'Max zoom to cluster the markers. Best -2 from the max zoom allowed (if 6 is the max, cluster should be 4)', - `cluster_grid_size` int(2) NOT NULL DEFAULT '30' COMMENT 'Pixel size of grid (default 30)', - `tile_size` int(3) NOT NULL DEFAULT '256' COMMENT 'Internet default is 256', - `icon_width` int(11) NOT NULL, - `icon_height` int(11) NOT NULL, -+ `icon_small_width` int(11) NOT NULL DEFAULT '16', -+ `icon_small_height` int(11) NOT NULL DEFAULT '16', -+ `switch_icons_at_zoom` int(11) NOT NULL DEFAULT '5', - `visible` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'If map can be viewed', -+ `default_zoom` int(11) NOT NULL DEFAULT '3', - PRIMARY KEY (`id`), - UNIQUE KEY `map_id_UNIQUE` (`id`), - UNIQUE KEY `short_name_UNIQUE` (`short_name`) -@@ -146,7 +172,7 @@ CREATE TABLE `marker` ( - CONSTRAINT `fk_map_marker_map_marker_status1` FOREIGN KEY (`marker_status_id`) REFERENCES `marker_status` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, - CONSTRAINT `fk_marker_submap1` FOREIGN KEY (`submap_id`) REFERENCES `submap` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, - CONSTRAINT `fk_marker_submap2` FOREIGN KEY (`overlay_id`) REFERENCES `submap` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION --) ENGINE=InnoDB AUTO_INCREMENT=9729 DEFAULT CHARSET=latin1; -+) ENGINE=InnoDB AUTO_INCREMENT=11634 DEFAULT CHARSET=latin1; - /*!40101 SET character_set_client = @saved_cs_client */; - - -- -@@ -174,7 +200,7 @@ CREATE TABLE `marker_category` ( - CONSTRAINT `fk_marker_category_map_container1` FOREIGN KEY (`container_id`) REFERENCES `container` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, - CONSTRAINT `fk_marker_category_marker_category1` FOREIGN KEY (`parent_id`) REFERENCES `marker_category` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, - CONSTRAINT `fk_marker_category_marker_category_type1` FOREIGN KEY (`marker_category_type_id`) REFERENCES `marker_category_type` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION --) ENGINE=InnoDB AUTO_INCREMENT=1950 DEFAULT CHARSET=latin1; -+) ENGINE=InnoDB AUTO_INCREMENT=1970 DEFAULT CHARSET=latin1; - /*!40101 SET character_set_client = @saved_cs_client */; - - -- -@@ -230,7 +256,7 @@ CREATE TABLE `marker_tab` ( - CONSTRAINT `fk_map_marker_tab_map_marker1` FOREIGN KEY (`marker_id`) REFERENCES `marker` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `fk_marker_tab_marker_tab_status1` FOREIGN KEY (`marker_tab_status_id`) REFERENCES `marker_tab_status` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, - CONSTRAINT `fk_marker_tab_user1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION --) ENGINE=InnoDB AUTO_INCREMENT=3530 DEFAULT CHARSET=latin1; -+) ENGINE=InnoDB AUTO_INCREMENT=4004 DEFAULT CHARSET=latin1; - /*!40101 SET character_set_client = @saved_cs_client */; - - -- -@@ -248,6 +274,19 @@ CREATE TABLE `marker_tab_status` ( - ) ENGINE=InnoDB DEFAULT CHARSET=latin1; - /*!40101 SET character_set_client = @saved_cs_client */; - -+-- -+-- Table structure for table `schema_migrations` -+-- -+ -+DROP TABLE IF EXISTS `schema_migrations`; -+/*!40101 SET @saved_cs_client = @@character_set_client */; -+/*!40101 SET character_set_client = utf8 */; -+CREATE TABLE `schema_migrations` ( -+ `version` varchar(255) NOT NULL, -+ PRIMARY KEY (`version`) -+) ENGINE=InnoDB DEFAULT CHARSET=latin1; -+/*!40101 SET character_set_client = @saved_cs_client */; -+ - -- - -- Table structure for table `submap` - -- -@@ -352,7 +391,7 @@ CREATE TABLE `tmp_loc` ( - /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - ---- Dump completed on 2018-05-19 20:27:46 -+-- Dump completed on 2020-04-17 0:29:03 - -- MySQL dump 10.13 Distrib 5.7.19, for macos10.12 (x86_64) - -- - -- Host: 127.0.0.1 Database: zeldamaps -@@ -388,6 +427,10 @@ CREATE TABLE `user` ( - `last_login` datetime NOT NULL, - `level` tinyint(1) NOT NULL DEFAULT '1', - `visible` tinyint(1) NOT NULL DEFAULT '1', -+ `seen_version_major` int(11) NOT NULL DEFAULT '0', -+ `seen_version_minor` int(11) NOT NULL DEFAULT '0', -+ `seen_version_patch` int(11) NOT NULL DEFAULT '0', -+ `seen_latest_changelog` tinyint(1) NOT NULL DEFAULT '1', - PRIMARY KEY (`id`), - UNIQUE KEY `username_UNIQUE` (`username`), - UNIQUE KEY `email_UNIQUE` (`email`) -@@ -419,7 +462,7 @@ CREATE TABLE `user_completed_marker` ( - /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - ---- Dump completed on 2018-05-19 20:27:47 -+-- Dump completed on 2020-04-17 0:29:03 - -- MySQL dump 10.13 Distrib 5.7.19, for macos10.12 (x86_64) - -- - -- Host: 127.0.0.1 Database: zeldamaps -@@ -437,31 +480,65 @@ CREATE TABLE `user_completed_marker` ( - /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; - /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - -+-- -+-- Dumping data for table `changelog` -+-- -+ -+LOCK TABLES `changelog` WRITE; -+/*!40000 ALTER TABLE `changelog` DISABLE KEYS */; -+INSERT INTO `changelog` VALUES (1,0,0,0,'The fabled start of the project!'); -+INSERT INTO `changelog` VALUES (2,0,0,1,'Finally, an app to work with :).'); -+INSERT INTO `changelog` VALUES (3,0,2,0,'You can now add your own markers! Right click on the map and log in / create an account to start adding (best suited for desktop).'); -+INSERT INTO `changelog` VALUES (4,0,2,0,'Optimizations for mobile devices.'); -+INSERT INTO `changelog` VALUES (5,0,2,0,'Tons of new markers everyday!'); -+INSERT INTO `changelog` VALUES (6,0,3,0,'Mark as complete! You can now right-click a marker (desktop only) to hide a marker indefinitely. You can undo this by using ctrl + z in case of a mistake. This shall help you in the quest to get all koroks, making it much easier to see what you\'re missing. This feature uses cookies, so please don\'t clean it.'); -+INSERT INTO `changelog` VALUES (7,0,3,0,'Don\'t show this again has been fixed. Sorry if you read the intro everytime :).'); -+INSERT INTO `changelog` VALUES (8,0,3,0,'(Admins only) Ability to draw lines and polygons. Soon, we will have paths for Koroks, side-quests, etc.'); -+INSERT INTO `changelog` VALUES (9,0,3,0,'The following markers were extracted from the game files and their position are considered final: Koroks, Shrines, Towers, Villages, Stables, Great Fairies! More to come...'); -+INSERT INTO `changelog` VALUES (10,0,4,0,'Remember to right-click (Desktop) or long press (Mobile) to set a marker as complete!'); -+INSERT INTO `changelog` VALUES (11,0,4,0,'1400+ new markers! This time we added Treasure Chests (with contents); Blupees, Goddess Statues, Memories, Diaries & Books and Cooking Pots. These markers were extracted from the game files and their position are considered final, along with Koroks, Shrines, Towers, Villages, Stables, Great Fairies!'); -+INSERT INTO `changelog` VALUES (12,0,5,0,'Completed markers are tied to your account!'); -+INSERT INTO `changelog` VALUES (13,0,5,0,'You can now select multiple categories at the same type.'); -+INSERT INTO `changelog` VALUES (14,0,5,0,'The top left box can now be collapsed.'); -+INSERT INTO `changelog` VALUES (15,0,5,0,'Marker clustering has been disabled (experimental?).'); -+INSERT INTO `changelog` VALUES (16,0,5,0,'Markers now show up according to zoom.'); -+INSERT INTO `changelog` VALUES (17,0,5,0,'Usability fixes and improvements all over the place.'); -+INSERT INTO `changelog` VALUES (18,0,6,0,'Added login button for more obvious accessibility.'); -+INSERT INTO `changelog` VALUES (19,0,6,0,'Incremental search with type icons, visual and textual relevancy, jump-to navigation, auto-focus, and quick clear!\nWatch out, the first release of this may be wonky.\nMobile gets a separate-looking search bar.'); -+INSERT INTO `changelog` VALUES (20,0,6,0,'Slippery fast \'Escape\' hotkey now works for clearing the drawer and toggling its presence.\nThe undo marker completion hotkey was updated to be more intelligent per-OS.'); -+INSERT INTO `changelog` VALUES (21,0,6,0,'More account features such as recovering a lost password through a reset email, and changing an existing password.'); -+INSERT INTO `changelog` VALUES (22,0,6,0,'Able to set a starting area to focus the map on page load!\nDynamic controls available upon request to help identify the intended coordinates.\nAlso comes with some new configurable zoom parameters for snap enforcement and change interval amount.'); -+INSERT INTO `changelog` VALUES (23,0,6,0,'Made top drawer buttons have a larger link area and with highlighting background for representing the current state.'); -+INSERT INTO `changelog` VALUES (24,0,6,0,'Stylistic updates to more closely match final vision.'); -+INSERT INTO `changelog` VALUES (25,0,6,0,'A lot of internal system, documentation, and tooling updates!!'); -+/*!40000 ALTER TABLE `changelog` ENABLE KEYS */; -+UNLOCK TABLES; -+ - -- - -- Dumping data for table `container` - -- - - LOCK TABLES `container` WRITE; - /*!40000 ALTER TABLE `container` DISABLE KEYS */; --INSERT INTO `container` VALUES (1,'TLoZ','The Legend of Zelda','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (2,'AoL','Zelda 2: Adventure of Link','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (3,'ALttP','A Link to the Past','markers/','png','#DEECFD',0,1,1,0,1,128,-128,6,4,30,256,23,23,1); --INSERT INTO `container` VALUES (4,'LA','Link\'s Awakening','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (5,'OoT','Ocarina Of Time','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (6,'MM','Majora\'s Mask','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (7,'OoS','Oracle of Seasons','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (8,'OoA','Oracle of Ages','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (9,'TWW','The Wind Waker','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (10,'FSS','Four Swords','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (11,'FSA','Four Swords Adventures','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (12,'TMC','The Minish Cap','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (13,'TP','Twilight Princess','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (14,'PH','Phantom Hourglass','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (15,'ST','Spirit Tracks','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (16,'SS','Skyward Sword','markers/','png','#000000',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (17,'ALBW','A Link Between Worlds','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (18,'TFH','Tri Force Heroes','markers/','png','#DEECFD',0,1,1,0,1,0,0,6,4,30,256,23,23,0); --INSERT INTO `container` VALUES (19,'BotW','Breath of the Wild','markers/','png','#000000',0,1,1,0,1,128,-128,8,9,50,256,23,23,1); -+INSERT INTO `container` VALUES (1,'TLoZ','The Legend of Zelda','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (2,'AoL','Zelda 2: Adventure of Link','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (3,'ALttP','A Link to the Past','markers/','png','#000000','',0,1,1,0,1,128,-128,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (4,'LA','Link\'s Awakening','markers/','png','#000000','Links-Awakening',0,1,1,0,1,128,-128,-50,-80,-226,306,6,4,30,256,23,23,16,16,-1,1,3); -+INSERT INTO `container` VALUES (5,'OoT','Ocarina Of Time','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (6,'MM','Majora\'s Mask','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (7,'OoS','Oracle of Seasons','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (8,'OoA','Oracle of Ages','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (9,'TWW','The Wind Waker','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (10,'FSS','Four Swords','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (11,'FSA','Four Swords Adventures','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (12,'TMC','The Minish Cap','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (13,'TP','Twilight Princess','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (14,'PH','Phantom Hourglass','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (15,'ST','Spirit Tracks','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (16,'SS','Skyward Sword','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (17,'ALBW','A Link Between Worlds','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (18,'TFH','Tri Force Heroes','markers/','png','#000000','',0,1,1,0,1,0,0,0,0,-256,256,6,4,30,256,23,23,16,16,5,0,3); -+INSERT INTO `container` VALUES (19,'BotW','Breath of the Wild','markers/','png','#000000','Breath-of-the-Wild',0,1,1,0,1,112,-159,-49.875,34.25,-206,221,8,9,50,256,23,23,16,16,5,1,5); - /*!40000 ALTER TABLE `container` ENABLE KEYS */; - UNLOCK TABLES; - -@@ -472,7 +549,17 @@ UNLOCK TABLES; - LOCK TABLES `map` WRITE; - /*!40000 ALTER TABLE `map` DISABLE KEYS */; - INSERT INTO `map` VALUES (3,3,'Overworld',0,2,6,'(c) Nintendo',0,1); --INSERT INTO `map` VALUES (19,19,'BotW',0,2,8,'(c) Nintendo',1,1); -+INSERT INTO `map` VALUES (19,19,'Hyrule',0,2,8,'(c) Nintendo',1,1); -+INSERT INTO `map` VALUES (20,4,'Koholint Island',1,2,4,'(c) Nintendo',0,1); -+INSERT INTO `map` VALUES (21,4,'Tail Cave',1,2,4,'(c) Nintendo',1,1); -+INSERT INTO `map` VALUES (22,4,'Bottle Grotto',1,2,4,'(c) Nintendo',2,1); -+INSERT INTO `map` VALUES (23,4,'Key Cavern',1,2,4,'(c) Nintendo',3,1); -+INSERT INTO `map` VALUES (24,4,'Angler`s Tunnel',1,2,4,'(c) Nintendo',4,1); -+INSERT INTO `map` VALUES (25,4,'Catfish`s Maw',1,2,4,'(c) Nintendo',5,1); -+INSERT INTO `map` VALUES (26,4,'Face Shrine',1,2,4,'(c) Nintendo',6,1); -+INSERT INTO `map` VALUES (27,4,'Eagle`s Tower',1,2,4,'(c) Nintendo',7,1); -+INSERT INTO `map` VALUES (28,4,'Turtle Rock',1,2,4,'(c) Nintendo',8,1); -+INSERT INTO `map` VALUES (29,4,'Color Dungeon',1,2,4,'(c) Nintendo',9,1); - /*!40000 ALTER TABLE `map` ENABLE KEYS */; - UNLOCK TABLES; - -@@ -8345,6 +8432,1597 @@ INSERT INTO `marker` VALUES (9725,1900,NULL,2,1901,21563,'sss','',115.140625,-15 - INSERT INTO `marker` VALUES (9726,1900,NULL,2,1901,21321,'inicio','',129.4296875,-153.5703125,0,0,0,'2018-05-12 18:06:14'); - INSERT INTO `marker` VALUES (9727,1900,NULL,2,1901,21321,'ffff','',129.41796875,-153.75390625,0,0,0,'2018-05-12 18:07:54'); - INSERT INTO `marker` VALUES (9728,1900,NULL,2,1910,21355,'Pondo's Lodge','Make that money.',95.5625,-95.5546875,0,0,0,'2018-05-14 21:49:10'); -+INSERT INTO `marker` VALUES (9729,1900,NULL,2,1901,21727,'???','???',137.6171875,-165.3046875,0,0,0,'2018-05-20 07:46:21'); -+INSERT INTO `marker` VALUES (9730,1900,NULL,2,1901,21247,'Start Korok','',68.8125,-99.9140625,0,0,0,'2018-05-20 20:08:26'); -+INSERT INTO `marker` VALUES (9731,1900,NULL,2,1901,21799,'Was tolles Shrine Beginn here','Defeat the Hinox to get a juwel',134.078125,-79.4921875,0,0,0,'2018-05-21 15:32:41'); -+INSERT INTO `marker` VALUES (9732,1900,NULL,2,1926,21041,'Divine Beast Vah Medoh','',71.515625,-99.015625,0,0,0,'2018-05-21 20:06:56'); -+INSERT INTO `marker` VALUES (9733,1900,NULL,2,1939,21324,'Blizzrobe','',139.9453125,-116.234375,0,0,0,'2018-05-22 02:04:44'); -+INSERT INTO `marker` VALUES (9734,1900,NULL,2,1901,20346,'Rubine','',95.60546875,-95.2421875,0,0,0,'2018-05-22 15:31:57'); -+INSERT INTO `marker` VALUES (9735,1900,NULL,2,1901,21856,'Santuario de la vida','',110.44921875,-157.515625,0,0,0,'2018-05-23 05:35:29'); -+INSERT INTO `marker` VALUES (9736,1900,NULL,2,1925,21856,'Santuario de la vida','',110.5,-157.46875,0,0,0,'2018-05-23 05:37:21'); -+INSERT INTO `marker` VALUES (9737,1900,NULL,2,1902,21858,'PHANTOM GANON ARMOR','',143.95703125,-178.53125,0,1,0,'2018-05-23 07:41:28'); -+INSERT INTO `marker` VALUES (9738,1900,NULL,2,1910,16861,'Topaz','',120.48301529884338,-112.11066344380379,0,0,0,'2018-05-24 09:08:25'); -+INSERT INTO `marker` VALUES (9739,1900,NULL,2,1934,16432,'White stallion','',109.5,-148.234375,0,0,0,'2018-05-26 16:46:48'); -+INSERT INTO `marker` VALUES (9740,1900,NULL,2,1904,21892,'Fleches Illimitées','',77.25,-125,0,0,0,'2018-05-28 10:35:44'); -+INSERT INTO `marker` VALUES (9741,1900,NULL,2,1901,22039,'Divine Beast Vah Medoh','',71.375,-99.875,0,1,0,'2018-05-29 18:57:04'); -+INSERT INTO `marker` VALUES (9742,1900,NULL,2,1926,22039,'Divine Beast Vah Naboris','',70,-176,0,1,0,'2018-05-29 18:58:53'); -+INSERT INTO `marker` VALUES (9743,1900,NULL,2,1901,22054,'nao esta la','',197.375,-150.37812507152557,0,0,0,'2018-05-31 01:19:51'); -+INSERT INTO `marker` VALUES (9744,1900,NULL,2,1901,22054,'Não está la o korok','korok não está presente no Nintendo Wii U',197.3125,-150.015625,0,0,0,'2018-05-31 01:21:21'); -+INSERT INTO `marker` VALUES (9745,1900,NULL,2,1901,22054,'Não está la o korok','no nintendo wii u nao está la o korok',195.265625,-154.140625,0,0,0,'2018-05-31 01:25:17'); -+INSERT INTO `marker` VALUES (9746,1900,NULL,2,1925,22116,'Kebe' Tawa','',91.390625,-188.95703125,0,0,0,'2018-06-01 15:19:25'); -+INSERT INTO `marker` VALUES (9747,1900,NULL,2,1921,22141,'Korok forest','',134.40625,-93.78125,0,0,0,'2018-06-02 21:44:25'); -+INSERT INTO `marker` VALUES (9748,1900,NULL,2,1901,22148,'EE','',84.140625,-102.953125,0,0,0,'2018-06-03 00:51:51'); -+INSERT INTO `marker` VALUES (9749,1900,NULL,2,1944,22175,'Majora's Mask','',120.78125,-147.8125,0,1,0,'2018-06-03 20:58:59'); -+INSERT INTO `marker` VALUES (9750,1900,NULL,2,1901,22252,'Feu','',113.83132874965668,-154.16339844465256,0,0,0,'2018-06-06 13:15:56'); -+INSERT INTO `marker` VALUES (9751,1900,NULL,2,1925,22228,'dont know','',176.1533203125,-120.8427734375,0,0,0,'2018-06-08 15:06:47'); -+INSERT INTO `marker` VALUES (9752,1900,NULL,2,1901,22500,'Southern Oasis','',69.6640625,-184.609375,0,1,0,'2018-06-15 01:58:42'); -+INSERT INTO `marker` VALUES (9753,1900,NULL,2,1901,22484,'Todo','',155,-154.375,0,0,0,'2018-06-15 06:20:25'); -+INSERT INTO `marker` VALUES (9754,1900,NULL,2,1935,22518,'A Gift of Nightshade','',168.45703125,-183.40945434570312,0,0,0,'2018-06-15 14:42:17'); -+INSERT INTO `marker` VALUES (9755,1900,NULL,2,1904,22263,'Bomb Arrow x5 (DLC)','The Bomb Arrow is a recurring item in The Legend of Zelda series. It has appeared in Link's Awakening, Twilight Princess, and Breath of the Wild. They are what Link gets when he combines his Bombs and his Arrows together.',105.3046875,-159.703125,0,1,0,'2018-06-16 08:39:51'); -+INSERT INTO `marker` VALUES (9756,1900,NULL,2,1910,21662,'Amber','Search rock to acquire.',107.8671875,-162.69921875,0,0,0,'2018-06-18 04:12:48'); -+INSERT INTO `marker` VALUES (9757,1900,NULL,2,1901,22585,'Firly Pond','Pond with Karok seed and Rusty Broadsword',179.35546875,-162.94921875,0,1,0,'2018-06-18 20:08:44'); -+INSERT INTO `marker` VALUES (9758,1900,NULL,2,1916,22600,'Korok','Dive into the circle of lilies',110.31685709953308,-134.50760945677757,0,0,0,'2018-06-19 09:07:10'); -+INSERT INTO `marker` VALUES (9759,1900,NULL,2,1901,22524,'Hestu','Hestu Final Location',134.78125,-94.5,0,0,0,'2018-06-19 16:08:25'); -+INSERT INTO `marker` VALUES (9760,1900,NULL,2,1905,22123,'Nintendo Switch Shirt','',120.6796875,-159.390625,0,0,0,'2018-06-21 14:01:53'); -+INSERT INTO `marker` VALUES (9761,1900,NULL,2,1901,22780,'lol','ads',104.6875,-166.8125,0,0,0,'2018-06-26 08:17:40'); -+INSERT INTO `marker` VALUES (9762,1900,NULL,2,1926,18201,'Divine Beast Vah Naboris','',79.75,-184.375,0,0,0,'2018-06-27 14:16:30'); -+INSERT INTO `marker` VALUES (9763,1900,NULL,2,1926,18201,'Divine Beast Vah Medoh','',69.5,-100.125,0,0,0,'2018-06-27 14:17:06'); -+INSERT INTO `marker` VALUES (9764,1900,NULL,2,1926,18201,'Divine Beast Vah Rudania','',168.125,-87.75,0,0,0,'2018-06-27 14:17:38'); -+INSERT INTO `marker` VALUES (9765,1900,NULL,2,1916,22279,'Korok Seed','',110.41796875,-184.65234375,0,0,0,'2018-06-29 09:48:48'); -+INSERT INTO `marker` VALUES (9766,1900,NULL,2,1935,22858,'????? ?????-?????????','?????????? ????? ????? ???? ????? ?????????',152.5390625,-70.5390625,0,0,0,'2018-06-30 07:00:46'); -+INSERT INTO `marker` VALUES (9767,1900,NULL,2,1940,22947,'blue lynel','',126.25,-114.75,0,0,0,'2018-07-03 00:59:59'); -+INSERT INTO `marker` VALUES (9768,1900,NULL,2,1901,22918,'Cooking Man','',113.484375,-154.5,0,0,0,'2018-07-04 16:03:00'); -+INSERT INTO `marker` VALUES (9769,1900,NULL,2,1901,23031,'KOROK','',112.1875,-169.15625,0,0,0,'2018-07-05 10:12:35'); -+INSERT INTO `marker` VALUES (9770,1900,NULL,2,1901,23122,'Oman Au Shrine','',117.5,-144.5,0,1,0,'2018-07-08 20:01:58'); -+INSERT INTO `marker` VALUES (9771,1900,NULL,2,1901,23122,'Woodland Tower','',142.25,-100.5,0,0,0,'2018-07-08 20:09:15'); -+INSERT INTO `marker` VALUES (9772,1900,NULL,2,1944,15570,'Knight's Halberd','',118.828125,-87.2890625,0,0,0,'2018-07-08 22:28:23'); -+INSERT INTO `marker` VALUES (9773,1900,NULL,2,1926,23133,'Divine Beast Vah Naboh','Divine Beast Vah Naboh holds the Windblight Ganon',71,-100.625,0,1,0,'2018-07-09 09:29:22'); -+INSERT INTO `marker` VALUES (9774,1900,NULL,2,1926,23133,'Divine Beast Vah Naboris','Divine Beast Vah Naboris holds the Thunderblight Ganon',95.375,-170,0,1,0,'2018-07-09 09:30:34'); -+INSERT INTO `marker` VALUES (9775,1900,NULL,2,1926,23133,'Divine Beast Vah Rudania','Divine Beast Vah Rudania holds the Fireblight Ganon',165.5,-88.25,0,1,0,'2018-07-09 09:35:42'); -+INSERT INTO `marker` VALUES (9776,1900,NULL,2,1916,23109,'Korok Seed','',84.53125,-82.765625,0,0,0,'2018-07-11 20:45:57'); -+INSERT INTO `marker` VALUES (9777,1900,NULL,2,1916,23109,'Korok Seed','',141.14453125,-117.1640625,0,0,0,'2018-07-11 21:11:25'); -+INSERT INTO `marker` VALUES (9778,1900,NULL,2,1944,23237,'[EX] Phantom Armor','',124.12109375,-126.66015625,0,0,0,'2018-07-12 11:38:26'); -+INSERT INTO `marker` VALUES (9779,1900,NULL,2,1903,10807,'Gerudo Smitar','In the ground, behind explosive wall',113.4375,-181.4375,0,0,0,'2018-07-14 18:13:48'); -+INSERT INTO `marker` VALUES (9780,1900,NULL,2,1901,23338,'Durians trees','',137.3046875,-170.00390625,0,0,0,'2018-07-17 01:58:26'); -+INSERT INTO `marker` VALUES (9781,1900,NULL,2,1935,23338,'Bird mn acordeon','Hints for a shrine location',140.82572174072266,-175.8167839050293,0,0,0,'2018-07-17 02:30:47'); -+INSERT INTO `marker` VALUES (9782,1900,NULL,2,1901,22725,'Baleine','',152,-70.1953125,0,0,0,'2018-07-17 20:07:45'); -+INSERT INTO `marker` VALUES (9783,1900,NULL,2,1901,23476,'memory finding place','the last memory from a pic that was gave',185.375,-102.53125,0,0,0,'2018-07-18 02:49:16'); -+INSERT INTO `marker` VALUES (9784,1900,NULL,2,1936,23694,'Cracled Rocks','',96.33203125,-135.9375,0,0,0,'2018-07-20 01:50:09'); -+INSERT INTO `marker` VALUES (9785,1900,NULL,2,1943,23298,'Ruby','Inside the fall; quite a hight.',183.6171875,-112.91796875,0,0,0,'2018-07-20 05:11:18'); -+INSERT INTO `marker` VALUES (9786,1900,NULL,2,1939,23731,'Blirraro','',61.39631247520447,-144.98652338981628,0,0,0,'2018-07-20 14:31:00'); -+INSERT INTO `marker` VALUES (9787,1900,NULL,2,1901,9827,'DLC: Majora's Mask','',120.9609375,-148.0234375,0,1,0,'2018-07-20 22:05:14'); -+INSERT INTO `marker` VALUES (9788,1900,NULL,2,1901,9827,'Korok Seed Quest','Follow the Yellow Flower',176.1015625,-184.9609375,0,0,0,'2018-07-20 22:48:38'); -+INSERT INTO `marker` VALUES (9789,1900,NULL,2,1920,1550,'1212,1212,1212','1212,1212,1212',110.375,-157.81640625,0,0,0,'2018-07-21 00:41:28'); -+INSERT INTO `marker` VALUES (9790,1900,NULL,2,1920,1550,'123','321',110.37890625,-157.85546875,0,1,0,'2018-07-21 00:44:17'); -+INSERT INTO `marker` VALUES (9791,1900,NULL,2,1920,1550,'12','21',110.40625,-157.8515625,0,1,0,'2018-07-21 00:45:17'); -+INSERT INTO `marker` VALUES (9792,1900,NULL,2,1910,23746,'20 Rupees','20 Rupees under boulder.',120.60546875,-159.8671875,0,0,0,'2018-07-21 02:16:40'); -+INSERT INTO `marker` VALUES (9793,1900,NULL,2,1901,23704,'Hylian Shrooms','',111.29296875,-156.18359375,0,0,0,'2018-07-21 04:12:30'); -+INSERT INTO `marker` VALUES (9794,1900,NULL,2,1902,24140,'Forest Dweller's Bow','',15.5,-90.5,0,0,0,'2018-07-24 03:07:34'); -+INSERT INTO `marker` VALUES (9795,1900,NULL,2,1925,24168,'he','',10.75,-131.5,0,0,0,'2018-07-24 12:04:19'); -+INSERT INTO `marker` VALUES (9796,1900,NULL,2,1935,23337,'Arrows of Burning Heat','',156.52734375,-144.30859375,0,0,0,'2018-07-24 18:47:35'); -+INSERT INTO `marker` VALUES (9797,1900,NULL,2,1935,23337,'By Firefly's Light','',157.6875,-144.16796875,0,1,0,'2018-07-24 18:52:55'); -+INSERT INTO `marker` VALUES (9798,1900,NULL,2,1901,24262,'szdf','',67.546875,-138.609375,0,0,0,'2018-07-26 08:29:26'); -+INSERT INTO `marker` VALUES (9799,1900,NULL,2,1936,23704,'Bow Chest','',148.78125,-157.16015625,0,0,0,'2018-07-26 09:15:02'); -+INSERT INTO `marker` VALUES (9800,1900,NULL,2,1931,23109,'Bokoblin Camp','',180.796875,-70.828125,0,0,0,'2018-07-27 06:14:12'); -+INSERT INTO `marker` VALUES (9801,1900,NULL,2,1935,21200,'Hero's Cache','',186.515625,-169.09375,0,0,0,'2018-07-28 11:07:43'); -+INSERT INTO `marker` VALUES (9802,1900,NULL,2,1930,23128,'Blizzrobe','',81.4140625,-86.5390625,0,0,0,'2018-07-29 04:46:37'); -+INSERT INTO `marker` VALUES (9803,1900,NULL,2,1939,23128,'Blizzrobe','',73.9453125,-86.71875,0,0,0,'2018-07-29 05:14:39'); -+INSERT INTO `marker` VALUES (9804,1900,NULL,2,1901,24571,'4123','',-37.5,-78.5,0,0,0,'2018-07-29 18:54:05'); -+INSERT INTO `marker` VALUES (9805,1900,NULL,2,1939,23128,'Blizzrobe','',139.9765625,-116.3046875,0,0,0,'2018-07-29 23:38:20'); -+INSERT INTO `marker` VALUES (9806,1900,NULL,2,1904,24716,'Ice arrows x10','',108.75390625,-162.3125,0,0,0,'2018-07-30 16:50:58'); -+INSERT INTO `marker` VALUES (9807,1900,NULL,2,1901,24716,'Boat','',111.109375,-159.984375,0,0,0,'2018-07-30 17:15:16'); -+INSERT INTO `marker` VALUES (9808,1900,NULL,2,1904,24716,'Arrows x10','',115.84375,-161.2109375,0,0,0,'2018-07-30 17:27:03'); -+INSERT INTO `marker` VALUES (9809,1900,NULL,2,1939,23109,'Blizzrobe','',73.640625,-129.671875,0,0,0,'2018-07-30 18:13:53'); -+INSERT INTO `marker` VALUES (9810,1900,NULL,2,1936,24716,'Cracked Wall','',139.171875,-156.26953125,0,0,0,'2018-07-30 18:27:46'); -+INSERT INTO `marker` VALUES (9811,1900,NULL,2,1931,23109,'Bokoblin Camp','',108.16796875,-76.06640625,0,0,0,'2018-07-31 08:52:02'); -+INSERT INTO `marker` VALUES (9812,1900,NULL,2,1901,24336,'East Entry','',126.703125,-110.35546875,0,0,0,'2018-07-31 16:53:05'); -+INSERT INTO `marker` VALUES (9813,1900,NULL,2,1935,24820,'Hetsu (1st encounter)','',134.203125,-143.9453125,0,0,0,'2018-08-01 04:43:08'); -+INSERT INTO `marker` VALUES (9814,1900,NULL,2,1939,23128,'Ice Wizzrobe','',61.125,-145.0234375,0,0,0,'2018-08-01 08:36:44'); -+INSERT INTO `marker` VALUES (9815,1900,NULL,2,1901,24449,'?','',155.21875,-174.6484375,0,1,0,'2018-08-01 11:17:17'); -+INSERT INTO `marker` VALUES (9816,1900,NULL,2,1934,24018,'REVALI'S FLAP','This memory - not attatched to Princess Zelda, can be obtained during the main quest - Divine Beast Vah Medoh. After speaking to the Elder of Rito Village, talk to Temba's wife in the next building who will point out the landing platform. This will trigger Link's memory of the champion Revali.',71.625,-100.03125,0,1,0,'2018-08-01 20:45:42'); -+INSERT INTO `marker` VALUES (9817,1900,NULL,2,1931,24294,'SKULL','',99.1944580078125,-78.31005859375,0,0,0,'2018-08-02 05:06:09'); -+INSERT INTO `marker` VALUES (9818,1900,NULL,2,1931,24294,'Enemy Camp','',98.1875,-80.03125,0,0,0,'2018-08-02 05:06:28'); -+INSERT INTO `marker` VALUES (9819,1900,NULL,2,1904,24935,'Fire Arrows','',123.55859375,-152.7734375,0,1,0,'2018-08-03 15:30:41'); -+INSERT INTO `marker` VALUES (9820,1900,NULL,2,1931,24935,'Bobkins','5 brown, 1 grey bobkins',131.19140625,-151.828125,0,0,0,'2018-08-03 16:46:31'); -+INSERT INTO `marker` VALUES (9821,1900,NULL,2,1944,24935,'Soldier's bow','All mobs must die to loot',131.294921875,-151.322265625,0,0,0,'2018-08-03 16:48:03'); -+INSERT INTO `marker` VALUES (9822,1900,NULL,2,1944,24935,'boomerang','',132.97265625,-151.1328125,0,0,0,'2018-08-03 16:53:12'); -+INSERT INTO `marker` VALUES (9823,1900,NULL,2,1930,25083,'Enemy Camp','Silver Bokoblin present.',156.328125,-186.5390625,0,0,0,'2018-08-04 23:49:00'); -+INSERT INTO `marker` VALUES (9824,1900,NULL,2,1904,25180,'flechas explosivas','',180.703125,-70.65625,0,0,0,'2018-08-05 04:27:24'); -+INSERT INTO `marker` VALUES (9825,1900,NULL,2,1904,24935,'ice arrow x5','',155.7109375,-152.1484375,0,0,0,'2018-08-05 07:55:51'); -+INSERT INTO `marker` VALUES (9826,1900,NULL,2,1944,23128,'Royal Halberd','',118.8828125,-87.3046875,0,0,0,'2018-08-05 10:14:52'); -+INSERT INTO `marker` VALUES (9827,1900,NULL,2,1901,25277,'Done','',200.78125,-70.0234375,0,0,0,'2018-08-05 23:33:50'); -+INSERT INTO `marker` VALUES (9828,1900,NULL,2,1935,24935,'By Fireflies Light','Lasi (From outside clothes shop) release 5 sunset fireflies in her home. (Available after getting Champion's Tunic) Reward is a purple rupie.',157.69921875,-144.138671875,0,0,0,'2018-08-06 00:04:25'); -+INSERT INTO `marker` VALUES (9829,1900,NULL,2,1925,25514,'?????????','',109.00390625,-161.015625,0,0,0,'2018-08-08 09:35:20'); -+INSERT INTO `marker` VALUES (9830,1900,NULL,2,1901,25546,'Check Guardians','check the guardians in the water',159.65625,-158.15625,0,0,0,'2018-08-08 21:40:16'); -+INSERT INTO `marker` VALUES (9831,1900,NULL,2,1939,15570,'Ice Wizzrobe','',82.65625,-92.828125,0,0,0,'2018-08-12 05:18:43'); -+INSERT INTO `marker` VALUES (9832,1900,NULL,2,1901,25848,'Money Earning','',94.578125,-95.5625,0,0,0,'2018-08-13 02:31:34'); -+INSERT INTO `marker` VALUES (9833,1900,NULL,2,1926,26051,'Divine Beast','',71.42578125,-99.9140625,0,0,0,'2018-08-15 10:14:00'); -+INSERT INTO `marker` VALUES (9834,1900,NULL,2,1926,26216,'Divine Beast Vah Rudania','',167.6953125,-87.578125,0,0,0,'2018-08-18 12:46:23'); -+INSERT INTO `marker` VALUES (9835,1900,NULL,2,1926,26216,'Divine Beast Vah Naboris','',95.2109375,-169.1953125,0,0,0,'2018-08-18 12:47:13'); -+INSERT INTO `marker` VALUES (9836,1900,NULL,2,1926,26216,'Divine Beast Vah Medoh','',71.53125,-98.921875,0,0,0,'2018-08-18 12:48:08'); -+INSERT INTO `marker` VALUES (9837,1900,NULL,2,1916,26402,'Obtenidos ','',173.45168733596802,-136.2073745727539,0,0,0,'2018-08-18 20:08:06'); -+INSERT INTO `marker` VALUES (9838,1900,NULL,2,1902,25113,'baú','',113.31640625,-164.30859375,0,0,0,'2018-08-19 11:48:26'); -+INSERT INTO `marker` VALUES (9839,1900,NULL,2,1916,25605,'Korok Flower','Starts the path to the Korok marker in the north west.',164.04296875,-139.70703125,0,0,0,'2018-08-21 16:38:52'); -+INSERT INTO `marker` VALUES (9840,1900,NULL,2,1910,26297,'Hearty durian spot','',149.53125,-178.15625,0,0,0,'2018-08-22 00:55:42'); -+INSERT INTO `marker` VALUES (9841,1900,NULL,2,1925,25277,'Renaissance shrine','',110.69984391704202,-157.3596642613411,0,0,0,'2018-08-22 21:55:37'); -+INSERT INTO `marker` VALUES (9842,1900,NULL,2,1930,23128,'Ice Chuchu ','Two of them, small ones',109.4140625,-157.0546875,0,0,0,'2018-08-25 02:16:06'); -+INSERT INTO `marker` VALUES (9843,1900,NULL,2,1901,27008,'Ice Block','',62.20271384716034,-69.4638158082962,0,0,0,'2018-08-25 16:48:22'); -+INSERT INTO `marker` VALUES (9844,1900,NULL,2,1901,25796,'Clavia','',181.4609375,-160.2578125,0,0,0,'2018-08-26 20:39:38'); -+INSERT INTO `marker` VALUES (9845,1900,NULL,2,1916,20599,'Korok Seed(Fly)','Need Rivalies wing',186.19140625,-154.3984375,0,0,0,'2018-08-27 00:32:50'); -+INSERT INTO `marker` VALUES (9846,1900,NULL,2,1903,454,'Globo','',130.27069091796875,-153.0772705078125,0,1,0,'2018-08-27 01:24:55'); -+INSERT INTO `marker` VALUES (9847,1900,NULL,2,1901,27219,'ancient','',106.5234375,-160.96875,0,0,0,'2018-08-27 16:28:24'); -+INSERT INTO `marker` VALUES (9848,1900,NULL,2,1926,23237,'Divine Beast Vah Medoh','',71.5390625,-98.7578125,0,0,0,'2018-08-28 08:50:40'); -+INSERT INTO `marker` VALUES (9849,1900,NULL,2,1926,23237,'Divine Beast Vah Naboris','',81.328125,-180.75,0,0,0,'2018-08-28 08:52:09'); -+INSERT INTO `marker` VALUES (9850,1900,NULL,2,1910,26878,'majoras mask','majoras mask',120.90234375,-148.09375,0,0,0,'2018-08-30 06:45:33'); -+INSERT INTO `marker` VALUES (9851,1900,NULL,2,1925,27279,'?????','?',99.984375,-165.89453125,0,0,0,'2018-09-02 01:40:56'); -+INSERT INTO `marker` VALUES (9852,1900,NULL,2,1901,27279,'?????','?',100,-165.921875,0,0,0,'2018-09-02 01:43:17'); -+INSERT INTO `marker` VALUES (9853,1900,NULL,2,1936,27737,'Bomb wall w 8 ore deposits on ceiling','',158.71875,-175.6875,0,1,0,'2018-09-03 15:03:30'); -+INSERT INTO `marker` VALUES (9854,1900,NULL,2,1925,27660,'Gireom Shrine','',90.97656297683716,-106.359375,0,0,0,'2018-09-03 23:41:23'); -+INSERT INTO `marker` VALUES (9855,1900,NULL,2,1916,27903,'Korogu','',149.5,-154.140625,0,0,0,'2018-09-04 15:19:31'); -+INSERT INTO `marker` VALUES (9856,1900,NULL,2,1901,22575,'You Are Here RN','',180.21875,-120.09375,0,0,0,'2018-09-07 10:23:53'); -+INSERT INTO `marker` VALUES (9857,1900,NULL,2,1901,26810,'????','??',71.64006042480469,-95.47097778320312,0,0,0,'2018-09-08 08:59:09'); -+INSERT INTO `marker` VALUES (9858,1900,NULL,2,1931,22592,'Enemy Camp','An enemy camp on the Western Side of the Lodrum Headland.',195.390625,-137.4375,0,1,0,'2018-09-08 23:21:51'); -+INSERT INTO `marker` VALUES (9859,1900,NULL,2,1931,28287,'Lizards','Lizards Camp with Knights BoradSword',63.3046875,-119.1875,0,1,0,'2018-09-09 17:48:14'); -+INSERT INTO `marker` VALUES (9860,1900,NULL,2,1931,22592,'Enemy Camp','Enemy Camp at Tal Tal Peak',193.32881832122803,-119.78356313705444,0,0,0,'2018-09-09 22:08:57'); -+INSERT INTO `marker` VALUES (9861,1900,NULL,2,1935,28358,'Raadsels','Lynel hoof, boven op de boom',134.57870483398438,-93.9571533203125,0,0,0,'2018-09-10 20:22:23'); -+INSERT INTO `marker` VALUES (9862,1900,NULL,2,1925,28412,'Tera','',200.6875,-70.1875,0,0,0,'2018-09-11 04:40:45'); -+INSERT INTO `marker` VALUES (9863,1900,NULL,2,1901,28066,'dragon','',156.21875,-172.515625,0,0,0,'2018-09-11 17:32:56'); -+INSERT INTO `marker` VALUES (9864,1900,NULL,2,1931,23751,'Enemy Camp','',56.546875,-139.40625,0,1,0,'2018-09-12 17:51:36'); -+INSERT INTO `marker` VALUES (9865,1900,NULL,2,1901,28177,'susuwa chitang','',109.71875,-107.1875,0,0,0,'2018-09-13 16:23:56'); -+INSERT INTO `marker` VALUES (9866,1900,NULL,2,1948,28725,'Apple','',97.46484351158142,-134.3514747619629,0,0,0,'2018-09-16 11:36:44'); -+INSERT INTO `marker` VALUES (9867,1900,NULL,2,1944,27801,'Knight's Halberd','',119.03125,-87.375,0,0,0,'2018-09-17 04:10:17'); -+INSERT INTO `marker` VALUES (9868,1900,NULL,2,1901,28354,'Akala Ancient Tech Lab','',198.125,-79.25,0,1,0,'2018-09-17 08:54:33'); -+INSERT INTO `marker` VALUES (9869,1900,NULL,2,1901,28287,'Giant Horse','Giant horse picture',109.125,-169.4765625,0,0,0,'2018-09-18 04:39:23'); -+INSERT INTO `marker` VALUES (9870,1900,NULL,2,1901,29059,'Kakariko','',157.03125,-143.625,0,0,0,'2018-09-18 19:03:16'); -+INSERT INTO `marker` VALUES (9871,1900,NULL,2,1936,28076,'Cracked Wall','',144.265625,-154.578125,0,0,0,'2018-09-19 05:45:00'); -+INSERT INTO `marker` VALUES (9872,1900,NULL,2,1901,29109,'test','test',120.03125,-157.125,0,0,0,'2018-09-19 08:10:28'); -+INSERT INTO `marker` VALUES (9873,1900,NULL,2,1910,29140,'Blue Nightshade','',157.328125,-140.875,0,0,0,'2018-09-19 15:54:43'); -+INSERT INTO `marker` VALUES (9874,1900,NULL,2,1910,29140,'Silent Princess','',157.30078125,-140.6953125,0,0,0,'2018-09-19 15:55:12'); -+INSERT INTO `marker` VALUES (9875,1900,NULL,2,1935,27618,'Gedenksteine','',180.375,-119.0625,0,0,0,'2018-09-20 17:54:18'); -+INSERT INTO `marker` VALUES (9876,1900,NULL,2,1901,29221,'in this area','',115.796875,-156,0,0,0,'2018-09-20 20:12:26'); -+INSERT INTO `marker` VALUES (9877,1900,NULL,2,1901,29167,'RUSTY COISAS','',122.5546875,-152.9296875,0,0,0,'2018-09-20 21:31:19'); -+INSERT INTO `marker` VALUES (9878,1900,NULL,2,1901,28421,'Kikoriko','',137.7890625,-125,0,0,0,'2018-09-21 16:33:15'); -+INSERT INTO `marker` VALUES (9879,1900,NULL,2,1901,29321,'??','',184.734375,-179.828125,0,0,0,'2018-09-22 16:08:01'); -+INSERT INTO `marker` VALUES (9880,1900,NULL,2,1901,29495,'seed','',136.77886962890625,-182.23501586914062,0,0,0,'2018-09-24 18:42:05'); -+INSERT INTO `marker` VALUES (9881,1900,NULL,2,1901,29495,'hard to get to ','radar is down \r\n',53.96875,-187.6875,0,0,0,'2018-09-24 18:52:14'); -+INSERT INTO `marker` VALUES (9882,1900,NULL,2,1903,29604,'Royal Broad','',68.1171875,-111.96875,0,0,0,'2018-09-24 21:39:24'); -+INSERT INTO `marker` VALUES (9883,1900,NULL,2,1901,23751,'Divine Beast Vah Rudania','',167.703125,-87.4375,0,0,0,'2018-09-26 05:52:38'); -+INSERT INTO `marker` VALUES (9884,1900,NULL,2,1931,29746,'Bokoblin Camp','',132.4375,-154.0234375,0,0,0,'2018-09-27 08:50:40'); -+INSERT INTO `marker` VALUES (9885,1900,NULL,2,1901,29746,'Bokoblin Camp','',109.39453125,-163.5703125,0,0,0,'2018-09-27 08:52:19'); -+INSERT INTO `marker` VALUES (9886,1900,NULL,2,1926,29602,'Divine Beast Vah Medoh','',71.25,-99.8125,0,0,0,'2018-09-29 00:51:23'); -+INSERT INTO `marker` VALUES (9887,1900,NULL,2,1901,29891,'imba','',150.9375,-139.9375,0,0,0,'2018-09-29 13:39:39'); -+INSERT INTO `marker` VALUES (9888,1900,NULL,2,1916,30001,'koroko seed','',117.859375,-141.8515625,0,0,0,'2018-09-30 14:13:42'); -+INSERT INTO `marker` VALUES (9889,1900,NULL,2,1935,29204,'Riddles of Hyrule','Riddles of Hyrule is one of the Side Quests. It starts in the Korok Forest in the Great Hyrule Forest Region',134.54296875,-93.796875,0,0,0,'2018-09-30 15:23:36'); -+INSERT INTO `marker` VALUES (9890,1900,NULL,2,1935,29204,'Little Sister's Big Request','Look for the girl named Jana and give her an armoranth. Speak to Gleema, return to Jana. Give three kinds of insects to Gleema',176.94140625,-101.4921875,0,0,0,'2018-09-30 18:19:43'); -+INSERT INTO `marker` VALUES (9891,1900,NULL,2,1920,30043,'Thyphlo Ruins','',133.171875,-78.90625,0,1,0,'2018-10-01 03:09:46'); -+INSERT INTO `marker` VALUES (9892,1900,NULL,2,1901,29101,'Antikes Zaumzeug','',92.015625,-133.375,0,1,0,'2018-10-01 19:24:31'); -+INSERT INTO `marker` VALUES (9893,1900,NULL,2,1901,29101,'Mo-Ratania-Schrein','Name des Schreins in der deutschen Version',92.1015625,-135.10546875,0,0,0,'2018-10-01 19:27:56'); -+INSERT INTO `marker` VALUES (9894,1900,NULL,2,1903,26618,'test','test',119.3203125,-122.1640625,0,0,0,'2018-10-03 14:56:53'); -+INSERT INTO `marker` VALUES (9895,1900,NULL,2,1901,30249,'Goddess','',181.63671875,-160.81640625,0,0,0,'2018-10-03 21:11:23'); -+INSERT INTO `marker` VALUES (9896,1900,NULL,2,1943,30319,'Ex: Ruby','',117.51171875,-151.8125,0,1,0,'2018-10-04 19:35:24'); -+INSERT INTO `marker` VALUES (9897,1900,NULL,2,1944,30319,'EX: Nintendo Switch Shirt','',120.6796875,-159.34765625,0,1,0,'2018-10-04 19:52:37'); -+INSERT INTO `marker` VALUES (9898,1900,NULL,2,1910,30319,'Amber','',107.86328125,-162.6953125,0,0,0,'2018-10-04 20:31:26'); -+INSERT INTO `marker` VALUES (9899,1900,NULL,2,1940,30503,'Blue Lynel','Master Mode',117.7265625,-160.40625,0,1,0,'2018-10-07 09:01:53'); -+INSERT INTO `marker` VALUES (9900,1900,NULL,2,1901,30529,'port','',160.328125,-88.1875,0,0,0,'2018-10-07 15:43:11'); -+INSERT INTO `marker` VALUES (9901,1900,NULL,2,1901,30564,'Flèches infinies','',79.6770830154419,-124.22916793823242,0,0,0,'2018-10-08 01:10:08'); -+INSERT INTO `marker` VALUES (9902,1900,NULL,2,1921,30210,'Terry Towne','',190.0625,-103.4375,0,0,0,'2018-10-10 16:40:55'); -+INSERT INTO `marker` VALUES (9903,1900,NULL,2,1926,29655,'Divine Beast Vah Rudania','',165.8656244277954,-87.34687519073486,0,1,0,'2018-10-10 22:20:34'); -+INSERT INTO `marker` VALUES (9904,1900,NULL,2,1944,23298,'Royal Halberd','',119.125,-87.5625,0,0,0,'2018-10-11 16:25:38'); -+INSERT INTO `marker` VALUES (9905,1900,NULL,2,1944,23298,'Royal Halberd','',119.125,-87.5625,0,0,0,'2018-10-11 16:25:42'); -+INSERT INTO `marker` VALUES (9906,1900,NULL,2,1925,2534,'Mah Eliya Shrine','EX Champion Mipha's Song - Third Clue - chase rings of the waterfall - Secret Stairway',186.734375,-117.96875,0,0,0,'2018-10-11 21:14:42'); -+INSERT INTO `marker` VALUES (9907,1900,NULL,2,1925,2534,'Sato Koda Shrine','EX Champion Mipha's Song - Second Clue - conquer the ancient foes - Support and Guidance',176.640625,-114.78125,0,0,0,'2018-10-11 21:53:13'); -+INSERT INTO `marker` VALUES (9908,1900,NULL,2,1925,2534,'Kee Dafunia Shrine','EX Champion Mipha's Song - First Clue - find what the light's path shows - The Melting Point',203.609375,-113.1484375,0,0,0,'2018-10-12 04:24:16'); -+INSERT INTO `marker` VALUES (9909,1900,NULL,2,1916,30672,'Korok Seed','Add the top of the Research Lab',187.1328125,-161.30078125,0,0,0,'2018-10-12 09:30:01'); -+INSERT INTO `marker` VALUES (9910,1900,NULL,2,1925,2534,'Keiye Tala Shrine','Ex Champion Urbasa's Song - Fight the brute of the sand - Big or Small',91.3515625,-188.8671875,0,0,0,'2018-10-13 00:42:49'); -+INSERT INTO `marker` VALUES (9911,1900,NULL,2,1925,2534,'Takama Shiri Shine','Ex Champion Urbosa's Song - Chase rings upon the land - Dual Purpose',51.43359375,-161.6640625,0,0,0,'2018-10-13 01:22:50'); -+INSERT INTO `marker` VALUES (9912,1900,NULL,2,1925,2534,'Kihiro Moh Shrine','EX Champion Urbosa's Song - Throw the orb underground - Inside the Box\r\n',75.10546875,-148.94921875,0,0,0,'2018-10-13 03:57:41'); -+INSERT INTO `marker` VALUES (9913,1900,NULL,2,1916,31095,'West Desert Ruins','Korok on bones',56.25,-164.578125,0,1,0,'2018-10-15 11:45:52'); -+INSERT INTO `marker` VALUES (9914,1900,NULL,2,1925,31095,'EX Desert Shrine','Unlockable By Champion's Ballad',51.390625,-161.53125,0,0,0,'2018-10-15 11:48:15'); -+INSERT INTO `marker` VALUES (9915,1900,NULL,2,1901,30976,'flower for korok seed','follow the flower',199.90937423706055,-167.42812490463257,0,1,0,'2018-10-16 19:16:30'); -+INSERT INTO `marker` VALUES (9916,1900,NULL,2,1935,27919,'Face the Frost Talus','',76.3046875,-99.828125,0,0,0,'2018-10-17 20:20:14'); -+INSERT INTO `marker` VALUES (9917,1900,NULL,2,1901,29506,'Hot Spring','',163.9375,-165.0703125,0,0,0,'2018-10-20 23:47:48'); -+INSERT INTO `marker` VALUES (9918,1900,NULL,2,1942,30976,'HINOX','',101.71249961853027,-153.953125,0,0,0,'2018-10-22 16:31:45'); -+INSERT INTO `marker` VALUES (9919,1900,NULL,2,1935,30319,'Riddles of Hyrule','NPC: Walton (Top of the Great Tree)\r\n\r\nMultistage quest',134.52734375,-93.85546875,0,0,0,'2018-10-22 19:19:33'); -+INSERT INTO `marker` VALUES (9920,1900,NULL,2,1948,31697,'Cocina','',127.2839891910553,-174.32001972198486,0,0,0,'2018-10-25 05:34:45'); -+INSERT INTO `marker` VALUES (9921,1900,NULL,2,1901,31697,'Mineral','',127.69810223579407,-179.29840433597565,0,0,0,'2018-10-26 04:18:40'); -+INSERT INTO `marker` VALUES (9922,1900,NULL,2,1940,12402,'Lynel (DLC HARD MODE)','',117.671875,-160.546875,0,0,0,'2018-10-26 22:20:42'); -+INSERT INTO `marker` VALUES (9923,1900,NULL,2,1935,29387,'The Champions' Ballad','Shrine',115,-161.5234375,0,0,0,'2018-10-28 17:27:59'); -+INSERT INTO `marker` VALUES (9924,1900,NULL,2,1935,29387,'The Champions' Ballad','Shrine',119.9609375,-156.0625,0,0,0,'2018-10-28 17:28:31'); -+INSERT INTO `marker` VALUES (9925,1900,NULL,2,1935,29387,'The Champions' Ballad','Shrine',113.29296875,-154.17578125,0,0,0,'2018-10-28 17:29:22'); -+INSERT INTO `marker` VALUES (9926,1900,NULL,2,1935,29387,'The Champions' Ballad','Shrine',109.00390625,-160.92578125,0,0,0,'2018-10-28 17:44:45'); -+INSERT INTO `marker` VALUES (9927,1900,NULL,2,1926,32015,'Vah-Rudania','',167.6484375,-87.3984375,0,0,0,'2018-10-29 11:51:38'); -+INSERT INTO `marker` VALUES (9928,1900,NULL,2,1935,31863,'Face the Frost Talus ','',75.89515590667725,-99.76265621185303,0,0,0,'2018-10-31 02:17:59'); -+INSERT INTO `marker` VALUES (9929,1900,NULL,2,1920,32214,'Great Plateu','Início',115.19261169433594,-159.66193103790283,0,1,0,'2018-11-02 03:00:07'); -+INSERT INTO `marker` VALUES (9930,1900,NULL,2,1905,32328,'Hylian','',3.25,-103.25,0,0,0,'2018-11-03 23:10:48'); -+INSERT INTO `marker` VALUES (9931,1900,NULL,2,1939,3082,'Ice Wizzrobe','',74.1328125,-86.5859375,0,0,0,'2018-11-04 10:09:47'); -+INSERT INTO `marker` VALUES (9932,1900,NULL,2,1916,32362,'Korak','',107.48011779785156,-147.66822814941406,0,0,0,'2018-11-05 01:40:06'); -+INSERT INTO `marker` VALUES (9933,1900,NULL,2,1939,3082,'Ice Wizzrobe','',82.640625,-81.5390625,0,0,0,'2018-11-05 10:02:12'); -+INSERT INTO `marker` VALUES (9934,1900,NULL,2,1923,32479,'Hateno Tower','',170.9140625,-161.3515625,0,0,0,'2018-11-05 17:52:38'); -+INSERT INTO `marker` VALUES (9935,1900,NULL,2,1925,30399,'Geshma's Santuary','',101.9375,-69.46875,0,0,0,'2018-11-07 00:29:39'); -+INSERT INTO `marker` VALUES (9936,1900,NULL,2,1916,30399,'Kolog','',91.796875,-115.46875,0,0,0,'2018-11-07 00:37:44'); -+INSERT INTO `marker` VALUES (9937,1900,NULL,2,1910,32592,'Amber','',107.8828125,-162.71484375,0,0,0,'2018-11-07 18:40:30'); -+INSERT INTO `marker` VALUES (9938,1900,NULL,2,1925,32607,'Guko-Chise-Schrein','',68.4375,-172,0,0,0,'2018-11-07 22:13:17'); -+INSERT INTO `marker` VALUES (9939,1900,NULL,2,1931,32600,'Bokoblin Camp','',118.125,-158.0078125,0,0,0,'2018-11-07 23:32:58'); -+INSERT INTO `marker` VALUES (9940,1900,NULL,2,1931,32600,'Bokoblin Camp','',117.63151049613953,-156.66145831346512,0,0,0,'2018-11-07 23:33:52'); -+INSERT INTO `marker` VALUES (9941,1900,NULL,2,1901,31698,'Inven','???',142.741943359375,-130.786865234375,0,0,0,'2018-11-08 01:20:08'); -+INSERT INTO `marker` VALUES (9942,1900,NULL,2,1926,28495,'Divine Beast Vah Naboris','',76.875,-179.4166660308838,0,0,0,'2018-11-09 16:46:44'); -+INSERT INTO `marker` VALUES (9943,1900,NULL,2,1926,28495,'Divine Beast Vah Rudania','',167.578125,-87.47916674613953,0,0,0,'2018-11-09 16:47:09'); -+INSERT INTO `marker` VALUES (9944,1900,NULL,2,1926,28495,'Divine Beast Vah Mehdo','',71.60416221618652,-99.1875,0,0,0,'2018-11-09 16:47:40'); -+INSERT INTO `marker` VALUES (9945,1900,NULL,2,1916,32758,'Korok seed','',131.546875,-154.6640625,0,1,0,'2018-11-10 09:39:08'); -+INSERT INTO `marker` VALUES (9946,1900,NULL,2,1925,14053,'Santuario de Kettava','',92.09375,-189.34375,0,0,0,'2018-11-11 01:55:48'); -+INSERT INTO `marker` VALUES (9947,1900,NULL,2,1925,14053,'Santurio de kritmoh','',74.84375,-149.0625,0,0,0,'2018-11-11 01:56:54'); -+INSERT INTO `marker` VALUES (9948,1900,NULL,2,1910,32630,'Strili','',204.78125,-185.9375,0,0,0,'2018-11-11 06:23:19'); -+INSERT INTO `marker` VALUES (9949,1900,NULL,2,1920,32931,'m','',139.75,-136.25,0,0,0,'2018-11-12 01:51:28'); -+INSERT INTO `marker` VALUES (9950,1900,NULL,2,1944,32941,'Phantom','Ex',120.90625,-158.76953125,0,0,0,'2018-11-12 05:45:18'); -+INSERT INTO `marker` VALUES (9951,1900,NULL,2,1944,32941,'Nintendo Switch Shirt (Ex)','',121.1953125,-159.38671875,0,0,0,'2018-11-12 05:47:56'); -+INSERT INTO `marker` VALUES (9952,1900,NULL,2,1943,32941,'Ruby (EX)','',117.390625,-151.6953125,0,0,0,'2018-11-12 05:50:13'); -+INSERT INTO `marker` VALUES (9953,1900,NULL,2,1931,32941,'Bokoblin Camp','',118.19921875,-157.96875,0,0,0,'2018-11-12 05:52:18'); -+INSERT INTO `marker` VALUES (9954,1900,NULL,2,1931,32941,'Bokoblin Camp','',117.37890625,-156.03515625,0,0,0,'2018-11-12 05:52:42'); -+INSERT INTO `marker` VALUES (9955,1900,NULL,2,1931,32941,'Bokoblin Camp','',117.78515625,-162.3046875,0,0,0,'2018-11-12 05:56:10'); -+INSERT INTO `marker` VALUES (9956,1900,NULL,2,1944,32941,'Bomb Arrow x5 (Ex)','',105.3046875,-159.67578125,0,0,0,'2018-11-12 20:39:49'); -+INSERT INTO `marker` VALUES (9957,1900,NULL,2,1901,30338,'???????','?????????????????????????????',169.84765625,-148.01953125,0,0,0,'2018-11-13 05:46:32'); -+INSERT INTO `marker` VALUES (9958,1900,NULL,2,1926,32959,'Divine Beast Vah Medoh','',68.8046875,-91.921875,0,1,0,'2018-11-13 12:07:08'); -+INSERT INTO `marker` VALUES (9959,1900,NULL,2,1926,32959,'Divine Beast Vah Naboris','',74.4375,-176.9296875,0,1,0,'2018-11-13 12:08:23'); -+INSERT INTO `marker` VALUES (9960,1900,NULL,2,1926,32959,'Divine Beast Vah Rudania','',153.453125,-82.0703125,0,0,0,'2018-11-13 12:09:04'); -+INSERT INTO `marker` VALUES (9961,1900,NULL,2,1901,33048,'????','',110.4140625,-157.9609375,0,0,0,'2018-11-14 01:57:48'); -+INSERT INTO `marker` VALUES (9962,1900,NULL,2,1925,33117,'Etsu Korima Shrine ','DLC',108.98828125,-160.9609375,0,0,0,'2018-11-15 13:26:17'); -+INSERT INTO `marker` VALUES (9963,1900,NULL,2,1925,33117,'Ruvo Korbah Shrine','DLC',114.9375,-161.4609375,0,0,0,'2018-11-15 13:30:11'); -+INSERT INTO `marker` VALUES (9964,1900,NULL,2,1925,33117,'Rohta Chigah Shrine','DLC',119.9375,-156.28125,0,0,0,'2018-11-15 13:31:56'); -+INSERT INTO `marker` VALUES (9965,1900,NULL,2,1943,32987,'DLC','Rubis Brut',117.47265625,-151.7929686307907,0,0,0,'2018-11-15 17:29:39'); -+INSERT INTO `marker` VALUES (9966,1900,NULL,2,1944,32987,'DLC','Maillot Nintendo Switch',120.68229180574417,-159.37369799613953,0,0,0,'2018-11-15 18:34:15'); -+INSERT INTO `marker` VALUES (9967,1900,NULL,2,1901,31690,'Ir por la reliquia en la casa de Impa','',160.109375,-142.765625,0,1,0,'2018-11-15 20:30:01'); -+INSERT INTO `marker` VALUES (9968,1900,NULL,2,1902,3082,'Royal Guard's Boots','',122.359375,-114.765625,0,0,0,'2018-11-16 20:42:06'); -+INSERT INTO `marker` VALUES (9969,1900,NULL,2,1902,3082,'EX Royal Guard Uniform','',125.15625,-114.265625,0,0,0,'2018-11-17 01:31:40'); -+INSERT INTO `marker` VALUES (9970,1900,NULL,2,1943,32987,'DLC','Flêche explosive',105.25260424613953,-159.671875,0,0,0,'2018-11-17 07:20:19'); -+INSERT INTO `marker` VALUES (9971,1900,NULL,2,1901,32626,'Here bitch','',134.875,-156.5625,0,0,0,'2018-11-21 07:08:38'); -+INSERT INTO `marker` VALUES (9972,1900,NULL,2,1935,33277,'Wind Waker T-Shirt','',125.58380681276321,-176.1068892478943,0,0,0,'2018-11-24 00:29:50'); -+INSERT INTO `marker` VALUES (9973,1900,NULL,2,1901,33462,'?????','???????????????????????',146.375,-155.8125,0,0,0,'2018-11-25 15:53:52'); -+INSERT INTO `marker` VALUES (9974,1900,NULL,2,1944,33852,'Nintendo Switch Shirt','',120.67578125,-159.3984375,0,0,0,'2018-11-25 19:27:20'); -+INSERT INTO `marker` VALUES (9975,1900,NULL,2,1901,33833,'me','',156.8125,-178.8125,0,0,0,'2018-11-26 02:26:47'); -+INSERT INTO `marker` VALUES (9976,1900,NULL,2,1940,34084,'Expert','',116.765625,-161.03125,0,0,0,'2018-11-29 11:50:44'); -+INSERT INTO `marker` VALUES (9977,1900,NULL,2,1901,34138,'SALIDA','',115.25,-159.125,0,0,0,'2018-11-30 12:09:27'); -+INSERT INTO `marker` VALUES (9978,1900,NULL,2,1926,34273,'Divine Beast Vah Naboris','',94.875,-169.75,0,1,0,'2018-12-02 02:05:24'); -+INSERT INTO `marker` VALUES (9979,1900,NULL,2,1926,34273,'Divine Beast Vah Rudania','',166.40625,-88.09375,0,0,0,'2018-12-02 02:06:29'); -+INSERT INTO `marker` VALUES (9980,1900,NULL,2,1901,34273,'Divine Beast Vah Medoh ','',71.578125,-99.015625,0,0,0,'2018-12-02 02:07:08'); -+INSERT INTO `marker` VALUES (9981,1900,NULL,2,1943,34279,'EX Chest','Contains bomb arrows if I recall.',105.26953125,-159.73828125,0,0,0,'2018-12-02 07:55:32'); -+INSERT INTO `marker` VALUES (9982,1900,NULL,2,1944,34279,'EX Chest','',117.51953125,-151.7890625,0,0,0,'2018-12-02 07:58:47'); -+INSERT INTO `marker` VALUES (9983,1900,NULL,2,1943,34279,'MM Chest','Master Mode Chest. In air on balloon platform.',145.3203125,-156.6796875,0,0,0,'2018-12-02 08:01:56'); -+INSERT INTO `marker` VALUES (9984,1900,NULL,2,1943,34279,'MM Chest','Master Mode Chest. In air, on balloon platform.\r\n',173.40625,-159.1796875,0,0,0,'2018-12-02 08:03:26'); -+INSERT INTO `marker` VALUES (9985,1900,NULL,2,1944,34279,'Soldier's Claymore','Master Mode\r\nIn the ground: No\r\n',154.734375,-161.8828125,0,0,0,'2018-12-02 09:08:47'); -+INSERT INTO `marker` VALUES (9986,1900,NULL,2,1944,34279,'EX Chest: Boomerang','Floating Platform on the E side of the bridge.',156.16015625,-151.80859375,0,0,0,'2018-12-03 07:50:44'); -+INSERT INTO `marker` VALUES (9987,1900,NULL,2,1901,34279,'Serpetine Spear','Master Mode\r\nOn floating platform by bridge',138.53125,-143.5625,0,0,0,'2018-12-03 08:55:36'); -+INSERT INTO `marker` VALUES (9988,1900,NULL,2,1944,34279,'Throwing Spear','Master Mode\r\nFloating platform next to bridge',143.390625,-143.09375,0,0,0,'2018-12-03 09:15:08'); -+INSERT INTO `marker` VALUES (9989,1900,NULL,2,1902,34434,'Phantom Helmet','',109.5078125,-147.26953125,0,0,0,'2018-12-03 16:22:26'); -+INSERT INTO `marker` VALUES (9990,1900,NULL,2,1944,34279,'MM Soldier's Spear','Soldier's Spear in chest on top of floating platform by bridge.',153.921875,-159.625,0,0,0,'2018-12-05 10:17:14'); -+INSERT INTO `marker` VALUES (9991,1900,NULL,2,1901,34064,'arrows','231',117.859375,-175.8125,0,0,0,'2018-12-06 06:43:46'); -+INSERT INTO `marker` VALUES (9992,1900,NULL,2,1926,21154,'Divine Beast Vah Naboris','',95.06640625,-169.265625,0,0,0,'2018-12-06 14:07:30'); -+INSERT INTO `marker` VALUES (9993,1900,NULL,2,1901,34095,'COMIENZO DE TODO','',112.875,-157.9375,0,1,0,'2018-12-07 14:24:44'); -+INSERT INTO `marker` VALUES (9994,1900,NULL,2,1901,33237,'no encontrado','',83.9140625,-103.22395837306976,0,0,0,'2018-12-07 22:32:03'); -+INSERT INTO `marker` VALUES (9995,1900,NULL,2,1901,34755,'???','???',148.375,-157.46875,0,0,0,'2018-12-08 07:02:21'); -+INSERT INTO `marker` VALUES (9996,1900,NULL,2,1935,34424,'The Sheep Rustlers','Start of side-quest "The Sheep Rustlers"',184.66015625,-160.90234375,0,0,0,'2018-12-08 22:01:25'); -+INSERT INTO `marker` VALUES (9997,1900,NULL,2,1926,34803,'Divine Beast Vah Medoh','',71.5625,-100.03125,0,0,0,'2018-12-08 22:15:18'); -+INSERT INTO `marker` VALUES (9998,1900,NULL,2,1901,34810,'Semilla de manzana','',135.921875,-156.119140625,0,0,0,'2018-12-09 00:51:52'); -+INSERT INTO `marker` VALUES (9999,1900,NULL,2,1901,34755,'????','????',88.25,-138.625,0,0,0,'2018-12-09 06:23:26'); -+INSERT INTO `marker` VALUES (10000,1900,NULL,2,1925,34826,'Kiah Toza Shrine','',93.125,-78.625,0,0,0,'2018-12-09 10:32:02'); -+INSERT INTO `marker` VALUES (10001,1900,NULL,2,1925,34826,'Shira Gomar Shrine','',90.92578125,-106.46875,0,1,0,'2018-12-09 10:35:15'); -+INSERT INTO `marker` VALUES (10002,1900,NULL,2,1925,34826,'Kamia Omuna Shrine','',161.23124980926514,-77.68124985694885,0,1,0,'2018-12-09 10:38:10'); -+INSERT INTO `marker` VALUES (10003,1900,NULL,2,1944,34279,'MM Royal Broadsword','Chest on floating platform in Master Mode.',169.90625,-149.703125,0,0,0,'2018-12-10 09:22:03'); -+INSERT INTO `marker` VALUES (10004,1900,NULL,2,1901,33797,'seeds','',179.0625,-138.3515625,0,0,0,'2018-12-10 15:46:54'); -+INSERT INTO `marker` VALUES (10005,1900,NULL,2,1901,33797,'seeds','',179.109375,-138.27734375,0,0,0,'2018-12-10 15:47:15'); -+INSERT INTO `marker` VALUES (10006,1900,NULL,2,1916,34446,'Korok seed','',179.24689900875092,-150.5570695400238,0,0,0,'2018-12-10 22:30:00'); -+INSERT INTO `marker` VALUES (10007,1900,NULL,2,1910,34124,'Amber','',101.875,-148.15625,0,0,0,'2018-12-11 05:08:42'); -+INSERT INTO `marker` VALUES (10008,1900,NULL,2,1925,34124,'Shrine of Resurrection','',110.6015625,-157.4296875,0,0,0,'2018-12-11 07:25:21'); -+INSERT INTO `marker` VALUES (10009,1900,NULL,2,1901,34867,'FIRODRA','',155.6015625,-172.296875,0,0,0,'2018-12-11 15:38:23'); -+INSERT INTO `marker` VALUES (10010,1900,NULL,2,1903,34867,'FLAMEBLADE','',158.59765625,-169.0546875,0,0,0,'2018-12-12 09:17:32'); -+INSERT INTO `marker` VALUES (10011,1900,NULL,2,1925,31383,'Ruvo Korbah','',114.95703125,-161.515625,0,0,0,'2018-12-12 14:14:22'); -+INSERT INTO `marker` VALUES (10012,1900,NULL,2,1916,33319,'Korok Seed','',132.134765625,-187.89453125,0,0,0,'2018-12-12 22:26:48'); -+INSERT INTO `marker` VALUES (10013,1900,NULL,2,1925,35121,'el imposible','no c',110.93843746185303,-86.40828123688698,0,0,0,'2018-12-12 23:45:05'); -+INSERT INTO `marker` VALUES (10014,1900,NULL,2,1916,29592,'Korok Seed','',107.390625,-147.65234375,0,0,0,'2018-12-13 17:46:49'); -+INSERT INTO `marker` VALUES (10015,1900,NULL,2,1942,20944,'Black Hinox','',134.5,-94.25,0,0,0,'2018-12-14 01:48:19'); -+INSERT INTO `marker` VALUES (10016,1900,NULL,2,1944,34279,'Zora Sword','',170.1875,-122.3828125,0,0,0,'2018-12-14 07:53:18'); -+INSERT INTO `marker` VALUES (10017,1900,NULL,2,1944,34279,'Zora Spear','',166.2265625,-124.08203125,0,0,0,'2018-12-14 20:39:29'); -+INSERT INTO `marker` VALUES (10018,1900,NULL,2,1944,34279,'Silverscale Spear','',163.9296875,-124.0703125,0,0,0,'2018-12-14 21:09:21'); -+INSERT INTO `marker` VALUES (10019,1900,NULL,2,1901,34279,'Silver Shield','',171.59375,-123.78125,0,0,0,'2018-12-14 21:22:25'); -+INSERT INTO `marker` VALUES (10020,1900,NULL,2,1944,34279,'Silver Shield','',183.4453125,-112.90625,0,0,0,'2018-12-15 09:27:59'); -+INSERT INTO `marker` VALUES (10021,1900,NULL,2,1944,34279,'Silver Bow','',171.9609375,-127.75,0,0,0,'2018-12-15 11:06:23'); -+INSERT INTO `marker` VALUES (10022,1900,NULL,2,1944,34279,'Silver Longsword','',176.0625,-120.609375,0,0,0,'2018-12-15 11:35:21'); -+INSERT INTO `marker` VALUES (10023,1900,NULL,2,1901,35432,'korok seed?','',57.9302978515625,-88.736083984375,0,0,0,'2018-12-17 05:14:45'); -+INSERT INTO `marker` VALUES (10024,1900,NULL,2,1904,35048,'GBOW !','',36.21875,-87.65625,0,0,0,'2018-12-18 03:16:54'); -+INSERT INTO `marker` VALUES (10025,1900,NULL,2,1903,35048,'Monster with flameblade','',152.6979160308838,-70.7604169845581,0,0,0,'2018-12-18 05:53:06'); -+INSERT INTO `marker` VALUES (10026,1900,NULL,2,1941,35545,'Stone Talus','',110.875,-154.01736092567444,0,0,0,'2018-12-19 01:55:20'); -+INSERT INTO `marker` VALUES (10027,1900,NULL,2,1916,27903,'Korogu','',145.171875,-157.625,0,0,0,'2018-12-21 11:42:14'); -+INSERT INTO `marker` VALUES (10028,1900,NULL,2,1941,35555,'Stone Talus (Luminous)','[Havok Gaming] 'tracehavok' defeated Stone Talus (Luminous) at this location and it was not listed on Zelda Maps',190.375,-125.59375,0,0,0,'2018-12-21 14:27:04'); -+INSERT INTO `marker` VALUES (10029,1900,NULL,2,1944,34279,'Frost Blade','',190.7421875,-122.71875,0,0,0,'2018-12-22 08:22:13'); -+INSERT INTO `marker` VALUES (10030,1900,NULL,2,1944,34279,'Demon Carver','',192.1484375,-120.3984375,0,0,0,'2018-12-22 08:27:15'); -+INSERT INTO `marker` VALUES (10031,1900,NULL,2,1944,34279,'Frost Spear','',175.6875,-128.21875,0,0,0,'2018-12-22 09:22:31'); -+INSERT INTO `marker` VALUES (10032,1900,NULL,2,1901,34138,'POBLADO HATELIA (lab y fotos)','',181.3125,-162.5,0,0,0,'2018-12-24 08:00:32'); -+INSERT INTO `marker` VALUES (10033,1900,NULL,2,1903,34896,'Left chest weapon here','',118.18359375,-122.63671875,0,0,0,'2018-12-24 12:39:53'); -+INSERT INTO `marker` VALUES (10034,1900,NULL,2,1901,36049,'Stealthfin Trout','',142.109375,-93.09375,0,0,0,'2018-12-25 05:01:43'); -+INSERT INTO `marker` VALUES (10035,1900,NULL,2,1925,31383,'Sharo Lun Shrine','',173.82421875,-90.19921875,0,1,0,'2018-12-25 21:23:40'); -+INSERT INTO `marker` VALUES (10036,1900,NULL,2,1943,34279,'Travel Medallion','',200.65625,-72.4453125,0,0,0,'2018-12-26 07:44:34'); -+INSERT INTO `marker` VALUES (10037,1900,NULL,2,1939,36179,'Ice Wizzrobe','',82.328125,-80.9296875,0,1,0,'2018-12-26 15:05:15'); -+INSERT INTO `marker` VALUES (10038,1900,NULL,2,1901,36203,'Korok MAsk','',136.453125,-100.96875,0,0,0,'2018-12-26 20:12:17'); -+INSERT INTO `marker` VALUES (10039,1900,NULL,2,1926,36179,'Divine Beast Vah Rudania','',167.375,-87.265625,0,1,0,'2018-12-26 20:49:07'); -+INSERT INTO `marker` VALUES (10040,1900,NULL,2,1939,34279,'Ice Wizzrobe','',76.046875,-152.359375,0,0,0,'2018-12-27 10:53:37'); -+INSERT INTO `marker` VALUES (10041,1900,NULL,2,1901,36179,'Spring of Wisdom','',189.51171875,-148.9453125,0,1,0,'2018-12-27 12:04:55'); -+INSERT INTO `marker` VALUES (10042,1900,NULL,2,1926,36179,'Divine Beast Vah Medoh','',71.546875,-98.8515625,0,0,0,'2018-12-27 12:07:20'); -+INSERT INTO `marker` VALUES (10043,1900,NULL,2,1901,36179,'Yiga Clan Hideout','',69.75,-149.796875,0,1,0,'2018-12-27 12:13:15'); -+INSERT INTO `marker` VALUES (10044,1900,NULL,2,1938,36073,'Lord of the Mountain','',93.6015625,-132.9375,0,0,0,'2018-12-27 18:54:19'); -+INSERT INTO `marker` VALUES (10045,1900,NULL,2,1903,35263,'Flame Bade','Inside Temple',179.91796875,-74.46484375,0,0,0,'2018-12-28 07:30:23'); -+INSERT INTO `marker` VALUES (10046,1900,NULL,2,1901,36254,'Purple Rupee','',197.48828125,-80.10546875,0,0,0,'2018-12-30 19:39:23'); -+INSERT INTO `marker` VALUES (10047,1900,NULL,2,1936,35567,'Mure fissuré Gorons ','',158.0080400109291,-90.44528198242188,0,0,0,'2018-12-31 12:48:28'); -+INSERT INTO `marker` VALUES (10048,1900,NULL,2,1910,36489,'????','',154.96139705181122,-173.4979510307312,0,1,0,'2019-01-01 09:45:30'); -+INSERT INTO `marker` VALUES (10049,1900,NULL,2,1904,36489,'????','????',171.57887375354767,-162.8784990310669,0,1,0,'2019-01-01 09:48:02'); -+INSERT INTO `marker` VALUES (10050,1900,NULL,2,1901,37205,'Vah Naboris','Wanders in this general area',73.12187576293945,-180.16874980926514,0,0,0,'2019-01-02 23:59:39'); -+INSERT INTO `marker` VALUES (10051,1900,NULL,2,1936,36393,'Shrine Entrance','',97.28515625,-104.77734375,0,0,0,'2019-01-03 02:09:08'); -+INSERT INTO `marker` VALUES (10052,1900,NULL,2,1903,36489,'Rock Pike','',154.23903608322144,-94.42567777633667,0,1,0,'2019-01-03 06:38:16'); -+INSERT INTO `marker` VALUES (10053,1900,NULL,2,1901,15410,'8th','',59.8125,-136,0,0,0,'2019-01-03 08:12:01'); -+INSERT INTO `marker` VALUES (10054,1900,NULL,2,1901,34279,'Rvaio's Hood','',141.06640625,-165.953125,0,0,0,'2019-01-03 09:53:01'); -+INSERT INTO `marker` VALUES (10055,1900,NULL,2,1944,34279,'EX Tingle's Shirt','',117.3359375,-115.28125,0,0,0,'2019-01-05 04:52:22'); -+INSERT INTO `marker` VALUES (10056,1900,NULL,2,1901,37418,'?????','',156.7578125,-143.6171875,0,0,0,'2019-01-06 03:46:43'); -+INSERT INTO `marker` VALUES (10057,1900,NULL,2,1930,36404,'Ice Keese','',97.9375,-80,0,0,0,'2019-01-06 23:10:16'); -+INSERT INTO `marker` VALUES (10058,1900,NULL,2,1935,37845,'By Firefly's Light','Kakariko Village Lazli Side-Quest',157.6796875,-144.1875,0,1,0,'2019-01-07 06:06:50'); -+INSERT INTO `marker` VALUES (10059,1900,NULL,2,1935,37845,'Riverbed Reward','',141.2421875,-129.9609375,0,0,0,'2019-01-07 07:27:41'); -+INSERT INTO `marker` VALUES (10060,1900,NULL,2,1935,37845,'The Giant of Ralis Pond','',179.828125,-119.4296875,0,0,0,'2019-01-07 07:34:17'); -+INSERT INTO `marker` VALUES (10061,1900,NULL,2,1901,37845,'An Ice Guy','',77.390625,-168.234375,0,0,0,'2019-01-07 07:37:28'); -+INSERT INTO `marker` VALUES (10062,1900,NULL,2,1935,37845,'The Eighth Heroine & The Forgotten Sword','',69.203125,-173.0703125,0,0,0,'2019-01-07 07:45:22'); -+INSERT INTO `marker` VALUES (10063,1900,NULL,2,1901,37845,'Statue of the Eighth Heroine','',59.515625,-136.28125,0,0,0,'2019-01-07 07:48:28'); -+INSERT INTO `marker` VALUES (10064,1900,NULL,2,1901,37845,'The Forgotten Sword','',65.890625,-143.046875,0,0,0,'2019-01-07 07:50:19'); -+INSERT INTO `marker` VALUES (10065,1900,NULL,2,1939,36539,'Blizzard Wizrobe','',139.9765625,-116.28125,0,0,0,'2019-01-07 23:26:25'); -+INSERT INTO `marker` VALUES (10066,1900,NULL,2,1935,37922,'Arrows of Burning Heat','',156.3984375,-144.25390625,0,0,0,'2019-01-08 04:40:27'); -+INSERT INTO `marker` VALUES (10067,1900,NULL,2,1910,37908,'Amber','',128.328125,-131.4375,0,0,0,'2019-01-08 06:29:42'); -+INSERT INTO `marker` VALUES (10068,1900,NULL,2,1901,38068,'1232','213',113.9375,-155.95625114440918,0,0,0,'2019-01-09 01:45:41'); -+INSERT INTO `marker` VALUES (10069,1900,NULL,2,1901,38196,'Santuario de Kaoma','Santuario de Kaoma',136.19921875,-183.06640625,0,0,0,'2019-01-10 12:06:33'); -+INSERT INTO `marker` VALUES (10070,1900,NULL,2,1901,38298,'Hidden Cove Containing Chests','Theres a hidden cove that leads behind the waterfall. There's Three Chests inside the cove',110.421875,-161.5234375,0,0,0,'2019-01-12 01:14:11'); -+INSERT INTO `marker` VALUES (10071,1900,NULL,2,1916,12708,'Race with shield surfing','',149.8203125,-114.64108204841614,0,0,0,'2019-01-12 02:19:43'); -+INSERT INTO `marker` VALUES (10072,1900,NULL,2,1916,32236,'b ','',156.66562509536743,-119.69374990463257,0,0,0,'2019-01-12 23:57:54'); -+INSERT INTO `marker` VALUES (10073,1900,NULL,2,1930,36404,'Ice Wissrobe','',103.75,-186.45703125,0,0,0,'2019-01-13 04:09:36'); -+INSERT INTO `marker` VALUES (10074,1900,NULL,2,1901,37121,'MUSHROOM SPAWN','',93.71875,-140.453125,0,0,0,'2019-01-13 06:52:24'); -+INSERT INTO `marker` VALUES (10075,1900,NULL,2,1926,38854,'Divine Beast Vah Naboris','',81.5,-180.75,0,0,0,'2019-01-14 20:24:08'); -+INSERT INTO `marker` VALUES (10076,1900,NULL,2,1935,37720,'A Gift of Nightshade','',168.44921875,-183.31640625,0,0,0,'2019-01-15 22:06:05'); -+INSERT INTO `marker` VALUES (10077,1900,NULL,2,1926,38927,'Divine Beast Vah Naboris','',85.109375,-186.09375,0,0,0,'2019-01-16 13:31:18'); -+INSERT INTO `marker` VALUES (10078,1900,NULL,2,1943,39150,'10x Arrows','',175.19140625,-159.48046875,0,0,0,'2019-01-18 16:35:05'); -+INSERT INTO `marker` VALUES (10079,1900,NULL,2,1943,39150,'50x Rupees','',175.28515625,-162.5234375,0,0,0,'2019-01-18 16:39:33'); -+INSERT INTO `marker` VALUES (10080,1900,NULL,2,1901,39287,'find','',42.25,-108.75,0,0,0,'2019-01-19 02:29:44'); -+INSERT INTO `marker` VALUES (10081,1900,NULL,2,1901,39292,'Botas de alpinismo','',-28.75,-106.75,0,1,0,'2019-01-19 03:07:15'); -+INSERT INTO `marker` VALUES (10082,1900,NULL,2,1916,28484,'Koror Seed','',76.44921875,-106.69140625,0,1,0,'2019-01-20 07:22:36'); -+INSERT INTO `marker` VALUES (10083,1900,NULL,2,1943,28484,'Topaz','',76.44921875,-106.640625,0,0,0,'2019-01-20 07:23:32'); -+INSERT INTO `marker` VALUES (10084,1900,NULL,2,1916,28484,'Koror Seed','',74.203125,-107.40234375,0,0,0,'2019-01-20 07:27:31'); -+INSERT INTO `marker` VALUES (10085,1900,NULL,2,1916,28484,'Koroko Seed','',82.48828125,-102.41796875,0,0,0,'2019-01-20 07:51:18'); -+INSERT INTO `marker` VALUES (10086,1900,NULL,2,1904,35517,'Bomb Arrows BOX','',132.234375,-188.99609375,0,0,0,'2019-01-20 07:54:45'); -+INSERT INTO `marker` VALUES (10087,1900,NULL,2,1939,28484,'Ice Wizzrobe','',89.1015625,-99.5390625,0,0,0,'2019-01-20 07:59:59'); -+INSERT INTO `marker` VALUES (10088,1900,NULL,2,1916,28484,'Koroko Seed','',91.44921875,-101.015625,0,0,0,'2019-01-20 08:05:49'); -+INSERT INTO `marker` VALUES (10089,1900,NULL,2,1916,28484,'Koroko Seed','',91.1640625,-98.77734375,0,0,0,'2019-01-20 08:12:09'); -+INSERT INTO `marker` VALUES (10090,1900,NULL,2,1901,39897,'Super cold up here','',183.2286376953125,-154.25723266601562,0,0,0,'2019-01-23 20:01:24'); -+INSERT INTO `marker` VALUES (10091,1900,NULL,2,1901,39095,'Weapons Cash','',82.91015625,-161.80078125,0,0,0,'2019-01-23 23:23:45'); -+INSERT INTO `marker` VALUES (10092,1900,NULL,2,1901,37418,'Dragon','Dragon\r\n',155.65885400772095,-172.38932299613953,0,0,0,'2019-01-24 05:17:14'); -+INSERT INTO `marker` VALUES (10093,1900,NULL,2,1903,35263,'Knight's Halbert','',118.91796875,-87.015625,0,0,0,'2019-01-24 12:50:13'); -+INSERT INTO `marker` VALUES (10094,1900,NULL,2,1901,35263,'Kass Quest','The Serpent's Jaws',140.72968769073486,-175.84375,0,0,0,'2019-01-25 03:51:29'); -+INSERT INTO `marker` VALUES (10095,1900,NULL,2,1938,40130,'White Horse','',100.609375,-140.96875,0,0,0,'2019-01-26 07:20:39'); -+INSERT INTO `marker` VALUES (10096,1900,NULL,2,1910,40214,'chest','',114.2890625,-158.609375,0,0,0,'2019-01-26 22:06:14'); -+INSERT INTO `marker` VALUES (10097,1900,NULL,2,1901,40096,'elden','',150.90625,-72.78515625,0,0,0,'2019-01-27 18:57:25'); -+INSERT INTO `marker` VALUES (10098,1900,NULL,2,1926,39917,'Gourdo beast','',89.77553331851959,-184.40449452400208,0,0,0,'2019-01-28 11:49:13'); -+INSERT INTO `marker` VALUES (10099,1900,NULL,2,1926,38947,'Vah'Naboris','',95.015625,-168.859375,0,0,0,'2019-01-29 13:38:48'); -+INSERT INTO `marker` VALUES (10100,1900,NULL,2,1926,38947,'Vah'Rudania','',167.58203125,-87.21875,0,0,0,'2019-01-29 13:39:41'); -+INSERT INTO `marker` VALUES (10101,1900,NULL,2,1910,40542,'Shrooms','',93.716552734375,-140.4376220703125,0,0,0,'2019-01-29 17:58:24'); -+INSERT INTO `marker` VALUES (10102,1900,NULL,2,1903,38067,'Inventory Full!!','',141.546875,-164.39453125,0,0,0,'2019-01-31 01:34:09'); -+INSERT INTO `marker` VALUES (10103,1900,NULL,2,1926,40498,'Vah Naboris','Divine Beast Vah Naboris',95.0546875,-168.9765625,0,1,0,'2019-01-31 22:24:25'); -+INSERT INTO `marker` VALUES (10104,1900,NULL,2,1916,34046,'Korok Seed','',150.30078125,-103.8828125,0,0,0,'2019-02-02 02:43:03'); -+INSERT INTO `marker` VALUES (10105,1900,NULL,2,1910,40881,'Lagartija Humero','',173.62953090667725,-72.59828090667725,0,0,0,'2019-02-02 02:47:28'); -+INSERT INTO `marker` VALUES (10106,1900,NULL,2,1926,40194,'Divine Beast Vah Rudania','',167.5625,-87.875,0,0,0,'2019-02-02 17:36:22'); -+INSERT INTO `marker` VALUES (10107,1900,NULL,2,1926,40194,'Divine Beast Vah Medo','',71.359375,-99.8125,0,0,0,'2019-02-02 17:36:56'); -+INSERT INTO `marker` VALUES (10108,1900,NULL,2,1926,40194,'Divine Beast Vah Naboris','',95.0625,-169.1875,0,0,0,'2019-02-02 17:37:52'); -+INSERT INTO `marker` VALUES (10109,1900,NULL,2,1910,40878,'Lots of High Value Ore','',177.28540325164795,-80.4610767364502,0,0,0,'2019-02-02 22:31:31'); -+INSERT INTO `marker` VALUES (10110,1900,NULL,2,1935,41140,'Arrows of Burning Heat','',156.44140625,-144.25,0,0,0,'2019-02-04 06:26:35'); -+INSERT INTO `marker` VALUES (10111,1900,NULL,2,1901,41143,'Rare Ores','',158.74947929382324,-175.74687457084656,0,0,0,'2019-02-05 04:25:28'); -+INSERT INTO `marker` VALUES (10112,1900,NULL,2,1936,41143,'Rare Ore','',158.67447900772095,-175.66302061080933,0,1,0,'2019-02-05 04:26:31'); -+INSERT INTO `marker` VALUES (10113,1900,NULL,2,1901,40783,'Hestu','',160.296875,-88.203125,0,0,0,'2019-02-05 09:38:06'); -+INSERT INTO `marker` VALUES (10114,1900,NULL,2,1901,39544,'test','j'aime la bite pdpdpd',82.6953125,-104.53125,0,1,0,'2019-02-05 23:02:20'); -+INSERT INTO `marker` VALUES (10115,1900,NULL,2,1901,37885,'Dragon?','',188.7890625,-148.6796875,0,0,0,'2019-02-06 10:48:04'); -+INSERT INTO `marker` VALUES (10116,1900,NULL,2,1901,40636,'Mounted Archery','',124.78515625,-182.65234375,0,0,0,'2019-02-06 23:21:42'); -+INSERT INTO `marker` VALUES (10117,1900,NULL,2,1935,41851,'An Ice Guy','',77.37890625,-168.23046875,0,0,0,'2019-02-13 03:49:03'); -+INSERT INTO `marker` VALUES (10118,1900,NULL,2,1901,42280,'??','',149.32421875,-178.453125,0,0,0,'2019-02-14 19:39:27'); -+INSERT INTO `marker` VALUES (10119,1900,NULL,2,1904,38067,'Ice Arrow x10','Treasure box of Ice Arrow',127.69140625,-131.01171875,0,0,0,'2019-02-16 07:39:25'); -+INSERT INTO `marker` VALUES (10120,1900,NULL,2,1943,38067,'Arrow x10','Treasure Chest contains arrow x10',127.671875,-131.40625,0,0,0,'2019-02-16 07:46:21'); -+INSERT INTO `marker` VALUES (10121,1900,NULL,2,1935,42507,'amor sigiloso ','entregar una campana muda en nombre del amor ',168.5546875,-183.4140625,0,0,0,'2019-02-16 15:30:58'); -+INSERT INTO `marker` VALUES (10122,1900,NULL,2,1931,41231,'Enemy Camp','',56.5,-139.46875,0,0,0,'2019-02-17 16:57:08'); -+INSERT INTO `marker` VALUES (10123,1900,NULL,2,1931,41231,'Enemy Camp','',58.75,-145,0,0,0,'2019-02-17 16:57:31'); -+INSERT INTO `marker` VALUES (10124,1900,NULL,2,1931,41231,'Enemy Camp','',53.6875,-149.34375,0,0,0,'2019-02-17 16:57:49'); -+INSERT INTO `marker` VALUES (10125,1900,NULL,2,1910,42700,'Blue gem','',199.19140625,-71.65234375,0,0,0,'2019-02-17 19:03:16'); -+INSERT INTO `marker` VALUES (10126,1900,NULL,2,1916,40727,'beneath bombable rocks','',139.875,-164.65625,0,1,0,'2019-02-18 10:02:44'); -+INSERT INTO `marker` VALUES (10127,1900,NULL,2,1904,43011,'Bomb Arrows ','Take out the surrounding bokoblins for possible bomb arrow drop. ',138.07776987552643,-77.45028412342072,0,0,0,'2019-02-20 06:01:44'); -+INSERT INTO `marker` VALUES (10128,1900,NULL,2,1901,42880,'Hearty Durian Farming','',149.78125,-178.18359375,0,1,0,'2019-02-20 21:23:02'); -+INSERT INTO `marker` VALUES (10129,1900,NULL,2,1916,43118,'????','',107.125,-143.0625,0,1,0,'2019-02-20 23:31:16'); -+INSERT INTO `marker` VALUES (10130,1900,NULL,2,1901,43015,'business','',192.875,-102.625,0,0,0,'2019-02-21 02:16:17'); -+INSERT INTO `marker` VALUES (10131,1900,NULL,2,1943,41851,'Gold Rupee','',50.8515625,-161.703125,0,0,0,'2019-02-22 04:44:31'); -+INSERT INTO `marker` VALUES (10132,1900,NULL,2,1904,43245,'Bomb Arrows','',180.74609375,-70.77734375,0,0,0,'2019-02-22 08:52:49'); -+INSERT INTO `marker` VALUES (10133,1900,NULL,2,1901,43257,'Minerales subterráneos','se necesitan flechas bomba',158.65625,-175.15625,0,0,0,'2019-02-22 13:54:51'); -+INSERT INTO `marker` VALUES (10134,1900,NULL,2,1926,41231,'Vah Rudania','',166.33203125,-87.98828125,0,0,0,'2019-02-23 05:05:19'); -+INSERT INTO `marker` VALUES (10135,1900,NULL,2,1926,41231,'Divine Beast Vah Naboris','',94.98046875,-169.1640625,0,0,0,'2019-02-23 05:06:10'); -+INSERT INTO `marker` VALUES (10136,1900,NULL,2,1926,41231,'Divine Beast Vah Medoh','',71.53515625,-98.875,0,0,0,'2019-02-23 05:07:05'); -+INSERT INTO `marker` VALUES (10137,1900,NULL,2,1944,43245,'Silver Bow','',178.59375,-121.49609375,0,0,0,'2019-02-23 08:02:25'); -+INSERT INTO `marker` VALUES (10138,1900,NULL,2,1930,43245,'Icy Lizalfos','',193.125,-155.6171875,0,0,0,'2019-02-23 08:34:45'); -+INSERT INTO `marker` VALUES (10139,1900,NULL,2,1901,43245,'Pondo's Lodge','',95.546875,-95.5234375,0,0,0,'2019-02-24 07:39:17'); -+INSERT INTO `marker` VALUES (10140,1900,NULL,2,1935,43552,'The Sheep Rustlers','',184.58984375,-160.83984375,0,0,0,'2019-02-24 19:39:59'); -+INSERT INTO `marker` VALUES (10141,1900,NULL,2,1901,43642,'Old Man's Cabin','The old man's cabin',115.76699829101562,-163.20330810546875,0,0,0,'2019-02-25 06:31:56'); -+INSERT INTO `marker` VALUES (10142,1900,NULL,2,1926,43679,'Divine Beast Vah Medoh','',71.56640625,-98.49609375,0,0,0,'2019-02-25 13:39:12'); -+INSERT INTO `marker` VALUES (10143,1900,NULL,2,1926,43679,'Divine Beast Vah Rudania','',167.8046875,-87.515625,0,0,0,'2019-02-25 13:39:35'); -+INSERT INTO `marker` VALUES (10144,1900,NULL,2,1926,43679,'Divine Beast Vah Naboris','',95.09375,-169.21875,0,0,0,'2019-02-25 13:40:05'); -+INSERT INTO `marker` VALUES (10145,1900,NULL,2,1936,43876,'Cracked wall','',114.3515625,-158.2109375,0,0,0,'2019-02-27 16:30:16'); -+INSERT INTO `marker` VALUES (10146,1900,NULL,2,1901,43015,'Korok Mask','',139.18359375,-99.109375,0,0,0,'2019-02-28 02:24:08'); -+INSERT INTO `marker` VALUES (10147,1900,NULL,2,1940,13795,'Lynel','MasterMode',117.578125,-160.296875,0,0,0,'2019-03-01 12:35:54'); -+INSERT INTO `marker` VALUES (10148,1900,NULL,2,1935,42733,'The Sheep Rustlers','NPC: Koyin',180.390625,-161.4375,0,0,0,'2019-03-02 01:36:13'); -+INSERT INTO `marker` VALUES (10149,1900,NULL,2,1935,42733,'Robbie's Research','',187.015625,-161.203125,0,0,0,'2019-03-02 01:37:28'); -+INSERT INTO `marker` VALUES (10150,1900,NULL,2,1935,42733,'Sunshroom Sensing','',186.828125,-161.421875,0,0,0,'2019-03-02 01:38:22'); -+INSERT INTO `marker` VALUES (10151,1900,NULL,2,1935,42733,'Slated for Upgrades','',187.046875,-161.234375,0,0,0,'2019-03-02 01:39:10'); -+INSERT INTO `marker` VALUES (10152,1900,NULL,2,1935,42733,'Take Back the Sea','',173.6953125,-181.59114599227905,0,0,0,'2019-03-02 01:40:33'); -+INSERT INTO `marker` VALUES (10153,1900,NULL,2,1939,42480,'Blizzrobe','',89.20703125,-99.6015625,0,0,0,'2019-03-02 08:15:41'); -+INSERT INTO `marker` VALUES (10154,1900,NULL,2,1916,42886,'Krok Seed','',62.4140625,-86.2890625,0,0,0,'2019-03-03 15:28:27'); -+INSERT INTO `marker` VALUES (10155,1900,NULL,2,1902,39380,'Midna's Helmet(DLC)','',106.078125,-131.4921875,0,0,0,'2019-03-07 02:27:14'); -+INSERT INTO `marker` VALUES (10156,1900,NULL,2,1943,44908,'Chest','',63.36328125,-69.734375,0,0,0,'2019-03-07 03:30:15'); -+INSERT INTO `marker` VALUES (10157,1900,NULL,2,1936,44908,'Cracked wall','',63.3515625,-69.68359375,0,0,0,'2019-03-07 03:30:46'); -+INSERT INTO `marker` VALUES (10158,1900,NULL,2,1916,44908,'Korok Seed','',61.41796875,-71.98046875,0,0,0,'2019-03-07 03:43:06'); -+INSERT INTO `marker` VALUES (10159,1900,NULL,2,1936,44908,'Luminous Stone','',62.0703125,-70.9140625,0,0,0,'2019-03-07 03:44:01'); -+INSERT INTO `marker` VALUES (10160,1900,NULL,2,1935,44908,'Desert Labyrinth','',100.0625,-182,0,0,0,'2019-03-07 07:44:16'); -+INSERT INTO `marker` VALUES (10161,1900,NULL,2,1916,45022,'Did i get this one?','',179.4375,-180.15625,0,0,0,'2019-03-08 14:03:39'); -+INSERT INTO `marker` VALUES (10162,1900,NULL,2,1901,44841,'????','',113,-156.9375,0,0,0,'2019-03-09 05:24:58'); -+INSERT INTO `marker` VALUES (10163,1900,NULL,2,1925,45154,'need divine beast','',71.53515625,-104.34375,0,0,0,'2019-03-09 08:20:19'); -+INSERT INTO `marker` VALUES (10164,1900,NULL,2,1926,45168,'Vah'Naboris','',95.140625,-169.1640625,0,0,0,'2019-03-09 10:22:59'); -+INSERT INTO `marker` VALUES (10165,1900,NULL,2,1926,45168,'Vah'Medoh','',71.5390625,-99.1015625,0,0,0,'2019-03-09 10:23:44'); -+INSERT INTO `marker` VALUES (10166,1900,NULL,2,1901,45168,'Vah'Rudania','',166.34375,-88.03125,0,0,0,'2019-03-09 10:24:21'); -+INSERT INTO `marker` VALUES (10167,1900,NULL,2,1926,45168,'Vah'Ruta','',174.64453125,-131.8515625,0,0,0,'2019-03-09 10:25:08'); -+INSERT INTO `marker` VALUES (10168,1900,NULL,2,1939,39095,'Ice Wizzrobe','Ice Wizzrobe',139.8125,-115.26953125,0,0,0,'2019-03-11 03:35:32'); -+INSERT INTO `marker` VALUES (10169,1900,NULL,2,1902,45432,'CACA','cool',118.58984375,-152.70703125,0,0,0,'2019-03-14 13:37:50'); -+INSERT INTO `marker` VALUES (10170,1900,NULL,2,1901,45002,'Last','',173.75,-149.96875,0,0,0,'2019-03-15 02:32:01'); -+INSERT INTO `marker` VALUES (10171,1900,NULL,2,1916,45929,'Kokoro Seed','',143.25,-181.6875,0,0,0,'2019-03-15 13:57:24'); -+INSERT INTO `marker` VALUES (10172,1900,NULL,2,1916,43169,'Korok Seed','',161.796875,-144.1875,0,0,0,'2019-03-16 15:11:45'); -+INSERT INTO `marker` VALUES (10173,1900,NULL,2,1916,43169,'Korok Seed','',157.4140625,-165.7109375,0,0,0,'2019-03-16 15:15:28'); -+INSERT INTO `marker` VALUES (10174,1900,NULL,2,1916,43169,'Korok Seed','',154.28125,-164.421875,0,0,0,'2019-03-16 15:15:55'); -+INSERT INTO `marker` VALUES (10175,1900,NULL,2,1901,46138,'Home','',179.59375,-163.3125,0,0,0,'2019-03-17 02:42:04'); -+INSERT INTO `marker` VALUES (10176,1900,NULL,2,1901,46212,'starting point','',110.671875,-156.6875,0,0,0,'2019-03-17 13:48:26'); -+INSERT INTO `marker` VALUES (10177,1900,NULL,2,1901,46216,'South Akkala Stable','',177.21875,-101.54296875,0,0,0,'2019-03-17 22:42:38'); -+INSERT INTO `marker` VALUES (10178,1900,NULL,2,1901,46216,'bge','',189.9375,-102.8125,0,0,0,'2019-03-17 23:21:05'); -+INSERT INTO `marker` VALUES (10179,1900,NULL,2,1943,43349,'Silver Rupee','',115.1171875,-70.9765625,0,0,0,'2019-03-18 03:58:59'); -+INSERT INTO `marker` VALUES (10180,1900,NULL,2,1943,43349,'Gold Rupee','',115.625,-72.37109375,0,0,0,'2019-03-18 04:03:25'); -+INSERT INTO `marker` VALUES (10181,1900,NULL,2,1901,43573,'Goldene Schuppe','',141.682373046875,-164.407958984375,0,1,0,'2019-03-18 20:20:04'); -+INSERT INTO `marker` VALUES (10182,1900,NULL,2,1921,38530,'jjj','',109.625,-152.0625,0,0,0,'2019-03-18 21:05:41'); -+INSERT INTO `marker` VALUES (10183,1900,NULL,2,1926,46386,'Divine Beast Vah Medoh','',71,-100.5,0,0,0,'2019-03-19 01:42:32'); -+INSERT INTO `marker` VALUES (10184,1900,NULL,2,1926,46386,'Divine Beast Vah Rudania','',167.75,-88.5,0,0,0,'2019-03-19 01:43:10'); -+INSERT INTO `marker` VALUES (10185,1900,NULL,2,1943,33143,'Rupee','Use Magnesis on chest from distance, attached to enemy.',122.203125,-170.03125,0,0,0,'2019-03-19 04:14:26'); -+INSERT INTO `marker` VALUES (10186,1900,NULL,2,1902,46500,'Durian','',149.33203125,-178.390625,0,0,0,'2019-03-19 16:22:19'); -+INSERT INTO `marker` VALUES (10187,1900,NULL,2,1901,43686,'Dragon legendario ','punto de salida Farodra ',155.4375,-180.765625,0,1,0,'2019-03-20 17:08:24'); -+INSERT INTO `marker` VALUES (10188,1900,NULL,2,1901,43686,'Dragones legendarios ','Punto de salida ',121.71875,-165.140625,0,1,0,'2019-03-20 17:12:30'); -+INSERT INTO `marker` VALUES (10189,1900,NULL,2,1901,43686,'gragones legendarios ','',101.5625,-96.34375,0,1,0,'2019-03-20 17:13:13'); -+INSERT INTO `marker` VALUES (10190,1900,NULL,2,1920,43686,'dragon ','salida del dragon de trueno',155.953125,-173.91015625,0,1,0,'2019-03-20 20:04:50'); -+INSERT INTO `marker` VALUES (10191,1900,NULL,2,1901,45903,'Healthy Durian','Farm Spot for Healthy Durian',149.453125,-178.1875,0,0,0,'2019-03-21 11:07:17'); -+INSERT INTO `marker` VALUES (10192,1900,NULL,2,1901,46128,'Prince','',164.6484375,-124.1953125,0,0,0,'2019-03-22 04:47:10'); -+INSERT INTO `marker` VALUES (10193,1900,NULL,2,1901,46735,'1','',156.38068175315857,-143.12997126579285,0,0,0,'2019-03-22 14:33:25'); -+INSERT INTO `marker` VALUES (10194,1900,NULL,2,1921,44197,'Tarrey','',16.875,-98.25,0,0,0,'2019-03-22 17:30:23'); -+INSERT INTO `marker` VALUES (10195,1900,NULL,2,1935,46459,'Arrows of Burning Heat','Light the torches around the goddess statue.',156.58984375,-144.27734375,0,0,0,'2019-03-23 03:30:18'); -+INSERT INTO `marker` VALUES (10196,1900,NULL,2,1944,46459,'Majora's Mask','DLC Only',120.97265625,-148.02734375,0,0,0,'2019-03-23 09:35:23'); -+INSERT INTO `marker` VALUES (10197,1900,NULL,2,1926,46509,'Vah'Naboris Divine Beast','',79.625,-180.90625,0,0,0,'2019-03-23 16:56:06'); -+INSERT INTO `marker` VALUES (10198,1900,NULL,2,1916,41317,'Korok seed','',176.0859375,-125.3046875,0,1,0,'2019-03-24 13:20:24'); -+INSERT INTO `marker` VALUES (10199,1900,NULL,2,1910,46509,'Opal','Inside the wreck',167.1328125,-179.72265625,0,0,0,'2019-03-24 17:56:01'); -+INSERT INTO `marker` VALUES (10200,1900,NULL,2,1902,46946,'Tunique Bleue','Tunique bleue (anti-chaleur)',125.56640625,-176.16015625,0,0,0,'2019-03-25 19:19:06'); -+INSERT INTO `marker` VALUES (10201,1900,NULL,2,1901,46946,'Tunique bleue (anti-chaleur)','Tunique bleue (anti-chaleur)',125.5625,-176.1484375,0,0,0,'2019-03-25 19:20:13'); -+INSERT INTO `marker` VALUES (10202,1900,NULL,2,1944,46946,'Tunique bleue','anti-chaleur',125.578125,-176.1484375,0,0,0,'2019-03-25 19:21:50'); -+INSERT INTO `marker` VALUES (10203,1900,NULL,2,1944,46459,'Phantom Helmet','DLC only.',109.3125,-147.2421875,0,0,0,'2019-03-26 05:26:49'); -+INSERT INTO `marker` VALUES (10204,1900,NULL,2,1935,45680,'Taburasa Dog','',190.265625,-103.09375,0,0,0,'2019-03-27 05:25:41'); -+INSERT INTO `marker` VALUES (10205,1900,NULL,2,1916,46932,'????','',136.58314710855484,-150.62853413820267,0,1,0,'2019-03-27 08:28:36'); -+INSERT INTO `marker` VALUES (10206,1900,NULL,2,1935,45945,'A Fragmented Monument','Kah Yah Shrine Quest',181.65625,-180.0859375,0,0,0,'2019-03-27 23:23:04'); -+INSERT INTO `marker` VALUES (10207,1900,NULL,2,1926,46811,'Divine Beast Vah Naboris','',95,-169.25,0,1,0,'2019-03-28 22:25:35'); -+INSERT INTO `marker` VALUES (10208,1900,NULL,2,1901,47547,'1','',114.09375,-157.828125,0,0,0,'2019-03-29 13:54:28'); -+INSERT INTO `marker` VALUES (10209,1900,NULL,2,1944,46381,'Ext. DLC 2','Midona's Mask',106.08203125,-131.51171875,0,0,0,'2019-03-29 16:31:33'); -+INSERT INTO `marker` VALUES (10210,1900,NULL,2,1903,47563,'fire rod','',-98.5,-72.5,0,0,0,'2019-03-29 17:18:06'); -+INSERT INTO `marker` VALUES (10211,1900,NULL,2,1935,46509,'Race','',86.734375,-109.765625,0,0,0,'2019-03-30 16:26:40'); -+INSERT INTO `marker` VALUES (10212,1900,NULL,2,1925,47691,'Renaissance','',110.7421875,-157.37760496139526,0,0,0,'2019-03-30 17:18:37'); -+INSERT INTO `marker` VALUES (10213,1900,NULL,2,1902,47226,'Equipment','Knights Sword, Shields, Arrows\r\n',193.625,-119.8671875,0,0,0,'2019-03-30 22:27:25'); -+INSERT INTO `marker` VALUES (10214,1900,NULL,2,1901,46381,'First part Kilton's market ','First point where Kilton is located to activation of is market ',178.78125,-74.265625,0,1,0,'2019-03-31 12:34:08'); -+INSERT INTO `marker` VALUES (10215,1900,NULL,2,1920,46381,'Kilton's Market','Black link armor seller, monster seller\r\nAppears after 22.00',155.04296875,-144.328125,0,1,0,'2019-03-31 13:12:33'); -+INSERT INTO `marker` VALUES (10216,1900,NULL,2,1926,47824,'Vah'Ruta','',174.5625,-131.71875,0,0,0,'2019-03-31 20:35:17'); -+INSERT INTO `marker` VALUES (10217,1900,NULL,2,1902,46381,'Ext. DLC 2','Xanto's Helmet',148.09765625,-166.33203125,0,0,0,'2019-04-01 16:13:15'); -+INSERT INTO `marker` VALUES (10218,1900,NULL,2,1944,47226,'Blizzard Rod','',201.9921875,-112.484375,0,0,0,'2019-04-01 18:20:21'); -+INSERT INTO `marker` VALUES (10219,1900,NULL,2,1920,47945,'Akkala Ancient Tech Lab','',198.5421872138977,-78.52265644073486,0,0,0,'2019-04-02 20:22:16'); -+INSERT INTO `marker` VALUES (10220,1900,NULL,2,1916,47599,'Korok Seed','',163.7578125,-138.9296875,0,0,0,'2019-04-04 03:04:30'); -+INSERT INTO `marker` VALUES (10221,1900,NULL,2,1902,48307,'Nintendo Switch Shirt (DLC)','',120.68359375,-159.3046875,0,0,0,'2019-04-05 06:57:19'); -+INSERT INTO `marker` VALUES (10222,1900,NULL,2,1904,48307,'Bomb Arrow (DLC)','',105.296875,-159.7578125,0,0,0,'2019-04-05 07:52:42'); -+INSERT INTO `marker` VALUES (10223,1900,NULL,2,1910,48238,'??','',149.625,-182.546875,0,0,0,'2019-04-05 09:41:34'); -+INSERT INTO `marker` VALUES (10224,1900,NULL,2,1935,48230,'By Firefly's Light','',157.6953125,-144.1640625,0,0,0,'2019-04-05 18:45:40'); -+INSERT INTO `marker` VALUES (10225,1900,NULL,2,1935,47691,'By Firefly's Light','',157.70703125,-144.15625,0,0,0,'2019-04-07 19:14:38'); -+INSERT INTO `marker` VALUES (10226,1900,NULL,2,1916,47917,'Korok Seed','',83.828125,-103.296875,0,1,0,'2019-04-09 03:19:47'); -+INSERT INTO `marker` VALUES (10227,1900,NULL,2,1944,35456,'Ancient Bridle','Ex Ancient Horse Rumors',92.2578125,-133.390625,0,0,0,'2019-04-09 19:56:53'); -+INSERT INTO `marker` VALUES (10228,1900,NULL,2,1944,35456,'EX: Tingle's Tights','',127.625,-131.38671875,0,0,0,'2019-04-10 19:11:55'); -+INSERT INTO `marker` VALUES (10229,1900,NULL,2,1920,49050,'i monti gemelli','i monti gemelli',149.28125,-158.0625,0,0,0,'2019-04-12 17:31:59'); -+INSERT INTO `marker` VALUES (10230,1900,NULL,2,1901,49219,'Campfire','',112.1875,-161.71875,0,1,0,'2019-04-13 01:33:29'); -+INSERT INTO `marker` VALUES (10231,1900,NULL,2,1901,49219,'Boat','',111.12109375,-160.01171875,0,1,0,'2019-04-13 01:38:48'); -+INSERT INTO `marker` VALUES (10232,1900,NULL,2,1901,48859,'Southern Mine','Southern Mine where several quests can be located, and Greyson is found (who is needed for tarrey town quest. You get Fire guard armor here as well. Very important.',154.27671617269516,-97.43036818504333,0,1,0,'2019-04-13 16:36:26'); -+INSERT INTO `marker` VALUES (10233,1900,NULL,2,1903,49367,'???','???',103.54296875,-154.8515625,0,0,0,'2019-04-14 07:35:12'); -+INSERT INTO `marker` VALUES (10234,1900,NULL,2,1944,49202,'Climbing Bandanna','',149.5625,-157.1875,0,0,0,'2019-04-14 16:38:56'); -+INSERT INTO `marker` VALUES (10235,1900,NULL,2,1916,48678,'Korok Seed','',125.9296875,-187.4765625,0,0,0,'2019-04-15 02:32:54'); -+INSERT INTO `marker` VALUES (10236,1900,NULL,2,1901,47960,'ancient core','',186.75,-62.875,0,0,0,'2019-04-16 06:23:35'); -+INSERT INTO `marker` VALUES (10237,1900,NULL,2,1926,49628,'Divine Beast vah Naboris','',95,-169.15625,0,0,0,'2019-04-17 09:21:34'); -+INSERT INTO `marker` VALUES (10238,1900,NULL,2,1901,3853,'Hesta second','',134.0625,-144.1640625,0,0,0,'2019-04-18 15:24:41'); -+INSERT INTO `marker` VALUES (10239,1900,NULL,2,1901,49972,'Go here','',103.5744047164917,-97.05803489685059,0,0,0,'2019-04-19 17:55:54'); -+INSERT INTO `marker` VALUES (10240,1900,NULL,2,1931,49367,'Bokoblin Camp','',107.8984375,-154.2578125,0,0,0,'2019-04-20 04:48:12'); -+INSERT INTO `marker` VALUES (10241,1900,NULL,2,1931,49367,'Bokoblin Camp','',113.1640625,-158.625,0,0,0,'2019-04-20 04:58:19'); -+INSERT INTO `marker` VALUES (10242,1900,NULL,2,1901,50024,'Campfire','',105.6015625,-152.69140625,0,0,0,'2019-04-20 05:36:25'); -+INSERT INTO `marker` VALUES (10243,1900,NULL,2,1938,32645,'test123','test222',102.375,-155,0,0,0,'2019-04-20 15:38:45'); -+INSERT INTO `marker` VALUES (10244,1900,NULL,2,1939,45880,'Blizzard Wizrobe','Blizzard Rod',140.0546875,-116.2734375,0,0,0,'2019-04-21 05:15:15'); -+INSERT INTO `marker` VALUES (10245,1900,NULL,2,1901,50024,'Gem Deposit','',161.28593730926514,-168.78593754768372,0,0,0,'2019-04-21 06:34:14'); -+INSERT INTO `marker` VALUES (10246,1900,NULL,2,1930,50024,'Electric Keese','',161.3624997138977,-168.6796875,0,0,0,'2019-04-21 06:34:56'); -+INSERT INTO `marker` VALUES (10247,1900,NULL,2,1901,50253,'Kakariko','',40,-140.875,0,0,0,'2019-04-21 20:06:43'); -+INSERT INTO `marker` VALUES (10248,1900,NULL,2,1920,50439,'DEPART','Début de l'histoire',110.45703125,-157.53125,0,1,0,'2019-04-23 09:58:17'); -+INSERT INTO `marker` VALUES (10249,1900,NULL,2,1944,50431,'??','',139.171875,-97.8125,0,0,0,'2019-04-23 20:22:38'); -+INSERT INTO `marker` VALUES (10250,1900,NULL,2,1944,50431,'treasure','treasure',139.6171875,-97.78125,0,0,0,'2019-04-23 20:23:25'); -+INSERT INTO `marker` VALUES (10251,1900,NULL,2,1944,50431,'treasure','wooden arrow x5',137.51953125,-97.515625,0,0,0,'2019-04-23 20:29:32'); -+INSERT INTO `marker` VALUES (10252,1900,NULL,2,1944,50431,'treasure','knights shield',130.1796875,-120.7890625,0,0,0,'2019-04-23 22:17:04'); -+INSERT INTO `marker` VALUES (10253,1900,NULL,2,1944,50431,'bow','knight;'s bow',127.71484375,-123.62890625,0,0,0,'2019-04-23 22:23:11'); -+INSERT INTO `marker` VALUES (10254,1900,NULL,2,1943,50431,'chest','bomb arrorx5',130.3515625,-116.87109375,0,0,0,'2019-04-23 22:41:51'); -+INSERT INTO `marker` VALUES (10255,1900,NULL,2,1943,50431,'chest','arrow',139.9296875,-116.25,0,0,0,'2019-04-23 23:29:43'); -+INSERT INTO `marker` VALUES (10256,1900,NULL,2,1943,50431,'fire arr x5','fire arr x5',144.66796875,-178.265625,0,0,0,'2019-04-23 23:36:17'); -+INSERT INTO `marker` VALUES (10257,1900,NULL,2,1948,50458,'FARMING','',96.9044189453125,-136.283447265625,0,0,0,'2019-04-24 10:44:39'); -+INSERT INTO `marker` VALUES (10258,1900,NULL,2,1901,50504,'need to beat','',55.9375,-142.125,0,0,0,'2019-04-25 01:13:41'); -+INSERT INTO `marker` VALUES (10259,1900,NULL,2,1901,49952,'Blutmond','',79.25,-132,0,0,0,'2019-04-27 18:14:48'); -+INSERT INTO `marker` VALUES (10260,1900,NULL,2,1921,50916,'Gerudo Town','',85,-150.625,0,0,0,'2019-04-28 00:37:38'); -+INSERT INTO `marker` VALUES (10261,1900,NULL,2,1943,50843,'Chest 5 fire arrows','',105.2734375,-159.7109375,0,0,0,'2019-04-28 10:54:03'); -+INSERT INTO `marker` VALUES (10262,1900,NULL,2,1916,50805,'Kolog seeds','',191.7890625,-154.8515625,0,0,0,'2019-04-28 20:45:28'); -+INSERT INTO `marker` VALUES (10263,1900,NULL,2,1935,45488,'misko treasure cave','',158.31624031066895,-168.9881410598755,0,0,0,'2019-04-29 17:09:33'); -+INSERT INTO `marker` VALUES (10264,1900,NULL,2,1901,51345,'Lurelin Village','',174.9375,-180.75,0,0,0,'2019-05-01 16:13:27'); -+INSERT INTO `marker` VALUES (10265,1900,NULL,2,1903,42921,'diamond sword','18 damage one handedsword',105.28125,-117.609375,0,0,0,'2019-05-01 19:55:37'); -+INSERT INTO `marker` VALUES (10266,1900,NULL,2,1935,45488,'Take back the sea','NPC: Sebasto\r\n\r\nDescription: Defeat the monsters on Aris beach\r\n\r\nReward: 100 rupees',173.2237969636917,-181.25967395305634,0,0,0,'2019-05-04 02:45:46'); -+INSERT INTO `marker` VALUES (10267,1900,NULL,2,1925,51636,'Toh Yahsa Shrine','',92.60433053970337,-113.99996852874756,0,0,0,'2019-05-04 12:18:03'); -+INSERT INTO `marker` VALUES (10268,1900,NULL,2,1901,49196,'Devo andare qua ','',93.9921875,-96.2265625,0,0,0,'2019-05-04 16:16:51'); -+INSERT INTO `marker` VALUES (10269,1900,NULL,2,1926,50977,'Vah Nahboris','',66,-187,0,0,0,'2019-05-05 12:12:36'); -+INSERT INTO `marker` VALUES (10270,1900,NULL,2,1939,50205,'Ice Wizzrobe','',74.984375,-152.3125,0,0,0,'2019-05-05 21:42:54'); -+INSERT INTO `marker` VALUES (10271,1900,NULL,2,1901,51954,'!!!!!!!!!','',-322,-6,0,0,0,'2019-05-07 13:13:46'); -+INSERT INTO `marker` VALUES (10272,1900,NULL,2,1901,52291,'??','',117.0625,-128.984375,0,0,0,'2019-05-10 06:44:49'); -+INSERT INTO `marker` VALUES (10273,1900,NULL,2,1944,52235,'Knight's Bow','',55.765625,-147.71875,0,0,0,'2019-05-10 17:22:19'); -+INSERT INTO `marker` VALUES (10274,1900,NULL,2,1943,52235,'Topaz','',55.28125,-143,0,0,0,'2019-05-10 17:24:43'); -+INSERT INTO `marker` VALUES (10275,1900,NULL,2,1926,23546,'Vah Medoh','',-25,-143.5,0,0,0,'2019-05-10 22:40:56'); -+INSERT INTO `marker` VALUES (10276,1900,NULL,2,1926,23546,'Vah Medoh','',71.375,-99.9375,0,0,0,'2019-05-10 22:41:16'); -+INSERT INTO `marker` VALUES (10277,1900,NULL,2,1926,23546,'Vah Rudania','',166.5,-87.75,0,0,0,'2019-05-10 22:42:10'); -+INSERT INTO `marker` VALUES (10278,1900,NULL,2,1901,23546,'Vah Naboris','',94.875,-169.375,0,0,0,'2019-05-10 22:42:39'); -+INSERT INTO `marker` VALUES (10279,1900,NULL,2,1939,43748,'Ice Wizzrobe','',103.80078125,-186.4140625,0,0,0,'2019-05-11 08:42:39'); -+INSERT INTO `marker` VALUES (10280,1900,NULL,2,1942,50205,'Stalnox','',93.421875,-137.1640625,0,0,0,'2019-05-11 09:41:16'); -+INSERT INTO `marker` VALUES (10281,1900,NULL,2,1946,52516,'Kletis','',133.46875,-145.296875,0,0,0,'2019-05-12 11:59:37'); -+INSERT INTO `marker` VALUES (10282,1900,NULL,2,1943,52322,'DLC Chest','Phantom Armor',124.22265625,-126.6015625,0,1,0,'2019-05-12 21:39:58'); -+INSERT INTO `marker` VALUES (10283,1900,NULL,2,1936,52670,'Cracked Plateau','Cracked wall housing several ore deposits on the ceiling inside.',158.640625,-175.734375,0,0,0,'2019-05-13 05:26:59'); -+INSERT INTO `marker` VALUES (10284,1900,NULL,2,1916,51892,'Error ','The kolog upside the mountain doesnt exist',132.85369324684143,-179.4389204978943,0,1,0,'2019-05-13 23:19:35'); -+INSERT INTO `marker` VALUES (10285,1900,NULL,2,1916,51885,'Korok','',139.359375,-185.34375,0,0,0,'2019-05-14 16:25:26'); -+INSERT INTO `marker` VALUES (10286,1900,NULL,2,1901,50587,'Apples','',96.625,-133.5,0,0,0,'2019-05-19 15:44:54'); -+INSERT INTO `marker` VALUES (10287,1900,NULL,2,1926,53330,'Divine Beast Vah Naboris','Bring clothes, food or elixirs that protect you from heat and cold in the desert.',94.90625,-169.03125,0,0,0,'2019-05-20 15:08:41'); -+INSERT INTO `marker` VALUES (10288,1900,NULL,2,1916,53476,'seed','',129.34375,-152.78515625,0,0,0,'2019-05-22 06:14:38'); -+INSERT INTO `marker` VALUES (10289,1900,NULL,2,1901,53039,'Ore Deposits','',175.328125,-155.78125,0,0,0,'2019-05-22 16:47:59'); -+INSERT INTO `marker` VALUES (10290,1900,NULL,2,1936,53039,'Bombable Wall','Cave of Rare Ore Deposits',158.71875,-175.62109375,0,0,0,'2019-05-22 19:23:26'); -+INSERT INTO `marker` VALUES (10291,1900,NULL,2,1936,53525,'boulder with treasure behind it','',147.71875,-157.0859375,0,0,0,'2019-05-22 19:46:32'); -+INSERT INTO `marker` VALUES (10292,1900,NULL,2,1901,53646,'1','',69.25,-68.625,0,0,0,'2019-05-23 14:30:12'); -+INSERT INTO `marker` VALUES (10293,1900,NULL,2,1939,43748,'Blizzrobe','',82.75070190429688,-81.89663696289062,0,0,0,'2019-05-25 07:28:47'); -+INSERT INTO `marker` VALUES (10294,1900,NULL,2,1916,53227,'Korok Seed','',62.828125,-159.0703125,0,1,0,'2019-05-25 16:25:00'); -+INSERT INTO `marker` VALUES (10295,1900,NULL,2,1901,53315,'Hidden Fairy Settlement','',90.51250076293945,-122.3125,0,0,0,'2019-05-26 20:40:03'); -+INSERT INTO `marker` VALUES (10296,1900,NULL,2,1901,53327,'1','',78.01838517189026,-70.14527249336243,0,0,0,'2019-05-27 00:34:08'); -+INSERT INTO `marker` VALUES (10297,1900,NULL,2,1901,51643,'Eau','Bah c'est de l'eau quoi',69.8046875,-99.453125,0,0,0,'2019-05-27 14:31:34'); -+INSERT INTO `marker` VALUES (10298,1900,NULL,2,1932,50024,'Guardian Stalker','',101.875,-174.71875,0,0,0,'2019-05-28 01:48:05'); -+INSERT INTO `marker` VALUES (10299,1900,NULL,2,1935,54092,'Hestu','',158.6883773803711,-151.14856147766113,0,0,0,'2019-05-28 03:30:48'); -+INSERT INTO `marker` VALUES (10300,1900,NULL,2,1925,54101,'Takama Shiri Shrine','Shrine added as part of Champions' Ballad DLC',51.5,-161.625,0,0,0,'2019-05-28 04:27:40'); -+INSERT INTO `marker` VALUES (10301,1900,NULL,2,1916,53781,'Korok2','',47.3125,-188.8125,0,0,0,'2019-05-28 13:37:00'); -+INSERT INTO `marker` VALUES (10302,1900,NULL,2,1931,45945,'boko camp','',150.109375,-120.4765625,0,0,0,'2019-05-29 12:19:20'); -+INSERT INTO `marker` VALUES (10303,1900,NULL,2,1939,51229,'Blizzard Wizzrobe','',103.7890625,-186.4296875,0,0,0,'2019-05-30 08:37:29'); -+INSERT INTO `marker` VALUES (10304,1900,NULL,2,1901,54275,'kmjk','',112.625,-132.25,0,0,0,'2019-05-30 11:43:43'); -+INSERT INTO `marker` VALUES (10305,1900,NULL,2,1935,45945,'Good-Sized Horse','Zyle lost his horse during his travels and he needs to buy a horse off of you for 300 Rupees',95.96875,-157.53125,0,0,0,'2019-05-30 16:45:22'); -+INSERT INTO `marker` VALUES (10306,1900,NULL,2,1916,54037,'1','',134.65625,-188.0078125,0,0,0,'2019-05-31 11:09:54'); -+INSERT INTO `marker` VALUES (10307,1900,NULL,2,1901,54175,'Blue fire','',181.7265625,-158.87890625,0,0,0,'2019-05-31 22:18:19'); -+INSERT INTO `marker` VALUES (10308,1900,NULL,2,1916,54529,'pas trouver','',60.125,-186.0625,0,0,0,'2019-06-01 17:24:46'); -+INSERT INTO `marker` VALUES (10309,1900,NULL,2,1916,54529,'pas trouver','',60.15625,-186.109375,0,0,0,'2019-06-01 17:25:09'); -+INSERT INTO `marker` VALUES (10310,1900,NULL,2,1926,54175,'Divine Beast Vah Medoh','',71.390625,-99.921875,0,0,0,'2019-06-01 23:58:34'); -+INSERT INTO `marker` VALUES (10311,1900,NULL,2,1901,54377,'Epreuve de force','Epreuve extrême de force',73.8515625,-121,0,0,0,'2019-06-02 13:24:32'); -+INSERT INTO `marker` VALUES (10312,1900,NULL,2,1930,54654,'test','y'a un test ici',62.5,-138.5,0,1,0,'2019-06-02 14:58:27'); -+INSERT INTO `marker` VALUES (10313,1900,NULL,2,1935,54526,'quest','',64.484375,-69.875,0,0,0,'2019-06-02 19:46:52'); -+INSERT INTO `marker` VALUES (10314,1900,NULL,2,1916,54652,'kk','',153.75,-92.92578125,0,0,0,'2019-06-03 11:21:04'); -+INSERT INTO `marker` VALUES (10315,1900,NULL,2,1916,54845,'Weird, ob der wirklich existiert?','',59.0625,-95.921875,0,0,0,'2019-06-04 14:27:40'); -+INSERT INTO `marker` VALUES (10316,1900,NULL,2,1901,54845,'Weird, ob der wirklich existiert?','',58.765625,-95.828125,0,0,0,'2019-06-04 14:28:17'); -+INSERT INTO `marker` VALUES (10317,1900,NULL,2,1935,54038,'Good-Sized Horse','',96.28125,-157.890625,0,0,0,'2019-06-05 19:31:04'); -+INSERT INTO `marker` VALUES (10318,1900,NULL,2,1916,53989,'Korok Seed','',160.046875,-146.83984375,0,1,0,'2019-06-08 21:52:42'); -+INSERT INTO `marker` VALUES (10319,1900,NULL,2,1901,55622,'test','test',113.65625,-149.96875,0,0,0,'2019-06-12 00:20:21'); -+INSERT INTO `marker` VALUES (10320,1900,NULL,2,1901,55591,'v','',114.46875,-161.5625,0,0,0,'2019-06-12 00:44:05'); -+INSERT INTO `marker` VALUES (10321,1900,NULL,2,1902,55591,'asdf','asdf',111.734375,-156.296875,0,0,0,'2019-06-12 00:47:58'); -+INSERT INTO `marker` VALUES (10322,1900,NULL,2,1901,55583,'Koro','',108.453125,-176.9765625,0,0,0,'2019-06-12 09:28:44'); -+INSERT INTO `marker` VALUES (10323,1900,NULL,2,1931,56110,'Enemy Camp','',143.671875,-149.703125,0,0,0,'2019-06-15 06:30:38'); -+INSERT INTO `marker` VALUES (10324,1900,NULL,2,1944,55943,'3 Antike Reaktorkerne','Braucht sie noch.',187.02734375,-161.11328125,0,0,0,'2019-06-15 10:36:49'); -+INSERT INTO `marker` VALUES (10325,1900,NULL,2,1901,55709,'snowfield','',84.25,-155.25,0,0,0,'2019-06-15 11:37:24'); -+INSERT INTO `marker` VALUES (10326,1900,NULL,2,1910,55589,'Chest','',117.37890625,-152.03125,0,0,0,'2019-06-15 13:51:17'); -+INSERT INTO `marker` VALUES (10327,1900,NULL,2,1910,55589,'Rough ruby','',117.5,-151.8125,0,0,0,'2019-06-15 13:53:00'); -+INSERT INTO `marker` VALUES (10328,1900,NULL,2,1931,56244,'Majes','',118.1171875,-158.0390625,0,0,0,'2019-06-15 18:58:55'); -+INSERT INTO `marker` VALUES (10329,1900,NULL,2,1901,56018,'Campfire','',109.7734375,-158.48697924613953,0,1,0,'2019-06-16 09:41:59'); -+INSERT INTO `marker` VALUES (10330,1900,NULL,2,1901,56018,'Campfire','',111.87239646911621,-159.59895849227905,0,1,0,'2019-06-16 09:47:32'); -+INSERT INTO `marker` VALUES (10331,1900,NULL,2,1901,56018,'Campfire','',105.45182299613953,-152.77473950386047,0,1,0,'2019-06-16 10:12:20'); -+INSERT INTO `marker` VALUES (10332,1900,NULL,2,1910,55589,'Flint','',113.11328125,-156.65234375,0,0,0,'2019-06-16 12:43:33'); -+INSERT INTO `marker` VALUES (10333,1900,NULL,2,1940,52480,'Silver Lynel','',117.90625,-161,0,1,0,'2019-06-16 16:36:21'); -+INSERT INTO `marker` VALUES (10334,1900,NULL,2,1941,52480,'Frost Talus','',79.9140625,-82.8203125,0,1,0,'2019-06-16 17:20:19'); -+INSERT INTO `marker` VALUES (10335,1900,NULL,2,1901,56400,'Eldra + Quest','',150.640625,-71.296875,0,0,0,'2019-06-16 19:19:22'); -+INSERT INTO `marker` VALUES (10336,1900,NULL,2,1910,56469,'Gem Deposits','Some pile of rocks with valuable gems.',161.6640625,-152.2109375,0,0,0,'2019-06-16 20:19:51'); -+INSERT INTO `marker` VALUES (10337,1900,NULL,2,1926,54359,'Divine Beast Vah Rudania','',167.6875,-87.421875,0,0,0,'2019-06-17 07:35:20'); -+INSERT INTO `marker` VALUES (10338,1900,NULL,2,1901,56505,'Mr Monsters','Deleate this after you find him',179.234375,-74.390625,0,0,0,'2019-06-17 16:40:44'); -+INSERT INTO `marker` VALUES (10339,1900,NULL,2,1903,50315,'Tree Branch','',112.7734375,-153.9921875,0,1,0,'2019-06-17 17:45:16'); -+INSERT INTO `marker` VALUES (10340,1900,NULL,2,1931,50315,'Bokoblin Camp','',118.125,-157.75,0,1,0,'2019-06-18 05:58:33'); -+INSERT INTO `marker` VALUES (10341,1900,NULL,2,1903,50315,'Tree Branch','',112.484375,-163.94921875,0,1,0,'2019-06-18 06:55:42'); -+INSERT INTO `marker` VALUES (10342,1900,NULL,2,1901,50315,'Campfire','',105.4453125,-152.734375,0,1,0,'2019-06-18 09:10:49'); -+INSERT INTO `marker` VALUES (10343,1900,NULL,2,1935,54359,'Zora Stone Monuments','',180.234375,-119.21875,0,0,0,'2019-06-18 10:06:31'); -+INSERT INTO `marker` VALUES (10344,1900,NULL,2,1916,56744,'korack seed','',136.125,-167.015625,0,0,0,'2019-06-18 18:37:07'); -+INSERT INTO `marker` VALUES (10345,1900,NULL,2,1930,50315,'Moblin','',126.28125,-152.359375,0,1,0,'2019-06-20 12:42:08'); -+INSERT INTO `marker` VALUES (10346,1900,NULL,2,1901,50315,'Campfire','',132.484375,-153.234375,0,1,0,'2019-06-20 13:11:18'); -+INSERT INTO `marker` VALUES (10347,1900,NULL,2,1901,57031,'fuck','',153.8984375,-146.1640625,0,0,0,'2019-06-20 13:48:49'); -+INSERT INTO `marker` VALUES (10348,1900,NULL,2,1901,46381,'Rino'Himika Shrine','Shrine',162.7421875,-96.828125,0,0,0,'2019-06-20 19:23:38'); -+INSERT INTO `marker` VALUES (10349,1900,NULL,2,1901,56712,'A Wife Washed Away','The NPC for completing the side quest',124.46875,-167.9296875,0,1,0,'2019-06-21 18:44:07'); -+INSERT INTO `marker` VALUES (10350,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10351,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10352,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10353,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10354,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10355,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10356,1900,NULL,2,1920,57361,'Current location','Stück. Heavy rain, can‘t climb',182.66015625,-131.3671875,0,0,0,'2019-06-21 23:31:30'); -+INSERT INTO `marker` VALUES (10357,1900,NULL,2,1930,57361,'Stronger Enemies','Two Ice Lizalfos',190.4296875,-150.5859375,0,0,0,'2019-06-21 23:34:34'); -+INSERT INTO `marker` VALUES (10358,1900,NULL,2,1916,57381,'fs','',167.125,-86.75,0,0,0,'2019-06-22 03:09:25'); -+INSERT INTO `marker` VALUES (10359,1900,NULL,2,1901,57335,'seed kp wieso oben oder unten','',121.5546875,-159.109375,0,0,0,'2019-06-22 06:00:27'); -+INSERT INTO `marker` VALUES (10360,1900,NULL,2,1925,45711,'Noe Rajee Shrine','',68.2890625,-91.9375,0,1,0,'2019-06-22 19:28:29'); -+INSERT INTO `marker` VALUES (10361,1900,NULL,2,1925,45711,'Rohta Chigah Shrine','',119.796875,-156.125,0,1,0,'2019-06-22 19:45:11'); -+INSERT INTO `marker` VALUES (10362,1900,NULL,2,1925,45711,'Etsu Korima Shrine','',109.01171875,-160.97395837306976,0,1,0,'2019-06-22 19:47:29'); -+INSERT INTO `marker` VALUES (10363,1900,NULL,2,1925,45711,'Kiah Toza Shrine','',94.32552099227905,-78.24999976158142,0,1,0,'2019-06-22 19:51:30'); -+INSERT INTO `marker` VALUES (10364,1900,NULL,2,1925,45711,'Shira Gomar Shrine','',90.91406226158142,-106.36848950386047,0,0,0,'2019-06-22 19:55:25'); -+INSERT INTO `marker` VALUES (10365,1900,NULL,2,1901,57539,'My Location','',143.75,-154.375,0,0,0,'2019-06-22 23:06:28'); -+INSERT INTO `marker` VALUES (10366,1900,NULL,2,1910,57658,'Amber','',107.875,-162.75,0,1,0,'2019-06-23 17:33:46'); -+INSERT INTO `marker` VALUES (10367,1900,NULL,2,1901,43128,'SAVE POINT','',103.265625,-94.65234375,0,0,0,'2019-06-24 02:58:55'); -+INSERT INTO `marker` VALUES (10368,1900,NULL,2,1901,43128,'NOPE','lmao trying to make a personal marker PLS ignore',103.26171875,-94.76171875,0,0,0,'2019-06-24 02:59:34'); -+INSERT INTO `marker` VALUES (10369,1900,NULL,2,1916,56532,'Korok Seed','Push the three rocks.',149.703125,-157,0,0,0,'2019-06-24 04:22:00'); -+INSERT INTO `marker` VALUES (10370,1900,NULL,2,1910,57872,'Antic Screw','By the dead Guardian',115.51171875,-156.82421875,0,0,0,'2019-06-24 19:31:16'); -+INSERT INTO `marker` VALUES (10371,1900,NULL,2,1910,57872,'Antic Spring','by the dead Guardian',115.375,-157.828125,0,0,0,'2019-06-24 19:34:11'); -+INSERT INTO `marker` VALUES (10372,1900,NULL,2,1910,57872,'Antic Screw','by the dead Guardian',115.10546875,-158.40234375,0,0,0,'2019-06-24 19:35:42'); -+INSERT INTO `marker` VALUES (10373,1900,NULL,2,1910,57872,'Antic Screw','by the dead Guardian',114.94921875,-158.5625,0,0,0,'2019-06-24 19:36:29'); -+INSERT INTO `marker` VALUES (10374,1900,NULL,2,1943,57872,'Rhodonit (EX)','',117.38671875,-151.7578125,0,0,0,'2019-06-24 19:41:10'); -+INSERT INTO `marker` VALUES (10375,1900,NULL,2,1944,57872,'Nintendo Switch Shirt (EX)','On the Wall',120.6875,-159.421875,0,0,0,'2019-06-24 19:54:23'); -+INSERT INTO `marker` VALUES (10376,1900,NULL,2,1904,57872,'fire arrows x5','inside of the skull cave',108.8046875,-153.765625,0,0,0,'2019-06-24 20:13:39'); -+INSERT INTO `marker` VALUES (10377,1900,NULL,2,1901,57870,'Maybe?','',120.4296875,-112.21875,0,0,0,'2019-06-24 20:30:28'); -+INSERT INTO `marker` VALUES (10378,1900,NULL,2,1925,57983,'Dunba Shrine','',43.5,-152.5,0,0,0,'2019-06-25 15:47:32'); -+INSERT INTO `marker` VALUES (10379,1900,NULL,2,1905,58025,'shied Real','Detras de un bloque de Metal\r\n',115.71875,-72.79296875,0,1,0,'2019-06-26 00:28:14'); -+INSERT INTO `marker` VALUES (10380,1900,NULL,2,1943,58050,'Ruby','DLC Chest',117.48046875,-151.734375,0,0,0,'2019-06-26 01:15:11'); -+INSERT INTO `marker` VALUES (10381,1900,NULL,2,1901,57925,'Wild Horses','',134.3828125,-181.453125,0,0,0,'2019-06-26 06:35:53'); -+INSERT INTO `marker` VALUES (10382,1900,NULL,2,1901,58140,'test','test',112.69478607177734,-121.0796446800232,0,0,0,'2019-06-26 15:11:57'); -+INSERT INTO `marker` VALUES (10383,1900,NULL,2,1925,58140,'Kamia Omuna Shrine','Part of the Champions; ballad DLC',161.15625,-77.625,0,0,0,'2019-06-26 22:54:00'); -+INSERT INTO `marker` VALUES (10384,1900,NULL,2,1926,57925,'Divine Beast Vah Rudania','',167.4375,-92.375,0,0,0,'2019-06-26 23:42:05'); -+INSERT INTO `marker` VALUES (10385,1900,NULL,2,1926,57925,'Divine Beast Vah Naboris','',83.5,-181.375,0,0,0,'2019-06-26 23:42:50'); -+INSERT INTO `marker` VALUES (10386,1900,NULL,2,1926,57925,'Divine Beast Vah Medoh','',71.359375,-96.890625,0,0,0,'2019-06-26 23:43:51'); -+INSERT INTO `marker` VALUES (10387,1900,NULL,2,1931,57925,'Moblin Camp','',109.1640625,-125.14453125,0,0,0,'2019-06-26 23:45:54'); -+INSERT INTO `marker` VALUES (10388,1900,NULL,2,1930,57925,'Bokoblin on Horseback','',145.015625,-127.8203125,0,0,0,'2019-06-26 23:48:15'); -+INSERT INTO `marker` VALUES (10389,1900,NULL,2,1903,58422,'Moblin club','',121.9140625,-152.328125,0,1,0,'2019-06-28 20:00:22'); -+INSERT INTO `marker` VALUES (10390,1900,NULL,2,1926,54359,'Divine Beast Vah Medoh','',71.53765869140625,-98.828125,0,0,0,'2019-06-29 01:10:32'); -+INSERT INTO `marker` VALUES (10391,1900,NULL,2,1935,54359,'The Giant of Ralis Pond','NPC: Torfeau\r\n\r\nRequires: Kill the Hinox near Ralis Pond.\r\n\r\nReward: Silver Rupee',179.77734375,-119.359375,0,0,0,'2019-06-29 06:23:42'); -+INSERT INTO `marker` VALUES (10392,1900,NULL,2,1901,58581,'Huinya','',136.25,-113,0,0,0,'2019-06-29 15:17:48'); -+INSERT INTO `marker` VALUES (10393,1900,NULL,2,1910,58317,'Lotus Fruit','',88.0625,-138.05859375,0,0,0,'2019-06-29 18:39:10'); -+INSERT INTO `marker` VALUES (10394,1900,NULL,2,1901,58314,'Scout','',33.125,-117.75,0,0,0,'2019-06-30 21:58:56'); -+INSERT INTO `marker` VALUES (10395,1900,NULL,2,1943,58823,'Giant Ancient Core','',69.5,-127.625,0,0,0,'2019-07-01 01:13:48'); -+INSERT INTO `marker` VALUES (10396,1900,NULL,2,1901,58640,'Hestu','',181.51420378684998,-101.93181848526001,0,0,0,'2019-07-01 03:34:15'); -+INSERT INTO `marker` VALUES (10397,1900,NULL,2,1943,58677,'Ruby DLC','',117.40625,-151.7734375,0,0,0,'2019-07-01 14:19:06'); -+INSERT INTO `marker` VALUES (10398,1900,NULL,2,1916,55864,'Korok Seed ','',154.4609375,-120.38671875,0,0,0,'2019-07-01 17:38:18'); -+INSERT INTO `marker` VALUES (10399,1900,NULL,2,1901,58549,'akkala','',30.75,-100.5,0,0,0,'2019-07-02 12:24:22'); -+INSERT INTO `marker` VALUES (10400,1900,NULL,2,1901,58919,'Platform','',110.65625,-161.53515625,0,0,0,'2019-07-04 11:58:05'); -+INSERT INTO `marker` VALUES (10401,1900,NULL,2,1903,18179,'?????? ','????? ??? ???????, ?? ?? ?????? ?????? ???????? ?? ???????',62.640625,-100.9375,0,0,0,'2019-07-04 19:25:14'); -+INSERT INTO `marker` VALUES (10402,1900,NULL,2,1901,18179,'??????? ??????','',82.2734375,-88.94921875,0,0,0,'2019-07-04 20:04:59'); -+INSERT INTO `marker` VALUES (10403,1900,NULL,2,1935,59420,'To be the wind','',201.578125,-186.703125,0,0,0,'2019-07-05 23:43:10'); -+INSERT INTO `marker` VALUES (10404,1900,NULL,2,1901,59206,'safiro','',169.8046875,-127.9609375,0,0,0,'2019-07-06 03:13:14'); -+INSERT INTO `marker` VALUES (10405,1900,NULL,2,1901,59539,'1 Point','',113.75,-137.75,0,0,0,'2019-07-07 01:07:24'); -+INSERT INTO `marker` VALUES (10406,1900,NULL,2,1901,59791,'Central Hyrule','',123.5,-122.125,0,0,0,'2019-07-09 01:57:50'); -+INSERT INTO `marker` VALUES (10407,1900,NULL,2,1920,59721,'white ?','white ?',100.7109375,-140.84375,0,0,0,'2019-07-09 15:10:45'); -+INSERT INTO `marker` VALUES (10408,1900,NULL,2,1930,58823,'Lynel','',188.2265625,-119.4140625,0,1,0,'2019-07-11 12:15:33'); -+INSERT INTO `marker` VALUES (10409,1900,NULL,2,1939,48504,'Ice Wizzrobe','',103.73828125,-186.45703125,0,1,0,'2019-07-11 15:20:55'); -+INSERT INTO `marker` VALUES (10410,1900,NULL,2,1926,60089,'Divine Beast Vah Naboris','',95.125,-169.1328125,0,0,0,'2019-07-11 22:48:58'); -+INSERT INTO `marker` VALUES (10411,1900,NULL,2,1939,58567,'BIizzrobe','',89.015625,-99.6875,0,0,0,'2019-07-12 14:13:49'); -+INSERT INTO `marker` VALUES (10412,1900,NULL,2,1901,60169,'asd','asdf',87.46875,-114.75,0,0,0,'2019-07-12 20:30:44'); -+INSERT INTO `marker` VALUES (10413,1900,NULL,2,1925,55511,'Sheh Rata Shrine','',151.5625,-122,0,0,0,'2019-07-12 21:41:04'); -+INSERT INTO `marker` VALUES (10414,1900,NULL,2,1925,55511,'Shrine of Ressurection','',110.796875,-157.40625,0,0,0,'2019-07-12 21:44:33'); -+INSERT INTO `marker` VALUES (10415,1900,NULL,2,1921,60348,'DLC','',107.1875,-131.3125,0,0,0,'2019-07-14 02:06:18'); -+INSERT INTO `marker` VALUES (10416,1900,NULL,2,1926,60455,'DIVINE BEAST VAH RUDANIA','',167.875,-88.375,0,0,0,'2019-07-14 20:41:45'); -+INSERT INTO `marker` VALUES (10417,1900,NULL,2,1926,60455,'DIVINE BEAST VAH MEDOH','',71.46875,-99.9375,0,0,0,'2019-07-14 20:42:05'); -+INSERT INTO `marker` VALUES (10418,1900,NULL,2,1926,60455,'DIVINE BEAST VAH NABORIS','',95.0625,-169.375,0,0,0,'2019-07-14 20:42:27'); -+INSERT INTO `marker` VALUES (10419,1900,NULL,2,1944,60529,'EX Bomb Arrow','',105.296875,-159.671875,0,0,0,'2019-07-14 23:21:18'); -+INSERT INTO `marker` VALUES (10420,1900,NULL,2,1943,60780,'Center of "Golden Triangle"','',175.13671875,-188.9765625,0,0,0,'2019-07-17 00:36:33'); -+INSERT INTO `marker` VALUES (10421,1900,NULL,2,1916,59933,'Korok Seed','',127.6015625,-175.52734375,0,0,0,'2019-07-17 20:01:13'); -+INSERT INTO `marker` VALUES (10422,1900,NULL,2,1916,59933,'Korok Seed','',127.6015625,-175.53125,0,0,0,'2019-07-17 20:01:49'); -+INSERT INTO `marker` VALUES (10423,1900,NULL,2,1944,60912,'EX Phantom Helmet','',109.6015625,-147.1328125,0,0,0,'2019-07-18 03:21:26'); -+INSERT INTO `marker` VALUES (10424,1900,NULL,2,1943,60912,'EX Bomb Arrows','',106.5859375,-163.7109375,0,0,0,'2019-07-18 03:42:03'); -+INSERT INTO `marker` VALUES (10425,1900,NULL,2,1901,60533,'Silver Rupee','',164.1796875,-156.9453125,0,0,0,'2019-07-18 08:43:59'); -+INSERT INTO `marker` VALUES (10426,1900,NULL,2,1936,56798,'Rocks','',164.78125,-154.796875,0,0,0,'2019-07-18 18:36:12'); -+INSERT INTO `marker` VALUES (10427,1900,NULL,2,1926,61012,'Divine Beast Vah'RUDANIA','',-20,-150.25,0,0,0,'2019-07-18 23:24:22'); -+INSERT INTO `marker` VALUES (10428,1900,NULL,2,1925,60291,'?????','',176.5625,-114.9375,0,0,0,'2019-07-20 04:47:12'); -+INSERT INTO `marker` VALUES (10429,1900,NULL,2,1925,61502,'Takama Shiri Srine','',51.48828125,-161.73828125,0,0,0,'2019-07-22 18:31:53'); -+INSERT INTO `marker` VALUES (10430,1900,NULL,2,1925,61502,'Keive Talashrine ','Big or small',91.375,-188.953125,0,0,0,'2019-07-22 18:34:46'); -+INSERT INTO `marker` VALUES (10431,1900,NULL,2,1925,61502,'Rohta Chigah Shrine','Stop to Start',119.86901044845581,-155.96145820617676,0,0,0,'2019-07-22 18:39:44'); -+INSERT INTO `marker` VALUES (10432,1900,NULL,2,1925,61502,'Ruvo Korbah Shrine','A major Test of Strength',114.953125,-161.5,0,0,0,'2019-07-22 18:41:01'); -+INSERT INTO `marker` VALUES (10433,1900,NULL,2,1925,61502,'Etsu Korima Shrine','',109.01171875,-160.94140625,0,0,0,'2019-07-22 18:41:50'); -+INSERT INTO `marker` VALUES (10434,1900,NULL,2,1925,61502,'Mah Eliya Shrine','',186.78854179382324,-117.93802070617676,0,0,0,'2019-07-22 18:45:48'); -+INSERT INTO `marker` VALUES (10435,1900,NULL,2,1925,61502,'Kee Dafunia Shrine','',205.26458358764648,-113.02031302452087,0,0,0,'2019-07-22 18:46:44'); -+INSERT INTO `marker` VALUES (10436,1900,NULL,2,1925,61502,'Kamia omuna Shrine','',161.37083435058594,-77.58281242847443,0,0,0,'2019-07-22 18:48:43'); -+INSERT INTO `marker` VALUES (10437,1900,NULL,2,1901,61502,'Shira Gomar Shrine','',90.640625,-106.625,0,0,0,'2019-07-22 18:52:01'); -+INSERT INTO `marker` VALUES (10438,1900,NULL,2,1939,57925,'Blizzrobe','',103.796875,-186.453125,0,0,0,'2019-07-24 04:09:56'); -+INSERT INTO `marker` VALUES (10439,1900,NULL,2,1936,57623,'Cracked Wall','Entrance of the Maag No'rah Shrine',97.3984375,-104.7734375,0,0,0,'2019-07-24 08:31:02'); -+INSERT INTO `marker` VALUES (10440,1900,NULL,2,1901,61697,'ARBRE KOROGUS','',133.96875,-144.390625,0,0,0,'2019-07-24 14:37:42'); -+INSERT INTO `marker` VALUES (10441,1900,NULL,2,1901,61097,'More than 16 santuary','There are a lot of sanctuaryin this zone. Clean the zone.',110.125,-155.125,0,0,0,'2019-07-24 15:18:34'); -+INSERT INTO `marker` VALUES (10442,1900,NULL,2,1901,42424,'beaucoup de bokoblin','',55.484375,-188.453125,0,0,0,'2019-07-24 18:03:51'); -+INSERT INTO `marker` VALUES (10443,1900,NULL,2,1903,57925,'Soldier's Broadsword','',174.3671875,-186.95703125,0,0,0,'2019-07-25 20:32:26'); -+INSERT INTO `marker` VALUES (10444,1900,NULL,2,1901,43559,'maison','',179.34375,-163.7578125,0,0,0,'2019-07-25 22:21:37'); -+INSERT INTO `marker` VALUES (10445,1900,NULL,2,1920,61881,'Hyrule castle','',160.25,-107.25,0,0,0,'2019-07-26 03:19:43'); -+INSERT INTO `marker` VALUES (10446,1900,NULL,2,1901,61822,'pfffff','',65.25,-144.9375,0,0,0,'2019-07-26 03:50:28'); -+INSERT INTO `marker` VALUES (10447,1900,NULL,2,1901,61027,'Sidequest (flying)','schrim fliegen (ausdauer Mind. + 2-3)',201.5546875,-186.39453125,0,0,0,'2019-07-28 06:18:10'); -+INSERT INTO `marker` VALUES (10448,1900,NULL,2,1901,61474,'?','',158.92578125,-157.9595170021057,0,0,0,'2019-07-30 12:53:18'); -+INSERT INTO `marker` VALUES (10449,1900,NULL,2,1925,62458,'Keive Tala Shrine','',91.3828125,-188.90625,0,0,0,'2019-07-30 15:06:13'); -+INSERT INTO `marker` VALUES (10450,1900,NULL,2,1901,59949,'Talvez nao tenha pego','',121.3359375,-113.515625,0,1,0,'2019-07-30 18:40:19'); -+INSERT INTO `marker` VALUES (10451,1900,NULL,2,1904,62522,'Unlimited arrows','',117.67416381835938,-175.86224365234375,0,0,0,'2019-07-31 04:06:09'); -+INSERT INTO `marker` VALUES (10452,1900,NULL,2,1901,62522,'test','',117.40625,-175.84375,0,0,0,'2019-07-31 04:06:25'); -+INSERT INTO `marker` VALUES (10453,1900,NULL,2,1910,61555,'Amber','',107.86328125,-162.69921875,0,0,0,'2019-07-31 07:24:47'); -+INSERT INTO `marker` VALUES (10454,1900,NULL,2,1903,61555,'Traveller's Spear','',105.49609375,-158.953125,0,0,0,'2019-07-31 07:31:10'); -+INSERT INTO `marker` VALUES (10455,1900,NULL,2,1935,62448,'Un cheval à tout prix','',96.296875,-157.18359375,0,1,0,'2019-07-31 12:04:15'); -+INSERT INTO `marker` VALUES (10456,1900,NULL,2,1901,62356,'Korogu ','Il faut un bouclier rouiller pour faire celui là',117.84375,-114.84375,0,0,0,'2019-08-01 09:08:23'); -+INSERT INTO `marker` VALUES (10457,1900,NULL,2,1903,62509,'traveler's sword','',62.25,-148.875,0,1,0,'2019-08-01 18:32:43'); -+INSERT INTO `marker` VALUES (10458,1900,NULL,2,1901,62717,'Climbing Boots','',193.71875,-154.5625,0,0,0,'2019-08-01 18:58:59'); -+INSERT INTO `marker` VALUES (10459,1900,NULL,2,1930,62978,'FAROSH','dragon',126.40625,-169.109375,0,0,0,'2019-08-03 16:06:19'); -+INSERT INTO `marker` VALUES (10460,1900,NULL,2,1935,61589,'Zora Stone Monuments','',180.28125,-119.140625,0,1,0,'2019-08-04 21:11:42'); -+INSERT INTO `marker` VALUES (10461,1900,NULL,2,1935,61589,'Riverbed Reward','',141.05859375,-130.03125,0,0,0,'2019-08-05 19:42:04'); -+INSERT INTO `marker` VALUES (10462,1900,NULL,2,1916,63431,'Need Magnesis','',121.390625,-159.5390625,0,0,0,'2019-08-07 09:30:11'); -+INSERT INTO `marker` VALUES (10463,1900,NULL,2,1926,108,'Divine Beast Rudania','',167.3907470703125,-87.4935302734375,0,0,0,'2019-08-07 16:49:09'); -+INSERT INTO `marker` VALUES (10464,1900,NULL,2,1926,108,'Divine Beast Medoh','',71.407958984375,-99.737060546875,0,0,0,'2019-08-07 16:49:49'); -+INSERT INTO `marker` VALUES (10465,1900,NULL,2,1926,108,'Divine Beast Naboris','',83.25,-181.375,0,0,0,'2019-08-07 16:50:23'); -+INSERT INTO `marker` VALUES (10466,1900,NULL,2,1901,63378,'zora sword','',-76,-113.75,0,0,0,'2019-08-07 20:45:31'); -+INSERT INTO `marker` VALUES (10467,1900,NULL,2,1944,63493,'Majora's Mask','DLC EX Chest',120.97265625,-148.021484375,0,0,0,'2019-08-07 22:20:00'); -+INSERT INTO `marker` VALUES (10468,1900,NULL,2,1944,63493,'Phantom Armor','DLC EX Chest',124.08984375,-126.544921875,0,0,0,'2019-08-07 22:20:56'); -+INSERT INTO `marker` VALUES (10469,1900,NULL,2,1948,63606,'aaa','aaaa',108.1875,-139.75,0,0,0,'2019-08-08 22:10:57'); -+INSERT INTO `marker` VALUES (10470,1900,NULL,2,1902,63606,'a','a',159.25,-112.625,0,0,0,'2019-08-08 22:12:01'); -+INSERT INTO `marker` VALUES (10471,1900,NULL,2,1904,63322,'Normal Arrow Farming','A chest containing 10 arrows. Load, save, and the chest respawns containing another 10 arrows',204.8125,-185.84375,0,1,0,'2019-08-09 11:24:31'); -+INSERT INTO `marker` VALUES (10472,1900,NULL,2,1904,63322,'Bomb Arrow Farming','Put a fire, sleep until morning, and if it's raining, the boboklins will throw at you bomb arrows not ignited, so you can pick them up. WARNING: some bomb arrows actually ignite, so be careful.',180.921875,-71.3046875,0,1,0,'2019-08-09 11:27:36'); -+INSERT INTO `marker` VALUES (10473,1900,NULL,2,1916,63489,'Korok Seed','',179.09375,-138.3125,0,0,0,'2019-08-09 21:23:07'); -+INSERT INTO `marker` VALUES (10474,1900,NULL,2,1902,54500,'Phantom Helmet','',109.3515625,-147.21484375,0,0,0,'2019-08-10 00:30:33'); -+INSERT INTO `marker` VALUES (10475,1900,NULL,2,1903,63460,'Mandoble de fuego','',110.65625,-134.765625,0,0,0,'2019-08-10 17:18:36'); -+INSERT INTO `marker` VALUES (10476,1900,NULL,2,1903,63460,'Great Flameblade','',110.671875,-134.8125,0,0,0,'2019-08-10 17:19:26'); -+INSERT INTO `marker` VALUES (10477,1900,NULL,2,1916,64080,'Seed in cave','',69.26953125,-72.34765625,0,0,0,'2019-08-12 18:01:12'); -+INSERT INTO `marker` VALUES (10478,1900,NULL,2,1916,63578,'Korok Seed','',190.7265625,-174.4609375,0,0,0,'2019-08-13 20:04:52'); -+INSERT INTO `marker` VALUES (10479,1900,NULL,2,1902,54500,'Tingle's shirt','',117.36328125,-115.23828125,0,0,0,'2019-08-13 20:49:11'); -+INSERT INTO `marker` VALUES (10480,1900,NULL,2,1902,54500,'Phantom Armor','',124.125,-126.40625,0,0,0,'2019-08-13 21:21:48'); -+INSERT INTO `marker` VALUES (10481,1900,NULL,2,1935,63841,'Bloodmoon','',85.21484375,-131.5625,0,0,0,'2019-08-13 22:45:07'); -+INSERT INTO `marker` VALUES (10482,1900,NULL,2,1901,63841,'test','',87.875,-130.75,0,0,0,'2019-08-13 22:46:27'); -+INSERT INTO `marker` VALUES (10483,1900,NULL,2,1903,64340,'Forest bow','',160.484375,-130.578125,0,0,0,'2019-08-15 21:21:55'); -+INSERT INTO `marker` VALUES (10484,1900,NULL,2,1935,64446,'The Sheep Rustlers','',184.8203125,-160.7578125,0,1,0,'2019-08-16 01:43:46'); -+INSERT INTO `marker` VALUES (10485,1900,NULL,2,1936,64493,'Cracked Wall','Chest',158.80859375,-165.05859375,0,0,0,'2019-08-16 21:07:44'); -+INSERT INTO `marker` VALUES (10486,1900,NULL,2,1925,38785,'Gireom Shine','',90.6875,-106.25,0,1,0,'2019-08-17 21:36:35'); -+INSERT INTO `marker` VALUES (10487,1900,NULL,2,1920,64572,'Feu de camp','',105.4453125,-152.7734375,0,0,0,'2019-08-17 21:44:54'); -+INSERT INTO `marker` VALUES (10488,1900,NULL,2,1931,64572,'Bokoblin Camp','',107.93359375,-154.25390625,0,0,0,'2019-08-17 22:00:36'); -+INSERT INTO `marker` VALUES (10489,1900,NULL,2,1910,64572,'Amber','',107.875,-162.6875,0,0,0,'2019-08-17 22:46:47'); -+INSERT INTO `marker` VALUES (10490,1900,NULL,2,1925,64429,'Shrine','',52.28125,-186.890625,0,0,0,'2019-08-18 18:14:59'); -+INSERT INTO `marker` VALUES (10491,1900,NULL,2,1944,64903,'halberd DLC','',126.7890625,-165.27734375,0,0,0,'2019-08-19 12:02:43'); -+INSERT INTO `marker` VALUES (10492,1900,NULL,2,1925,38785,'Kamium shine','',161.53125,-77.6328125,0,1,0,'2019-08-19 15:43:30'); -+INSERT INTO `marker` VALUES (10493,1900,NULL,2,1941,38785,'Talus','',161.6640625,-77.7109375,0,1,0,'2019-08-19 15:44:09'); -+INSERT INTO `marker` VALUES (10494,1900,NULL,2,1916,38785,'Korok seed','',191.828125,-154.75,0,0,0,'2019-08-19 18:08:35'); -+INSERT INTO `marker` VALUES (10495,1900,NULL,2,1935,60468,'Riddles of Hyrules','',134.625,-93.1875,0,0,0,'2019-08-20 17:08:07'); -+INSERT INTO `marker` VALUES (10496,1900,NULL,2,1925,60468,'Lanno Kooh Shrine','Lanno Kooh's Blessing',86.875,-96,0,0,0,'2019-08-20 17:32:13'); -+INSERT INTO `marker` VALUES (10497,1900,NULL,2,1902,65010,'Zora Helm','',182.21875,-114.3125,0,0,0,'2019-08-21 04:37:44'); -+INSERT INTO `marker` VALUES (10498,1900,NULL,2,1935,64630,'The Sheep Rustlers','',184.6640625,-160.671875,0,0,0,'2019-08-21 15:54:39'); -+INSERT INTO `marker` VALUES (10499,1900,NULL,2,1925,38785,'Kritmoh Shine','',74.8125,-149,0,0,0,'2019-08-21 19:04:27'); -+INSERT INTO `marker` VALUES (10500,1900,NULL,2,1925,38785,'Tamri Shine','',51.0625,-161.65625,0,0,0,'2019-08-21 19:06:21'); -+INSERT INTO `marker` VALUES (10501,1900,NULL,2,1939,64340,'Ice Wizzrobe','',103.74609375,-186.3046875,0,0,0,'2019-08-23 18:42:34'); -+INSERT INTO `marker` VALUES (10502,1900,NULL,2,1901,63993,'duel','',46,-112.375,0,0,0,'2019-08-24 04:26:19'); -+INSERT INTO `marker` VALUES (10503,1900,NULL,2,1910,65479,'Courser Bee Honey','',111.36108303070068,-153.4569612145424,0,0,0,'2019-08-24 18:28:14'); -+INSERT INTO `marker` VALUES (10504,1900,NULL,2,1904,65479,'Arrows x 5','',113.73115026950836,-154.10881567001343,0,0,0,'2019-08-24 18:48:55'); -+INSERT INTO `marker` VALUES (10505,1900,NULL,2,1901,64167,'Blacksmith','',154.5,-88.80078125,0,0,0,'2019-08-24 21:25:30'); -+INSERT INTO `marker` VALUES (10506,1900,NULL,2,1901,64167,'Inn','',154.26953125,-90.14453125,0,0,0,'2019-08-24 21:28:16'); -+INSERT INTO `marker` VALUES (10507,1900,NULL,2,1901,64167,'Armor Shop','',153.703125,-90.33984375,0,0,0,'2019-08-24 21:29:18'); -+INSERT INTO `marker` VALUES (10508,1900,NULL,2,1901,64167,'General Store','',154.26171875,-89.5390625,0,0,0,'2019-08-24 21:29:46'); -+INSERT INTO `marker` VALUES (10509,1900,NULL,2,1936,65479,'Crack Wall','Need to bomb to access treasure inside',112.91804599761963,-164.67701256275177,0,0,0,'2019-08-24 22:04:50'); -+INSERT INTO `marker` VALUES (10510,1900,NULL,2,1931,65590,'Enemy Camp','',143.4296875,-149.40625,0,0,0,'2019-08-25 16:23:26'); -+INSERT INTO `marker` VALUES (10511,1900,NULL,2,1910,65479,'Mighty Carp','Spawning ground for a large group of carp just use a bomb and get about 5-10 in one go.',163.6796875,-149.3984375,0,0,0,'2019-08-25 23:01:20'); -+INSERT INTO `marker` VALUES (10512,1900,NULL,2,1910,65479,'Hylian Shroom','',151.56406497955322,-148.760766685009,0,0,0,'2019-08-25 23:25:06'); -+INSERT INTO `marker` VALUES (10513,1900,NULL,2,1910,65479,'Rushroom x 6','Found under the cliff',125.04978966712952,-152.9680411219597,0,0,0,'2019-08-26 20:49:06'); -+INSERT INTO `marker` VALUES (10514,1900,NULL,2,1901,66285,'Silverbow','',28.875,-120.625,0,0,0,'2019-09-01 12:55:07'); -+INSERT INTO `marker` VALUES (10515,1900,NULL,2,1901,66367,'START place','',115.8125,-155.5625,0,0,0,'2019-09-02 13:20:26'); -+INSERT INTO `marker` VALUES (10516,1900,NULL,2,1901,66421,'Farosh Spawner ','',155.7265625,-171.9375,0,0,0,'2019-09-03 15:06:24'); -+INSERT INTO `marker` VALUES (10517,1900,NULL,2,1925,66479,'Shrine of Resurrection','',110.65625,-157.1875,0,0,0,'2019-09-03 22:46:30'); -+INSERT INTO `marker` VALUES (10518,1900,NULL,2,1901,66479,'lol','',110.53125,-157.453125,0,1,0,'2019-09-03 22:47:16'); -+INSERT INTO `marker` VALUES (10519,1900,NULL,2,1901,66495,'DINRAAL FARMING','fire dragon',112.875,-84.25,0,0,0,'2019-09-04 21:14:28'); -+INSERT INTO `marker` VALUES (10520,1900,NULL,2,1901,65367,'8th Sister','',59.5703125,-136.2265625,0,0,0,'2019-09-04 23:19:03'); -+INSERT INTO `marker` VALUES (10521,1900,NULL,2,1926,62393,'Vah Rudania','',167.734375,-87.390625,0,0,0,'2019-09-05 03:24:50'); -+INSERT INTO `marker` VALUES (10522,1900,NULL,2,1901,62393,'Vah Medoh','',71.4375,-99.9375,0,0,0,'2019-09-05 03:27:32'); -+INSERT INTO `marker` VALUES (10523,1900,NULL,2,1902,64372,'phantom','',119.3046875,-137.2734375,0,0,0,'2019-09-05 14:36:12'); -+INSERT INTO `marker` VALUES (10524,1900,NULL,2,1943,65970,'cracked rocks','',86.03515625,-162.75,0,0,0,'2019-09-07 00:57:10'); -+INSERT INTO `marker` VALUES (10525,1900,NULL,2,1920,66838,'establo}','',105.890625,-150.453125,0,0,0,'2019-09-07 19:22:22'); -+INSERT INTO `marker` VALUES (10526,1900,NULL,2,1920,66838,'establo}','',105.890625,-150.453125,0,0,0,'2019-09-07 19:22:22'); -+INSERT INTO `marker` VALUES (10527,1900,NULL,2,1938,66838,'establo}','primero',105.328125,-148.234375,0,0,0,'2019-09-07 19:24:53'); -+INSERT INTO `marker` VALUES (10528,1900,NULL,2,1901,63915,'Ruins','',106.953125,-131.52734375,0,0,0,'2019-09-11 09:24:43'); -+INSERT INTO `marker` VALUES (10529,1900,NULL,2,1925,64572,'Takama'Simiri Shrine','',51.4765625,-161.7109375,0,0,0,'2019-09-14 19:36:28'); -+INSERT INTO `marker` VALUES (10530,1900,NULL,2,1936,67259,'cracked wall','',114.359375,-158.171875,0,1,0,'2019-09-15 11:17:19'); -+INSERT INTO `marker` VALUES (10531,1900,NULL,2,1916,47121,'Korok Seed','',197.32942700386047,-78.27300351858139,0,0,0,'2019-09-16 15:23:04'); -+INSERT INTO `marker` VALUES (10532,1900,NULL,2,1916,47121,'Korok Seed','',196.6614589691162,-99.32465267181396,0,0,0,'2019-09-16 17:19:56'); -+INSERT INTO `marker` VALUES (10533,1900,NULL,2,1901,67564,'????','',97.53125,-133.859375,0,0,0,'2019-09-17 01:52:05'); -+INSERT INTO `marker` VALUES (10534,1900,NULL,2,1901,67564,'????','',97.69140625,-133.875,0,0,0,'2019-09-17 01:52:30'); -+INSERT INTO `marker` VALUES (10535,1900,NULL,2,1910,67415,'Frost Arrows','',180.0390625,-120.4140625,0,0,0,'2019-09-17 22:17:23'); -+INSERT INTO `marker` VALUES (10536,1900,NULL,2,1901,67657,' White stallion','',111.3739013671875,-160.3545331954956,0,0,0,'2019-09-18 16:10:00'); -+INSERT INTO `marker` VALUES (10537,1900,NULL,2,1901,67678,'PUENTE DE INOGO','',164.6015625,-124.0703125,0,0,0,'2019-09-24 02:58:38'); -+INSERT INTO `marker` VALUES (10538,1900,NULL,2,1931,68111,'Sah Dahaj Camp','',169.5,-102.703125,0,0,0,'2019-09-25 02:28:52'); -+INSERT INTO `marker` VALUES (10539,1900,NULL,2,1901,68351,'mi casa','30 de madera y 3000 rupias',179.90625,-163.9375,0,0,0,'2019-09-26 03:36:01'); -+INSERT INTO `marker` VALUES (10540,1900,NULL,2,1901,68351,'no la encuentro','',158.609375,-144.5859375,0,0,0,'2019-09-27 21:32:15'); -+INSERT INTO `marker` VALUES (10541,1900,NULL,2,1901,68351,'no la encuentro','no la encuentro',158.51171875,-144.60546875,0,0,0,'2019-09-27 21:33:16'); -+INSERT INTO `marker` VALUES (10542,1900,NULL,2,1901,68564,'Horn','',156,-174.4140625,0,0,0,'2019-09-28 18:44:49'); -+INSERT INTO `marker` VALUES (10543,1900,NULL,2,1901,67518,'test','',121.625,-155.4375,0,0,0,'2019-09-29 04:57:29'); -+INSERT INTO `marker` VALUES (10544,1900,NULL,2,1926,68891,'Divine Beast Vah Medoh','',71.5062484741211,-99.73124885559082,0,0,0,'2019-10-01 03:41:01'); -+INSERT INTO `marker` VALUES (10545,1900,NULL,2,1903,69068,'Iron Sledgehammer','',90.125,-71.1875,0,0,0,'2019-10-03 04:26:59'); -+INSERT INTO `marker` VALUES (10546,2000,NULL,2,1956,1,'Piece of Heart','',60.6875,-158.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10548,2000,NULL,2,1956,1,'Piece of Heart','',61.46875,-156.219,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10549,2000,NULL,2,1956,1,'Piece of Heart','',59.1875,-144.188,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10550,2000,NULL,2,1956,1,'Piece of Heart','',26.625,-135.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10551,2000,NULL,2,1956,1,'Piece of Heart','',24.25,-135.688,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10552,2000,NULL,2,1956,1,'Piece of Heart','',13.6875,-153.813,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10553,2000,NULL,2,1956,1,'Piece of Heart','',191.875,-166.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10554,2000,NULL,2,1956,1,'Piece of Heart','',219.25,-165.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10555,2000,NULL,2,1956,1,'Piece of Heart','',241.25,-97,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10556,2000,NULL,2,1956,1,'Piece of Heart','',198.75,-113.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10557,2000,NULL,2,1956,1,'Piece of Heart','',230.5,-92,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10558,2000,NULL,2,1956,1,'Piece of Heart','',145,-133.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10559,2000,NULL,2,1956,1,'Piece of Heart','',167.125,-136.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10560,2000,NULL,2,1956,1,'Piece of Heart','',155.25,-191.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10561,2000,NULL,2,1956,1,'Piece of Heart','',154.125,-186.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10562,2000,NULL,2,1956,1,'Piece of Heart','',121.875,-163.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10563,2000,NULL,2,1956,1,'Piece of Heart','',173.25,-155.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10564,2000,NULL,2,1956,1,'Piece of Heart','',47.125,-118.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10565,2000,NULL,2,1956,1,'Piece of Heart','',41.5,-104.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10566,2000,NULL,2,1956,1,'Piece of Heart','',120.75,-104.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10567,2000,NULL,2,1956,1,'Piece of Heart','',74,-107.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10568,2000,NULL,2,1956,1,'Piece of Heart','',12.875,-67.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10569,2000,NULL,2,1956,1,'Piece of Heart','',32.5,-85.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10570,2000,NULL,2,1956,1,'Piece of Heart','',118.625,-95,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10571,2000,NULL,2,1956,1,'Piece of Heart','',122,-95.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10572,2000,NULL,2,1956,1,'Piece of Heart','',118.875,-73.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10573,2000,NULL,2,1956,1,'Piece of Heart','',108.125,-127.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10574,2000,NULL,2,1956,1,'Piece of Heart','',229.625,-166.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10575,2000,NULL,2,1956,1,'Piece of Heart','',81.625,-139.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10576,2000,NULL,2,1956,1,'Piece of Heart','',118.875,-80.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10577,2000,NULL,2,1956,1,'Piece of Heart','',101.125,-137.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10578,2000,NULL,2,1956,1,'Piece of Heart','',236.375,-137.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10579,2000,NULL,2,1956,1,'Heart Container','',120.5,-96.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10580,2000,NULL,2,1952,1,'Yoshi Doll','',59.625,-158.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10581,2000,NULL,2,1952,1,'Ribbon','',45.5,-133.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10582,2000,NULL,2,1952,1,'Dog Food','',30,-151,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10583,2000,NULL,2,1952,1,'Bananas','',59.625,-181.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10584,2000,NULL,2,1952,1,'Stick','',182.625,-134.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10585,2000,NULL,2,1952,1,'Honeycomb','',121.125,-137.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10586,2000,NULL,2,1952,1,'Pineapple','',214.875,-172.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10587,2000,NULL,2,1952,1,'Hibiscus','',154.5,-79.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10588,2000,NULL,2,1952,1,'Letter','',210.375,-166.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10589,2000,NULL,2,1952,1,'Broom','',16.75,-95.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10590,2000,NULL,2,1952,1,'Fishing Hook','',31.25,-160,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10591,2000,NULL,2,1952,1,'Necklace','',170.375,-183.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10592,2000,NULL,2,1952,1,'Scale','',152.625,-171,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10593,2000,NULL,2,1952,1,'Magnifying Lens','',154.25,-182,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10594,2000,NULL,2,1953,1,'Raft Rapids','',241.375,-95.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10595,2000,NULL,2,1953,1,'Trendy Game','',60.25,-160,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10596,2000,NULL,2,1953,1,'Fishing','',31,-136.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10597,2000,NULL,2,1958,1,'Bottle','',23.875,-137,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10598,2000,NULL,2,1958,1,'Bottle','',118.5,-97.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10599,2000,NULL,2,1958,1,'Bottle','',71.125,-123.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10600,2000,NULL,2,1951,1,'Cracked Wall','',67.875,-190.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10601,2000,NULL,2,1951,1,'Cracked Wall','',219.25,-165.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10602,2000,NULL,2,1951,1,'Cracked Wall','',212.5,-137.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10603,2000,NULL,2,1951,1,'Cracked Wall','',117.5,-135,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10604,2000,NULL,2,1951,1,'Cracked Wall','',100.875,-137.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10605,2000,NULL,2,1951,1,'Cracked Wall','',60.125,-80,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10606,2000,NULL,2,1951,1,'Cracked Wall','',243.625,-83.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10607,2000,NULL,2,1968,1,'Lanmolas','',229.625,-167.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10608,2000,NULL,2,1968,1,'Armos Knight','',199.625,-152.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10609,2000,NULL,2,1968,1,'Turtle Rock','',13,-79.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10610,2000,NULL,2,1966,1,'Tail Cave','',61.5,-173.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10611,2000,NULL,2,1966,1,'Bottle Grotto','',72.5,-90.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10612,2000,NULL,2,1966,1,'Key Cavern','',92.625,-158.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10613,2000,NULL,2,1966,1,'Kanalet Castle','',153.125,-126,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10614,2000,NULL,2,1966,1,'Angler's Tunnel','',182.25,-91.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10615,2000,NULL,2,1966,1,'Catfish's Maw','',153,-176.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10616,2000,NULL,2,1966,1,'North Face Shrine','',196.5,-137.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10617,2000,NULL,2,1966,1,'Eagle's Tower','',230.625,-73.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10618,2000,NULL,2,1966,1,'Turtle Rock','',12.75,-75.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10619,2000,NULL,2,1966,1,'Color Dungeon','',125.375,-125.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10620,2000,NULL,2,1966,1,'Chamber Dungeon','',120.5,-99.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10621,2000,NULL,2,1966,1,'Wind Fish's Egg','',106.6875,-61.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10622,2000,NULL,2,1964,1,'Papahl, Mamasha, and the Quadruplet's House','',46.375,-133.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10623,2000,NULL,2,1964,1,'Marin and Tarin's House','',44.5,-151.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10624,2000,NULL,2,1964,1,'Madam MeowMeow's House','',26.75,-150.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10625,2000,NULL,2,1964,1,'Grandpa Ulrira and Grandma Yahoo's House','',27.75,-157.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10626,2000,NULL,2,1964,1,'Sales House O' Bananas','',60,-181.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10627,2000,NULL,2,1964,1,'Richard's Villa','',104.875,-174.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10628,2000,NULL,2,1964,1,'Ghost's House','',108.375,-187.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10629,2000,NULL,2,1964,1,'Chef Bear's House','',215,-173,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10630,2000,NULL,2,1964,1,'Christine's House','',210.375,-167.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10631,2000,NULL,2,1964,1,'Mr. Write's House','',16.625,-97.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10632,2000,NULL,2,1964,1,'Hen House','',167,-68,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10633,2000,NULL,2,1965,1,'Witch's Hut','',89.625,-117.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10634,2000,NULL,2,1965,1,'Mabe Village Shop','',58.75,-145.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10635,2000,NULL,2,1965,1,'Crazy Tracy's Health Spa','',95.75,-104.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10645,2000,NULL,2,1957,1,'Secret Seashells','',83.375,-194.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10646,2000,NULL,2,1957,1,'Secret Seashells','',109.25,-189.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10647,2000,NULL,2,1957,1,'Secret Seashells','',20.5,-186.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10648,2000,NULL,2,1957,1,'Secret Seashells','',42.375,-176.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10649,2000,NULL,2,1957,1,'Secret Seashells','',60,-172.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10650,2000,NULL,2,1957,1,'Secret Seashells','',30.5,-151.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10651,2000,NULL,2,1957,1,'Secret Seashells','',61.5,-151.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10652,2000,NULL,2,1957,1,'Secret Seashells','',59.5,-157.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10653,2000,NULL,2,1957,1,'Secret Seashells','',61.875,-158.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10654,2000,NULL,2,1957,1,'Secret Seashells','',27.25,-136.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10655,2000,NULL,2,1957,1,'Secret Seashells','',26.375,-134.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10656,2000,NULL,2,1957,1,'Secret Seashells','',43.125,-114.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10657,2000,NULL,2,1957,1,'Secret Seashells','',12.625,-104.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10658,2000,NULL,2,1957,1,'Secret Seashells','',77.25,-128.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10659,2000,NULL,2,1957,1,'Secret Seashells','',103.5,-174.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10660,2000,NULL,2,1957,1,'Secret Seashells','',148.25,-185.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10661,2000,NULL,2,1957,1,'Secret Seashells','',136.125,-190.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10662,2000,NULL,2,1957,1,'Secret Seashells','',135,-154,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10663,2000,NULL,2,1957,1,'Secret Seashells','',91,-151.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10664,2000,NULL,2,1957,1,'Secret Seashells','',77.875,-151.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10665,2000,NULL,2,1957,1,'Secret Seashells','',108.125,-152.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10666,2000,NULL,2,1957,1,'Secret Seashells','',133.625,-135.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10667,2000,NULL,2,1957,1,'Secret Seashells','',137.375,-105.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10668,2000,NULL,2,1957,1,'Secret Seashells','',246,-189.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10669,2000,NULL,2,1957,1,'Secret Seashells','',219.625,-190.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10670,2000,NULL,2,1957,1,'Secret Seashells','',216.125,-166.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10671,2000,NULL,2,1957,1,'Secret Seashells','',210.75,-167.625,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10672,2000,NULL,2,1957,1,'Secret Seashells','',196.5,-122.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10673,2000,NULL,2,1957,1,'Secret Seashells','',207.5,-94.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10674,2000,NULL,2,1957,1,'Secret Seashells','',240.375,-97.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10675,2000,NULL,2,1957,1,'Secret Seashells','',27,-129.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10676,2000,NULL,2,1957,1,'Secret Seashells','',32.125,-93.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10677,2000,NULL,2,1957,1,'Secret Seashells','',124.375,-111.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10678,2000,NULL,2,1957,1,'Secret Seashells','',121.75,-145.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10679,2000,NULL,2,1957,1,'Secret Seashells','',151.375,-161.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10680,2000,NULL,2,1957,1,'Secret Seashells','',182.25,-139.375,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10681,2000,NULL,2,1957,1,'Secret Seashells','',165.625,-175.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10682,2000,NULL,2,1957,1,'Secret Seashells','',242.75,-167.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10683,2000,NULL,2,1957,1,'Secret Seashells','',91.125,-90,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10684,2000,NULL,2,1957,1,'Secret Seashells','',227.125,-117.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10685,2000,NULL,2,1957,1,'Secret Seashells','',227.3125,-154.5,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10686,2000,NULL,2,1957,1,'Secret Seashells','',239.875,-141.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10687,2000,NULL,2,1957,1,'Secret Seashells','',201,-85.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10688,2000,NULL,2,1957,1,'Secret Seashells','',203.75,-71.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10689,2000,NULL,2,1957,1,'Secret Seashells','',158.125,-74.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10690,2000,NULL,2,1957,1,'Secret Seashells','',214.75,-81.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10691,2000,NULL,2,1957,1,'Secret Seashells','',228.25,-72,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10692,2000,NULL,2,1957,1,'Secret Seashells','',92.75,-73.25,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10693,2000,NULL,2,1957,1,'Secret Seashells','',47.875,-77.75,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10694,2000,NULL,2,1957,1,'Secret Seashells','',122,-97.125,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10695,2000,NULL,2,1969,1,'Fairy Fountain','',59.67,-113.875,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10696,2000,NULL,2,1969,1,'Fairy Fountain','',117.54,-132.95,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (10697,2000,NULL,2,1969,1,'Fairy Fountain','',212.5,-136,0,0,1,'2019-09-15 22:24:54'); -+INSERT INTO `marker` VALUES (11000,1900,NULL,2,1944,52289,'knight's halberd','',118.328125,-86.921875,0,0,0,'2019-10-05 13:41:35'); -+INSERT INTO `marker` VALUES (11003,1901,NULL,2,1925,67560,'Takama Shiri Shrine','',51.52734375,-161.71484375,0,1,0,'2019-10-07 18:11:27'); -+INSERT INTO `marker` VALUES (11004,1901,NULL,2,1925,67560,'Takama Shiri Shrine','DLC 2 / EX Champion Urbosa's Song',51.51953125,-161.65625,0,1,0,'2019-10-07 18:17:12'); -+INSERT INTO `marker` VALUES (11005,1901,NULL,2,1926,69145,'Divine Beast Vah Rudania','',167.5390625,-87.1171875,0,1,0,'2019-10-08 00:50:37'); -+INSERT INTO `marker` VALUES (11006,1901,NULL,2,1916,69806,'no','no',136.62225341796875,-183.97958374023438,0,1,0,'2019-10-09 17:10:52'); -+INSERT INTO `marker` VALUES (11007,1901,NULL,2,1931,68177,'Enemy Base','Bokoblin Scouts and Lizalfos\r\nChest: Golden Bow',53.75,-149.34375,0,0,0,'2019-10-09 19:09:47'); -+INSERT INTO `marker` VALUES (11008,1901,NULL,2,1901,68895,'asd','asd',46.89534365646193,-102.52071633448497,0,0,0,'2019-10-09 19:15:40'); -+INSERT INTO `marker` VALUES (11009,1901,NULL,2,1901,57316,'korok','',68.03124809265137,-95.43221005437252,0,0,0,'2019-10-10 05:19:15'); -+INSERT INTO `marker` VALUES (11010,1901,NULL,2,1901,69888,'part 1','',116.25,-158.40625,0,0,0,'2019-10-10 05:58:29'); -+INSERT INTO `marker` VALUES (11011,1901,NULL,2,1904,69738,'golden bow','',52.25,-155.75,0,0,0,'2019-10-10 06:46:39'); -+INSERT INTO `marker` VALUES (11012,1901,NULL,2,1936,69517,'Cracked Wall','',164.10459899902344,-147.48040771484375,0,0,0,'2019-10-10 18:02:38'); -+INSERT INTO `marker` VALUES (11013,1901,NULL,2,1921,68573,'m','',56.640625,-180.90625,0,0,0,'2019-10-11 12:53:39'); -+INSERT INTO `marker` VALUES (11014,1900,NULL,2,1901,69200,'Boat','',71.4375,-109.1796875,0,0,0,'2019-10-12 18:06:35'); -+INSERT INTO `marker` VALUES (11015,2006,NULL,2,1950,70248,'Facade','Boss #6',138.4166717529297,-121.12939658274352,0,0,0,'2019-10-13 01:01:22'); -+INSERT INTO `marker` VALUES (11016,2006,NULL,2,1962,70248,'Face Shrine Nightmare Key','The Key to get to Facade's room in Face Shrine.',178.1666717529297,-103.1321672017886,0,0,0,'2019-10-13 01:07:38'); -+INSERT INTO `marker` VALUES (11017,1901,NULL,2,1901,70111,'Shrine of Resurection','',111.0234375,-157.546875,0,0,0,'2019-10-13 09:42:45'); -+INSERT INTO `marker` VALUES (11018,1901,NULL,2,1901,69480,'Farosh','',59.18625916013648,-90.9987899594777,0,0,0,'2019-10-14 04:42:44'); -+INSERT INTO `marker` VALUES (11019,1901,NULL,2,1901,31439,'??','????',155.3828125,-174.640625,0,0,0,'2019-10-14 09:41:15'); -+INSERT INTO `marker` VALUES (11020,1901,NULL,2,1930,68351,'DRAGON','',155.4609375,-182.1171875,0,0,0,'2019-10-14 12:05:56'); -+INSERT INTO `marker` VALUES (11021,1901,NULL,2,1926,70548,'Divine Beast Vah Ruta','completed Vah Ruta Location',174.65625,-131.84375,0,1,0,'2019-10-14 14:43:34'); -+INSERT INTO `marker` VALUES (11022,1901,NULL,2,1916,70561,'Korok Pinwheel','Shoot balloons',131.3359375,-182.64453125,0,0,0,'2019-10-16 16:32:48'); -+INSERT INTO `marker` VALUES (11023,1901,NULL,2,1901,71042,'I’m here','Aquí ',183.91796875,-121.9453125,0,0,0,'2019-10-19 09:09:54'); -+INSERT INTO `marker` VALUES (11024,1901,NULL,2,1901,28280,'taloh','',43.25,-84.56250190734863,0,0,0,'2019-10-21 22:36:37'); -+INSERT INTO `marker` VALUES (11025,1901,NULL,2,1901,70176,'there was a korok seed','',115.50000381469727,-99.54579696628424,0,0,0,'2019-10-23 11:22:01'); -+INSERT INTO `marker` VALUES (11026,1901,NULL,2,1935,71600,'Relais de la rivière','',133.484375,-145.20703125,0,0,0,'2019-10-23 17:30:05'); -+INSERT INTO `marker` VALUES (11027,1901,NULL,2,1926,70487,'Dive Beast Vah Medo','',71.125,-97.875,0,0,0,'2019-10-24 03:35:57'); -+INSERT INTO `marker` VALUES (11028,1901,NULL,2,1931,71324,'Camp','',118.36979103088379,-158.05729180574417,0,0,0,'2019-10-24 14:37:08'); -+INSERT INTO `marker` VALUES (11029,1901,NULL,2,1943,71588,'Rubis','',169.25,-165.703125,0,0,0,'2019-10-24 14:58:57'); -+INSERT INTO `marker` VALUES (11030,1901,NULL,2,1931,71324,'CAMP','',114.34635543823242,-162.3333335518837,0,0,0,'2019-10-24 17:50:09'); -+INSERT INTO `marker` VALUES (11031,1901,NULL,2,1925,71784,'GO HERE','',175.21875,-101.5625,0,0,0,'2019-10-25 12:51:52'); -+INSERT INTO `marker` VALUES (11032,1901,NULL,2,1926,71784,'Divine Beast Vah Rudania','Daruks Divine Beast',167.8125,-87.625,0,0,0,'2019-10-25 13:01:41'); -+INSERT INTO `marker` VALUES (11033,1901,NULL,2,1926,71784,'Divine Beast Vah Medoh','Ravelis Divine Beast',71.546875,-98.90625,0,0,0,'2019-10-25 13:02:49'); -+INSERT INTO `marker` VALUES (11034,1901,NULL,2,1926,71784,'Divine Beast Vah Naboris','Urbosas Divine Beast',95.15625,-169.34375,0,0,0,'2019-10-25 13:03:52'); -+INSERT INTO `marker` VALUES (11035,1901,NULL,2,1935,71784,'An Ice Guy','',77.359375,-168.22265625,0,0,0,'2019-10-25 15:15:14'); -+INSERT INTO `marker` VALUES (11036,1901,NULL,2,1916,71786,'Korok Seed near the bridge','',153.875,-159.90234375,0,0,0,'2019-10-25 15:57:17'); -+INSERT INTO `marker` VALUES (11037,1901,NULL,2,1901,72022,'statue','',55.59375,-142.59375,0,0,0,'2019-10-27 14:25:39'); -+INSERT INTO `marker` VALUES (11038,1901,NULL,2,1901,71370,'4','',31.25,-104,0,0,0,'2019-10-28 20:31:29'); -+INSERT INTO `marker` VALUES (11039,1901,NULL,2,1901,72231,'test','test',117.328125,-159.078125,0,0,0,'2019-10-29 06:20:51'); -+INSERT INTO `marker` VALUES (11040,1901,NULL,2,1901,72231,'xxxxxxxx','xxxxxxxxxx',109.92547607421875,-153.07366943359375,0,0,0,'2019-10-29 07:16:47'); -+INSERT INTO `marker` VALUES (11041,1901,NULL,2,1931,70972,'Bokoblin Camp','',173.96875,-160.046875,0,0,0,'2019-10-30 13:32:01'); -+INSERT INTO `marker` VALUES (11042,1901,NULL,2,1926,54654,' ','',168.125,-88.25,0,0,0,'2019-10-31 00:03:21'); -+INSERT INTO `marker` VALUES (11043,1901,NULL,2,1926,54654,' ','',71.5625,-100.3125,0,0,0,'2019-10-31 00:03:58'); -+INSERT INTO `marker` VALUES (11044,1901,NULL,2,1926,54654,' ','',95.125,-169.375,0,0,0,'2019-10-31 00:04:17'); -+INSERT INTO `marker` VALUES (11045,1901,NULL,2,1901,72389,'Chest/??????','phantom',124.26171875,-126.64453125,0,1,0,'2019-10-31 12:14:02'); -+INSERT INTO `marker` VALUES (11046,1901,NULL,2,1932,72389,'guardian','',92.8984375,-134.09375,0,0,0,'2019-10-31 12:15:25'); -+INSERT INTO `marker` VALUES (11047,1901,NULL,2,1901,72402,'EX Chest','',120.67578125,-159.390625,0,0,0,'2019-10-31 16:26:58'); -+INSERT INTO `marker` VALUES (11048,1901,NULL,2,1901,72447,'Shrine Of Ressurection','',110.8359375,-157.4765625,0,0,0,'2019-11-01 03:35:34'); -+INSERT INTO `marker` VALUES (11049,1901,NULL,2,1936,72511,'Cracked Wall','',95.140625,-138.78125,0,0,0,'2019-11-01 20:58:55'); -+INSERT INTO `marker` VALUES (11050,1901,NULL,2,1931,45393,'Enemy Camp','',118.2109375,-158.0390625,0,0,0,'2019-11-02 00:24:29'); -+INSERT INTO `marker` VALUES (11051,1901,NULL,2,1931,45393,'Enemy Camp','',117.50390625,-156.32421875,0,0,0,'2019-11-02 00:25:06'); -+INSERT INTO `marker` VALUES (11052,1901,NULL,2,1901,72372,'lynel','',187.21875,-75.40625,0,0,0,'2019-11-02 04:49:20'); -+INSERT INTO `marker` VALUES (11053,1901,NULL,2,1925,72615,'keive tala','',89.24869155883789,-187.22418156097174,0,0,0,'2019-11-02 19:55:41'); -+INSERT INTO `marker` VALUES (11054,1901,NULL,2,1934,72477,'17','',159.05078125,-157.97265625,0,0,0,'2019-11-02 23:10:15'); -+INSERT INTO `marker` VALUES (11055,1901,NULL,2,1901,72645,'noix','',134.28125,-161.671875,0,0,0,'2019-11-02 23:30:45'); -+INSERT INTO `marker` VALUES (11056,2000,NULL,2,1969,56231,'Fairy Fountain','Inside the cave protected by a cracked wall.',243.63750457763672,-83.95736269339838,0,0,0,'2019-11-03 01:03:38'); -+INSERT INTO `marker` VALUES (11057,1901,NULL,2,1901,72627,'?','',99.9375,-142.625,0,0,0,'2019-11-03 07:01:50'); -+INSERT INTO `marker` VALUES (11058,1901,NULL,2,1926,49922,'Vah Rudania','',167.5,-87.75,0,1,0,'2019-11-03 07:17:54'); -+INSERT INTO `marker` VALUES (11059,1901,NULL,2,1910,43405,'Flint','was hidden, had to search',131.99652099609375,-158.1366424560547,0,0,0,'2019-11-03 20:37:13'); -+INSERT INTO `marker` VALUES (11060,2000,NULL,2,1966,60533,'Entered into the dungeon ','Pick up the stone',47.8125,-113.4375,0,0,0,'2019-11-05 11:41:38'); -+INSERT INTO `marker` VALUES (11061,2000,NULL,2,1962,60533,'Slime Key','',109.75,-167.375,0,0,0,'2019-11-05 12:38:49'); -+INSERT INTO `marker` VALUES (11062,1901,NULL,2,1935,72985,'Zora Stone Monuments','Talk to Jiahto. Find all 10 Stone Monuments',180.234375,-119.28125,0,0,0,'2019-11-06 19:51:04'); -+INSERT INTO `marker` VALUES (11063,1901,NULL,2,1901,73086,'Dragon Shrine','',141.5,-164.4453125,0,0,0,'2019-11-07 05:08:17'); -+INSERT INTO `marker` VALUES (11064,1901,NULL,2,1901,72699,'Ver','Necesita escama de dragon',141.09375,-164.28125,0,0,0,'2019-11-08 00:53:18'); -+INSERT INTO `marker` VALUES (11065,1901,NULL,2,1903,73012,'TEST','',96.578125,-87.03125,0,0,0,'2019-11-09 06:56:48'); -+INSERT INTO `marker` VALUES (11066,1901,NULL,2,1901,73410,'Minor','Description',189.3046875,-107.7890625,0,0,0,'2019-11-10 06:20:03'); -+INSERT INTO `marker` VALUES (11067,1901,NULL,2,1901,73410,'Minor','Description',189.8125,-107.875,0,0,0,'2019-11-10 06:21:05'); -+INSERT INTO `marker` VALUES (11068,1901,NULL,2,1901,72601,'LInks house','',179.890625,-163.828125,0,0,0,'2019-11-10 14:40:24'); -+INSERT INTO `marker` VALUES (11069,1901,NULL,2,1925,72389,'shrine','',145.27734375,-114.55078125,0,0,0,'2019-11-10 17:03:05'); -+INSERT INTO `marker` VALUES (11070,1901,NULL,2,1901,73493,'Sacrario della Rinascita','',110.73263549804688,-157.3443603515625,0,0,0,'2019-11-10 20:09:15'); -+INSERT INTO `marker` VALUES (11071,1901,NULL,2,1916,73546,'oops','',109.65625,-183.9296875,0,0,0,'2019-11-11 08:51:11'); -+INSERT INTO `marker` VALUES (11072,1901,NULL,2,1926,73386,'Divine Beast Vah Medoh','',71,-101,0,0,0,'2019-11-12 03:22:45'); -+INSERT INTO `marker` VALUES (11073,1901,NULL,2,1926,73386,'Divine Beast Vah Rudania','',167.5,-90.5,0,0,0,'2019-11-12 03:23:27'); -+INSERT INTO `marker` VALUES (11074,1901,NULL,2,1926,73386,'Divine Beast Vah Naboris','',57.5,-173,0,0,0,'2019-11-12 03:24:17'); -+INSERT INTO `marker` VALUES (11075,2000,NULL,2,1969,60533,'Fairy Fountains','',243.375,-83.875,0,0,0,'2019-11-13 08:02:33'); -+INSERT INTO `marker` VALUES (11076,1901,NULL,2,1910,73379,'Dynamic loaded Guardian Scrap','1.6 Item farm spot',106.421875,-185.4765625,0,0,0,'2019-11-13 22:29:40'); -+INSERT INTO `marker` VALUES (11077,1901,NULL,2,1926,73790,'Vah'Medo','',71.34375,-100,0,0,0,'2019-11-14 11:25:46'); -+INSERT INTO `marker` VALUES (11078,1901,NULL,2,1901,73849,'RT2472','',166.42578125,-86.1484375,0,0,0,'2019-11-14 12:49:15'); -+INSERT INTO `marker` VALUES (11079,1901,NULL,2,1901,72713,'Divine Beast Vah Medoh','Divine Beast Vah Medoh',71.375,-99.96875,0,1,0,'2019-11-14 14:29:03'); -+INSERT INTO `marker` VALUES (11080,1901,NULL,2,1901,3857,'Fairys','',137.28125,-171.66980771097732,0,0,0,'2019-11-15 15:34:18'); -+INSERT INTO `marker` VALUES (11081,1901,NULL,2,1910,57658,'Red Rupie','Under a rock in the road.',95.20703125,-145.1171875,0,0,0,'2019-11-15 18:24:14'); -+INSERT INTO `marker` VALUES (11082,1901,NULL,2,1910,57658,'Amber','under rock next to unlit cookpit',96.09375,-132.69921875,0,0,0,'2019-11-15 21:25:04'); -+INSERT INTO `marker` VALUES (11083,1901,NULL,2,1939,73379,'Ice Wizzrobe','',73.75,-129.71875,0,0,0,'2019-11-16 05:00:32'); -+INSERT INTO `marker` VALUES (11084,1901,NULL,2,1944,32383,'Royal Halbeard','',119.02578115463257,-87.36091672639584,0,0,0,'2019-11-16 11:06:58'); -+INSERT INTO `marker` VALUES (11085,1901,NULL,2,1944,72651,'EX-Chest - Phantom Armor','Once at the ruins, check the middle ring of water along the Southwest side to use magnesis to pull the chest out.',124.18283417285726,-126.64048012158895,0,0,0,'2019-11-16 12:27:05'); -+INSERT INTO `marker` VALUES (11086,1901,NULL,2,1935,73797,'Good Sized Horse','',96.31640625,-157.2421875,0,1,0,'2019-11-16 23:35:44'); -+INSERT INTO `marker` VALUES (11087,1901,NULL,2,1926,74038,'Divine Beast Vah Naboris','',95,-169.125,0,0,0,'2019-11-17 01:02:35'); -+INSERT INTO `marker` VALUES (11088,1901,NULL,2,1901,74072,'Temple of Time','',115.109375,-158.21875,0,0,0,'2019-11-17 03:08:14'); -+INSERT INTO `marker` VALUES (11089,1901,NULL,2,1910,74072,'Bird Egg','',116.09375,-156.5859375,0,0,0,'2019-11-17 03:36:37'); -+INSERT INTO `marker` VALUES (11090,1901,NULL,2,1910,57658,'Opal','Under rock',85.234375,-134.734375,0,0,0,'2019-11-17 04:17:45'); -+INSERT INTO `marker` VALUES (11091,1901,NULL,2,1910,74072,'Acorn','',114.734375,-152.6796875,0,0,0,'2019-11-17 04:43:25'); -+INSERT INTO `marker` VALUES (11092,1901,NULL,2,1903,74072,'Boko Spear','',113.640625,-164.65625,0,0,0,'2019-11-17 20:50:43'); -+INSERT INTO `marker` VALUES (11093,1901,NULL,2,1903,74072,'Boko Club','',113.6171875,-164.6484375,0,0,0,'2019-11-17 20:51:24'); -+INSERT INTO `marker` VALUES (11094,1901,NULL,2,1910,74072,'Amber','',107.84375,-162.71875,0,0,0,'2019-11-17 21:59:10'); -+INSERT INTO `marker` VALUES (11095,1901,NULL,2,1902,74160,'Phantom Greaves','',120.08984375,-137.5,0,0,0,'2019-11-18 01:11:48'); -+INSERT INTO `marker` VALUES (11096,1901,NULL,2,1901,74072,'Camp Fire','',105.46484375,-152.76953125,0,0,0,'2019-11-18 04:20:04'); -+INSERT INTO `marker` VALUES (11097,1901,NULL,2,1931,74072,'Enemy Camp','',107.90625,-154.234375,0,0,0,'2019-11-18 04:31:35'); -+INSERT INTO `marker` VALUES (11098,1901,NULL,2,1905,74072,'Boko Shield','',107.87109375,-154.25,0,0,0,'2019-11-18 04:34:58'); -+INSERT INTO `marker` VALUES (11099,1901,NULL,2,1903,74072,'Boko Club','',107.88671875,-154.2421875,0,0,0,'2019-11-18 04:35:17'); -+INSERT INTO `marker` VALUES (11100,1901,NULL,2,1904,74072,'Boko Bow','',107.9453125,-154.20703125,0,0,0,'2019-11-18 04:36:15'); -+INSERT INTO `marker` VALUES (11101,1901,NULL,2,1931,74072,'Enemy Camp','',110.10546875,-155.58203125,0,0,0,'2019-11-18 04:45:24'); -+INSERT INTO `marker` VALUES (11102,1901,NULL,2,1903,74072,'Boko Club','',110.15234375,-155.5703125,0,0,0,'2019-11-18 04:45:45'); -+INSERT INTO `marker` VALUES (11103,1901,NULL,2,1905,74072,'Spiked Boko Shield','',105.33203125,-156,0,0,0,'2019-11-18 04:59:07'); -+INSERT INTO `marker` VALUES (11104,1901,NULL,2,1903,74072,'Soldier's Broadsword','',105.3125,-155.9609375,0,0,0,'2019-11-18 04:59:51'); -+INSERT INTO `marker` VALUES (11105,1901,NULL,2,1930,74072,'White Chuchu x2','',107.87109375,-156.6328125,0,0,0,'2019-11-18 05:07:59'); -+INSERT INTO `marker` VALUES (11106,1901,NULL,2,1930,74072,'White Chuchu x2','',109.140625,-156.9140625,0,0,0,'2019-11-18 05:09:05'); -+INSERT INTO `marker` VALUES (11107,1901,NULL,2,1901,74072,'Camp Fire','',109.421875,-157.3984375,0,0,0,'2019-11-18 05:10:40'); -+INSERT INTO `marker` VALUES (11108,1901,NULL,2,1901,74167,'Current Location','',155.73828125,-143.34375,0,0,0,'2019-11-18 14:54:48'); -+INSERT INTO `marker` VALUES (11109,1901,NULL,2,1901,74211,'Início jogo','Início jogo',117.694091796875,-154.384765625,0,0,0,'2019-11-18 22:40:49'); -+INSERT INTO `marker` VALUES (11110,1901,NULL,2,1901,73379,'Pondo's Lodge and Bowling','A nice little lodge with a cooking pot and one of the best spots for grinding Rupees',95.65625,-95.12109375,0,0,0,'2019-11-18 23:55:20'); -+INSERT INTO `marker` VALUES (11111,1901,NULL,2,1931,74160,'Enemy Camp','',171.8125,-163.05078125,0,0,0,'2019-11-19 20:22:47'); -+INSERT INTO `marker` VALUES (11112,1901,NULL,2,1935,73012,'a gift of nightshade ','',169.015625,-183.625,0,0,0,'2019-11-19 22:09:42'); -+INSERT INTO `marker` VALUES (11113,1901,NULL,2,1901,74298,'BA?LANGIÇ','',110.546875,-157.47265625,0,0,0,'2019-11-19 22:25:17'); -+INSERT INTO `marker` VALUES (11114,1901,NULL,2,1926,73012,'Divine Beast Vah Naboris','',94.96875,-169.21875,0,0,0,'2019-11-19 23:41:47'); -+INSERT INTO `marker` VALUES (11115,1901,NULL,2,1926,73012,'Divine Beast Vah Medoh','',71.5625,-99,0,0,0,'2019-11-19 23:42:32'); -+INSERT INTO `marker` VALUES (11116,1901,NULL,2,1926,73012,'Divine Beast Vah Rudania','',166.1875,-87.984375,0,0,0,'2019-11-19 23:43:23'); -+INSERT INTO `marker` VALUES (11117,1901,NULL,2,1901,73948,'Great flame blade','',153.1875,-71.0625,0,0,0,'2019-11-20 15:38:17'); -+INSERT INTO `marker` VALUES (11118,1901,NULL,2,1925,74482,'n','n',156.84375,-166.625,0,0,0,'2019-11-22 09:11:49'); -+INSERT INTO `marker` VALUES (11119,1901,NULL,2,1935,74551,'Mejora la tableta sheikan','',187.11135864257812,-161.20536714089562,0,0,0,'2019-11-23 06:26:07'); -+INSERT INTO `marker` VALUES (11120,1901,NULL,2,1902,74591,'Shields','Bokoblins carry n,16 shields. Easy hit. ',143.6328125,-149.7045201743898,0,0,0,'2019-11-23 18:11:41'); -+INSERT INTO `marker` VALUES (11121,1901,NULL,2,1901,73176,'asd','',110.91921967548237,-154.6835750402829,0,0,0,'2019-11-24 11:46:28'); -+INSERT INTO `marker` VALUES (11122,1901,NULL,2,1930,74611,'big bad dude','kill him\r\n\r\n',188.828125,-148.53125,0,1,0,'2019-11-24 23:53:22'); -+INSERT INTO `marker` VALUES (11123,1901,NULL,2,1902,74742,'Korok mask','mask of the first dlc, the mask shakes when you are close do korok seeds',139.3984375,-99.515625,0,0,0,'2019-11-25 02:22:08'); -+INSERT INTO `marker` VALUES (11124,1901,NULL,2,1910,74742,'a','a',139.40234375,-99.5078125,0,0,0,'2019-11-25 02:22:45'); -+INSERT INTO `marker` VALUES (11125,1901,NULL,2,1920,73379,'Akkala Ancient Tech Lab','Location of Robbie and Cherry (Robbie's Robot)',198.546875,-78.57421875,0,0,0,'2019-11-25 04:39:30'); -+INSERT INTO `marker` VALUES (11126,1901,NULL,2,1926,74772,'Divine Beast Vah Naboris','',84.859375,-186.359375,0,0,0,'2019-11-25 14:28:41'); -+INSERT INTO `marker` VALUES (11127,1901,NULL,2,1926,74772,'Divine Beast Vah Rudania','',167.63671875,-87.29296875,0,0,0,'2019-11-25 14:30:20'); -+INSERT INTO `marker` VALUES (11128,1901,NULL,2,1926,74772,'Divine Beast Vah Medoh','',71.4140625,-95.0546875,0,0,0,'2019-11-25 14:32:34'); -+INSERT INTO `marker` VALUES (11129,1901,NULL,2,1943,74072,'Silver Rupee (100)','',155.984375,-158.0078125,0,0,0,'2019-11-25 20:59:38'); -+INSERT INTO `marker` VALUES (11130,1901,NULL,2,1936,74591,'bombable wall','Contains flint, a treasure chest',114.46484375,-158.07366484494375,0,0,0,'2019-11-26 19:40:58'); -+INSERT INTO `marker` VALUES (11131,1901,NULL,2,1926,75055,'Divine Beast Vah Rudania','This is Daruk's Divine Beast, housing Fireblight Ganon. Completing it rewards you Daruk's Protection.',58.125,-112.5,0,0,0,'2019-11-28 17:22:55'); -+INSERT INTO `marker` VALUES (11132,1901,NULL,2,1916,38501,'lol','',133.25,-94.5,0,0,0,'2019-11-30 08:07:48'); -+INSERT INTO `marker` VALUES (11133,1901,NULL,2,1935,75084,'Sunken Treasure','',172.37109375,-182.01953125,0,0,0,'2019-11-30 16:36:35'); -+INSERT INTO `marker` VALUES (11134,1901,NULL,2,1926,75272,'Vah Medoh','The Devine Beast Vah Medoh',71.546875,-98.9296875,0,0,0,'2019-11-30 21:49:52'); -+INSERT INTO `marker` VALUES (11135,1901,NULL,2,1901,37819,'Hearty Durian','',149.13671875,-178.5390625,0,0,0,'2019-12-01 01:30:31'); -+INSERT INTO `marker` VALUES (11136,1901,NULL,2,1944,72699,'Casco fantasmal','aumenta sigilo',154.21875,-177.640625,0,0,0,'2019-12-01 12:25:43'); -+INSERT INTO `marker` VALUES (11137,1901,NULL,2,1902,75407,'Majora mask','EX Chest',120.9609375,-148.2265625,0,0,0,'2019-12-01 22:54:56'); -+INSERT INTO `marker` VALUES (11138,1901,NULL,2,1901,75439,'????','',115.6640625,-134.7109375,0,0,0,'2019-12-03 03:49:18'); -+INSERT INTO `marker` VALUES (11139,1901,NULL,2,1921,75548,'Rito Village','',61.125,-130,0,0,0,'2019-12-03 17:01:08'); -+INSERT INTO `marker` VALUES (11140,1901,NULL,2,1916,74589,'???ç','',166.7734375,-106.09375,0,0,0,'2019-12-05 11:03:05'); -+INSERT INTO `marker` VALUES (11141,1901,NULL,2,1901,74589,'asdf','',166.7265625,-105.921875,0,0,0,'2019-12-05 11:03:27'); -+INSERT INTO `marker` VALUES (11142,1901,NULL,2,1904,75864,'Bomb Arrows','',105.29296875,-159.68359375,0,0,0,'2019-12-07 02:55:14'); -+INSERT INTO `marker` VALUES (11143,1901,NULL,2,1910,75864,'Amber','In rock formation',107.87343788146973,-162.7140622138977,0,0,0,'2019-12-07 03:01:12'); -+INSERT INTO `marker` VALUES (11144,1901,NULL,2,1903,75916,'ms','',24.5,-86.25,0,0,0,'2019-12-07 23:16:07'); -+INSERT INTO `marker` VALUES (11145,1901,NULL,2,1934,51280,'Final Memory','',158.9617919921875,-158.053466796875,0,0,0,'2019-12-09 08:31:14'); -+INSERT INTO `marker` VALUES (11146,1901,NULL,2,1943,75407,'Royal Halberd','Royal Halberd',118.96875,-87.21875,0,0,0,'2019-12-09 17:18:33'); -+INSERT INTO `marker` VALUES (11147,1901,NULL,2,1902,76199,'?????','',-3.25,-92.2196038414042,0,0,0,'2019-12-09 17:49:07'); -+INSERT INTO `marker` VALUES (11148,1901,NULL,2,1901,76202,'Cheval blanc','',101.375,-141.1875,0,0,0,'2019-12-10 10:19:52'); -+INSERT INTO `marker` VALUES (11149,1901,NULL,2,1901,74757,'Good Weapon','',141.609375,-103.0078125,0,0,0,'2019-12-10 10:48:32'); -+INSERT INTO `marker` VALUES (11150,1901,NULL,2,1936,73669,'Cracked Stones','',61.4921875,-94.22265625,0,1,0,'2019-12-11 13:59:25'); -+INSERT INTO `marker` VALUES (11151,1901,NULL,2,1901,76519,'Possible Korok','',60.65625,-86.125,0,0,0,'2019-12-13 05:33:25'); -+INSERT INTO `marker` VALUES (11152,1901,NULL,2,1901,76526,'Akkala Ancient Tech Lab','',199.5625,-78.2578125,0,0,0,'2019-12-15 06:36:05'); -+INSERT INTO `marker` VALUES (11153,1901,NULL,2,1901,39009,'sadfgsdfgsdfghsfghsdfgh','',41.3125,-142.1875,0,0,0,'2019-12-15 20:17:10'); -+INSERT INTO `marker` VALUES (11154,1901,NULL,2,1916,76836,'Race to pond','',152.8046875,-116.8046875,0,0,0,'2019-12-15 23:51:35'); -+INSERT INTO `marker` VALUES (11155,1901,NULL,2,1901,76915,'Tori Village','for warm clothes',112.78125,-139.0625,0,0,0,'2019-12-16 23:23:44'); -+INSERT INTO `marker` VALUES (11156,1901,NULL,2,1944,77028,'Zant's Helmet','',148.125,-166.296875,0,1,0,'2019-12-17 21:56:08'); -+INSERT INTO `marker` VALUES (11157,1901,NULL,2,1946,77028,'Misko's EX Journal','',123.890625,-155.21875,0,0,0,'2019-12-17 22:01:08'); -+INSERT INTO `marker` VALUES (11158,1901,NULL,2,1946,77028,'Misko's EX Journal 2','',134.953125,-158.640625,0,0,0,'2019-12-17 22:01:33'); -+INSERT INTO `marker` VALUES (11159,1901,NULL,2,1946,74072,'Rumor Mill: Volume 5','Inside the Wetland Stable, on the table',141.875,-130.734375,0,0,0,'2019-12-18 07:14:42'); -+INSERT INTO `marker` VALUES (11160,1901,NULL,2,1925,77093,'Difficult - Not done','',185,-179.375,0,0,0,'2019-12-18 12:40:42'); -+INSERT INTO `marker` VALUES (11161,1901,NULL,2,1936,76836,'Korok seed behind it','',167.8515625,-71.734375,0,0,0,'2019-12-19 07:27:30'); -+INSERT INTO `marker` VALUES (11162,1901,NULL,2,1926,75087,'Divine Beast Vah Naboris','',95.09375,-169.15625,0,0,0,'2019-12-19 20:32:20'); -+INSERT INTO `marker` VALUES (11163,1901,NULL,2,1926,77230,'non did shrines','',46.75,-151,0,0,0,'2019-12-19 22:06:39'); -+INSERT INTO `marker` VALUES (11164,1901,NULL,2,1921,76435,'Kakariko','',158.578125,-142.734375,0,0,0,'2019-12-20 06:20:09'); -+INSERT INTO `marker` VALUES (11165,1901,NULL,2,1901,76435,'Kakariko','',156.765625,-143.625,0,0,0,'2019-12-20 06:23:30'); -+INSERT INTO `marker` VALUES (11166,1901,NULL,2,1943,76836,'Silver Rupee','',134.69140625,-189.0390625,0,0,0,'2019-12-20 22:23:26'); -+INSERT INTO `marker` VALUES (11167,1901,NULL,2,1943,76836,'Opal x 1','',132.42578125,-189.11328125,0,0,0,'2019-12-20 22:26:17'); -+INSERT INTO `marker` VALUES (11168,1901,NULL,2,1939,74072,'Ice Wizzrobe','Maybe a glitch since no other site I found had this, but I did (normal difficulty). Was "flying" around right next to the encampment where the 2 moblins and 10x chest were',163.8984375,-125.8203125,0,0,0,'2019-12-21 06:08:10'); -+INSERT INTO `marker` VALUES (11169,1901,NULL,2,1930,67975,' Ganon','The main enemy of the game, once beat, the game ends',124.02734375,-111.421875,0,1,0,'2019-12-21 09:26:13'); -+INSERT INTO `marker` VALUES (11170,1901,NULL,2,1935,67975,'A Landscape of a Stable','NPC: Mayro\r\n\r\nRequires: Find the location the picture on the wall was painted from, it will reveal the location of a shrine.\r\n\r\nReward: Shrine',168.859375,-110.11328125,0,1,0,'2019-12-21 11:55:51'); -+INSERT INTO `marker` VALUES (11171,1901,NULL,2,1916,67975,'Korok Seed','',169.515625,-112.890625,0,0,0,'2019-12-21 12:00:23'); -+INSERT INTO `marker` VALUES (11172,1901,NULL,2,1944,67975,'Knight's Bow','Contains: Knight's Bow\r\n\r\nRequires defeating an army camp: Yes\r\n\r\nIs in the ground: No',167.078125,-113.421875,0,0,0,'2019-12-21 12:03:06'); -+INSERT INTO `marker` VALUES (11173,1901,NULL,2,1931,67975,'Bokoblin Camp','Camp includes 2 Bokoblin archers [always awake] and 6 Bokoblins inside the skull [sleeping at night].\r\nit will also include 2 keeses if arriving at night\r\ninside the skull there are 4 exploding barrels, 2 under each eye.\r\nshootinga rope holding the lamp in one of the eyes will cause an explosion.',166.9609375,-113.5546875,0,1,0,'2019-12-21 12:11:45'); -+INSERT INTO `marker` VALUES (11174,1901,NULL,2,1901,67975,'Luminous Stone Deposits','A location with 5 luminous stone deposits',166.0078125,-113.71875,0,0,0,'2019-12-21 12:13:10'); -+INSERT INTO `marker` VALUES (11175,1901,NULL,2,1931,67975,'Enemy Camp','Camp includes 2 Lizalfos, one Bokoblin, and 2 fire Chuchus.\r\nin addition, there are 4 explosive barrels surrounding the camp.',167.33984375,-116.63671875,0,1,0,'2019-12-21 12:25:53'); -+INSERT INTO `marker` VALUES (11176,1901,NULL,2,1944,76836,'Ravio's Hood','Chest is in ground under the hand, pull it out with Magnesis.',141.1171875,-166.08203125,0,0,0,'2019-12-21 22:55:53'); -+INSERT INTO `marker` VALUES (11177,1901,NULL,2,1925,59975,'Ya Naga Shrine','',122.7978515625,-168.637939453125,0,0,0,'2019-12-22 02:25:59'); -+INSERT INTO `marker` VALUES (11178,1901,NULL,2,1936,74072,'Reward: Ruby x3 (Break the ore deposit)','',174.59375,-133.671875,0,0,0,'2019-12-23 18:03:42'); -+INSERT INTO `marker` VALUES (11179,1901,NULL,2,1948,74072,'Under rock overhnag','',178.25,-129.42578125,0,0,0,'2019-12-23 18:19:21'); -+INSERT INTO `marker` VALUES (11180,1901,NULL,2,1901,77697,'Kakariko Village','',147.78125,-142.1538100671167,0,1,0,'2019-12-23 22:54:29'); -+INSERT INTO `marker` VALUES (11181,1901,NULL,2,1925,77818,'!!','',160.046875,-143.234375,0,0,0,'2019-12-24 21:12:45'); -+INSERT INTO `marker` VALUES (11182,1901,NULL,2,1901,77879,'Shrine to do','',103.77157145492,-150.25,0,0,0,'2019-12-25 01:48:45'); -+INSERT INTO `marker` VALUES (11183,1901,NULL,2,1935,77923,'sheep rustlers','free the scheep',184.765625,-161.296875,0,0,0,'2019-12-25 11:53:58'); -+INSERT INTO `marker` VALUES (11184,1901,NULL,2,1903,23337,'Royal Halberd','',118.9609375,-87.3671875,0,1,0,'2019-12-25 16:07:56'); -+INSERT INTO `marker` VALUES (11185,1901,NULL,2,1943,76836,'Amber','',109.953125,-148.69921875,0,0,0,'2019-12-26 09:24:56'); -+INSERT INTO `marker` VALUES (11186,1901,NULL,2,1901,78128,'Zoras Domain','',25,-98.5,0,0,0,'2019-12-26 22:03:07'); -+INSERT INTO `marker` VALUES (11187,1901,NULL,2,1901,78081,'Need High Jump','',152.75,-173.265625,0,0,0,'2019-12-27 07:09:30'); -+INSERT INTO `marker` VALUES (11188,1901,NULL,2,1926,73213,'Devine Beast Va Rudania','',14.25,-180.875,0,0,0,'2019-12-28 11:44:02'); -+INSERT INTO `marker` VALUES (11189,1901,NULL,2,1926,73213,'Devine Beast Va Medoh','',71.4375,-99.875,0,0,0,'2019-12-28 11:45:43'); -+INSERT INTO `marker` VALUES (11190,1901,NULL,2,1916,78207,'Korok Seed','',150.328125,-100.625,0,0,0,'2019-12-28 13:16:46'); -+INSERT INTO `marker` VALUES (11191,1901,NULL,2,1901,78577,'edfqef','',97.2249984741211,-138.65129900998681,0,0,0,'2019-12-29 15:27:27'); -+INSERT INTO `marker` VALUES (11192,1901,NULL,2,1901,74630,'honeyvore bear','a beat',145.375,-124.1875,0,0,0,'2019-12-29 20:26:54'); -+INSERT INTO `marker` VALUES (11193,1901,NULL,2,1926,76939,'Vah Medoh','',71.97949028015137,-99.70714950561523,0,0,0,'2019-12-29 23:17:42'); -+INSERT INTO `marker` VALUES (11194,1901,NULL,2,1926,76939,'Vah Naboris','',86.87124252319336,-182.96971988677979,0,0,0,'2019-12-29 23:18:56'); -+INSERT INTO `marker` VALUES (11195,1901,NULL,2,1926,76939,'Divine Beast Vah Rudania','',166.19676971435547,-87.59951210021973,0,0,0,'2019-12-29 23:20:29'); -+INSERT INTO `marker` VALUES (11196,1901,NULL,2,1901,78902,'HERE','',117.421875,-152.4765625,0,0,0,'2019-12-30 21:05:33'); -+INSERT INTO `marker` VALUES (11197,1901,NULL,2,1943,50315,'Ruby (EX)','',117.41015625,-151.73697918653488,0,0,0,'2019-12-31 14:29:04'); -+INSERT INTO `marker` VALUES (11198,1901,NULL,2,1903,50315,'Tree Branch','',114.82031106948853,-153.07812523841858,0,0,0,'2019-12-31 16:09:47'); -+INSERT INTO `marker` VALUES (11199,1901,NULL,2,1901,50315,'Amber','Check to marker on top of Mount Hylia for an Amber.',107.88281297683716,-162.7395839691162,0,0,0,'2019-12-31 18:55:40'); -+INSERT INTO `marker` VALUES (11200,1901,NULL,2,1901,79082,'luna','',85.015625,-131.37653792491122,0,0,0,'2019-12-31 20:12:55'); -+INSERT INTO `marker` VALUES (11201,1901,NULL,2,1920,79070,'Shrine of Resurrection','',110.8515625,-157.48828125,0,0,0,'2019-12-31 20:20:17'); -+INSERT INTO `marker` VALUES (11202,1901,NULL,2,1930,79070,'3 Bokoblins','',116.390625,-154.81640625,0,0,0,'2019-12-31 20:21:32'); -+INSERT INTO `marker` VALUES (11203,1901,NULL,2,1903,50315,'Tree Branch','',110.42057299613953,-156.26822888851166,0,0,0,'2019-12-31 20:23:42'); -+INSERT INTO `marker` VALUES (11204,1901,NULL,2,1931,79070,'Bokoblin camp','Reds and a blue',117.8828125,-157.73828125,0,0,0,'2019-12-31 20:27:10'); -+INSERT INTO `marker` VALUES (11205,1901,NULL,2,1930,79070,'Bokoblin','',115.703125,-156.671875,0,0,0,'2019-12-31 20:38:09'); -+INSERT INTO `marker` VALUES (11206,1901,NULL,2,1930,79070,'Bokoblin','',116.28515625,-157.09765625,0,0,0,'2019-12-31 20:38:22'); -+INSERT INTO `marker` VALUES (11207,1901,NULL,2,1930,79070,'3 Stalkoblins','Appear at night.',112.265625,-153.2265625,0,0,0,'2019-12-31 21:07:02'); -+INSERT INTO `marker` VALUES (11208,1901,NULL,2,1920,79070,'Outpost Ruins','',123.8671875,-154.24609375,0,0,0,'2019-12-31 21:08:54'); -+INSERT INTO `marker` VALUES (11209,1901,NULL,2,1920,79070,'Eastern Abbey','',120.390625,-158.96484375,0,0,0,'2019-12-31 21:09:41'); -+INSERT INTO `marker` VALUES (11210,1901,NULL,2,1920,79070,'Temple of Time','',115.19921875,-159.16796875,0,0,0,'2019-12-31 21:10:18'); -+INSERT INTO `marker` VALUES (11211,1901,NULL,2,1944,75407,'Royal shield','',115.76953125,-72.76953125,0,0,0,'2020-01-01 18:39:30'); -+INSERT INTO `marker` VALUES (11212,1901,NULL,2,1904,79259,'Fire arrows','Behind cracked wall',112.9247477054596,-164.7574164867401,0,1,0,'2020-01-02 22:08:22'); -+INSERT INTO `marker` VALUES (11213,1901,NULL,2,1904,79259,'Bow','Now hidden under rock',113.6098301410675,-163.38385653495789,0,1,0,'2020-01-02 22:15:54'); -+INSERT INTO `marker` VALUES (11214,1901,NULL,2,1936,79469,'Secret nook within the secret cave','',158.69921875,-168.7109375,0,0,0,'2020-01-03 05:28:25'); -+INSERT INTO `marker` VALUES (11215,1901,NULL,2,1901,79469,'Cave of gemstones','',198.0625,-152.375,0,0,0,'2020-01-03 05:31:19'); -+INSERT INTO `marker` VALUES (11216,1901,NULL,2,1925,78050,'Missed Shrine','',186.84375,-86.40625,0,0,0,'2020-01-03 17:07:21'); -+INSERT INTO `marker` VALUES (11217,1901,NULL,2,1935,73866,'By Firefly's Light','',156.0078125,-144.109375,0,0,0,'2020-01-04 21:19:18'); -+INSERT INTO `marker` VALUES (11218,1901,NULL,2,1903,79726,'eightfold longblade','',180.00390625,-135.58984375,0,0,0,'2020-01-05 00:26:47'); -+INSERT INTO `marker` VALUES (11219,1901,NULL,2,1936,76430,'Cave with ore','',158.67135620117188,-175.59947204589844,0,0,0,'2020-01-05 07:58:33'); -+INSERT INTO `marker` VALUES (11220,1901,NULL,2,1938,79019,'a visiter !','point d'accroche pour le volcan',168.90625,-109.703125,0,0,0,'2020-01-05 13:58:06'); -+INSERT INTO `marker` VALUES (11221,1901,NULL,2,1916,78250,'BOTON','',194.51953125,-78.74609375,0,0,0,'2020-01-05 16:10:10'); -+INSERT INTO `marker` VALUES (11222,1901,NULL,2,1944,50315,'Knight's Halberd','',118.89583206176758,-87.25000047683716,0,0,0,'2020-01-06 13:34:56'); -+INSERT INTO `marker` VALUES (11223,1901,NULL,2,1916,76609,'falta korok torre llnura','',110.625,-120.01399528214306,0,0,0,'2020-01-06 18:33:23'); -+INSERT INTO `marker` VALUES (11224,1901,NULL,2,1901,79503,'Chasse aux cerfs','',184.796875,-160.578125,0,0,0,'2020-01-06 18:44:28'); -+INSERT INTO `marker` VALUES (11225,1901,NULL,2,1930,79070,'Yiga footsoldier','A man by the name of "Traveller" stops to talk to you.',155.96484375,-150.875,0,0,0,'2020-01-06 23:29:36'); -+INSERT INTO `marker` VALUES (11226,1901,NULL,2,1930,79070,'Yiga footsoldier','A woman by the name of "Traveller" stops to talk to you.',176.3046875,-163.375,0,0,0,'2020-01-06 23:30:50'); -+INSERT INTO `marker` VALUES (11227,1901,NULL,2,1936,74072,'Bombable rock pile, Ore inside','Contains rock salt, so not worth the effort unless you are in the area',187.65625,-132.13671875,0,0,0,'2020-01-07 20:14:36'); -+INSERT INTO `marker` VALUES (11228,1901,NULL,2,1936,74072,'Rare Ore Depoit behind bombable rock wall','',201.3671875,-115.7265625,0,0,0,'2020-01-07 21:28:13'); -+INSERT INTO `marker` VALUES (11229,1901,NULL,2,1901,49011,'V','',84.6015625,-170.8828125,0,0,0,'2020-01-08 01:42:39'); -+INSERT INTO `marker` VALUES (11230,1901,NULL,2,1926,76193,'Divine Beast Vah Rudania','',167.5546875,-87.4453125,0,0,0,'2020-01-08 19:29:10'); -+INSERT INTO `marker` VALUES (11231,1901,NULL,2,1901,76193,'Shatterback Point','',186.6796875,-121.6171875,0,0,0,'2020-01-08 19:37:48'); -+INSERT INTO `marker` VALUES (11232,1901,NULL,2,1901,76193,'Death Mountain Summit','',166.46875,-88.53125,0,0,0,'2020-01-08 19:38:23'); -+INSERT INTO `marker` VALUES (11233,1901,NULL,2,1901,76193,'Mekar Island','',123.94921875,-93.66796875,0,0,0,'2020-01-08 19:40:04'); -+INSERT INTO `marker` VALUES (11234,1901,NULL,2,1904,76193,'Bomb Arrow x5','',105.09375,-159.6875,0,0,0,'2020-01-08 19:40:32'); -+INSERT INTO `marker` VALUES (11235,1901,NULL,2,1901,76193,'Bomb Arrow x5 (DLC)','',105.0859375,-159.70703125,0,0,0,'2020-01-08 19:40:52'); -+INSERT INTO `marker` VALUES (11236,1901,NULL,2,1943,76193,'Sapphire (DLC)','',117.4140625,-151.7265625,0,0,0,'2020-01-08 19:41:31'); -+INSERT INTO `marker` VALUES (11237,1901,NULL,2,1904,76193,'Bomb Arrow x5 (DLC)','',105.1171875,-159.7109375,0,0,0,'2020-01-08 19:41:43'); -+INSERT INTO `marker` VALUES (11238,1901,NULL,2,1944,76193,'Nintendo Switch T-Shirt (DLC)','',120.6796875,-159.37109375,0,0,0,'2020-01-08 19:43:07'); -+INSERT INTO `marker` VALUES (11239,1901,NULL,2,1944,76193,'Zant's Helm (DLC)','',148.09375,-166.328125,0,0,0,'2020-01-08 19:43:35'); -+INSERT INTO `marker` VALUES (11240,1901,NULL,2,1944,76193,'Island Lobster Shirt (DLC)','',127.53125,-174.71875,0,0,0,'2020-01-08 19:44:06'); -+INSERT INTO `marker` VALUES (11241,1901,NULL,2,1944,76193,'Majora's Mask (DLC)','',120.96484375,-148.02734375,0,0,0,'2020-01-08 19:44:42'); -+INSERT INTO `marker` VALUES (11242,1901,NULL,2,1944,76193,'Tingle's Tights (DLC)','',126.59375,-130.53125,0,0,0,'2020-01-08 19:45:32'); -+INSERT INTO `marker` VALUES (11243,1901,NULL,2,1944,76193,'Korok Mask (DLC)','',138.859375,-98.484375,0,0,0,'2020-01-08 19:46:28'); -+INSERT INTO `marker` VALUES (11244,1901,NULL,2,1943,76193,'Travel Medallion (DLC)','',200.7578125,-72.3203125,0,0,0,'2020-01-08 19:49:45'); -+INSERT INTO `marker` VALUES (11245,1901,NULL,2,1944,76193,'Tingle's Shirt (DLC)','',117.375,-115.08984375,0,0,0,'2020-01-08 19:52:26'); -+INSERT INTO `marker` VALUES (11246,1901,NULL,2,1944,76193,'Tingle's Hat (DLC)','',115.984375,-141.62890625,0,0,0,'2020-01-08 19:53:04'); -+INSERT INTO `marker` VALUES (11247,1901,NULL,2,1944,76193,'Midna's Helm (','',106.27734375,-131.73046875,0,0,0,'2020-01-08 19:53:34'); -+INSERT INTO `marker` VALUES (11248,1901,NULL,2,1944,76193,'Midna's Helm (DLC)','',106.37109375,-131.6171875,0,0,0,'2020-01-08 19:53:59'); -+INSERT INTO `marker` VALUES (11249,1901,NULL,2,1926,76193,'Divine Beast Vah Naboris','',95.0625,-169.5,0,0,0,'2020-01-08 19:57:30'); -+INSERT INTO `marker` VALUES (11250,1901,NULL,2,1926,76193,'Divine Beast Vah Medoh','',71.484375,-97.359375,0,0,0,'2020-01-08 19:57:50'); -+INSERT INTO `marker` VALUES (11251,1901,NULL,2,1901,76193,'Trial of the Sword (DLC)','',134.8046875,-95.0625,0,0,0,'2020-01-08 19:58:42'); -+INSERT INTO `marker` VALUES (11252,1901,NULL,2,1901,76193,'Shrine of Resurrection','',110.92578125,-157.37109375,0,0,0,'2020-01-08 19:59:55'); -+INSERT INTO `marker` VALUES (11253,1901,NULL,2,1910,76193,'Sheikah Slate','',110.38671875,-157.66015625,0,0,0,'2020-01-08 20:00:14'); -+INSERT INTO `marker` VALUES (11254,1901,NULL,2,1903,76193,'One-Hit Obliterator (DLC)','',110.41796875,-157.71875,0,0,0,'2020-01-08 20:00:39'); -+INSERT INTO `marker` VALUES (11255,1901,NULL,2,1910,76193,'Paraglider','',115.32421875,-158.67578125,0,0,0,'2020-01-08 20:01:07'); -+INSERT INTO `marker` VALUES (11256,1901,NULL,2,1910,76193,'Daruk's Protection','',153.47265625,-89.953125,0,0,0,'2020-01-08 20:01:35'); -+INSERT INTO `marker` VALUES (11257,1901,NULL,2,1910,76193,'Revali's Gale','',71.015625,-99.55859375,0,0,0,'2020-01-08 20:02:30'); -+INSERT INTO `marker` VALUES (11258,1901,NULL,2,1910,76193,'Mipha's Grace','',179.2890625,-121.32421875,0,0,0,'2020-01-08 20:03:07'); -+INSERT INTO `marker` VALUES (11259,1901,NULL,2,1910,76193,'Urbosa's Fury','',68.91796875,-172.6640625,0,0,0,'2020-01-08 20:03:33'); -+INSERT INTO `marker` VALUES (11260,1901,NULL,2,1925,76193,'Maz Koshia's Labyrinth (DLC)','',110.765625,-157.5,0,0,0,'2020-01-08 20:04:42'); -+INSERT INTO `marker` VALUES (11261,1901,NULL,2,1910,76193,'Master Cycle Zero (DLC)','',110.875,-157.42578125,0,0,0,'2020-01-08 20:05:09'); -+INSERT INTO `marker` VALUES (11262,1901,NULL,2,1946,76193,'Misko's EX Journal','',123.8984375,-155.19921875,0,0,0,'2020-01-08 20:09:55'); -+INSERT INTO `marker` VALUES (11263,1901,NULL,2,1946,76193,'Super Rumor Mill EX V2','',133.25,-144.96875,0,0,0,'2020-01-08 20:11:23'); -+INSERT INTO `marker` VALUES (11264,1901,NULL,2,1946,76193,'Super Rumor Mill EX V2 (DLC)','',133.2578125,-144.98828125,0,0,0,'2020-01-08 20:11:46'); -+INSERT INTO `marker` VALUES (11265,1901,NULL,2,1901,76193,'Eventide Island','',199.25,-185.21875,0,0,0,'2020-01-08 20:16:37'); -+INSERT INTO `marker` VALUES (11266,1901,NULL,2,1901,76193,'Yiga Clan Hideout','',71.8671875,-149.1484375,0,0,0,'2020-01-08 20:17:28'); -+INSERT INTO `marker` VALUES (11267,1901,NULL,2,1901,76193,'Yiga Hideout Pit','',74.3984375,-148.8671875,0,0,0,'2020-01-08 20:17:47'); -+INSERT INTO `marker` VALUES (11268,1901,NULL,2,1901,76193,'Statue of the Eighth Heroine','',59.65625,-136.140625,0,0,0,'2020-01-08 20:18:17'); -+INSERT INTO `marker` VALUES (11269,1901,NULL,2,1901,76193,'The Seven Heroines','',85.921875,-172.0859375,0,0,0,'2020-01-08 20:18:39'); -+INSERT INTO `marker` VALUES (11270,1901,NULL,2,1935,76193,'Desert Labyrinth','',99.9609375,-181.72265625,0,0,0,'2020-01-08 20:19:29'); -+INSERT INTO `marker` VALUES (11271,1901,NULL,2,1935,76193,'North Lomei Labyrinth','',115.0078125,-72.79296875,0,0,0,'2020-01-08 20:20:02'); -+INSERT INTO `marker` VALUES (11272,1901,NULL,2,1920,76193,'Lomei Labyrinth Island','',200.75,-72.03125,0,0,0,'2020-01-08 20:20:36'); -+INSERT INTO `marker` VALUES (11273,1901,NULL,2,1920,76193,'North Lomei Labyrinth','',114.7109375,-72.76953125,0,0,0,'2020-01-08 20:21:06'); -+INSERT INTO `marker` VALUES (11274,1901,NULL,2,1920,76193,'Desert Labyrinth','',99.94140625,-181.8984375,0,0,0,'2020-01-08 20:21:39'); -+INSERT INTO `marker` VALUES (11275,1901,NULL,2,1934,76193,'Champion Urbosa's Song (DLC)','',94.3671875,-168.08984375,0,0,0,'2020-01-08 20:22:14'); -+INSERT INTO `marker` VALUES (11276,1901,NULL,2,1934,76193,'Champion Revali's Song (DLC)','',71.390625,-99.7265625,0,0,0,'2020-01-08 20:22:45'); -+INSERT INTO `marker` VALUES (11277,1901,NULL,2,1934,76193,'Champion Daruk's Song (DLC)','',166.55859375,-88.3203125,0,0,0,'2020-01-08 20:23:13'); -+INSERT INTO `marker` VALUES (11278,1901,NULL,2,1934,76193,'Champion Mipha's Song (DLC)','',174.0859375,-129.9296875,0,0,0,'2020-01-08 20:23:47'); -+INSERT INTO `marker` VALUES (11279,1901,NULL,2,1930,76193,'Monk Maz Koshia (DLC)','',111.0703125,-157.4453125,0,0,0,'2020-01-08 20:24:26'); -+INSERT INTO `marker` VALUES (11280,1901,NULL,2,1934,76193,'The Champions' Ballad (DLC)','',112.03125,-156.0859375,0,0,0,'2020-01-08 20:24:50'); -+INSERT INTO `marker` VALUES (11281,1901,NULL,2,1910,76193,'Champions' Picture (DLC)','',111.91796875,-156.1015625,0,0,0,'2020-01-08 20:25:13'); -+INSERT INTO `marker` VALUES (11282,1901,NULL,2,1910,79070,'Ore','Several ore deposits in this canyon.',166.7265625,-152.30859375,0,0,0,'2020-01-09 01:26:03'); -+INSERT INTO `marker` VALUES (11283,1901,NULL,2,1925,72389,'shrine','',113.15625,-118.20703125,0,1,0,'2020-01-09 13:44:48'); -+INSERT INTO `marker` VALUES (11284,1901,NULL,2,1920,76193,'Mounted Archery Camp','',124.4609375,-182.3046875,0,0,0,'2020-01-09 19:50:03'); -+INSERT INTO `marker` VALUES (11285,1901,NULL,2,1935,76193,'The Giant Horse','',124.453125,-182.421875,0,0,0,'2020-01-09 19:50:18'); -+INSERT INTO `marker` VALUES (11286,1901,NULL,2,1944,76193,'Ravio's Hat (DLC)','',141.1171875,-166.015625,0,0,0,'2020-01-09 19:56:02'); -+INSERT INTO `marker` VALUES (11287,1901,NULL,2,1935,76193,'Arrows of Burning Flame','',156.4921875,-144.2578125,0,0,0,'2020-01-09 19:57:23'); -+INSERT INTO `marker` VALUES (11288,1901,NULL,2,1935,76193,'By Firefly's Light','',157.68359375,-144.12890625,0,0,0,'2020-01-09 19:57:45'); -+INSERT INTO `marker` VALUES (11289,1901,NULL,2,1926,75562,'Divine Beast Vah Naboris','',76.25,-181.625,0,0,0,'2020-01-10 16:24:08'); -+INSERT INTO `marker` VALUES (11290,1901,NULL,2,1901,80678,'Shrine of Resurrection','This is where Link wakes up and the game begins.',110.359375,-157.6203439362345,0,0,0,'2020-01-10 18:19:47'); -+INSERT INTO `marker` VALUES (11291,1901,NULL,2,1930,79070,'Lizalfos','',134.8125,-159.203125,0,0,0,'2020-01-10 22:20:32'); -+INSERT INTO `marker` VALUES (11292,1901,NULL,2,1931,80678,'Bokoblin Camp','',135.6875,-152.6328125,0,0,0,'2020-01-11 18:54:23'); -+INSERT INTO `marker` VALUES (11293,1901,NULL,2,1931,80678,'Bokoblin Camp','',132.3671875,-153.9296875,0,0,0,'2020-01-11 22:38:57'); -+INSERT INTO `marker` VALUES (11294,1901,NULL,2,1901,80678,'Old Man's House','The Old Man's House. Includes a cooking pot and a bed where Link can recover his hearts.',115.7421875,-163.46875,0,0,0,'2020-01-11 22:40:01'); -+INSERT INTO `marker` VALUES (11295,1901,NULL,2,1931,80678,'Bokoblin Camp','',139.359375,-155.625,0,0,0,'2020-01-11 22:51:50'); -+INSERT INTO `marker` VALUES (11296,1901,NULL,2,1931,80678,'Bokoblin Camp','',140.9921875,-155.15625,0,0,0,'2020-01-11 22:56:08'); -+INSERT INTO `marker` VALUES (11297,1901,NULL,2,1935,75273,'The Sheep Rustlers','Under the tree, speak to Koyin to start the quest. Beat the monsters at Hateno Beach and return to her to finish it.',184.6484375,-160.8671875,0,0,0,'2020-01-12 21:18:38'); -+INSERT INTO `marker` VALUES (11298,1901,NULL,2,1935,75273,'Arrows of Burning Heat','Rola asks you to light the torches around the godess statue using arrows.',156.48046875,-144.2421875,0,0,0,'2020-01-13 00:26:36'); -+INSERT INTO `marker` VALUES (11299,1901,NULL,2,1926,77978,'Divine Beast Vah Naboris','',95.1171875,-169.1953125,0,0,0,'2020-01-13 13:17:56'); -+INSERT INTO `marker` VALUES (11300,1901,NULL,2,1920,76193,'Southern Mine','',154.1953125,-97.5390625,0,0,0,'2020-01-13 18:31:31'); -+INSERT INTO `marker` VALUES (11301,1901,NULL,2,1920,76193,'Abandoned North Mine','',153.6796875,-86.4296875,0,0,0,'2020-01-13 18:31:52'); -+INSERT INTO `marker` VALUES (11302,1901,NULL,2,1935,76193,'Stranded on Eventide','',199.125,-184.921875,0,0,0,'2020-01-13 18:39:29'); -+INSERT INTO `marker` VALUES (11303,1901,NULL,2,1935,76193,'Guardian Slideshow','',129.828125,-187.859375,0,0,0,'2020-01-13 18:40:03'); -+INSERT INTO `marker` VALUES (11304,1901,NULL,2,1920,76193,'Akkala Ancient Tech Lab','',198.55078125,-78.56640625,0,0,0,'2020-01-13 18:55:52'); -+INSERT INTO `marker` VALUES (11305,1901,NULL,2,1920,76193,'Hateno Ancient Tech Lab','',187.05859375,-161.109375,0,0,0,'2020-01-13 18:56:40'); -+INSERT INTO `marker` VALUES (11306,1901,NULL,2,1901,76193,'Fang and Bone (1st Appearance)','',178.80078125,-74.01171875,0,0,0,'2020-01-13 18:58:36'); -+INSERT INTO `marker` VALUES (11307,1901,NULL,2,1935,76193,'Death Mountain's Secret','',155.859375,-92.91796875,0,0,0,'2020-01-13 19:07:20'); -+INSERT INTO `marker` VALUES (11308,1901,NULL,2,1926,81214,'Vah Medoh','',71.34375,-99.93359375,0,1,0,'2020-01-13 20:42:30'); -+INSERT INTO `marker` VALUES (11309,2000,NULL,2,1950,81232,'Lil Devil - Magic Powder','',47.75,-113.25,0,0,0,'2020-01-14 04:05:12'); -+INSERT INTO `marker` VALUES (11310,1901,NULL,2,1931,80678,'Bokoblin Camp','',150.203125,-120.28125,0,0,0,'2020-01-14 04:23:41'); -+INSERT INTO `marker` VALUES (11311,2003,NULL,2,1962,81232,'Key','',84.875,-165.25,0,0,0,'2020-01-14 05:02:08'); -+INSERT INTO `marker` VALUES (11312,1901,NULL,2,1945,80678,'Blupee','',159.1875,-163.25,0,0,0,'2020-01-15 02:36:32'); -+INSERT INTO `marker` VALUES (11313,1901,NULL,2,1945,80678,'Blupee','',158,-165.53125,0,0,0,'2020-01-15 02:36:47'); -+INSERT INTO `marker` VALUES (11314,1901,NULL,2,1930,76193,'Calamity Ganon','',124.0234375,-111.375,0,0,0,'2020-01-15 18:34:09'); -+INSERT INTO `marker` VALUES (11315,1901,NULL,2,1930,76193,'Fireblight Ganon','',167.7109375,-87.5390625,0,0,0,'2020-01-15 18:34:45'); -+INSERT INTO `marker` VALUES (11316,1901,NULL,2,1930,76193,'Windblight Ganon','',71.640625,-97.03125,0,0,0,'2020-01-15 18:35:03'); -+INSERT INTO `marker` VALUES (11317,1901,NULL,2,1930,76193,'Thunderblight Ganon','',83.6875,-182.4375,0,0,0,'2020-01-15 18:35:26'); -+INSERT INTO `marker` VALUES (11318,1901,NULL,2,1930,76193,'Waterblight Ganon','',185.2578125,-125.171875,0,0,0,'2020-01-15 18:35:41'); -+INSERT INTO `marker` VALUES (11319,1901,NULL,2,1937,76193,'Lord of the Mountain','',92.3984375,-133.2578125,0,0,0,'2020-01-15 18:43:29'); -+INSERT INTO `marker` VALUES (11320,1901,NULL,2,1901,76193,'Zelda's Horse','',101.70703125,-140.671875,0,0,0,'2020-01-15 18:44:41'); -+INSERT INTO `marker` VALUES (11321,1901,NULL,2,1935,73866,'A Gift of Nightshade','',168.4453125,-183.4375,0,0,0,'2020-01-16 00:11:54'); -+INSERT INTO `marker` VALUES (11322,1901,NULL,2,1935,76193,'Riddles of Hyrule','',134.5234375,-94.0859375,0,0,0,'2020-01-16 18:18:14'); -+INSERT INTO `marker` VALUES (11323,1901,NULL,2,1943,78796,'Chest ','Glitched into water',162.31249986690227,-186.08573485039807,0,0,0,'2020-01-17 09:17:56'); -+INSERT INTO `marker` VALUES (11324,1901,NULL,2,1925,36179,'Rohta Chigah Shrine','Stop to Start',119.921875,-156.0625,0,1,0,'2020-01-18 08:13:30'); -+INSERT INTO `marker` VALUES (11325,1901,NULL,2,1925,36179,'Ruvo Korbah Shrine','A Major Test of Strangth+',114.96484375,-161.4296875,0,1,0,'2020-01-18 08:14:40'); -+INSERT INTO `marker` VALUES (11326,1901,NULL,2,1925,36179,'Etsu Korima Shrine','Path of Light',109.01953125,-160.98046875,0,1,0,'2020-01-18 08:15:21'); -+INSERT INTO `marker` VALUES (11327,1901,NULL,2,1925,36179,'Yowaka Ita Shrine','Collected Soul',113.265625,-154.1015625,0,1,0,'2020-01-18 08:15:53'); -+INSERT INTO `marker` VALUES (11328,1901,NULL,2,1901,36179,'Champion Revali's Song','Part of DLC wave 2 ',70.765625,-107.4375,0,1,0,'2020-01-18 08:25:28'); -+INSERT INTO `marker` VALUES (11329,1901,NULL,2,1925,36179,'Noe Rajee Shrine','DLC wave 2 ',68.30859375,-91.8984375,0,1,0,'2020-01-18 08:33:53'); -+INSERT INTO `marker` VALUES (11330,1901,NULL,2,1925,36179,'Shira Gomar Shrine','DLC wave 2',90.8515625,-106.40625,0,0,0,'2020-01-18 08:47:16'); -+INSERT INTO `marker` VALUES (11331,1901,NULL,2,1925,36179,'Kiah Toza Shrine','DLC wave 2',94.484375,-78.21875,0,0,0,'2020-01-18 09:04:28'); -+INSERT INTO `marker` VALUES (11332,1901,NULL,2,1904,81159,'Explosive Arrows x5','',105.2734375,-159.671875,0,0,0,'2020-01-18 18:27:17'); -+INSERT INTO `marker` VALUES (11333,1901,NULL,2,1916,81840,'Korok Seed','Korok under the stones',115.171875,-152.19140625,0,1,0,'2020-01-18 21:14:42'); -+INSERT INTO `marker` VALUES (11334,1901,NULL,2,1901,81872,'find','',-51.5,-89.47134376698764,0,0,0,'2020-01-19 04:37:39'); -+INSERT INTO `marker` VALUES (11335,1901,NULL,2,1901,81851,'Stone Talus','',37.625,-127.625,0,0,0,'2020-01-19 07:33:35'); -+INSERT INTO `marker` VALUES (11336,1901,NULL,2,1931,82063,'Bokoblin Camp','',118.25,-158.03125,0,0,0,'2020-01-20 14:35:01'); -+INSERT INTO `marker` VALUES (11337,1901,NULL,2,1944,80073,'Royal Bow','In the past, the king of Hyrule presented this bow to only the most talented archers in the land. Its combat capabilities are as impressive as its extravagant design.',140.27734375,-103.53125,0,0,0,'2020-01-20 17:36:53'); -+INSERT INTO `marker` VALUES (11338,1901,NULL,2,1901,14388,'Dinraal Farming Spot','',78.10940838879046,-112.20080150401046,0,0,0,'2020-01-21 04:13:48'); -+INSERT INTO `marker` VALUES (11339,1901,NULL,2,1935,79786,'Hero's treasure','Kass quest to retrieve the hero's cache.',186.6875,-169,0,0,0,'2020-01-21 17:25:49'); -+INSERT INTO `marker` VALUES (11340,1901,NULL,2,1935,79786,'Hero's treasure','Kass's quest to retrieve the old hero's treasure',186.734375,-169.015625,0,0,0,'2020-01-21 17:31:13'); -+INSERT INTO `marker` VALUES (11341,1901,NULL,2,1939,74072,'Ice Wizzrobe','',103.828125,-186.2734375,0,0,0,'2020-01-22 08:26:08'); -+INSERT INTO `marker` VALUES (11342,1901,NULL,2,1944,78796,'Silverscale spear','Not a zora spear',178.92578119357813,-120.57020968512843,0,0,0,'2020-01-23 06:16:09'); -+INSERT INTO `marker` VALUES (11343,1901,NULL,2,1944,78796,'Silverscale spear','Not Zora spear',180.0005580614658,-119.70081878786053,0,0,0,'2020-01-23 07:14:53'); -+INSERT INTO `marker` VALUES (11344,1901,NULL,2,1901,82330,'bghit nmshi','',168.5,-88.5,0,0,0,'2020-01-23 10:34:49'); -+INSERT INTO `marker` VALUES (11345,1901,NULL,2,1944,14388,'EX Ravio's Hood','',140.91632506751728,-165.96788977438555,0,1,0,'2020-01-24 20:32:01'); -+INSERT INTO `marker` VALUES (11346,1901,NULL,2,1902,82690,'Barbarian Helm','',200.375,-71.625,0,0,0,'2020-01-26 16:12:42'); -+INSERT INTO `marker` VALUES (11347,1901,NULL,2,1902,82690,'Barbarian Chestplate','',99.738037109375,-182.03207397460938,0,0,0,'2020-01-26 16:18:02'); -+INSERT INTO `marker` VALUES (11348,1901,NULL,2,1902,82690,'Barbarian Leg Wraps','',114.8657455444336,-71.79652404785156,0,0,0,'2020-01-26 16:19:07'); -+INSERT INTO `marker` VALUES (11349,1901,NULL,2,1902,82690,'Nintendo switch shirt','',120.66229796409607,-159.3363962173462,0,0,0,'2020-01-26 16:22:57'); -+INSERT INTO `marker` VALUES (11350,1901,NULL,2,1902,82690,'Hyrulian Trousers','',115.5775511264801,-158.34299850463867,0,0,0,'2020-01-26 16:26:15'); -+INSERT INTO `marker` VALUES (11351,1901,NULL,2,1902,82690,'Warm Doublet','',115.44416403770447,-163.25823616981506,0,0,0,'2020-01-26 16:35:44'); -+INSERT INTO `marker` VALUES (11352,1901,NULL,2,1902,82690,'Warm Doublet','',107.85525643825531,-162.6944615840912,0,0,0,'2020-01-26 16:38:36'); -+INSERT INTO `marker` VALUES (11353,1901,NULL,2,1943,82757,'Rupee','Purple rupee(50)',135.328125,-158.546875,0,0,0,'2020-01-27 00:57:06'); -+INSERT INTO `marker` VALUES (11354,1901,NULL,2,1930,82757,'Lizarfos','2 Lizarfos',135.3984375,-159.171875,0,0,0,'2020-01-27 01:02:07'); -+INSERT INTO `marker` VALUES (11355,1901,NULL,2,1935,82757,'The Giant of Relis Pond','hunt a Hinox in Ralis Pond',179.828125,-119.40625,0,0,0,'2020-01-27 02:17:51'); -+INSERT INTO `marker` VALUES (11356,1901,NULL,2,1944,82757,'Zora Spear','Behind the Bottom korok',179.859375,-120.0546875,0,0,0,'2020-01-27 02:29:53'); -+INSERT INTO `marker` VALUES (11357,1901,NULL,2,1901,82772,'Divine Beast Vah Rudania','',168.375,-88.25,0,0,0,'2020-01-27 04:15:34'); -+INSERT INTO `marker` VALUES (11358,1901,NULL,2,1916,82787,'Kolog','',133.0546875,-150.2578125,0,0,0,'2020-01-27 11:48:54'); -+INSERT INTO `marker` VALUES (11359,1901,NULL,2,1939,78832,'Blizzrobe','',103.78125,-186.46875,0,0,0,'2020-01-28 00:01:04'); -+INSERT INTO `marker` VALUES (11360,1901,NULL,2,1943,82489,'gold rupee','',107.1484375,-90.9140625,0,0,0,'2020-01-28 08:08:07'); -+INSERT INTO `marker` VALUES (11361,1901,NULL,2,1943,82489,'giant ancient core','',108.828125,-89.0703125,0,0,0,'2020-01-28 08:09:43'); -+INSERT INTO `marker` VALUES (11362,1901,NULL,2,1904,77697,'Dinraal Farm','Farm Dinraal (Fire Dragon) parts',142.640625,-70.390625,0,0,0,'2020-01-28 15:25:36'); -+INSERT INTO `marker` VALUES (11363,1901,NULL,2,1901,82864,'Boat','',111.20703125,-160.0234375,0,0,0,'2020-01-28 16:48:11'); -+INSERT INTO `marker` VALUES (11364,1901,NULL,2,1901,82864,'Bed','',115.822265625,-163.228515625,0,0,0,'2020-01-28 16:54:43'); -+INSERT INTO `marker` VALUES (11365,1901,NULL,2,1931,82864,'Enemy Camp','',117.765625,-162.18359375,0,0,0,'2020-01-28 17:14:34'); -+INSERT INTO `marker` VALUES (11366,1901,NULL,2,1936,82864,'Cracked Wall','Hides treasure',114.3984375,-158.234375,0,0,0,'2020-01-28 17:16:27'); -+INSERT INTO `marker` VALUES (11367,1901,NULL,2,1926,82913,'Vah'Naboris','',82.125,-180.75,0,0,0,'2020-01-28 18:11:51'); -+INSERT INTO `marker` VALUES (11368,1901,NULL,2,1926,82913,'Vah'Rudania','',165.75,-88.3125,0,0,0,'2020-01-28 18:16:18'); -+INSERT INTO `marker` VALUES (11369,1901,NULL,2,1901,82913,'Vah'Medoh','',71.5625,-99.8125,0,0,0,'2020-01-28 18:16:53'); -+INSERT INTO `marker` VALUES (11370,1901,NULL,2,1901,82414,'Espadon mision diosa','',65.9765625,-142.4921875,0,0,0,'2020-01-28 19:34:02'); -+INSERT INTO `marker` VALUES (11371,1901,NULL,2,1901,82929,'hi','',37.06213753668689,-83.9657916120841,0,0,0,'2020-01-28 22:43:16'); -+INSERT INTO `marker` VALUES (11372,1901,NULL,2,1935,82864,'By Firefly's Light','',157.71484375,-144.19140625,0,0,0,'2020-01-29 00:58:19'); -+INSERT INTO `marker` VALUES (11373,1901,NULL,2,1935,82864,'The Stolen Heirloom','',155.8828125,-143.41796875,0,0,0,'2020-01-29 01:17:36'); -+INSERT INTO `marker` VALUES (11374,1901,NULL,2,1936,82864,'Cracked Wall','',154.609375,-145.01953125,0,0,0,'2020-01-29 01:32:17'); -+INSERT INTO `marker` VALUES (11375,1901,NULL,2,1901,81346,'cubos ','cubos ',101.95703125,-164.51953125,0,0,0,'2020-01-30 20:47:31'); -+INSERT INTO `marker` VALUES (11376,1901,NULL,2,1944,59975,'Tingle's Tights (DLC)','',127.484375,-131.34765625,0,0,0,'2020-01-30 21:33:02'); -+INSERT INTO `marker` VALUES (11377,1901,NULL,2,1902,59975,'Phantom Armor (DLC)','',124.18994140625,-126.63272094726562,0,0,0,'2020-01-30 21:35:00'); -+INSERT INTO `marker` VALUES (11378,1901,NULL,2,1902,59975,'Phantom Greaves (DLC)','',120.0267333984375,-137.57664489746094,0,0,0,'2020-01-30 21:38:52'); -+INSERT INTO `marker` VALUES (11379,1901,NULL,2,1901,82896,'Ores','',79.46875,-156.2578125,0,0,0,'2020-01-31 22:40:52'); -+INSERT INTO `marker` VALUES (11380,1901,NULL,2,1901,22593,'Cave Entrance','',69.4921875,-72.390625,0,0,0,'2020-02-02 18:59:54'); -+INSERT INTO `marker` VALUES (11381,1901,NULL,2,1926,83430,'Divine Beast Vah Naboris','',88.09375,-185.28125,0,0,0,'2020-02-02 21:30:20'); -+INSERT INTO `marker` VALUES (11382,1901,NULL,2,1926,83430,'Divine Beast Vah Medoh','',71.5390625,-98.921875,0,0,0,'2020-02-02 21:31:06'); -+INSERT INTO `marker` VALUES (11383,1901,NULL,2,1926,83430,'Divine Beast Vah Rudania','',167.703125,-87.453125,0,0,0,'2020-02-02 21:31:34'); -+INSERT INTO `marker` VALUES (11384,1901,NULL,2,1920,83436,'AAA','',75.125,-81.34375,0,0,0,'2020-02-02 22:22:41'); -+INSERT INTO `marker` VALUES (11385,1901,NULL,2,1931,82864,'Bokoblin Camp','',143.46875,-149.15625,0,0,0,'2020-02-03 16:56:28'); -+INSERT INTO `marker` VALUES (11386,1901,NULL,2,1939,74072,'Ice Wizzrobe','',68.328125,-161.28125,0,0,0,'2020-02-03 22:47:31'); -+INSERT INTO `marker` VALUES (11387,1901,NULL,2,1939,74072,'Ice Wizzrobe','',75.4453125,-152.2109375,0,0,0,'2020-02-03 23:59:37'); -+INSERT INTO `marker` VALUES (11388,1901,NULL,2,1939,78832,'Blizzrobe','',75.59375,-152.546875,0,0,0,'2020-02-04 12:39:33'); -+INSERT INTO `marker` VALUES (11389,1901,NULL,2,1902,83601,'hylian shield','',66.625,-99.125,0,0,0,'2020-02-04 19:14:28'); -+INSERT INTO `marker` VALUES (11390,1901,NULL,2,1936,23714,'111','',174.6796875,-133.6484375,0,1,0,'2020-02-05 18:01:36'); -+INSERT INTO `marker` VALUES (11391,1901,NULL,2,1926,80678,'Divine Beast Medoh','Revali's Divine Beast',71.61249923706055,-98.87587406479494,0,0,0,'2020-02-05 18:08:20'); -+INSERT INTO `marker` VALUES (11392,1901,NULL,2,1926,80678,' Divine Beast Vah Rudania','Daruk's Divine Beast',163.8624973297119,-90.69760846325755,0,0,0,'2020-02-05 18:09:12'); -+INSERT INTO `marker` VALUES (11393,1901,NULL,2,1926,80678,'Divine Beast Vah Naboris ','Urbosa's Divine Beast',69.76250076293945,-184.56269717759437,0,0,0,'2020-02-05 18:10:11'); -+INSERT INTO `marker` VALUES (11394,1901,NULL,2,1936,23714,'111','',201.359375,-115.8125,0,0,0,'2020-02-06 12:38:13'); -+INSERT INTO `marker` VALUES (11395,1901,NULL,2,1936,23714,'111','',200.875,-118.953125,0,0,0,'2020-02-06 12:38:32'); -+INSERT INTO `marker` VALUES (11396,1901,NULL,2,1901,76193,'Sanctum','',124.0390625,-112.1875,0,0,0,'2020-02-06 20:01:27'); -+INSERT INTO `marker` VALUES (11397,1901,NULL,2,1930,76193,'Calamity Ganon','',124.015625,-111.40625,0,0,0,'2020-02-06 20:01:54'); -+INSERT INTO `marker` VALUES (11398,1901,NULL,2,1930,76193,'Dark Beast Ganon','',127.1875,-136.5,0,0,0,'2020-02-06 20:02:24'); -+INSERT INTO `marker` VALUES (11399,1901,NULL,2,1901,83632,'volver kolog','',158.6015625,-175.03125,0,0,0,'2020-02-06 23:31:32'); -+INSERT INTO `marker` VALUES (11400,1901,NULL,2,1936,23714,'111','',158.05859375,-90.45703125,0,0,0,'2020-02-07 18:23:39'); -+INSERT INTO `marker` VALUES (11401,1901,NULL,2,1931,83679,'Lizalfo Camp ','about 6 enemies',168.86328125,-123.8984375,0,0,0,'2020-02-08 09:50:51'); -+INSERT INTO `marker` VALUES (11402,1901,NULL,2,1905,84039,'stuff','',127.375,-130.625,0,0,0,'2020-02-08 18:42:01'); -+INSERT INTO `marker` VALUES (11403,1901,NULL,2,1931,74630,'enemy camp','',173.703125,-160.0234375,0,0,0,'2020-02-09 01:14:51'); -+INSERT INTO `marker` VALUES (11404,1901,NULL,2,1926,74630,'Vah Medah','',71.5390625,-98.9140625,0,0,0,'2020-02-09 01:15:45'); -+INSERT INTO `marker` VALUES (11405,1901,NULL,2,1926,74630,'Vah Rudonia','',165.171875,-87.578125,0,0,0,'2020-02-09 01:16:21'); -+INSERT INTO `marker` VALUES (11406,1901,NULL,2,1935,79196,'Riddles of Hyrule','',134.55078125,-93.87109375,0,1,0,'2020-02-09 17:59:30'); -+INSERT INTO `marker` VALUES (11407,1901,NULL,2,1916,84145,'Korok Seeds','Go to sign in time',136.5859375,-183.9726563692093,0,0,0,'2020-02-11 17:21:00'); -+INSERT INTO `marker` VALUES (11408,1901,NULL,2,1926,66829,'Nova Prime','',71.359375,-99.890625,0,0,0,'2020-02-12 03:50:48'); -+INSERT INTO `marker` VALUES (11409,1901,NULL,2,1930,84578,'Assasin','',162.935546875,-140.150390625,0,0,0,'2020-02-12 21:48:25'); -+INSERT INTO `marker` VALUES (11410,1901,NULL,2,1939,74072,'Ice Wizzrobe','',60.94921875,-145.0625,0,0,0,'2020-02-12 23:34:48'); -+INSERT INTO `marker` VALUES (11411,1901,NULL,2,1901,84635,'???','',144.29698374793037,-154.7972177714562,0,0,0,'2020-02-13 05:59:57'); -+INSERT INTO `marker` VALUES (11412,1901,NULL,2,1925,84349,'Sharo Lun Shrine','',173.7734375,-90.21875,0,1,0,'2020-02-13 12:24:58'); -+INSERT INTO `marker` VALUES (11413,1901,NULL,2,1925,84349,'Rinu Honika Shrine','',163.05078125,-96.87890625,0,0,0,'2020-02-13 12:25:53'); -+INSERT INTO `marker` VALUES (11414,1901,NULL,2,1925,84349,'Daqa Koh Shrine','',160.296875,-91.6796875,0,0,0,'2020-02-13 12:26:31'); -+INSERT INTO `marker` VALUES (11415,1901,NULL,2,1925,84349,'Kamia Omuna Shrine','',161.3125,-77.56640625,0,0,0,'2020-02-13 12:28:52'); -+INSERT INTO `marker` VALUES (11416,1901,NULL,2,1925,84349,'Sato Koda shrine','',176.48828125,-115.00390625,0,0,0,'2020-02-13 12:30:14'); -+INSERT INTO `marker` VALUES (11417,1901,NULL,2,1901,84357,'Falta','\r\n\r\n',160.92100309867746,-143.07572886886143,0,0,0,'2020-02-13 19:51:20'); -+INSERT INTO `marker` VALUES (11418,1901,NULL,2,1926,78956,'Divine Beast Vah Rudania','',168.6875,-89.125,0,0,0,'2020-02-14 09:47:54'); -+INSERT INTO `marker` VALUES (11419,1901,NULL,2,1926,78956,'Divine Beast Vah Medoh','',71.34375,-99.921875,0,0,0,'2020-02-14 09:48:25'); -+INSERT INTO `marker` VALUES (11420,1901,NULL,2,1926,78956,'Divine Beast Vah Naboris','',94.8504638671875,-169.0638427734375,0,0,0,'2020-02-14 09:48:46'); -+INSERT INTO `marker` VALUES (11421,1901,NULL,2,1940,83846,'Master Mode Lynel','',118.5625,-157.6875,0,0,0,'2020-02-15 02:05:02'); -+INSERT INTO `marker` VALUES (11422,1901,NULL,2,1920,77349,'Great Plateau','',111.67708206176758,-158.34375,0,0,0,'2020-02-16 01:18:41'); -+INSERT INTO `marker` VALUES (11423,1901,NULL,2,1931,56340,'Bokoblin Camp','',118.0874947309494,-157.941461057196,0,1,0,'2020-02-16 02:08:25'); -+INSERT INTO `marker` VALUES (11424,1901,NULL,2,1932,75081,'Decayed Guardian','',71.4614752348991,-144.1709273346582,0,0,0,'2020-02-16 05:52:06'); -+INSERT INTO `marker` VALUES (11425,1901,NULL,2,1940,75081,'Lynel','',64.43820768091288,-141.65348519764598,0,0,0,'2020-02-16 05:52:36'); -+INSERT INTO `marker` VALUES (11426,1901,NULL,2,1941,75081,'Stone Talus','',68.38338460361675,-146.8820983606131,0,0,0,'2020-02-16 05:53:10'); -+INSERT INTO `marker` VALUES (11427,1901,NULL,2,1901,83679,'Zora Monument',' Memoir of a Gifted Stonemason',178.171875,-116.734375,0,1,0,'2020-02-16 09:24:21'); -+INSERT INTO `marker` VALUES (11428,1901,NULL,2,1935,83679,'The Giant of Ralis Pond','Defeat the hinox near Ralis pond and return to Torfeau and gain a silver rupee',179.7578125,-119.453125,0,0,0,'2020-02-16 10:11:37'); -+INSERT INTO `marker` VALUES (11429,1901,NULL,2,1925,85069,'Mogg Latan Shrine','',92.080322265625,-135.19927978515625,0,0,0,'2020-02-16 17:16:33'); -+INSERT INTO `marker` VALUES (11430,1901,NULL,2,1916,84988,'missed','',149.9453125,-114.5546875,0,0,0,'2020-02-17 02:53:51'); -+INSERT INTO `marker` VALUES (11431,1901,NULL,2,1901,84360,'Kaya Wan','',101.56137352778163,-161.18480546537663,0,0,0,'2020-02-18 01:34:05'); -+INSERT INTO `marker` VALUES (11432,1901,NULL,2,1901,82889,'2go','\r\n\r\n\r\n\r\n\r\n\r\n',95,-162.625,0,1,0,'2020-02-18 02:22:40'); -+INSERT INTO `marker` VALUES (11433,1901,NULL,2,1926,81469,'Divine Beast Vah Medoh','',71.328125,-99.453125,0,0,0,'2020-02-18 18:28:49'); -+INSERT INTO `marker` VALUES (11434,1901,NULL,2,1910,85375,'Fish','Fish',118.9609375,-153.8125,0,0,0,'2020-02-18 18:37:13'); -+INSERT INTO `marker` VALUES (11435,1901,NULL,2,1930,85375,'Bokoblin x2','',116.4453125,-154.84375,0,0,0,'2020-02-18 19:11:51'); -+INSERT INTO `marker` VALUES (11436,1901,NULL,2,1901,32383,'Phantom Gannon Marker','',144.08124923706055,-178.62012001509012,0,0,0,'2020-02-19 01:12:33'); -+INSERT INTO `marker` VALUES (11437,1901,NULL,2,1935,85483,'Zora Stone Monuments','',172.322021484375,-130.96331787109375,0,0,0,'2020-02-19 16:45:34'); -+INSERT INTO `marker` VALUES (11438,1901,NULL,2,1901,85483,'Zora Stone Monuments','',172.94642639160156,-127.52369689941406,0,0,0,'2020-02-19 16:46:06'); -+INSERT INTO `marker` VALUES (11439,1901,NULL,2,1935,85483,'Zora Stone Monuments','',172.78125,-126.90234375,0,0,0,'2020-02-19 16:46:21'); -+INSERT INTO `marker` VALUES (11440,1901,NULL,2,1935,85483,'Zora Stone Monuments','',179.97105407714844,-119.23240661621094,0,0,0,'2020-02-19 17:12:01'); -+INSERT INTO `marker` VALUES (11441,1901,NULL,2,1916,85573,'korogu','',91.625,-75.03125,0,0,0,'2020-02-20 16:55:42'); -+INSERT INTO `marker` VALUES (11442,1901,NULL,2,1901,85654,'INIZIO','',111.78125,-158.625,0,0,0,'2020-02-21 16:17:11'); -+INSERT INTO `marker` VALUES (11443,1901,NULL,2,1920,85654,'VILLAGGIO CALBARICO','',128.4375,-154.9375,0,0,0,'2020-02-21 16:18:49'); -+INSERT INTO `marker` VALUES (11444,1901,NULL,2,1944,85878,'Island Lobster Shirt','',125.5859375,-176.143736343033,0,0,0,'2020-02-23 00:42:14'); -+INSERT INTO `marker` VALUES (11445,1901,NULL,2,1944,85878,'Phantom Ganon Greaves (DLC)','',156.44999885559082,-180.62844515121634,0,0,0,'2020-02-23 01:28:21'); -+INSERT INTO `marker` VALUES (11446,1901,NULL,2,1944,85878,' Phantom Ganon Skull (DLC)','',153.72187519073486,-178.81009362793648,0,0,0,'2020-02-23 01:28:48'); -+INSERT INTO `marker` VALUES (11447,1901,NULL,2,1901,84688,'Entrada','La entrada para el santuario',122.90625,-109.921875,0,0,0,'2020-02-23 02:57:08'); -+INSERT INTO `marker` VALUES (11448,1901,NULL,2,1901,44233,'ss','',123.9375,-165.8125,0,0,0,'2020-02-23 11:59:07'); -+INSERT INTO `marker` VALUES (11449,1901,NULL,2,1921,85980,'asd','',124.375,-124.875,0,0,0,'2020-02-23 19:50:15'); -+INSERT INTO `marker` VALUES (11450,1901,NULL,2,1903,85240,'sword','',47.25,-132.9375,0,0,0,'2020-02-23 21:42:49'); -+INSERT INTO `marker` VALUES (11451,1901,NULL,2,1936,85883,'Cracked Wall','',158.70323061943054,-175.58752091170015,0,1,0,'2020-02-23 22:35:01'); -+INSERT INTO `marker` VALUES (11452,1901,NULL,2,1939,78832,'Blizzrobe','',61.328125,-145.1875,0,0,0,'2020-02-24 09:47:21'); -+INSERT INTO `marker` VALUES (11453,1901,NULL,2,1936,76193,'Cracked Wall x2','',158.828125,-165.0703125,0,0,0,'2020-02-24 19:43:05'); -+INSERT INTO `marker` VALUES (11454,1901,NULL,2,1945,76193,'Lord of the Mountain','',92.36328125,-133.30078125,0,0,0,'2020-02-24 19:54:02'); -+INSERT INTO `marker` VALUES (11455,1901,NULL,2,1920,76193,'Satori Mountain','',92.15625,-134.71875,0,0,0,'2020-02-24 19:54:25'); -+INSERT INTO `marker` VALUES (11456,1901,NULL,2,1920,76193,'Death Mountain','',167.875,-87.71875,0,0,0,'2020-02-24 19:54:41'); -+INSERT INTO `marker` VALUES (11457,1901,NULL,2,1901,86159,'???','??',69.75,-176.875,0,0,0,'2020-02-25 18:09:09'); -+INSERT INTO `marker` VALUES (11458,1901,NULL,2,1935,86163,'hero tunic','falar com impa e achar uma memoria',155.8515625,-143.41015625,0,0,0,'2020-02-26 11:21:32'); -+INSERT INTO `marker` VALUES (11459,1901,NULL,2,1921,86256,'der','qze',89,-106,0,0,0,'2020-02-26 15:32:00'); -+INSERT INTO `marker` VALUES (11460,1901,NULL,2,1939,78832,'Blizzrobe','',74.019287109375,-129.474609375,0,0,0,'2020-02-27 03:17:25'); -+INSERT INTO `marker` VALUES (11461,1901,NULL,2,1901,85964,'KOROGU DUR','',63.00390625,-71.55457733871773,0,0,0,'2020-02-27 16:04:05'); -+INSERT INTO `marker` VALUES (11462,1901,NULL,2,1901,76193,'Shadow Hamlet Ruins','',175.5625,-92.3203125,0,0,0,'2020-02-27 20:03:01'); -+INSERT INTO `marker` VALUES (11463,1901,NULL,2,1901,86407,'kakariko','',34.875,-89.375,0,0,0,'2020-02-28 01:27:43'); -+INSERT INTO `marker` VALUES (11464,1901,NULL,2,1923,86422,'Center','',45.53271484375,-110.03076171875,0,1,0,'2020-02-28 01:36:58'); -+INSERT INTO `marker` VALUES (11465,1901,NULL,2,1901,82004,'Giant Horse (Ganon's Horse)','You require at least two and a half stamina circles to tame this horse',109.46875,-169.5625,0,1,0,'2020-02-29 03:26:55'); -+INSERT INTO `marker` VALUES (11466,1901,NULL,2,1901,82887,'My House','',179.7734375,-163.6953125,0,1,0,'2020-03-02 15:12:05'); -+INSERT INTO `marker` VALUES (11467,1901,NULL,2,1939,78832,'Blizzrobe','',82.890625,-81.640625,0,0,0,'2020-03-03 03:45:01'); -+INSERT INTO `marker` VALUES (11468,1901,NULL,2,1936,84638,'Crack Wall','',126.91266335728183,-144.34753792085272,0,1,0,'2020-03-03 04:46:24'); -+INSERT INTO `marker` VALUES (11469,1901,NULL,2,1936,82489,'rare ore deposit','',193.765625,-127.71484375,0,1,0,'2020-03-03 06:26:35'); -+INSERT INTO `marker` VALUES (11470,1901,NULL,2,1939,78832,'Blizzrobe','',81.12554931640625,-86.59439086914062,0,0,0,'2020-03-03 07:35:51'); -+INSERT INTO `marker` VALUES (11471,1901,NULL,2,1939,78832,'Blizzrobe','',73.8475341796875,-86.63885498046875,0,0,0,'2020-03-03 08:17:32'); -+INSERT INTO `marker` VALUES (11472,1901,NULL,2,1944,82489,'chest','forest dweller's bow',195.9140625,-114.5078125,0,1,0,'2020-03-03 18:46:52'); -+INSERT INTO `marker` VALUES (11473,1901,NULL,2,1931,82489,'enemy camp','',195.71875,-114.3984375,0,0,0,'2020-03-03 18:47:32'); -+INSERT INTO `marker` VALUES (11474,1901,NULL,2,1926,86992,'Divine Beast Vah Medoh','',71.5625,-99.875,0,0,0,'2020-03-03 23:58:55'); -+INSERT INTO `marker` VALUES (11475,1901,NULL,2,1939,78832,'Blizzrobe','',83.74578857421875,-93.01483154296875,0,0,0,'2020-03-04 03:45:52'); -+INSERT INTO `marker` VALUES (11476,1901,NULL,2,1939,78832,'Blizzrobe','',89.5594482421875,-99.61810302734375,0,0,0,'2020-03-04 04:51:36'); -+INSERT INTO `marker` VALUES (11477,1901,NULL,2,1936,82489,'rare ore deposit','rare ore deposit',160.43359375,-93.0859375,0,1,0,'2020-03-04 11:28:13'); -+INSERT INTO `marker` VALUES (11478,1901,NULL,2,1936,82489,'rare ore deposit','',143.28515625,-103.87890625,0,1,0,'2020-03-04 15:07:20'); -+INSERT INTO `marker` VALUES (11479,1901,NULL,2,1925,87060,'Keive Tala Shrine','',91.03125,-189.46875,0,0,0,'2020-03-05 03:17:41'); -+INSERT INTO `marker` VALUES (11480,1901,NULL,2,1925,87060,'Takama Shiri Shrine','Dual Purpose',51.40625,-161.671875,0,0,0,'2020-03-05 03:19:24'); -+INSERT INTO `marker` VALUES (11481,1901,NULL,2,1925,87060,'Etsu Korima Shrine','Path of Light',108.9609375,-161.0625,0,0,0,'2020-03-05 03:21:27'); -+INSERT INTO `marker` VALUES (11482,1901,NULL,2,1936,82489,'rare ore deposit','',64.4296875,-92.796875,0,1,0,'2020-03-05 09:10:33'); -+INSERT INTO `marker` VALUES (11483,1901,NULL,2,1944,82489,'fire arrow x5','fire arrow x5',110.3203125,-87.7421875,0,1,0,'2020-03-05 12:56:03'); -+INSERT INTO `marker` VALUES (11484,1901,NULL,2,1901,82489,'xenoblade chronicles 2 ','at night look southeast',84.53125,-82.7421875,0,0,0,'2020-03-05 14:41:25'); -+INSERT INTO `marker` VALUES (11485,1901,NULL,2,1901,82489,'surfing challenge','surfing challenge \r\n',81.8515625,-78.9140625,0,1,0,'2020-03-05 15:02:30'); -+INSERT INTO `marker` VALUES (11486,1901,NULL,2,1916,86809,'a','',64.16015625,-70.05078125,0,0,0,'2020-03-05 15:22:48'); -+INSERT INTO `marker` VALUES (11487,1901,NULL,2,1926,86992,'Divine Beast Vah Medoh','',71.37540761383727,-99.56982879934631,0,0,0,'2020-03-05 18:22:44'); -+INSERT INTO `marker` VALUES (11488,1901,NULL,2,1926,86992,'Divine Beast Va Naboris','',75.8587462119039,-186.15059570481765,0,0,0,'2020-03-05 18:23:41'); -+INSERT INTO `marker` VALUES (11489,1901,NULL,2,1926,86992,'Divine Beast Vah Rudania','',166.42709906278046,-90.28909047202436,0,0,0,'2020-03-05 18:24:19'); -+INSERT INTO `marker` VALUES (11490,1901,NULL,2,1935,82489,'good-sized horse','',96.125,-157.296875,0,1,0,'2020-03-05 19:25:39'); -+INSERT INTO `marker` VALUES (11491,1901,NULL,2,1943,87074,'Phantom Ganon Skull (DLC)','"Some believe this serie headgear is inspirited by a dark entity resembling the Great King of Evil himself. It's a rather rare find."',154.12109375,-177.42578125,0,0,0,'2020-03-05 20:51:33'); -+INSERT INTO `marker` VALUES (11492,1901,NULL,2,1901,87273,'Temple of Time','The Temple once home to the Master Sword',115.421875,-157.984375,0,0,0,'2020-03-07 01:33:12'); -+INSERT INTO `marker` VALUES (11493,1901,NULL,2,1902,84143,'Prueba','Cosa molona',108.515625,-161.79777081414525,0,0,0,'2020-03-07 10:49:35'); -+INSERT INTO `marker` VALUES (11494,1901,NULL,2,1902,84143,'Prueba','Hola',108.375,-161.65700266858596,0,0,0,'2020-03-07 10:50:19'); -+INSERT INTO `marker` VALUES (11495,1901,NULL,2,1944,75356,'Royal Halberd','',118.3125,-86.99443232209474,0,0,0,'2020-03-08 02:40:36'); -+INSERT INTO `marker` VALUES (11496,1901,NULL,2,1901,87453,'Collo','',110.1875,-147.875,0,0,0,'2020-03-08 03:32:59'); -+INSERT INTO `marker` VALUES (11497,1901,NULL,2,1901,87453,'colosseum','',110,-147.84375,0,0,0,'2020-03-08 03:33:38'); -+INSERT INTO `marker` VALUES (11498,1901,NULL,2,1930,83679,'Koblins','Fire Keese\r\nBokoblins \r\nFire Chuchu',161.0078125,-104.125,0,1,0,'2020-03-08 03:46:44'); -+INSERT INTO `marker` VALUES (11499,1901,NULL,2,1931,83679,'Lizalfo Camp ','1 Moblin\r\n3archers\r\nabout 4 Bokoblins',169.4375,-119.78125,0,0,0,'2020-03-08 09:48:03'); -+INSERT INTO `marker` VALUES (11500,1901,NULL,2,1901,64382,'cd','',67.3515625,-69.578125,0,0,0,'2020-03-08 17:21:57'); -+INSERT INTO `marker` VALUES (11501,1901,NULL,2,1901,83679,'Akkala Tech Lab','',198.55859375,-78.515625,0,0,0,'2020-03-09 08:12:23'); -+INSERT INTO `marker` VALUES (11502,1901,NULL,2,1916,87607,'K','',187.30907424793315,-184.49025863916341,0,0,0,'2020-03-09 16:29:41'); -+INSERT INTO `marker` VALUES (11503,1901,NULL,2,1910,86377,'Purple Rupee (50 Rupees)','',158.890625,-165.0078125,0,1,0,'2020-03-09 19:52:52'); -+INSERT INTO `marker` VALUES (11504,1901,NULL,2,1910,86377,'Silver Rupee (100 Rupees)','',107.2734375,-119.88671875,0,0,0,'2020-03-09 21:52:41'); -+INSERT INTO `marker` VALUES (11505,1901,NULL,2,1939,73379,'Ice Wizzrobe','missed one',103.8359375,-186.3671875,0,0,0,'2020-03-10 00:49:00'); -+INSERT INTO `marker` VALUES (11506,1901,NULL,2,1916,86041,'Korok Seed','',132.4375,-189,0,1,0,'2020-03-10 19:44:23'); -+INSERT INTO `marker` VALUES (11507,1901,NULL,2,1916,87765,'Sin encontrar','',111.96066069602966,-85.57942342758179,0,0,0,'2020-03-11 00:18:53'); -+INSERT INTO `marker` VALUES (11508,1901,NULL,2,1901,83679,'Hestu Final Location','This is where Hestu stays, its a small opening beside the master sword platform',134.76171875,-94.93359375,0,0,0,'2020-03-11 11:21:34'); -+INSERT INTO `marker` VALUES (11509,1901,NULL,2,1939,83262,'Wizzarobe','',73.734375,-129.5625,0,0,0,'2020-03-11 16:27:10'); -+INSERT INTO `marker` VALUES (11510,1901,NULL,2,1916,87994,'Korok Seeds','',179.1875,-180.171875,0,0,0,'2020-03-13 12:26:26'); -+INSERT INTO `marker` VALUES (11511,1901,NULL,2,1944,87948,'Zora Helmet','',182.09375,-114.1328125,0,0,0,'2020-03-13 13:07:30'); -+INSERT INTO `marker` VALUES (11512,1901,NULL,2,1931,88022,'Enemy Camp','',65.4820556640625,-97.047607421875,0,1,0,'2020-03-13 16:20:51'); -+INSERT INTO `marker` VALUES (11513,1901,NULL,2,1936,87099,'Box','100 ruby',150.453125,-97.45703125,0,0,0,'2020-03-14 02:08:51'); -+INSERT INTO `marker` VALUES (11514,1901,NULL,2,1925,86320,'Shrine of Resurrection','',110.734130859375,-157.36749267578125,0,0,0,'2020-03-14 10:33:19'); -+INSERT INTO `marker` VALUES (11515,1901,NULL,2,1938,86803,'relais du sud d'Akkala','',177.046875,-101.828125,0,0,0,'2020-03-14 17:27:54'); -+INSERT INTO `marker` VALUES (11516,1901,NULL,2,1926,87473,'Vah Naboris','',95.109375,-168.5703125,0,0,0,'2020-03-15 00:26:56'); -+INSERT INTO `marker` VALUES (11517,1901,NULL,2,1926,72128,'vah'rudania','',167.75,-87.5,0,0,0,'2020-03-15 16:04:52'); -+INSERT INTO `marker` VALUES (11518,1901,NULL,2,1931,73379,'Enemy Camp','You missed this one',195.390625,-137.671875,0,0,0,'2020-03-15 20:01:37'); -+INSERT INTO `marker` VALUES (11519,1901,NULL,2,1936,83262,'Precious & saphire','Cracked stone giving precious stone',95.4765625,-131.2265625,0,0,0,'2020-03-15 20:29:34'); -+INSERT INTO `marker` VALUES (11520,1901,NULL,2,1926,85570,'Divine Beast Vah Medoh','',71.5859375,-98.5,0,0,0,'2020-03-15 23:24:41'); -+INSERT INTO `marker` VALUES (11521,1901,NULL,2,1935,30971,'By Firefly's Light','',157.671875,-144.18359375,0,0,0,'2020-03-17 05:29:30'); -+INSERT INTO `marker` VALUES (11522,1901,NULL,2,1944,87973,'Calças de Tingle','Embaixo do Guardião',127.4960949420929,-131.33984354138374,0,1,0,'2020-03-17 14:48:59'); -+INSERT INTO `marker` VALUES (11523,1901,NULL,2,1936,82864,'Cracked Wall','',139.24609375,-156.1640625,0,0,0,'2020-03-17 18:17:10'); -+INSERT INTO `marker` VALUES (11524,1901,NULL,2,1944,86041,'Royal Spear ','',118.97135418653488,-87.34895837306976,0,1,0,'2020-03-18 02:53:47'); -+INSERT INTO `marker` VALUES (11525,1901,NULL,2,1901,88764,'ok','',35,-127.5,0,0,0,'2020-03-18 17:09:33'); -+INSERT INTO `marker` VALUES (11526,1901,NULL,2,1944,56340,'Knight's Spear','',118.9296875,-87.36562987582413,0,0,0,'2020-03-18 18:26:41'); -+INSERT INTO `marker` VALUES (11527,1901,NULL,2,1916,80263,'seed','',174.48281264305115,-180.75067737849045,0,0,0,'2020-03-19 04:51:20'); -+INSERT INTO `marker` VALUES (11528,1901,NULL,2,1916,80263,'seed','',174.5234375,-180.7027478144451,0,0,0,'2020-03-19 04:51:45'); -+INSERT INTO `marker` VALUES (11529,1901,NULL,2,1930,87199,'Lizalfos','',149.671875,-178.71875,0,0,0,'2020-03-19 19:17:35'); -+INSERT INTO `marker` VALUES (11530,1901,NULL,2,1934,84505,'The Master Sword #18','',134.760991503956,-94.98366451263428,0,0,0,'2020-03-20 20:42:55'); -+INSERT INTO `marker` VALUES (11531,1901,NULL,2,1935,84505,'Rushroom Rush!','',84.14124164340336,-162.78018474578857,0,0,0,'2020-03-20 20:44:16'); -+INSERT INTO `marker` VALUES (11532,1901,NULL,2,1935,84505,'Tools of The Trade','',68.04132015869757,-173.58806848526,0,0,0,'2020-03-20 20:45:54'); -+INSERT INTO `marker` VALUES (11533,1901,NULL,2,1935,84505,'The Secret Club's Secret','',68.28222077425629,-173.828125,0,0,0,'2020-03-20 20:46:44'); -+INSERT INTO `marker` VALUES (11534,1901,NULL,2,1935,84505,'The Mystery Polluter','',66.86012795035073,-174.2734375,0,0,0,'2020-03-20 20:47:23'); -+INSERT INTO `marker` VALUES (11535,1901,NULL,2,1935,84505,'Medicinal Molduga','',67.53287617513175,-173.94460225105286,0,0,0,'2020-03-20 20:47:59'); -+INSERT INTO `marker` VALUES (11536,1901,NULL,2,1935,84505,'The Search for Barta','',66.93399595240831,-173.78125,0,0,0,'2020-03-20 20:48:54'); -+INSERT INTO `marker` VALUES (11537,1901,NULL,2,1935,84505,'The Thunder Helm','',67.26663179238241,-174.34375,0,0,0,'2020-03-20 20:50:23'); -+INSERT INTO `marker` VALUES (11538,1901,NULL,2,1935,84505,'The Eighth Heroine','',69.5796977915071,-173.9765625,0,0,0,'2020-03-20 20:50:43'); -+INSERT INTO `marker` VALUES (11539,1901,NULL,2,1901,88030,'Lanza de hielo dentro del templo, falto recoger','',140.1640625,-115.06749068694579,0,0,0,'2020-03-22 16:38:43'); -+INSERT INTO `marker` VALUES (11540,1901,NULL,2,1926,85570,'Divine Beast Vah Naboris','',95,-169.25,0,0,0,'2020-03-22 17:54:02'); -+INSERT INTO `marker` VALUES (11541,1901,NULL,2,1901,88684,'monster','',168.9622802734375,-171.4658203125,0,0,0,'2020-03-22 19:12:21'); -+INSERT INTO `marker` VALUES (11542,1901,NULL,2,1943,82864,'5 Fire Arrows','',180.099609375,-119.3125,0,0,0,'2020-03-22 23:15:51'); -+INSERT INTO `marker` VALUES (11543,1901,NULL,2,1936,89547,'il tesoro è dietro','',114.4140625,-158.21875,0,0,0,'2020-03-23 16:31:02'); -+INSERT INTO `marker` VALUES (11544,1901,NULL,2,1943,89547,'opal','',115.1640625,-158.66796875,0,0,0,'2020-03-23 19:22:10'); -+INSERT INTO `marker` VALUES (11545,1901,NULL,2,1943,89547,'opal','',115.16015625,-158.75,0,0,0,'2020-03-23 19:28:05'); -+INSERT INTO `marker` VALUES (11546,1901,NULL,2,1931,89547,'bokoblin camp','',107.9375,-154.296875,0,0,0,'2020-03-23 21:15:44'); -+INSERT INTO `marker` VALUES (11547,1901,NULL,2,1943,89547,'flint','',107.90625,-162.7265625,0,0,0,'2020-03-23 21:44:27'); -+INSERT INTO `marker` VALUES (11548,1901,NULL,2,1901,40441,'dinero infinito','',128.421875,-121.34375,0,0,0,'2020-03-24 03:28:09'); -+INSERT INTO `marker` VALUES (11549,1901,NULL,2,1926,39064,'Divine Beast Vah Naboris','',95.125,-169.4375,0,1,0,'2020-03-24 10:27:41'); -+INSERT INTO `marker` VALUES (11550,1901,NULL,2,1901,89658,'1','Bombes',121,-159.0625,0,0,0,'2020-03-24 13:03:30'); -+INSERT INTO `marker` VALUES (11551,1901,NULL,2,1943,89547,'amber','',137.2578125,-137.015625,0,0,0,'2020-03-24 13:07:01'); -+INSERT INTO `marker` VALUES (11552,1901,NULL,2,1934,83679,'Mipha's Touch (#10)','"Mipha quietly expresses her concern for Link while tending to his wounds atop the Divine Beast. She reassures Link that he can count on her in the upcoming trials ahead."',179.625,-120.53125,0,0,0,'2020-03-26 09:48:15'); -+INSERT INTO `marker` VALUES (11553,1901,NULL,2,1910,83262,'Gold Rupees','One gold Rupee\r\n300 rupees',197.77734375,-141.046875,0,0,0,'2020-03-26 17:02:14'); -+INSERT INTO `marker` VALUES (11554,1901,NULL,2,1920,89488,'Footrace Check-in','',86.5560302734375,-109.64181518554688,0,0,0,'2020-03-26 23:21:30'); -+INSERT INTO `marker` VALUES (11555,1901,NULL,2,1910,90066,'Amber','',107.859375,-162.69140625,0,0,0,'2020-03-27 17:33:19'); -+INSERT INTO `marker` VALUES (11556,1901,NULL,2,1936,89210,'Cracker Walls','Salt, Opal',178.3125,-103.3046875,0,0,0,'2020-03-28 12:58:42'); -+INSERT INTO `marker` VALUES (11557,1901,NULL,2,1931,89926,'Bokoblin Enemy Camp','small enemy camp with single watchtower and cooking pot',130.734375,-152.1328125,0,1,0,'2020-03-28 15:11:17'); -+INSERT INTO `marker` VALUES (11558,1901,NULL,2,1931,89926,'Bokoblin Enemy Camp','Small Enemy Camp w/ Cooking Pot',132.44140625,-154.04296875,0,1,0,'2020-03-28 15:26:52'); -+INSERT INTO `marker` VALUES (11559,1901,NULL,2,1931,89926,'Bokoblin Enemy Camp','Small Bokoblin Enemy Camp with single watchtower',135.71875,-152.73828125,0,1,0,'2020-03-28 15:34:24'); -+INSERT INTO `marker` VALUES (11560,1901,NULL,2,1901,90222,'ijko','ijko',152.09375,-184.21875,0,1,0,'2020-03-29 12:24:58'); -+INSERT INTO `marker` VALUES (11561,1901,NULL,2,1931,88203,'Bokoblins','',171.90625,-177.96875,0,0,0,'2020-03-29 13:46:19'); -+INSERT INTO `marker` VALUES (11562,1901,NULL,2,1901,89757,'hhhh','',106.421875,-153.84375,0,0,0,'2020-03-29 15:29:53'); -+INSERT INTO `marker` VALUES (11563,1901,NULL,2,1931,88203,'Bokoblins/Moblin','',160.87109375,-189.28125,0,0,0,'2020-03-29 15:34:46'); -+INSERT INTO `marker` VALUES (11564,1901,NULL,2,1931,88203,'Lezalfos','',179.8671875,-189.05859375,0,0,0,'2020-03-29 15:35:28'); -+INSERT INTO `marker` VALUES (11565,1901,NULL,2,1931,88203,'Bokoblins','',149.17578125,-181.578125,0,0,0,'2020-03-29 17:53:23'); -+INSERT INTO `marker` VALUES (11566,1901,NULL,2,1931,88203,'Bokoblins','',156.0390625,-186.6171875,0,0,0,'2020-03-29 18:24:57'); -+INSERT INTO `marker` VALUES (11567,1901,NULL,2,1931,88203,'Bokoblins','',141.8828125,-174.42578125,0,0,0,'2020-03-29 20:11:52'); -+INSERT INTO `marker` VALUES (11568,1901,NULL,2,1931,88203,'Bokoblins','',139.55859375,-171.1015625,0,0,0,'2020-03-29 20:12:09'); -+INSERT INTO `marker` VALUES (11569,1901,NULL,2,1931,88203,'Bokoblins','',139.328125,-155.51953125,0,0,0,'2020-03-30 20:43:44'); -+INSERT INTO `marker` VALUES (11570,1901,NULL,2,1901,89884,'john','',189.96875,-102.81510424613953,0,0,0,'2020-03-30 21:07:35'); -+INSERT INTO `marker` VALUES (11571,1901,NULL,2,1944,87973,'Medalhão de Viajem','Subsolo',200.729687333107,-72.39843761920929,0,1,0,'2020-03-31 00:16:57'); -+INSERT INTO `marker` VALUES (11572,1901,NULL,2,1926,90748,'Vah Medoh','',71.25,-99.875,0,0,0,'2020-03-31 11:33:43'); -+INSERT INTO `marker` VALUES (11573,1901,NULL,2,1926,90748,'Vah Rudania','',167.5,-87.75,0,0,0,'2020-03-31 11:36:41'); -+INSERT INTO `marker` VALUES (11574,1901,NULL,2,1926,90748,'Vah Naboris','',94.125,-168.375,0,0,0,'2020-03-31 11:38:37'); -+INSERT INTO `marker` VALUES (11575,1901,NULL,2,1943,90785,'DLC Chest ruby','Ruby',117.5,-151.73046875,0,0,0,'2020-04-01 13:32:56'); -+INSERT INTO `marker` VALUES (11576,1901,NULL,2,1901,90559,'Giant Horse','The area where the giant horse is found',108.875,-169.875,0,0,0,'2020-04-01 16:10:11'); -+INSERT INTO `marker` VALUES (11577,1901,NULL,2,1901,90983,'Toston's House','Mi humilde casita',179.79620046330842,-163.87256836537497,0,0,0,'2020-04-02 07:04:44'); -+INSERT INTO `marker` VALUES (11578,1901,NULL,2,1939,83679,'Ice Wizzrobe','',91.2265625,-99.22265625,0,0,0,'2020-04-02 07:57:10'); -+INSERT INTO `marker` VALUES (11579,1901,NULL,2,1901,78192,'bb','',174.25799560546875,-165.0872802734375,0,0,0,'2020-04-02 09:16:48'); -+INSERT INTO `marker` VALUES (11580,1901,NULL,2,1925,91066,'s','',132.84375,-79.15625,0,0,0,'2020-04-02 18:18:49'); -+INSERT INTO `marker` VALUES (11581,1901,NULL,2,1901,91165,'Campfire ','',105.58823109061187,-152.63490753177268,0,0,0,'2020-04-03 11:57:51'); -+INSERT INTO `marker` VALUES (11582,1901,NULL,2,1936,83262,'Cracked wall','precious gems\r\n',160.515625,-93.109375,0,0,0,'2020-04-03 15:24:44'); -+INSERT INTO `marker` VALUES (11583,1901,NULL,2,1901,90976,'xc','',59.125,-115.3125,0,0,0,'2020-04-04 06:44:32'); -+INSERT INTO `marker` VALUES (11584,1901,NULL,2,1930,91409,'death','',117.625,-160.21875,0,0,0,'2020-04-05 02:55:33'); -+INSERT INTO `marker` VALUES (11585,1901,NULL,2,1937,91401,'Horse Fairy','',140.25,-186.171875,0,0,0,'2020-04-05 18:33:56'); -+INSERT INTO `marker` VALUES (11586,1901,NULL,2,1901,91548,'Peak','Contains: Amber',107.8671875,-162.7109375,0,0,0,'2020-04-05 20:50:07'); -+INSERT INTO `marker` VALUES (11587,1901,NULL,2,1944,83262,'treasure chest ','5 fire arrow',70.25,-68.265625,0,0,0,'2020-04-07 15:01:22'); -+INSERT INTO `marker` VALUES (11588,1901,NULL,2,1926,75096,'Divine Beast Vah Rudania','',165.67869567871094,-88.67755508422852,0,0,0,'2020-04-07 22:10:39'); -+INSERT INTO `marker` VALUES (11589,1901,NULL,2,1926,75096,'Divine Beast Vah Naboris','',94.93680953979492,-168.76338624954224,0,0,0,'2020-04-07 22:11:36'); -+INSERT INTO `marker` VALUES (11590,1901,NULL,2,1926,75096,'Divine Beast Vah Medoh','',71.38671875,-99.80078125,0,0,0,'2020-04-07 22:12:04'); -+INSERT INTO `marker` VALUES (11591,1901,NULL,2,1916,91098,'koro seed','',120.625,-79.25,0,0,0,'2020-04-08 00:47:27'); -+INSERT INTO `marker` VALUES (11592,1901,NULL,2,1943,90882,'Purple rubies','',99.90625,-165.09375,0,0,0,'2020-04-08 00:47:35'); -+INSERT INTO `marker` VALUES (11593,1901,NULL,2,1920,89332,'Shrine of Resurection','',110.96875,-157.73061992598812,0,0,0,'2020-04-09 07:32:55'); -+INSERT INTO `marker` VALUES (11594,1901,NULL,2,1916,91143,'Falto','',71.4375,-99.9657286116765,0,0,0,'2020-04-09 18:31:59'); -+INSERT INTO `marker` VALUES (11595,1901,NULL,2,1901,92155,'Eightfold blade','Location of an Eightfold blade.',153.671875,-143.078125,0,0,0,'2020-04-09 21:32:40'); -+INSERT INTO `marker` VALUES (11596,1901,NULL,2,1901,92155,'Test','',150.1796875,-142.59375,0,0,0,'2020-04-09 21:34:04'); -+INSERT INTO `marker` VALUES (11597,1901,NULL,2,1902,92155,'Lizalfos with a Phernic bow','A Lizalfos is carrying a Phernic bow here.\r\n',147.9375,-138.62109375,0,0,0,'2020-04-09 22:10:58'); -+INSERT INTO `marker` VALUES (11598,1901,NULL,2,1905,92155,'Shield of the Mind's Eye','Inside of the skull there is a Shield of the Mind's Eye laying on the floor. It's a good idea to disguise yourself before going in since a bokoblin may equip it otherwise.',143.6875,-149.640625,0,0,0,'2020-04-09 22:16:16'); -+INSERT INTO `marker` VALUES (11599,1901,NULL,2,1936,83262,'precious gem','topaz x2\r\nsaphire\r\namber',174.5859375,-133.6875,0,0,0,'2020-04-10 17:05:15'); -+INSERT INTO `marker` VALUES (11600,1901,NULL,2,1901,92411,'Safula Hill','',99.5625,-142.078125,0,0,0,'2020-04-11 13:25:33'); -+INSERT INTO `marker` VALUES (11601,1901,NULL,2,1916,92423,'korogu','',132.1796875,-179.484375,0,0,0,'2020-04-11 21:31:18'); -+INSERT INTO `marker` VALUES (11602,1901,NULL,2,1926,23247,'Vah Rudania','',167.6484375,-87.46875,0,1,0,'2020-04-13 00:09:29'); -+INSERT INTO `marker` VALUES (11603,1901,NULL,2,1916,90785,'Korok Seeds','under rock',125.5546875,-115.921875,0,0,0,'2020-04-13 12:23:00'); -+INSERT INTO `marker` VALUES (11604,1901,NULL,2,1941,92846,'Zendou','',156.5,-101.3125,0,0,0,'2020-04-13 15:37:15'); -+INSERT INTO `marker` VALUES (11605,1901,NULL,2,1901,92845,'Great Plateau Tower','The Game starts here',119.28515625,-154.52734375,0,0,0,'2020-04-13 15:37:43'); -+INSERT INTO `marker` VALUES (11606,1901,NULL,2,1916,92929,'Start for south','',62.30078125,-84.40625,0,0,0,'2020-04-14 06:21:26'); -+INSERT INTO `marker` VALUES (11607,1901,NULL,2,1916,92929,'start for north','',64.453125,-92.359375,0,0,0,'2020-04-14 06:46:44'); -+INSERT INTO `marker` VALUES (11608,1901,NULL,2,1916,92929,'Start for south','',57.765625,-88.75390625,0,0,0,'2020-04-14 07:18:36'); -+INSERT INTO `marker` VALUES (11609,1901,NULL,2,1916,92929,'Start for South East','',107.703125,-77.328125,0,0,0,'2020-04-14 10:02:47'); -+INSERT INTO `marker` VALUES (11610,1901,NULL,2,1901,92956,'Schrein','',152.875,-133.8125,0,0,0,'2020-04-14 11:51:05'); -+INSERT INTO `marker` VALUES (11611,1901,NULL,2,1916,92929,'Start for North East','',112.40625,-153.9609375,0,0,0,'2020-04-14 13:09:24'); -+INSERT INTO `marker` VALUES (11612,1901,NULL,2,1916,92929,'Start for South','',145.6875,-164.390625,0,0,0,'2020-04-14 17:39:44'); -+INSERT INTO `marker` VALUES (11613,1901,NULL,2,1944,83679,'Falcon Bow','',68.5234375,-121.97265625,0,0,0,'2020-04-15 07:15:00'); -+INSERT INTO `marker` VALUES (11614,1901,NULL,2,1916,92929,'Start for East','',191.8203125,-154.8125,0,0,0,'2020-04-15 07:17:10'); -+INSERT INTO `marker` VALUES (11615,1901,NULL,2,1939,83679,'Ice Wizzrobe','weapon: Blizzard rod',73.9609375,-129.65625,0,0,0,'2020-04-15 12:28:58'); -+INSERT INTO `marker` VALUES (11616,1901,NULL,2,1935,92929,'7th ZORA statue ','',178.984375,-125.7109375,0,0,0,'2020-04-15 13:24:20'); -+INSERT INTO `marker` VALUES (11617,1901,NULL,2,1935,92929,'1st ZORA statue','',178.9453125,-128.546875,0,0,0,'2020-04-15 13:39:04'); -+INSERT INTO `marker` VALUES (11618,1901,NULL,2,1935,92929,'6th ZORA statue','',181,-128.8046875,0,0,0,'2020-04-15 13:40:45'); -+INSERT INTO `marker` VALUES (11619,1901,NULL,2,1935,92929,'1st ZORA statue','',172.8046875,-126.90625,0,0,0,'2020-04-15 13:58:26'); -+INSERT INTO `marker` VALUES (11620,1901,NULL,2,1935,92929,'3rd ZORA statue','',175.8125,-124.625,0,0,0,'2020-04-15 14:13:43'); -+INSERT INTO `marker` VALUES (11621,1901,NULL,2,1935,92929,'5th ZORA statue','',172.390625,-130.875,0,0,0,'2020-04-15 14:21:50'); -+INSERT INTO `marker` VALUES (11622,1901,NULL,2,1935,92929,'2nd ZORA statue','',172.90625,-127.515625,0,0,0,'2020-04-15 14:24:15'); -+INSERT INTO `marker` VALUES (11623,1901,NULL,2,1935,92929,'A masonry monument','',178.125,-116.5,0,0,0,'2020-04-15 14:38:33'); -+INSERT INTO `marker` VALUES (11624,1901,NULL,2,1935,92929,'2nd ZORA side story ','',185.9765625,-119.515625,0,0,0,'2020-04-15 14:42:39'); -+INSERT INTO `marker` VALUES (11625,1901,NULL,2,1901,93236,'Amber','',107.87890625,-162.6796875,0,0,0,'2020-04-16 03:08:48'); -+INSERT INTO `marker` VALUES (11626,1901,NULL,2,1916,92929,' Start for East','',59.390625,-147.078125,0,0,0,'2020-04-16 06:09:08'); -+INSERT INTO `marker` VALUES (11627,1901,NULL,2,1939,83679,'Ice Wizzrobe','holding blizzard rod',61.515625,-145.3671875,0,0,0,'2020-04-16 09:52:15'); -+INSERT INTO `marker` VALUES (11628,1901,NULL,2,1916,92423,'korogu','',124.4921875,-111.5,0,0,0,'2020-04-16 10:07:09'); -+INSERT INTO `marker` VALUES (11629,1901,NULL,2,1916,92929,'Start for South','',87.5625,-183.46875,0,0,0,'2020-04-16 11:05:01'); -+INSERT INTO `marker` VALUES (11630,1901,NULL,2,1916,92929,'Start for West','',186.25,-154.3125,0,0,0,'2020-04-16 12:55:27'); -+INSERT INTO `marker` VALUES (11631,1901,NULL,2,1916,92929,'start for north','',181.75,-145.125,0,0,0,'2020-04-16 13:03:29'); -+INSERT INTO `marker` VALUES (11632,1901,NULL,2,1916,92929,'start for south west','',165.09375,-115.40625,0,0,0,'2020-04-16 14:08:12'); -+INSERT INTO `marker` VALUES (11633,1901,NULL,2,1916,92929,'start for north west','',160.71875,-122.8125,0,0,0,'2020-04-16 14:20:41'); - /*!40000 ALTER TABLE `marker` ENABLE KEYS */; - UNLOCK TABLES; - -@@ -8411,25 +10089,6 @@ INSERT INTO `marker_category` VALUES (327,322,1,3,'Dungeons',1,'map_dungeon','#0 - INSERT INTO `marker_category` VALUES (328,322,1,3,'Chefes',1,'map_boss','#000000',5,1); - INSERT INTO `marker_category` VALUES (329,322,2,3,'Marcadores de Pulo',1,'map_jump','#000000',5,1); - INSERT INTO `marker_category` VALUES (330,322,3,3,'Lugares',1,'map_places','#000000',5,1); --INSERT INTO `marker_category` VALUES (400,NULL,1,4,'Itens',1,'map_item','#000000',5,1); --INSERT INTO `marker_category` VALUES (401,400,1,4,'Itens comuns',1,'map_item','#000000',5,1); --INSERT INTO `marker_category` VALUES (402,400,1,4,'Mapa',1,'map_map','#000000',5,1); --INSERT INTO `marker_category` VALUES (403,400,1,4,'Bússola',1,'map_compass','#000000',5,1); --INSERT INTO `marker_category` VALUES (404,400,1,4,'Chave',1,'map_key','#000000',5,1); --INSERT INTO `marker_category` VALUES (405,400,1,4,'Coração',1,'map_heart','#000000',5,1); --INSERT INTO `marker_category` VALUES (415,NULL,1,4,'Segredos',1,'map_secret','#000000',5,1); --INSERT INTO `marker_category` VALUES (416,415,1,4,'Secret Seashell ',1,'placeholder','#000000',5,1); --INSERT INTO `marker_category` VALUES (417,415,1,4,'Mad Batter',1,'placeholder','#000000',5,1); --INSERT INTO `marker_category` VALUES (418,415,1,4,'Easter Egg ',1,'map_gambling','#000000',5,1); --INSERT INTO `marker_category` VALUES (419,415,1,4,'Trocas',1,'map_move','#000000',5,1); --INSERT INTO `marker_category` VALUES (420,415,1,4,'Portal',1,'map_tloz_warp','#000000',5,1); --INSERT INTO `marker_category` VALUES (421,415,1,4,'Rupees',1,'map_rupee','#000000',5,1); --INSERT INTO `marker_category` VALUES (430,NULL,1,4,'Pontos de Interesse ',1,'map_poi','#000000',5,1); --INSERT INTO `marker_category` VALUES (431,430,1,4,'Informação',1,'map_info','#000000',5,1); --INSERT INTO `marker_category` VALUES (432,430,1,4,'Level',1,'map_dungeon','#000000',5,1); --INSERT INTO `marker_category` VALUES (433,430,1,4,'Chefe',1,'map_boss','#000000',5,1); --INSERT INTO `marker_category` VALUES (434,430,3,4,'Lugares',1,'map_places','#000000',5,1); --INSERT INTO `marker_category` VALUES (435,430,2,4,'Marcadores de Pulo',1,'map_jump','#000000',5,1); - INSERT INTO `marker_category` VALUES (500,NULL,1,5,'Itens',1,'map_item','#000000',5,1); - INSERT INTO `marker_category` VALUES (501,500,1,5,'Itens comuns',1,'map_item','#000000',5,1); - INSERT INTO `marker_category` VALUES (502,500,1,5,'Garrafa',1,'map_bottle','#000000',5,1); -@@ -8526,6 +10185,25 @@ INSERT INTO `marker_category` VALUES (1946,1901,1,19,'Diary & Books',1,'BotW_Boo - INSERT INTO `marker_category` VALUES (1947,1930,1,19,'Molduga',1,'BotW_Boss','#ff422e',6,1); - INSERT INTO `marker_category` VALUES (1948,1901,1,19,'Cooking Pot',1,'BotW_Cooking_Pot','#4bc5ee',8,1); - INSERT INTO `marker_category` VALUES (1949,1901,1,19,'Goddess Statue',1,'BotW_Goddess_Statue','#4bc5ee',6,1); -+INSERT INTO `marker_category` VALUES (1950,NULL,1,4,'Point of Interest',1,'BotW_Points-of-Interest','#4bc5ee',0,1); -+INSERT INTO `marker_category` VALUES (1951,1950,1,4,'Cracked Walls',1,'BotW_Bomb','#4bc5ee',0,1); -+INSERT INTO `marker_category` VALUES (1952,1950,1,4,'Trading Sequence',1,'BotW_Side-Quest','#4bc5ee',0,1); -+INSERT INTO `marker_category` VALUES (1953,1950,1,4,'Minigame',1,'BotW_Mini-Game','#4bc5ee',0,1); -+INSERT INTO `marker_category` VALUES (1954,1950,1,4,'Easter Eggs',1,'General_Info','#4bc5ee',0,0); -+INSERT INTO `marker_category` VALUES (1955,NULL,1,4,'Items',1,'BotW_Items','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1956,1955,1,4,'Pieces of Heart',1,'General_Heart','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1957,1955,1,4,'Seashells',1,'LA_Secret-Seashell','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1958,1955,1,4,'Bottles',1,'General_Bottle','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1960,1955,1,4,'Map',1,'General_Map','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1961,1955,1,4,'Compass',1,'General_Compass','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1962,1955,1,4,'Keys',1,'General_Key','#ffad48',0,1); -+INSERT INTO `marker_category` VALUES (1963,NULL,1,4,'Locations',1,'BotW_Locations','#8e72b9',0,1); -+INSERT INTO `marker_category` VALUES (1964,1963,1,4,'Houses',1,'General_House','#8e72b9',0,1); -+INSERT INTO `marker_category` VALUES (1965,1963,1,4,'Shops',1,'General_Store','#8e72b9',0,1); -+INSERT INTO `marker_category` VALUES (1966,1963,1,4,'Dungeons',1,'BotW_Dungeon','#8e72b9',0,1); -+INSERT INTO `marker_category` VALUES (1967,NULL,1,4,'Enemies',1,'BotW_Enemies','#ff422e',0,1); -+INSERT INTO `marker_category` VALUES (1968,1967,1,4,'Boss',1,'BotW_Boss','#ff422e',0,1); -+INSERT INTO `marker_category` VALUES (1969,1963,1,4,'Fairy Fountains',1,'BotW_Great-Fairy','#8e72b9',3,1); - /*!40000 ALTER TABLE `marker_category` ENABLE KEYS */; - UNLOCK TABLES; - -@@ -11406,6 +13084,339 @@ INSERT INTO `marker_tab` VALUES (3526,9717,1,19312,'','<p>Visit into <s - INSERT INTO `marker_tab` VALUES (3527,9723,1,21563,'','<p>???</p>',1,1); - INSERT INTO `marker_tab` VALUES (3528,9724,1,21563,'','<p>kll</p>',1,1); - INSERT INTO `marker_tab` VALUES (3529,9727,1,21321,'','<p>fff</p>\r\n<p>&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3530,9733,1,21324,'','<p>Equipped Items: Blizzard Rod</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3531,9738,1,16861,'','<p>Topaz</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3532,9740,1,21892,'','<p style="text-align: justify;">Tout est rare dans <strong>The Legend of Zelda : Breath of the Wild</strong>, et il vous est probablement arriv&eacute; d'&ecirc;tre en manque de fl&egrave;che au pire moment possible. Heureusement, il existe une astuce simple pour faire le plein de fl&egrave;ches, une bonne fois pour toute, afin de ne plus se retrouver dans la panade. Il n'y a aucun pr&eacute;requis &agrave; avoir, puisque nous allons juste abuser d'un d&eacute;faut dans l'intelligence artificielle des ennemis.</p>\r\n<div id="switch_placeholder_16bd153f5b96ff72d75033157f61d5d9" class="switch_placeholder">&nbsp;</div>\r\n<p style="text-align: justify;">Pour commencez, vous aller devoir trouver un endroit plein de <strong>Bokoblins</strong>, mont&eacute;s sur des chevaux et munis d'arcs. Il en existe un tr&egrave;s facile d'acc&egrave;s dans les Collines de Tabanta, comme vous pouvez le voir sur la map suivante.</p>\r\n<p style="text-align: center;"><img style="width: 80%;" src="http://www.eclypsia.com/content/Zelda/BreathOfTheWild/Fleches_Tabanta.jpg" alt="" /></p>\r\n<p style="text-align: justify;">Faites-vous remarquer par les ennemis (ils ont un point d'exclamation de la t&ecirc;te quand ils vous rep&egrave;rent) et quand ils commencent &agrave; vous attaquer, placez la cam&eacute;ra au dessus de vous et ne bougez plus. Les Bokoblins vont alors vous tourner autour et tentez de vous tirer des fl&egrave;ches, mais <strong>ils rateront toujours leur cible</strong>. Les fl&egrave;ches vont alors s'accumuler &agrave; vos pieds et vous n'aurez qu'&agrave; tourner sur vous m&ecirc;me et appuyer sur A pour les ramasser.</p>\r\n<p style="text-align: center;"><img style="width: 80%;" src="http://www.eclypsia.com/content/Zelda/BreathOfTheWild/Zelda_Fleches_Screens.jpg" alt="" /></p>\r\n<p style="text-align: justify;">Vous pourrez tr&egrave;s facilement accumuler plusieurs centaines de fl&egrave;ches en l'espace de quelques minutes. De quoi &ecirc;tre tranquille pour un bon bout de temps.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3533,9749,1,22175,'','<p>Contains: Majora's Mask</p>\r\n<p>In Ground: Yes</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3534,9757,1,22585,'','<p>Contains Korok seed and rusty broadsward</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3535,9758,1,22600,'','<img src="https://www.zeldadungeon.net/wiki/images/thumb/b/b2/Korok129.png/200px-Korok129.png" width="170" height="120" />',1,1); -+INSERT INTO `marker_tab` VALUES (3536,9759,1,22524,'','<p>Hestu Final Location</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3537,9761,1,22780,'','<p>jhmn</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3538,9790,1,1550,'','<p>fast</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3539,9790,1,1550,'','<p>rest</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3540,9791,1,1550,'','<p>1212</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3541,9793,1,23704,'','<p>Three Hylian Shrooms, accesable as soon as you start the game.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3542,9799,1,23704,'','<p>Wall hides a chest with a Traveler's Bow with increased durability.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3543,9823,1,25083,'','<p>Silver Bokoblin Present.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3544,9830,1,25546,'','<p><a title="Rupias" href="https://www.youtube.com/watch?v=kE61uBIa6TA">https://www.youtube.com/watch?v=kE61uBIa6TA</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3545,9852,1,27279,'','<p>???</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3546,9858,1,22592,'','<p>Rewards - Ice Arrow x5</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3547,9860,1,22592,'','<p>Rewards - Silver Rupee</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3548,9889,1,29204,'','<p>NPC: Walton</p>\r\n<p>Requires: Items</p>\r\n<p>Reward: Diamond</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3549,9890,1,29204,'','<p>NPC: Jana</p>\r\n<p>Requires: Give&nbsp;insects</p>\r\n<p>Reward: 100 Rupees</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3550,9891,1,30043,'','<p>Thyphlo Ruins</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3551,9892,1,29101,'','<p>Antikes Zaumzeug&nbsp;unter Kirschbaum im Laub.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3552,9897,1,30319,'','<p>DLC Item</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3553,9898,1,30319,'','<p>Found in stone monument,</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3554,9900,1,30529,'','<p><strong><em>try</em></strong></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3555,9915,1,30976,'','<p>follow the flower trail</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3556,9945,1,32758,'','<p>pick up the stone</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3557,9950,1,32941,'','<p>Phantom armor</p>\r\n<p>&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3558,9957,1,30338,'','<p>???</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3559,9977,1,34138,'','<p><strong>1</strong></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3560,9990,1,34279,'','<p>Soldier's Spear in chest on top of floating platform by bridge.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3561,9995,1,34755,'','<p><strong>???</strong></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3562,9996,1,34424,'','<p>NPC: Koyin</p>\r\n<p>Requires: Clear out Bokoblin Camp in Hateno Beach</p>\r\n<p>Reward: Fresh Milk x10</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3563,9999,1,34755,'','<p>????</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3564,10003,1,34279,'','<p>Chest on floating platform in Master Mode.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3565,10016,1,34279,'','<p>Master Moad<br />On floating platform over river.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3566,10017,1,34279,'','<p>Master Mode<br />On top of floating platform close to ledge</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3567,10018,1,34279,'','<p>Master Mode<br />On top of floating platform just above river</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3568,10019,1,34279,'','<p>Master Mode<br />Floating platform abover river.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3569,10020,1,34279,'','<p>Master Mode<br />Floating platform on top of the waterfall</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3570,10021,1,34279,'','<p>Master Mode<br />On floating platform just above the water.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3571,10022,1,34279,'','<p>Master Mode<br />Floating platform all the way up, in front of the waterfall.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3572,10028,1,35555,'','<p>[Havok Gaming] 'tracehavok' defeated Stone Talus (Luminous) at this location and it was not listed on Zelda Maps</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3573,10029,1,34279,'','<p>Master Mode<br />On high floating platform in front of the waterfall.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3574,10030,1,34279,'','<p>Master Mode<br />Floating platform alongside the waterfall.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3575,10031,1,34279,'','<p>Master Mode<br />Floating platform on the southern side of the bridge. You can snag the chest from the bridge with Magnesis if you desire.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3576,10036,1,34279,'','<p>EX Chest<br />In Basement<br />Contains: Travel Medallion</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3577,10039,1,36179,'','<p>Divine Beast Vah Rudania is enterable after it's hit 3 times by Yunobo.</p>\r\n<p>It's dark inside untill the map is collected.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3578,10040,1,34279,'','<p>Ice Wizzrobe</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3579,10054,1,34279,'','<p>Ravio's Hood (EX)<br />Right under the right hand.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3580,10055,1,34279,'','<p>EX: Tingle's Shirt</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3581,10058,1,37845,'','<p>Reward: 50 Rupees</p>\r\n<p>Go to Lazli's house at night and talk to her. She will ask for you to bring her some fireflies. Return to her house while she's there and hold five Sunset Fireflies in your hands. Drop them in front of her, and the quest will be completed.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3582,10060,1,37845,'','<p>Torfeau will ask you to defeat the Hinox at Ralis Pond.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3583,10061,1,37845,'','<p>Make Guy a cooling elixir by combining monster parts and a Cold Darner. Cooling <em>foods</em> will not work; it must be an <em>elixir</em>.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3584,10062,1,37845,'','<p>Reward: Sand Boots (The Eighth Heroine) &amp; Snow Boots (The Forgotten Sword)</p>\r\n<p>Speak with Bozai while dressed in the female Gerudo clothes. He will give you the Snow Boots. If you want the Sand Boots, you have to complete his quest, "The Eighth Heroine" first. You must photograph the statue of the Eighth Heroine and return to him. He gives you the Sand Boots, but takes the Snow Boots back. If you want both sets of boots, complete "The Forgotten Sword", where you must head up a mountain and photograph the Eighth Heroine's lost sword. Return to him to get the Snow Boots.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3585,10063,1,37845,'','<p>For "The Eighth Heroine" sidequest.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3586,10064,1,37845,'','<p>For "The Forgotten Sword" sidequest.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3587,10067,1,37908,'','<p>Seach the cart ruins.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3588,10069,1,38196,'','<ul>\r\n<li><a href="https://vandal.elespanol.com/guias/guia-zelda-breath-of-the-wild/santuario-de-kaoma">Santuario de Kaoma</a></li>\r\n</ul>',1,1); -+INSERT INTO `marker_tab` VALUES (3589,10086,1,35517,'','<p>Bomb Arrows BOX</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3590,10117,1,41851,'','<p>Requires: Cooling Elixir</p>\r\n<p>Reward: Purple Rupee</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3591,10126,1,40727,'','<p style="padding-left: 40px;">beneath bombable rocks</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3592,10139,1,43245,'','<p>Rupee Farm</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3593,10148,1,42733,'','<p>NPC: Koyin</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3594,10149,1,42733,'','<p>NPC: Purah</p>\r\n<p>&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3595,10150,1,42733,'','<p>NPC: Symin</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3596,10151,1,42733,'','<p>NPC: Purah</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3597,10152,1,42733,'','<p>NPC: Sebasto</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3598,10155,1,39380,'','<p>A helmet much like the one Midna wore when she fought alongside the Hero of Twilight. It's a rather rare find.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3599,10156,1,44908,'','<p>silver rupee</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3600,10157,1,44908,'','<p>chest</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3601,10193,1,46735,'','<p>?????</p>\r\n<p>&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3602,10200,1,46946,'','<p>Tunique bleue (anti-chaleur)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3603,10201,1,46946,'','<p>Tunique bleue (anti-chaleur)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3604,10202,1,46946,'','<p>Tinique bleue (anti-chaleur)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3605,10203,1,46459,'','<p>DLC only.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3606,10206,1,45945,'','<p>A Shrine Quest given by the NPC Garini. He will be standing next to a broken stone tablet, and then will request your assistance in finding the rest of the pieces along the beach and shoreline. You need to take pictures of each, and then return to him to unlock the Kah Yah Shrine.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3607,10207,1,46811,'','<p>Divine Beast Vah Naboris</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3608,10214,1,46381,'','<p>Appears only after 23 o'clock</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3609,10219,1,47945,'','<p>Sheikah technology research lab created by Robbie after the destruction of the Royal Ancient Tech Lab during the <a title="Great Calamity" href="https://zelda.fandom.com/wiki/Great_Calamity">Great Calamity</a> where he continued his research into ancient technology. It was built from the remains of the old Akkala&nbsp;lighthouse that existed before the Great Calamity.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3610,10226,1,47917,'','<p>Starts on the cliff to the south</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3611,10229,1,49050,'','<p>punto di riferimento su mappa monti gemelli</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3612,10232,1,48859,'','<blockquote>\r\n<p>Southern mine (Goron) Greyson and fire guard armor found here</p>\r\n</blockquote>',1,1); -+INSERT INTO `marker_tab` VALUES (3613,10250,1,50431,'','<p>treasure</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3614,10251,1,50431,'','<p>wooden arrow x5</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3615,10252,1,50431,'','<p>knights shield</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3616,10253,1,50431,'','<p>bow</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3617,10254,1,50431,'','<p>bomb arrorx5</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3618,10255,1,50431,'','<p>arrow</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3619,10256,1,50431,'','<p>fire arr x5</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3620,10270,1,50205,'','<p>Equipped Items: Blizzard Rod</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3621,10283,1,52670,'','<p>Cracked wall housing several ore deposits on the ceiling inside.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3622,10287,1,53330,'','<p><strong>Divine Beast Vah Naboris</strong></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3623,10297,1,51643,'','<p>&Ccedil;A MOUILLE</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3624,10321,1,55591,'','<p>asdf</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3625,10333,1,52480,'','<p>Master Mode Lynel</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3626,10335,1,56400,'','<p>Sonnenaufgang fliegt Eldra &uuml;ber das Skelett</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3627,10350,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3628,10351,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3629,10352,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3630,10353,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3631,10354,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3632,10355,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3633,10356,1,57361,'','<p>Route to next village.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3634,10357,1,57361,'','<p>Frozen, will wake up when nearing</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3635,10360,1,45711,'','<p>The Four Winds<br />(DLC)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3636,10361,1,45711,'','<p>Stop to Start</p>\r\n<p>(DLC)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3637,10362,1,45711,'','<p>Path to Light</p>\r\n<p>(DLC)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3638,10363,1,45711,'','<p>Master the Orb</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3639,10364,1,45711,'','<p>Aim for Stilness</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3640,10381,1,57925,'','<p>Wild Horse Location</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3641,10384,1,57925,'','<p>&nbsp;</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3642,10385,1,57925,'','<p>&nbsp;</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3643,10386,1,57925,'','<p>&nbsp;</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3644,10387,1,57925,'','<p>&nbsp;</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3645,10388,1,57925,'','<p>&nbsp;</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3646,10398,1,55864,'','<p>This seed is missing from the map</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3647,10400,1,58919,'','<p>Platform</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3648,10403,1,59420,'','<p>This mission became available afther completing the Wild trial.</p>\r\n<p>I had the master sword in my possesion by the time I came back.</p>\r\n<p>Maybe just completing the wild trial and waiting a couple of days is enough to makeJiogi appear.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3649,10409,1,48504,'','<p>Equiped with: Blizzard Rod</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3650,10412,1,60169,'','<p>asd</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3651,10423,1,60912,'','<p><span style="display: inline !important; float: none; background-color: #ffffff; color: #252627; font-family: 'ars-maquette-web',sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">look along the Northwest walls of the ground floor and use </span><a class="new" style="box-sizing: border-box; color: #3888c9; font-family: &amp;quot; ars-maquette-web&amp;quot;,sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;" title="Magnesis (page does not exist)" href="https://www.ign.com/wikis/the-legend-of-zelda-hd/Magnesis">Magnesis</a><span style="display: inline !important; float: none; background-color: #ffffff; color: #252627; font-family: 'ars-maquette-web',sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"> on the buried chest. </span></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3652,10428,1,60291,'','<p>???</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3653,10438,1,57925,'','<p>&nbsp;</p>\r\n<div id="simple-translate">\r\n<div>\r\n<div class="simple-translate-button " style="background-image: url('moz-extension://d17e1a95-b60e-472b-b6ce-74b5eea5aa60/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>\r\n<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">\r\n<div class="simple-translate-result-wrapper" style="overflow: hidden;">\r\n<p class="simple-translate-result" style="color: #000000;">&nbsp;</p>\r\n<p class="simple-translate-candidate" style="color: #737373;">&nbsp;</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1,1); -+INSERT INTO `marker_tab` VALUES (3654,10453,1,61555,'','<p>Hidden in cairn at top of Mount Hyrule.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3655,10454,1,61555,'','<p>In hidden chest of Shrine.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3656,10460,1,61589,'','<p>NPC: Jiahto</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3657,10461,1,61589,'','<p>NPC: Izra</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3658,10469,1,63606,'','<p>aaaaa</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3659,10470,1,63606,'','<p>a</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3660,10482,1,63841,'','<p>test</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3661,10484,1,64446,'','<p>Head to the Hateno Beach and clear out the enemy camp there.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3662,10495,1,60468,'','<p>Speak to Walton at the top of the Great Deku tree and solve five different riddles</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3663,10516,1,66421,'','<p>aa</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3664,10530,1,67259,'','<p>destroy with remote bomb or bomb arrow</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3665,10541,1,68351,'','<p>mi no encontrar</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3807,10546,2,1,'Piece of Heart','<p>Win a Piece of Heart at the Trendy Game.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-trendy1.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Trendy_Game" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3808,10548,2,1,'Piece of Heart','<p>Win a second Piece of Heart at the Trendy Game.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-trendy-game-two-placement.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Trendy_Game_2" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3809,10549,2,1,'Piece of Heart','<p>Purchase the Piece of Heart for 200 Rupees in the Mabe Village shoip.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-mabe-village-shop.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Village_Shop" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3810,10550,2,1,'Piece of Heart','<p>Catch a red fish at the fishing hole.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-fishing1.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Fishing_Beginners_Luck" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3811,10551,2,1,'Piece of Heart','<p>Catch a green fish at the fishing hole.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-green-fish.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Fishing_Youre_a_Pro_Now" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3812,10552,2,1,'Piece of Heart','<p>Jump into the Mabe Village well near the library.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-pieceofheart-well2.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Bottom_of_the_well" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3813,10553,2,1,'Piece of Heart','<p>Walk behind houses in Animal Village. You can reach the path from the Yarna Desert entrance.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-animal-village-alley-heart.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Animal_Village_Alley" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3814,10554,2,1,'Piece of Heart','<p>Enter the cave behind the houses in Animal Village. Use Bombs and the Hookshot to reach the Piece of Heart.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-hookshot-animal-crossing-cave.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Village_Secret" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3815,10555,2,1,'Piece of Heart','<p>Complete the Rapids Race in less than 40 seconds.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-river-race-hookshot-posts.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#River_Rapids_Race" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3816,10556,2,1,'Piece of Heart','<p>Stop the raft in the west-most island during the Rapids Race.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-raft-raid-.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#River_Rapids_Raid" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3817,10557,2,1,'Piece of Heart','<p>Dive underwater in the empty flooded cave east of Angler's Tunnel.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-flooded-cave.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Flooded_Cave" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3818,10558,2,1,'Piece of Heart','<p>Dive underwater in the Kanalet Castle moat.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-kanalet.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Lost_in_the_Moat" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3819,10559,2,1,'Piece of Heart','<p>Visit the Seashell Mansion when you have at least five Secret Seashells.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-seashell-five.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Five_Secret_Seashells" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3820,10560,2,1,'Piece of Heart','<p>Dive underwater in the tunnel that leads to Mad Batter's alter in Martha's Bay.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-marthas-bay-mad-batter-dive.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Mad_Batters_Final_Punishment" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3821,10561,2,1,'Piece of Heart','<p>Dive underwater in Martha's Bay.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-marthas-bay-diving.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Lost_in_the_Bay" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3822,10562,2,1,'Piece of Heart','<p>Jump to the northeast corner of Pothole Field.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-pothole-field.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#More_Than_Holes" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3823,10563,2,1,'Piece of Heart','<p>Dive underwater in the tunnel that leads to Animal Village.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-animal-village-tunnel.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Tunnel_Diving" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3824,10564,2,1,'Piece of Heart','<p>Solve the block puzzle in the Mysterious Forest tunnel.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-forest-tunnel.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Toadstool_Tunnel" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3825,10565,2,1,'Piece of Heart','<p>Use the Hookshot to cross the large pits in the Mysterious Forest cave.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-use-the-hookshot.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Hookshot_Cave" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3826,10566,2,1,'Piece of Heart','<p>Jump to the northeast corner of Tabahl Wasteland.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-tabahl-wasteland.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Treasure_Among_the_Wastes" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3827,10567,2,1,'Piece of Heart','<p>Jump across the pits in Koholint Prairie.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-forest-edge.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Crossroads_at_the_Forests_Edge" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3828,10568,2,1,'Piece of Heart','<p>Find the stairs that lead outside in Turtle Rock.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-turtle-rock-outside.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Dungeon_Intermission" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3829,10569,2,1,'Piece of Heart','<p>Walk along the edge of the mountain on your way to Turtle Rock.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-tal-tal-narrow-path.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Tal_Tal_Cliffside" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3830,10570,2,1,'Piece of Heart','<p>Complete the Fill Up Your Hearts Chamber Dungeon challenge.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-fill-up-your-hearts.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Fill_Up_Your_Hearts" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3831,10571,2,1,'Piece of Heart','<p>Complete the Passageway Centra Chamber Dungeon challenge.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-passageway-central.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Passageway_Central" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3832,10572,2,1,'Piece of Heart','<p>Find the secret path in the cave that leads to the western side of the Tal Tal Mountain Range.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-tal-tal-bomb.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Hidden_Mountain_Path" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3833,10573,2,1,'Piece of Heart','<p>Jump across the pits in the cave beneath the Cemetery.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-large-jump.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Ghosts_Treasure" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3834,10574,2,1,'Piece of Heart','<p>Use a Bomb to find the hidden room in the cave beneath the quicksand in Yarna Desert.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-desert-cave.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Desert_Secret" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3835,10575,2,1,'Piece of Heart','<p>Solve the block puzzle in the cave just east of Mabe Village.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-mabe-cave-puzzle-solution.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Cave_Among_the_Grass" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3836,10576,2,1,'Piece of Heart','<p>Solve the block puzzle in the cave leading into Tal Tal Mountain Range.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-tal-tal-cave-block-puzzle.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Along_the_Mountain_Path" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3837,10577,2,1,'Piece of Heart','<p>Use a Bomb to find the hidden room in a cave east of Mabe Village.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-cracked-wall.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Secret_in_the_Sealed_Cave" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3838,10578,2,1,'Piece of Heart','<p>Use the Hookshot to reach the Piece of Heart in the tunnel that leads to the Rapids Rafting minigame.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-rapids-cave-hookshot.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#The_Rapids_Tunnel" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3839,10579,2,1,'Heart Container','<p>Complete the Ticking Clock Chamber Dungeon challenge to earn an full Heart Container. That's 4 Pieces of Heart!</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-heart-ticking-clock-886x498.jpg" alt="Pieces of Heart" width="100%" height="100%" /></p><p>Source: <a title="Pieces of Heart Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/pieces-of-heart/#Ticking_Clock" target="_blank" rel="noopener">Pieces of Heart Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3840,10580,2,1,'Yoshi Doll','<p>Win the Yoshi Doll at the Trendy Game.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-yoshi-doll.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Yoshi_Doll_Pros_arent_allowed" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3841,10581,2,1,'Ribbon','<p>Give the Yoshi Doll to Mamasha.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-ribbon.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Ribbon_A_mothers_plight" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3842,10582,2,1,'Dog Food','<p>Give the Ribbon to CiaoCiao, the Chain Chomp.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-dog-food.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Dog_Food_The_envious_dog" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3843,10583,2,1,'Bananas','<p>Give the Dog Food to Sale, the alligator.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-sales-house-o-bananas.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Bananas_The_collector_of_cans" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3844,10584,2,1,'Stick','<p>Give the Bananas to Kiki, the monkey.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-stick.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Stick_A_helpful_monkey" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3845,10585,2,1,'Honeycomb','<p>Give the Stick to Tarin.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-tarin-stick.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Honeycomb_Tarins_gambit" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3846,10586,2,1,'Pineapple','<p>Give the Honeycomb to Chef Bear.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-pineapple.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Pineapple_The_bear_necessities" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3847,10587,2,1,'Hibiscus','<p>Give the Pineapple to Papahl.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-papahl.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Hibiscus_He_told_you_hed_get_lost" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3848,10588,2,1,'Letter','<p>Give the Hibiscus to Christine.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-christines-house.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Letter_A_thoughtful_gift" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3849,10589,2,1,'Broom','<p>Give the Letter to Mr. Write.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-writes-house.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Broom_He_just_got_a_letter" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3850,10590,2,1,'Fishing Hook','<p>Give the Broom to Grandma Yahoo.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-fishing-hook.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Fishing_Hook_Yahoo_Shes_fine_and_you" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3851,10591,2,1,'Necklace','<p>Give the Fishing Hook to the Fisherman under the bridge.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-marthas-bay-bridge.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Necklace_Lucky_catch" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3852,10592,2,1,'Scale','<p>Give the Necklace to the Mermaid.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-scale.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Scale_Only_take_one" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3853,10593,2,1,'Magnifying Lens','<p>Place the Scale in the Mermaid Statue.</p><p style="text-align: center;"><img src="https://zeldauniverse.net/wp-content/uploads/2019/09/guide-la-switch-trade-missing-scale.jpg" alt="Trading Sequence" width="100%" height="100%" /></p><p>Source: <a title="Trading Sequence Guide" href="https://zeldauniverse.net/?post_type=guide&p=124979&preview=true&_thumbnail_id=125271#Magnifying_Lens_Completing_a_masterpiece" target="_blank" rel="noopener">Trading Sequence Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3854,10594,2,1,'Raft Rapids','<p>Pay 100 Rupees to ride the Rapids.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3855,10595,2,1,'Trendy Game','<p>Pay 10 Rupees to play a claw machine game.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3856,10596,2,1,'Fishing','<p>Pay 10 Rupees for a chance to catch a fish.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3857,10597,2,1,'Bottle','<p>Catch the Bottle at the bottom of the Fishing Hole.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3858,10598,2,1,'Bottle','<p>Complete the first 12 Chamber Dungeon challenges.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3859,10599,2,1,'Bottle','<p>The Ghost will give you a Bottle after you take it to visit its house and then return it to its grave.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3860,10600,2,1,'Cracked Wall','<p>Item Trader</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3861,10601,2,1,'Cracked Wall','<p>Cave</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3862,10602,2,1,'Cracked Wall','<p>Fairy Fountain</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3863,10603,2,1,'Cracked Wall','<p>Fairy Fountain</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3864,10604,2,1,'Cracked Wall','<p>Cave</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3865,10605,2,1,'Cracked Wall','<p>Path to Turtle Rock</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3866,10606,2,1,'Cracked Wall','<p>Fairy Fountain</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3867,10607,2,1,'Lanmolas','<p>Use the Sword to defeat Lanmolas and receive the Angler's Key.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3868,10608,2,1,'Armos Knight','<p>Use the Bow to defeat Armos Knight.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3869,10609,2,1,'Turtle Rock','<p>Use Bombs to break Turtle Rock's hard shell and then finish it with the Sword.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3870,10610,2,1,'Tail Cave','<p>Level 1</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/tail-cave/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3871,10611,2,1,'Bottle Grotto','<p>Level 2</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-4-bottle-grotto/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3872,10612,2,1,'Key Cavery','<p>Level 3</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-6-key-cavern/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3873,10613,2,1,'Kanalet Castle','<p>Mini Dungeon</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-5-kanalet-castle/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3874,10614,2,1,'Angler's Tunnel','<p>Level 4</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-8-anglers-tunnel/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3875,10615,2,1,'Catfish's Maw','<p>Level 5</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-10-catfishs-maw/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3876,10616,2,1,'North Face Shrine','<p>Level 6</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-12-north-face-shrine/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3877,10617,2,1,'Eagle's Tower','<p>Level 7</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-14-eagles-tower/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3878,10618,2,1,'Turtle Rock','<p>Level 8</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-16-turtle-rock/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3879,10619,2,1,'Color Dungeon','<p>Optional Dungeon</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/color-dungeon/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3880,10620,2,1,'Chamber Dungeon','<p>Dungeon Builder</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3881,10621,2,1,'Wind Fish's Egg','<p>Final Boss and Game Ending</p></p><p>Source: <a title="Dungeon Guide" href="https://zeldauniverse.net/guides/links-awakening/walkthrough/chapter-17-wind-fishs-egg/" target="_blank" rel="noopener">Dungeon Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3882,10622,2,1,'Papahl, Mamasha, and the Quadruplet's Hou','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3883,10623,2,1,'Marin and Tarin's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3884,10624,2,1,'Madam MeowMeow's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3885,10625,2,1,'Grandpa Ulrira and Grandma Yahoo's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3886,10626,2,1,'Sales House O' Bananas','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3887,10627,2,1,'Richard's Villa','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3888,10628,2,1,'Ghost's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3889,10629,2,1,'Chef Bear's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3890,10630,2,1,'Christine's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3891,10631,2,1,'Mr. Write's House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3892,10632,2,1,'Hen House','<p></p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3893,10633,2,1,'Witch's Hut','<p>Bring the Toadstool to the Witch to receive Magic Powder.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3894,10634,2,1,'Mabe Village Shop','<p>Purchase many items including the Shovel, Bombs, and Bow.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3895,10635,2,1,'Crazy Tracy's Health Spa','<p>Purchase the Secret Medicine, which automatically heals you if you die.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3896,10645,2,1,'Secret Seashells','<p>Dig on the west side of Marin's favorite spot on the beach.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3897,10646,2,1,'Secret Seashells','<p>Lift the pots in the Ghost's house in Martha's Bay.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3898,10647,2,1,'Secret Seashells','<p>Use the Pegasus Boots to dash into a tree in Toronbo Shores.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3899,10648,2,1,'Secret Seashells','<p>Use the Pegasus Boots to dash into the tree outside of Tail Cave.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3900,10649,2,1,'Secret Seashells','<p>Use a Bomb to enter the secret room in Tail Cave.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3901,10650,2,1,'Secret Seashells','<p>Dig in the dog house.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3902,10651,2,1,'Secret Seashells','<p>Cut the patch of bushes in Mabe Village.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3903,10652,2,1,'Secret Seashells','<p>Win a Secret Seashell at the Trendy Game.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3904,10653,2,1,'Secret Seashells','<p>Win another Secret Seashell at the Trendy Game.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3905,10654,2,1,'Secret Seashells','<p>Catch a Cheep Cheep at the Fishing Hole.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3906,10655,2,1,'Secret Seashells','<p>Catch a Blooper at the Fishing Hole. It might not be your first one!</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3907,10656,2,1,'Secret Seashells','<p>Dig a hole in the circle of flowers in the Mysterious Forest.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3908,10657,2,1,'Secret Seashells','<p>Dig a hole near the north exit of the Mysterious Forest, south of Mr. Write's house.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3909,10658,2,1,'Secret Seashells','<p>Dig a hole beneath a lone bush.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3910,10659,2,1,'Secret Seashells','<p>Open the treasure chest in the tunnel beneath Richard's Villa.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3911,10660,2,1,'Secret Seashells','<p>Under the lone bush east of the telephone booth in Martha's Bay.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3912,10661,2,1,'Secret Seashells','<p>Under the lone bush on the small island south of Martha's Bay.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3913,10662,2,1,'Secret Seashells','<p>Dig a hole near the Owl Statue northwest of Martha's Bay.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3914,10663,2,1,'Secret Seashells','<p>Dig a hole in the center of the grass.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3915,10664,2,1,'Secret Seashells','<p>Use the Pegasus Boots to dash into the tree near the Signpost Maze.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3916,10665,2,1,'Secret Seashells','<p>Under the bush in the islands near Key Cavern.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3917,10666,2,1,'Secret Seashells','<p>Use the Hookshot to reach the stairs to the west of the Kanalet Castle gate.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3918,10667,2,1,'Secret Seashells','<p>Dive underwater in near the waterfall in the Kanalet Castle moat.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3919,10668,2,1,'Secret Seashells','<p>Under a rock in the southeast corner of Yarna Desert.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3920,10669,2,1,'Secret Seashells','<p>Stand near the shore at the entrance of Yarna Desert and play the Ballad of the Wind Fish. The Walrus will appear and give you a Secret Seashell.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3921,10670,2,1,'Secret Seashells','<p>Speak to the hidden Zora in Animal Village after you have the Magnifying Lens.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3922,10671,2,1,'Secret Seashells','<p>Speak to Christine after you deliver the Letter to Mr. Write.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3923,10672,2,1,'Secret Seashells','<p>Find the stairs that lead outside in the North Face Shrine.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3924,10673,2,1,'Secret Seashells','<p>Throw a bomb into the hole near the Angler's Key keyhole.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3925,10674,2,1,'Secret Seashells','<p>Finish the Rapids Race in less than 35 seconds.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3926,10675,2,1,'Secret Seashells','<p>Open the chest in the Mysterious Forest that is blocked by a stone.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3927,10676,2,1,'Secret Seashells','<p>Dig a hole under the lone bush north of the telephone booth.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3928,10677,2,1,'Secret Seashells','<p>Dig a hole near the east side of the Tabahl Wasteland.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3929,10678,2,1,'Secret Seashells','<p>Dig a hole beneat the spot where the large skull boulder is before you destroy it.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3930,10679,2,1,'Secret Seashells','<p>Unde a rock north of Martha's Bay.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3931,10680,2,1,'Secret Seashells','<p>Under a bush east of the Seashell Mansion.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3932,10681,2,1,'Secret Seashells','<p>Dig a hole near the Owl statue east of Catfish's Maw.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3933,10682,2,1,'Secret Seashells','<p>Dig a hole near the cacti in the northeast corner of Yarna Desert.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3934,10683,2,1,'Secret Seashells','<p>Under a rock near the sign north of the Moblin's Hideout.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3935,10684,2,1,'Secret Seashells','<p>Stop the raft on the smallest island in the rapids. Then, dig a hole.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3936,10685,2,1,'Secret Seashells','<p>Find the stairs beneath the Armos in the Ancient Ruins.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3937,10686,2,1,'Secret Seashells','<p>Under the a lone rock north of the entrance to the Ancient Ruins.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3938,10687,2,1,'Secret Seashells','<p>Dive underwater near the ladder that leads to the Hen House.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3939,10688,2,1,'Secret Seashells','<p>Under a rock across the bridges to the east of the Hen House.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3940,10689,2,1,'Secret Seashells','<p>Throw a Bomb in the hole southwest of the Hen House.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3941,10690,2,1,'Secret Seashells','<p>Open the treasure chest in east Tal Tal Mountain Range. Use a Bomb to find a secret path.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3942,10691,2,1,'Secret Seashells','<p>Fall in a hole on the far west side of the room where you fight Hinox in Eagle's Tower.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3943,10692,2,1,'Secret Seashells','<p>Under a lone rock in west Tal Tal Mountain Range.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3944,10693,2,1,'Secret Seashells','<p>Dig a hole in the center of the rock pattern in west Tal Tal Mountain Range.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3945,10694,2,1,'Secret Seashells','<p>Complete the Fill Up Your Hearts Chamber Dungeon challenge.</p></p><p>Source: <a title="Secret Seashells Guide" href="https://zeldauniverse.net/guides/links-awakening/sidequests/secret-seashells/" target="_blank" rel="noopener">Secret Seashells Guide</a></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3946,10695,2,1,'Fairy Fountain','<p>In plain sight.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3947,10696,2,1,'Fairy Fountain','<p>Inside the cave protected by a cracked wall.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3948,10697,2,1,'Fairy Fountain','<p>Inside the cave protected by a cracked wall.</p></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3949,11015,1,70248,'','<p>Facade is a easy boss, just use the shield in his first phase, then use bombs. (Watchout for holes as they take you or your bombs.)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3950,11016,1,70248,'','<p>This Nightmare Key allows you to get to boss #6, Facade</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3951,11039,1,72231,'','<p>xxxxxxx</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3952,11053,1,72615,'','<p>Big or Small</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3953,11062,1,72985,'','<p>After hearing Jiahto's request, search for the stone monuments in the area surrounding Zora's Domain. Not counting thr monument in Zora's Domain there are 10 to find in total.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3954,11063,1,73086,'','<p>Serpent Jaws</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3955,11094,1,74072,'','<p>Search vertical rock surrounded by 4 small rocks (next to where old man is standing)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3956,11096,1,74072,'','<p>Above skull encampment</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3957,11107,1,74072,'','<p>Not active, need to start campfire with flint or fire arrow</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3958,11121,1,73176,'','<p>asd</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3959,11129,1,74072,'','<p>This marker already exists but could use some more info. To get this, you must feed the dog behind the coral 4 pieces of food (apples work and are located next to the fire). The dog will then lead you to the treasure. It will NOT show up unless you feed the dog</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3960,11131,1,75055,'','<p>Enemies:</p>\r\n<ul>\r\n<li>&nbsp;Sentry (outside)</li>\r\n<li>Guardian Scout I (inside)</li>\r\n<li>Cursed Bokoblins/Moblins/Lizalfos (inside)</li>\r\n<li>Fireblight Ganon (inside, boss)</li>\r\n</ul>',1,1); -+INSERT INTO `marker_tab` VALUES (3961,11133,1,75084,'','<p>Questgiver Rozel can alternatively be found at the dock.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3962,11134,1,75272,'','<p>This is the Devine Beast Vah Medoh from the Champion Revali</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3963,11150,1,73669,'','<p>Reward: Luminous Stone</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3964,11170,1,67975,'','<p>To start the quest, head into Foothill Stable in the Eldin region.</p>\r\n<p>Inside, you will find Mayro inspecting a painting on the wall.</p>\r\n<img src="https://oyster.ignimgs.com/mediawiki/apis.ign.com/the-legend-of-zelda-hd/b/b3/LandscapeStable1.png" alt="Mayro and Link, near the spoken painting." width="1593" height="891" />\r\n<p>after interacting with him,&nbsp; the quest will start.</p>\r\n<p>he will tell you the painting was made by the Stable owner, Ozunda, who paints as a hobby.</p>\r\n<p>In addition, he mentions that the sable was painted from a southern direction.</p>\r\n<p>going south from the Stable, you will find the view in the painting, and reveal the location of the shrine [Tah Muhl Shrine].</p>\r\n<img src="https://gamefaqs1.cbsistatic.com/faqs/27/75427-5.png" alt="the location of Tah Muhl Shrine" width="750" height="422" />',1,1); -+INSERT INTO `marker_tab` VALUES (3965,11171,1,67975,'','<img src="https://www.zeldadungeon.net/wiki/images/thumb/5/5f/Korok862.png/200px-Korok862.png" alt="" width="200" height="159" />\r\n<p>Lift up the rock to reveal the Korok.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3966,11200,1,79082,'','<p>luna carmeci</p>\r\n<p>&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3967,11309,1,81232,'','<p>Requires Power Bracelet</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3968,11311,1,81232,'','<p>Clear all enemies in room.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3969,11324,1,36179,'','<p>Only obtainable with the DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3970,11325,1,36179,'','<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3971,11326,1,36179,'','<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3972,11327,1,36179,'','<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3973,11328,1,36179,'','<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3974,11329,1,36179,'','<p>The Four Winds</p>\r\n<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3975,11330,1,36179,'','<p>Aim for Stillness</p>\r\n<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3976,11331,1,36179,'','<p>Master the Orb</p>\r\n<p>Only obtainable with DLC wave 2 (Champions' Ballad)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3977,11337,1,80073,'','<p>Contains: Royal Bow "43" - Attack Up +5</p>\r\n<p>Location: Chest in Water</p>\r\n<p>Description: In the past, the king of Hyrule presented this bow to only the most talented archers in the land. Its combat capabilities are as impressive as its extravagant design.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3978,11338,1,14388,'','<p>Campfire at the south end of the ledge; sit until morning; walk towards the north ledge &amp; prep. Dinraal will come around the north corner at 6 AM if not glitched. (If he doesn't show by 7 AM, close and reopen the game, then wait til morning, and it should be fixed.)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3979,11340,1,79786,'','<p>Paraglide to the rock south from the center pillar. The chest is to the east underwater</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3980,11345,1,14388,'','<p>Buried in ground? Yes</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3981,11349,1,82690,'','<p>On top of the wall in front of the Bomb trial</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3982,11350,1,82690,'','<p>Somewhere in the vicinity of the temple of time in a chest, found near some bokogoblins.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3983,11351,1,82690,'','<p>Can get by making the old man's secret recipe and giving it to him (he's sitting on the log by the pot.), Or by climbing up to the top of Mt. Hylia.&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3984,11352,1,82690,'','<p>Climb up to the top of Mt. Hylia and talking to the old man to get the Warm Doublet, or also get this by making the old man's secret recipe and giving it to him (he's sitting on the log by the pot.)</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3985,11372,1,82864,'','<p>Requires: Five fireflies</p>\r\n<p>Talk to Lasli in her house at night to unlock this quest.</p>\r\n<p>Reward: 50 rupees</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3986,11373,1,82864,'','<p>After completing all other side-quests in the village, return here for a shrine quest.</p>\r\n<p>Reward: Lakna Rokee Shrine</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3987,11406,1,79196,'','<p>NPC: Walton</p>\r\n<p>Requires: Deliver the correct items from across Hyrule</p>\r\n<p>Reward: Diamond</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3988,11412,1,84349,'','<p>missing some dlc shrine i guess?</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3989,11413,1,84349,'','<p>missing shrine</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3990,11414,1,84349,'','<p>missing</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3991,11415,1,84349,'','<p>missing</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3992,11416,1,84349,'','<p>missing dlc shrine</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3993,11444,1,85878,'','<p>Inside the Water, hard current.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3994,11451,1,85883,'','<p>Collection of ore inside.</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3995,11492,1,87273,'','<p>The Temple once home to the<strong> Master Sword.</strong></p>',1,1); -+INSERT INTO `marker_tab` VALUES (3996,11516,1,87473,'','<p>Location once completed</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3997,11518,1,73379,'','<p>Reward: Ice arrows x5</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3998,11527,1,80263,'','<p>&nbsp;</p>\r\n<p>&nbsp;</p>',1,1); -+INSERT INTO `marker_tab` VALUES (3999,11550,1,89658,'','<p>guygg</p>',1,1); -+INSERT INTO `marker_tab` VALUES (4000,11560,1,90222,'','<p>hujkl</p>',1,1); -+INSERT INTO `marker_tab` VALUES (4001,11562,1,89757,'','<p>h</p>',1,1); -+INSERT INTO `marker_tab` VALUES (4002,11571,1,87973,'','<p>Des&ccedil;a pela passagem de ar em frente a Shrines</p>',1,1); -+INSERT INTO `marker_tab` VALUES (4003,11586,1,91548,'','<p>Contains: Amber</p>',1,1); - /*!40000 ALTER TABLE `marker_tab` ENABLE KEYS */; - UNLOCK TABLES; - -@@ -11420,6 +13431,19 @@ INSERT INTO `marker_tab_status` VALUES (2,'Approved',1); - /*!40000 ALTER TABLE `marker_tab_status` ENABLE KEYS */; - UNLOCK TABLES; - -+-- -+-- Dumping data for table `schema_migrations` -+-- -+ -+LOCK TABLES `schema_migrations` WRITE; -+/*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */; -+INSERT INTO `schema_migrations` VALUES ('20180427013505'); -+INSERT INTO `schema_migrations` VALUES ('20180430012556'); -+INSERT INTO `schema_migrations` VALUES ('20180430031250'); -+INSERT INTO `schema_migrations` VALUES ('20180430035101'); -+/*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */; -+UNLOCK TABLES; -+ - -- - -- Dumping data for table `submap` - -- -@@ -11430,6 +13454,16 @@ INSERT INTO `submap` VALUES (140,3,1,NULL,'Light World',1,'alttp/overworld/light - INSERT INTO `submap` VALUES (141,3,1,NULL,'Dark World',0,'alttp/overworld/dark/','png','404',1,0,1,1); - INSERT INTO `submap` VALUES (1900,19,1,1,'DO NOT USE',0,'botw/e32016/','png','blank',0,0,1,0); - INSERT INTO `submap` VALUES (1901,19,1,1,'Hyrule',1,'botw/hyrule/','png','blank',0,0,1,1); -+INSERT INTO `submap` VALUES (2000,20,1,1,'Koholint Island',1,'la_rmk/koholint_island/','png','blank',0,0,1,1); -+INSERT INTO `submap` VALUES (2001,21,1,1,'Tail Cave',1,'la_rmk/1_tail_cave/','png','blank',1,0,1,1); -+INSERT INTO `submap` VALUES (2002,22,1,1,'Bottle Grotto',1,'la_rmk/2_bottle_grotto/','png','blank',2,0,1,1); -+INSERT INTO `submap` VALUES (2003,23,1,1,'Key Cavern',1,'la_rmk/3_key_cavern/','png','blank',3,0,1,1); -+INSERT INTO `submap` VALUES (2004,24,1,1,'Angler`s Tunnel',1,'la_rmk/4_anglers_tunnel/','png','blank',4,0,1,1); -+INSERT INTO `submap` VALUES (2005,25,1,1,'Catfish`s Maw',1,'la_rmk/5_catfishs_maw/','png','blank',5,0,1,1); -+INSERT INTO `submap` VALUES (2006,26,1,1,'Face Shrine',1,'la_rmk/6_face_shrine/','png','blank',6,0,1,1); -+INSERT INTO `submap` VALUES (2007,27,1,1,'Eagle`s Tower',1,'la_rmk/7_eagles_tower/','png','blank',7,0,1,1); -+INSERT INTO `submap` VALUES (2008,28,1,1,'Turtle Rock',1,'la_rmk/8_turtle_rock/','png','blank',8,0,1,1); -+INSERT INTO `submap` VALUES (2009,29,1,1,'Color Dungeon',1,'la_rmk/0_color_dungeon/','png','blank',9,0,1,1); - /*!40000 ALTER TABLE `submap` ENABLE KEYS */; - UNLOCK TABLES; - -@@ -12532,7 +14566,7 @@ UNLOCK TABLES; - /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - ---- Dump completed on 2018-05-19 20:27:54 -+-- Dump completed on 2020-04-17 0:29:06 - INSERT INTO `user` - (`id`, `username`, `password`, `name`, `email`, `created`, `ip`, `last_login`, `level`, `visible`) - VALUES -@@ -13308,6 +15342,7 @@ VALUES - ('3833', 'test3833', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3833', 'test3833@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('3837', 'test3837', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3837', 'test3837@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('3842', 'test3842', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3842', 'test3842@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('3853', 'test3853', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3853', 'test3853@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('3857', 'test3857', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3857', 'test3857@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('3992', 'test3992', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3992', 'test3992@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('3999', 'test3999', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test3999', 'test3999@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13567,12 +15602,14 @@ VALUES - ('12348', 'test12348', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12348', 'test12348@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12363', 'test12363', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12363', 'test12363@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12400', 'test12400', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12400', 'test12400@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('12402', 'test12402', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12402', 'test12402@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12452', 'test12452', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12452', 'test12452@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12566', 'test12566', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12566', 'test12566@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12578', 'test12578', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12578', 'test12578@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12597', 'test12597', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12597', 'test12597@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12660', 'test12660', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12660', 'test12660@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12696', 'test12696', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12696', 'test12696@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('12708', 'test12708', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12708', 'test12708@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12739', 'test12739', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12739', 'test12739@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12742', 'test12742', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12742', 'test12742@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('12889', 'test12889', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test12889', 'test12889@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13601,6 +15638,7 @@ VALUES - ('13772', 'test13772', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13772', 'test13772@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('13784', 'test13784', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13784', 'test13784@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('13792', 'test13792', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13792', 'test13792@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('13795', 'test13795', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13795', 'test13795@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('13799', 'test13799', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13799', 'test13799@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('13815', 'test13815', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13815', 'test13815@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('13844', 'test13844', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test13844', 'test13844@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13624,6 +15662,7 @@ VALUES - ('14290', 'test14290', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14290', 'test14290@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('14303', 'test14303', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14303', 'test14303@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('14364', 'test14364', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14364', 'test14364@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('14388', 'test14388', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14388', 'test14388@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('14481', 'test14481', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14481', 'test14481@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('14497', 'test14497', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14497', 'test14497@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('14626', 'test14626', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test14626', 'test14626@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13644,6 +15683,7 @@ VALUES - ('15279', 'test15279', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15279', 'test15279@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('15305', 'test15305', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15305', 'test15305@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('15310', 'test15310', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15310', 'test15310@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('15410', 'test15410', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15410', 'test15410@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('15417', 'test15417', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15417', 'test15417@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('15434', 'test15434', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15434', 'test15434@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('15446', 'test15446', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test15446', 'test15446@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13687,6 +15727,7 @@ VALUES - ('16368', 'test16368', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16368', 'test16368@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('16386', 'test16386', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16386', 'test16386@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('16412', 'test16412', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16412', 'test16412@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('16432', 'test16432', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16432', 'test16432@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('16449', 'test16449', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16449', 'test16449@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('16532', 'test16532', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16532', 'test16532@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('16537', 'test16537', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test16537', 'test16537@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13750,6 +15791,8 @@ VALUES - ('18081', 'test18081', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18081', 'test18081@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('18145', 'test18145', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18145', 'test18145@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('18164', 'test18164', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18164', 'test18164@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('18179', 'test18179', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18179', 'test18179@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('18201', 'test18201', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18201', 'test18201@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('18278', 'test18278', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18278', 'test18278@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('18290', 'test18290', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18290', 'test18290@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('18415', 'test18415', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test18415', 'test18415@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13795,7 +15838,9 @@ VALUES - ('20061', 'test20061', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20061', 'test20061@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20248', 'test20248', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20248', 'test20248@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20280', 'test20280', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20280', 'test20280@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('20346', 'test20346', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20346', 'test20346@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20452', 'test20452', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20452', 'test20452@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('20599', 'test20599', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20599', 'test20599@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20606', 'test20606', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20606', 'test20606@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20608', 'test20608', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20608', 'test20608@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20654', 'test20654', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20654', 'test20654@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13806,7 +15851,11 @@ VALUES - ('20792', 'test20792', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20792', 'test20792@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20799', 'test20799', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20799', 'test20799@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('20921', 'test20921', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20921', 'test20921@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('20944', 'test20944', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test20944', 'test20944@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21041', 'test21041', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21041', 'test21041@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('21154', 'test21154', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21154', 'test21154@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21200', 'test21200', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21200', 'test21200@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21247', 'test21247', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21247', 'test21247@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('21282', 'test21282', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21282', 'test21282@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('21321', 'test21321', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21321', 'test21321@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('21324', 'test21324', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21324', 'test21324@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -@@ -13814,5 +15863,750 @@ VALUES - ('21355', 'test21355', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21355', 'test21355@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('21496', 'test21496', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21496', 'test21496@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), - ('21552', 'test21552', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21552', 'test21552@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), --('21563', 'test21563', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21563', 'test21563@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1') -+('21563', 'test21563', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21563', 'test21563@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21662', 'test21662', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21662', 'test21662@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21727', 'test21727', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21727', 'test21727@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21799', 'test21799', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21799', 'test21799@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21856', 'test21856', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21856', 'test21856@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21858', 'test21858', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21858', 'test21858@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('21892', 'test21892', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test21892', 'test21892@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22039', 'test22039', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22039', 'test22039@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22054', 'test22054', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22054', 'test22054@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22116', 'test22116', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22116', 'test22116@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22123', 'test22123', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22123', 'test22123@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22141', 'test22141', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22141', 'test22141@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22148', 'test22148', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22148', 'test22148@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22175', 'test22175', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22175', 'test22175@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22228', 'test22228', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22228', 'test22228@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22252', 'test22252', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22252', 'test22252@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22263', 'test22263', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22263', 'test22263@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22279', 'test22279', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22279', 'test22279@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22484', 'test22484', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22484', 'test22484@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22500', 'test22500', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22500', 'test22500@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22518', 'test22518', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22518', 'test22518@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22524', 'test22524', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22524', 'test22524@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22575', 'test22575', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22575', 'test22575@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22585', 'test22585', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22585', 'test22585@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22592', 'test22592', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22592', 'test22592@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22593', 'test22593', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22593', 'test22593@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22600', 'test22600', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22600', 'test22600@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22725', 'test22725', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22725', 'test22725@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22780', 'test22780', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22780', 'test22780@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22858', 'test22858', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22858', 'test22858@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22918', 'test22918', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22918', 'test22918@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('22947', 'test22947', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test22947', 'test22947@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23031', 'test23031', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23031', 'test23031@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23109', 'test23109', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23109', 'test23109@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23122', 'test23122', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23122', 'test23122@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23128', 'test23128', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23128', 'test23128@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23133', 'test23133', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23133', 'test23133@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23237', 'test23237', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23237', 'test23237@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23247', 'test23247', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23247', 'test23247@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23298', 'test23298', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23298', 'test23298@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23337', 'test23337', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23337', 'test23337@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23338', 'test23338', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23338', 'test23338@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23476', 'test23476', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23476', 'test23476@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23546', 'test23546', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23546', 'test23546@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23694', 'test23694', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23694', 'test23694@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23704', 'test23704', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23704', 'test23704@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23714', 'test23714', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23714', 'test23714@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23731', 'test23731', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23731', 'test23731@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23746', 'test23746', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23746', 'test23746@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('23751', 'test23751', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test23751', 'test23751@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24018', 'test24018', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24018', 'test24018@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24140', 'test24140', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24140', 'test24140@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24168', 'test24168', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24168', 'test24168@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24262', 'test24262', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24262', 'test24262@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24294', 'test24294', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24294', 'test24294@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24336', 'test24336', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24336', 'test24336@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24449', 'test24449', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24449', 'test24449@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24571', 'test24571', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24571', 'test24571@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24716', 'test24716', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24716', 'test24716@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24820', 'test24820', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24820', 'test24820@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('24935', 'test24935', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test24935', 'test24935@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25083', 'test25083', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25083', 'test25083@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25113', 'test25113', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25113', 'test25113@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25180', 'test25180', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25180', 'test25180@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25277', 'test25277', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25277', 'test25277@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25514', 'test25514', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25514', 'test25514@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25546', 'test25546', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25546', 'test25546@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25605', 'test25605', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25605', 'test25605@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25796', 'test25796', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25796', 'test25796@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('25848', 'test25848', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test25848', 'test25848@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26051', 'test26051', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26051', 'test26051@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26216', 'test26216', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26216', 'test26216@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26297', 'test26297', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26297', 'test26297@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26402', 'test26402', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26402', 'test26402@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26618', 'test26618', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26618', 'test26618@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26810', 'test26810', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26810', 'test26810@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('26878', 'test26878', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test26878', 'test26878@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27008', 'test27008', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27008', 'test27008@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27219', 'test27219', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27219', 'test27219@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27279', 'test27279', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27279', 'test27279@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27618', 'test27618', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27618', 'test27618@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27660', 'test27660', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27660', 'test27660@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27737', 'test27737', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27737', 'test27737@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27801', 'test27801', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27801', 'test27801@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27903', 'test27903', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27903', 'test27903@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('27919', 'test27919', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test27919', 'test27919@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28066', 'test28066', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28066', 'test28066@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28076', 'test28076', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28076', 'test28076@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28177', 'test28177', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28177', 'test28177@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28280', 'test28280', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28280', 'test28280@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28287', 'test28287', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28287', 'test28287@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28354', 'test28354', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28354', 'test28354@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28358', 'test28358', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28358', 'test28358@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28412', 'test28412', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28412', 'test28412@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28421', 'test28421', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28421', 'test28421@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28484', 'test28484', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28484', 'test28484@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28495', 'test28495', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28495', 'test28495@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('28725', 'test28725', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test28725', 'test28725@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29059', 'test29059', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29059', 'test29059@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29101', 'test29101', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29101', 'test29101@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29109', 'test29109', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29109', 'test29109@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29140', 'test29140', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29140', 'test29140@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29167', 'test29167', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29167', 'test29167@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29204', 'test29204', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29204', 'test29204@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29221', 'test29221', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29221', 'test29221@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29321', 'test29321', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29321', 'test29321@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29387', 'test29387', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29387', 'test29387@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29495', 'test29495', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29495', 'test29495@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29506', 'test29506', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29506', 'test29506@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29592', 'test29592', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29592', 'test29592@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29602', 'test29602', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29602', 'test29602@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29604', 'test29604', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29604', 'test29604@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29655', 'test29655', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29655', 'test29655@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29746', 'test29746', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29746', 'test29746@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('29891', 'test29891', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test29891', 'test29891@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30001', 'test30001', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30001', 'test30001@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30043', 'test30043', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30043', 'test30043@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30210', 'test30210', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30210', 'test30210@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30249', 'test30249', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30249', 'test30249@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30319', 'test30319', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30319', 'test30319@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30338', 'test30338', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30338', 'test30338@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30399', 'test30399', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30399', 'test30399@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30503', 'test30503', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30503', 'test30503@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30529', 'test30529', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30529', 'test30529@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30564', 'test30564', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30564', 'test30564@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30672', 'test30672', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30672', 'test30672@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30971', 'test30971', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30971', 'test30971@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('30976', 'test30976', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test30976', 'test30976@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31095', 'test31095', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31095', 'test31095@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31383', 'test31383', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31383', 'test31383@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31439', 'test31439', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31439', 'test31439@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31690', 'test31690', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31690', 'test31690@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31697', 'test31697', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31697', 'test31697@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31698', 'test31698', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31698', 'test31698@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('31863', 'test31863', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test31863', 'test31863@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32015', 'test32015', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32015', 'test32015@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32214', 'test32214', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32214', 'test32214@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32236', 'test32236', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32236', 'test32236@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32328', 'test32328', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32328', 'test32328@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32362', 'test32362', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32362', 'test32362@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32383', 'test32383', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32383', 'test32383@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32479', 'test32479', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32479', 'test32479@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32592', 'test32592', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32592', 'test32592@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32600', 'test32600', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32600', 'test32600@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32607', 'test32607', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32607', 'test32607@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32626', 'test32626', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32626', 'test32626@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32630', 'test32630', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32630', 'test32630@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32645', 'test32645', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32645', 'test32645@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32758', 'test32758', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32758', 'test32758@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32931', 'test32931', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32931', 'test32931@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32941', 'test32941', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32941', 'test32941@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32959', 'test32959', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32959', 'test32959@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('32987', 'test32987', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test32987', 'test32987@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33048', 'test33048', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33048', 'test33048@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33117', 'test33117', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33117', 'test33117@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33143', 'test33143', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33143', 'test33143@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33237', 'test33237', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33237', 'test33237@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33277', 'test33277', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33277', 'test33277@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33319', 'test33319', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33319', 'test33319@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33462', 'test33462', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33462', 'test33462@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33797', 'test33797', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33797', 'test33797@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33833', 'test33833', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33833', 'test33833@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('33852', 'test33852', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test33852', 'test33852@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34046', 'test34046', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34046', 'test34046@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34064', 'test34064', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34064', 'test34064@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34084', 'test34084', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34084', 'test34084@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34095', 'test34095', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34095', 'test34095@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34124', 'test34124', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34124', 'test34124@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34138', 'test34138', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34138', 'test34138@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34273', 'test34273', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34273', 'test34273@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34279', 'test34279', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34279', 'test34279@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34424', 'test34424', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34424', 'test34424@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34434', 'test34434', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34434', 'test34434@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34446', 'test34446', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34446', 'test34446@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34755', 'test34755', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34755', 'test34755@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34803', 'test34803', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34803', 'test34803@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34810', 'test34810', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34810', 'test34810@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34826', 'test34826', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34826', 'test34826@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34867', 'test34867', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34867', 'test34867@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('34896', 'test34896', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test34896', 'test34896@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35048', 'test35048', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35048', 'test35048@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35121', 'test35121', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35121', 'test35121@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35263', 'test35263', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35263', 'test35263@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35432', 'test35432', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35432', 'test35432@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35456', 'test35456', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35456', 'test35456@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35517', 'test35517', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35517', 'test35517@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35545', 'test35545', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35545', 'test35545@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35555', 'test35555', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35555', 'test35555@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('35567', 'test35567', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test35567', 'test35567@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36049', 'test36049', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36049', 'test36049@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36073', 'test36073', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36073', 'test36073@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36179', 'test36179', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36179', 'test36179@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36203', 'test36203', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36203', 'test36203@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36254', 'test36254', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36254', 'test36254@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36393', 'test36393', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36393', 'test36393@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36404', 'test36404', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36404', 'test36404@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36489', 'test36489', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36489', 'test36489@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('36539', 'test36539', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test36539', 'test36539@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37121', 'test37121', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37121', 'test37121@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37205', 'test37205', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37205', 'test37205@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37418', 'test37418', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37418', 'test37418@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37720', 'test37720', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37720', 'test37720@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37819', 'test37819', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37819', 'test37819@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37845', 'test37845', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37845', 'test37845@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37885', 'test37885', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37885', 'test37885@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37908', 'test37908', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37908', 'test37908@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('37922', 'test37922', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test37922', 'test37922@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38067', 'test38067', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38067', 'test38067@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38068', 'test38068', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38068', 'test38068@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38196', 'test38196', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38196', 'test38196@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38298', 'test38298', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38298', 'test38298@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38501', 'test38501', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38501', 'test38501@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38530', 'test38530', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38530', 'test38530@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38785', 'test38785', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38785', 'test38785@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38854', 'test38854', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38854', 'test38854@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38927', 'test38927', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38927', 'test38927@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('38947', 'test38947', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test38947', 'test38947@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39009', 'test39009', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39009', 'test39009@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39064', 'test39064', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39064', 'test39064@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39095', 'test39095', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39095', 'test39095@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39150', 'test39150', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39150', 'test39150@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39287', 'test39287', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39287', 'test39287@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39292', 'test39292', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39292', 'test39292@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39380', 'test39380', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39380', 'test39380@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39544', 'test39544', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39544', 'test39544@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39897', 'test39897', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39897', 'test39897@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('39917', 'test39917', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test39917', 'test39917@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40096', 'test40096', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40096', 'test40096@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40130', 'test40130', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40130', 'test40130@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40194', 'test40194', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40194', 'test40194@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40214', 'test40214', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40214', 'test40214@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40441', 'test40441', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40441', 'test40441@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40498', 'test40498', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40498', 'test40498@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40542', 'test40542', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40542', 'test40542@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40636', 'test40636', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40636', 'test40636@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40727', 'test40727', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40727', 'test40727@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40783', 'test40783', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40783', 'test40783@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40878', 'test40878', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40878', 'test40878@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('40881', 'test40881', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test40881', 'test40881@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('41140', 'test41140', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test41140', 'test41140@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('41143', 'test41143', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test41143', 'test41143@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('41231', 'test41231', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test41231', 'test41231@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('41317', 'test41317', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test41317', 'test41317@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('41851', 'test41851', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test41851', 'test41851@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42280', 'test42280', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42280', 'test42280@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42424', 'test42424', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42424', 'test42424@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42480', 'test42480', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42480', 'test42480@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42507', 'test42507', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42507', 'test42507@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42700', 'test42700', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42700', 'test42700@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42733', 'test42733', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42733', 'test42733@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42880', 'test42880', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42880', 'test42880@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42886', 'test42886', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42886', 'test42886@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('42921', 'test42921', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test42921', 'test42921@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43011', 'test43011', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43011', 'test43011@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43015', 'test43015', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43015', 'test43015@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43118', 'test43118', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43118', 'test43118@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43128', 'test43128', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43128', 'test43128@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43169', 'test43169', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43169', 'test43169@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43245', 'test43245', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43245', 'test43245@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43257', 'test43257', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43257', 'test43257@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43349', 'test43349', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43349', 'test43349@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43405', 'test43405', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43405', 'test43405@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43552', 'test43552', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43552', 'test43552@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43559', 'test43559', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43559', 'test43559@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43573', 'test43573', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43573', 'test43573@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43642', 'test43642', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43642', 'test43642@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43679', 'test43679', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43679', 'test43679@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43686', 'test43686', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43686', 'test43686@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43748', 'test43748', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43748', 'test43748@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('43876', 'test43876', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test43876', 'test43876@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('44197', 'test44197', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test44197', 'test44197@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('44233', 'test44233', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test44233', 'test44233@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('44841', 'test44841', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test44841', 'test44841@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('44908', 'test44908', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test44908', 'test44908@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45002', 'test45002', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45002', 'test45002@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45022', 'test45022', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45022', 'test45022@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45154', 'test45154', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45154', 'test45154@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45168', 'test45168', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45168', 'test45168@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45393', 'test45393', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45393', 'test45393@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45432', 'test45432', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45432', 'test45432@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45488', 'test45488', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45488', 'test45488@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45680', 'test45680', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45680', 'test45680@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45711', 'test45711', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45711', 'test45711@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45880', 'test45880', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45880', 'test45880@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45903', 'test45903', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45903', 'test45903@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45929', 'test45929', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45929', 'test45929@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('45945', 'test45945', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test45945', 'test45945@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46128', 'test46128', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46128', 'test46128@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46138', 'test46138', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46138', 'test46138@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46212', 'test46212', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46212', 'test46212@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46216', 'test46216', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46216', 'test46216@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46381', 'test46381', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46381', 'test46381@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46386', 'test46386', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46386', 'test46386@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46459', 'test46459', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46459', 'test46459@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46500', 'test46500', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46500', 'test46500@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46509', 'test46509', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46509', 'test46509@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46735', 'test46735', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46735', 'test46735@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46811', 'test46811', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46811', 'test46811@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46932', 'test46932', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46932', 'test46932@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('46946', 'test46946', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test46946', 'test46946@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47121', 'test47121', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47121', 'test47121@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47226', 'test47226', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47226', 'test47226@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47547', 'test47547', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47547', 'test47547@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47563', 'test47563', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47563', 'test47563@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47599', 'test47599', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47599', 'test47599@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47691', 'test47691', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47691', 'test47691@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47824', 'test47824', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47824', 'test47824@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47917', 'test47917', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47917', 'test47917@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47945', 'test47945', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47945', 'test47945@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('47960', 'test47960', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test47960', 'test47960@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('48230', 'test48230', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test48230', 'test48230@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('48238', 'test48238', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test48238', 'test48238@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('48307', 'test48307', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test48307', 'test48307@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('48504', 'test48504', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test48504', 'test48504@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('48678', 'test48678', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test48678', 'test48678@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('48859', 'test48859', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test48859', 'test48859@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49011', 'test49011', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49011', 'test49011@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49050', 'test49050', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49050', 'test49050@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49196', 'test49196', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49196', 'test49196@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49202', 'test49202', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49202', 'test49202@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49219', 'test49219', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49219', 'test49219@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49367', 'test49367', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49367', 'test49367@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49628', 'test49628', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49628', 'test49628@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49922', 'test49922', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49922', 'test49922@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49952', 'test49952', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49952', 'test49952@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('49972', 'test49972', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test49972', 'test49972@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50024', 'test50024', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50024', 'test50024@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50205', 'test50205', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50205', 'test50205@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50253', 'test50253', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50253', 'test50253@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50315', 'test50315', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50315', 'test50315@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50431', 'test50431', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50431', 'test50431@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50439', 'test50439', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50439', 'test50439@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50458', 'test50458', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50458', 'test50458@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50504', 'test50504', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50504', 'test50504@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50587', 'test50587', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50587', 'test50587@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50805', 'test50805', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50805', 'test50805@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50843', 'test50843', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50843', 'test50843@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50916', 'test50916', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50916', 'test50916@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('50977', 'test50977', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test50977', 'test50977@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51229', 'test51229', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51229', 'test51229@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51280', 'test51280', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51280', 'test51280@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51345', 'test51345', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51345', 'test51345@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51636', 'test51636', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51636', 'test51636@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51643', 'test51643', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51643', 'test51643@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51885', 'test51885', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51885', 'test51885@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51892', 'test51892', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51892', 'test51892@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('51954', 'test51954', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test51954', 'test51954@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52235', 'test52235', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52235', 'test52235@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52289', 'test52289', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52289', 'test52289@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52291', 'test52291', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52291', 'test52291@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52322', 'test52322', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52322', 'test52322@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52480', 'test52480', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52480', 'test52480@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52516', 'test52516', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52516', 'test52516@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('52670', 'test52670', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test52670', 'test52670@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53039', 'test53039', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53039', 'test53039@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53227', 'test53227', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53227', 'test53227@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53315', 'test53315', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53315', 'test53315@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53327', 'test53327', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53327', 'test53327@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53330', 'test53330', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53330', 'test53330@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53476', 'test53476', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53476', 'test53476@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53525', 'test53525', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53525', 'test53525@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53646', 'test53646', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53646', 'test53646@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53781', 'test53781', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53781', 'test53781@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('53989', 'test53989', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test53989', 'test53989@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54037', 'test54037', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54037', 'test54037@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54038', 'test54038', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54038', 'test54038@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54092', 'test54092', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54092', 'test54092@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54101', 'test54101', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54101', 'test54101@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54175', 'test54175', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54175', 'test54175@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54275', 'test54275', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54275', 'test54275@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54359', 'test54359', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54359', 'test54359@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54377', 'test54377', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54377', 'test54377@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54500', 'test54500', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54500', 'test54500@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54526', 'test54526', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54526', 'test54526@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54529', 'test54529', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54529', 'test54529@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54652', 'test54652', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54652', 'test54652@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54654', 'test54654', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54654', 'test54654@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('54845', 'test54845', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test54845', 'test54845@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55511', 'test55511', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55511', 'test55511@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55583', 'test55583', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55583', 'test55583@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55589', 'test55589', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55589', 'test55589@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55591', 'test55591', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55591', 'test55591@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55622', 'test55622', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55622', 'test55622@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55709', 'test55709', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55709', 'test55709@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55864', 'test55864', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55864', 'test55864@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('55943', 'test55943', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test55943', 'test55943@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56018', 'test56018', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56018', 'test56018@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56110', 'test56110', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56110', 'test56110@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56231', 'test56231', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56231', 'test56231@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56244', 'test56244', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56244', 'test56244@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56340', 'test56340', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56340', 'test56340@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56400', 'test56400', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56400', 'test56400@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56469', 'test56469', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56469', 'test56469@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56505', 'test56505', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56505', 'test56505@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56532', 'test56532', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56532', 'test56532@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56712', 'test56712', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56712', 'test56712@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56744', 'test56744', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56744', 'test56744@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('56798', 'test56798', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test56798', 'test56798@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57031', 'test57031', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57031', 'test57031@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57316', 'test57316', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57316', 'test57316@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57335', 'test57335', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57335', 'test57335@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57361', 'test57361', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57361', 'test57361@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57381', 'test57381', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57381', 'test57381@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57539', 'test57539', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57539', 'test57539@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57623', 'test57623', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57623', 'test57623@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57658', 'test57658', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57658', 'test57658@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57870', 'test57870', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57870', 'test57870@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57872', 'test57872', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57872', 'test57872@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57925', 'test57925', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57925', 'test57925@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('57983', 'test57983', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test57983', 'test57983@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58025', 'test58025', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58025', 'test58025@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58050', 'test58050', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58050', 'test58050@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58140', 'test58140', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58140', 'test58140@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58314', 'test58314', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58314', 'test58314@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58317', 'test58317', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58317', 'test58317@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58422', 'test58422', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58422', 'test58422@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58549', 'test58549', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58549', 'test58549@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58567', 'test58567', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58567', 'test58567@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58581', 'test58581', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58581', 'test58581@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58640', 'test58640', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58640', 'test58640@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58677', 'test58677', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58677', 'test58677@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58823', 'test58823', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58823', 'test58823@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('58919', 'test58919', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test58919', 'test58919@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59206', 'test59206', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59206', 'test59206@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59420', 'test59420', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59420', 'test59420@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59539', 'test59539', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59539', 'test59539@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59721', 'test59721', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59721', 'test59721@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59791', 'test59791', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59791', 'test59791@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59933', 'test59933', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59933', 'test59933@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59949', 'test59949', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59949', 'test59949@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('59975', 'test59975', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test59975', 'test59975@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60089', 'test60089', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60089', 'test60089@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60169', 'test60169', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60169', 'test60169@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60291', 'test60291', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60291', 'test60291@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60348', 'test60348', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60348', 'test60348@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60455', 'test60455', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60455', 'test60455@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60468', 'test60468', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60468', 'test60468@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60529', 'test60529', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60529', 'test60529@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60533', 'test60533', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60533', 'test60533@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60780', 'test60780', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60780', 'test60780@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('60912', 'test60912', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test60912', 'test60912@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61012', 'test61012', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61012', 'test61012@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61027', 'test61027', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61027', 'test61027@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61097', 'test61097', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61097', 'test61097@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61474', 'test61474', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61474', 'test61474@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61502', 'test61502', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61502', 'test61502@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61555', 'test61555', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61555', 'test61555@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61589', 'test61589', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61589', 'test61589@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61697', 'test61697', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61697', 'test61697@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61822', 'test61822', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61822', 'test61822@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('61881', 'test61881', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test61881', 'test61881@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62356', 'test62356', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62356', 'test62356@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62393', 'test62393', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62393', 'test62393@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62448', 'test62448', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62448', 'test62448@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62458', 'test62458', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62458', 'test62458@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62509', 'test62509', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62509', 'test62509@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62522', 'test62522', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62522', 'test62522@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62717', 'test62717', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62717', 'test62717@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('62978', 'test62978', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test62978', 'test62978@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63322', 'test63322', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63322', 'test63322@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63378', 'test63378', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63378', 'test63378@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63431', 'test63431', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63431', 'test63431@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63460', 'test63460', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63460', 'test63460@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63489', 'test63489', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63489', 'test63489@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63493', 'test63493', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63493', 'test63493@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63578', 'test63578', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63578', 'test63578@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63606', 'test63606', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63606', 'test63606@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63841', 'test63841', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63841', 'test63841@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63915', 'test63915', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63915', 'test63915@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('63993', 'test63993', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test63993', 'test63993@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64080', 'test64080', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64080', 'test64080@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64167', 'test64167', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64167', 'test64167@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64340', 'test64340', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64340', 'test64340@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64372', 'test64372', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64372', 'test64372@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64382', 'test64382', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64382', 'test64382@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64429', 'test64429', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64429', 'test64429@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64446', 'test64446', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64446', 'test64446@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64493', 'test64493', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64493', 'test64493@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64572', 'test64572', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64572', 'test64572@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64630', 'test64630', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64630', 'test64630@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('64903', 'test64903', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test64903', 'test64903@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('65010', 'test65010', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test65010', 'test65010@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('65367', 'test65367', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test65367', 'test65367@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('65479', 'test65479', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test65479', 'test65479@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('65590', 'test65590', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test65590', 'test65590@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('65970', 'test65970', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test65970', 'test65970@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66285', 'test66285', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66285', 'test66285@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66367', 'test66367', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66367', 'test66367@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66421', 'test66421', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66421', 'test66421@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66479', 'test66479', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66479', 'test66479@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66495', 'test66495', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66495', 'test66495@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66829', 'test66829', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66829', 'test66829@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('66838', 'test66838', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test66838', 'test66838@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67259', 'test67259', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67259', 'test67259@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67415', 'test67415', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67415', 'test67415@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67518', 'test67518', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67518', 'test67518@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67560', 'test67560', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67560', 'test67560@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67564', 'test67564', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67564', 'test67564@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67657', 'test67657', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67657', 'test67657@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67678', 'test67678', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67678', 'test67678@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('67975', 'test67975', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test67975', 'test67975@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68111', 'test68111', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68111', 'test68111@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68177', 'test68177', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68177', 'test68177@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68351', 'test68351', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68351', 'test68351@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68564', 'test68564', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68564', 'test68564@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68573', 'test68573', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68573', 'test68573@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68891', 'test68891', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68891', 'test68891@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('68895', 'test68895', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test68895', 'test68895@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69068', 'test69068', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69068', 'test69068@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69145', 'test69145', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69145', 'test69145@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69200', 'test69200', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69200', 'test69200@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69480', 'test69480', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69480', 'test69480@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69517', 'test69517', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69517', 'test69517@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69738', 'test69738', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69738', 'test69738@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69806', 'test69806', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69806', 'test69806@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('69888', 'test69888', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test69888', 'test69888@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70111', 'test70111', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70111', 'test70111@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70176', 'test70176', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70176', 'test70176@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70248', 'test70248', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70248', 'test70248@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70487', 'test70487', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70487', 'test70487@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70548', 'test70548', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70548', 'test70548@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70561', 'test70561', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70561', 'test70561@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('70972', 'test70972', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test70972', 'test70972@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71042', 'test71042', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71042', 'test71042@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71324', 'test71324', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71324', 'test71324@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71370', 'test71370', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71370', 'test71370@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71588', 'test71588', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71588', 'test71588@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71600', 'test71600', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71600', 'test71600@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71784', 'test71784', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71784', 'test71784@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('71786', 'test71786', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test71786', 'test71786@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72022', 'test72022', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72022', 'test72022@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72128', 'test72128', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72128', 'test72128@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72231', 'test72231', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72231', 'test72231@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72372', 'test72372', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72372', 'test72372@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72389', 'test72389', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72389', 'test72389@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72402', 'test72402', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72402', 'test72402@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72447', 'test72447', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72447', 'test72447@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72477', 'test72477', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72477', 'test72477@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72511', 'test72511', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72511', 'test72511@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72601', 'test72601', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72601', 'test72601@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72615', 'test72615', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72615', 'test72615@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72627', 'test72627', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72627', 'test72627@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72645', 'test72645', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72645', 'test72645@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72651', 'test72651', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72651', 'test72651@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72699', 'test72699', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72699', 'test72699@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72713', 'test72713', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72713', 'test72713@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('72985', 'test72985', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test72985', 'test72985@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73012', 'test73012', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73012', 'test73012@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73086', 'test73086', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73086', 'test73086@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73176', 'test73176', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73176', 'test73176@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73213', 'test73213', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73213', 'test73213@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73379', 'test73379', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73379', 'test73379@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73386', 'test73386', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73386', 'test73386@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73410', 'test73410', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73410', 'test73410@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73493', 'test73493', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73493', 'test73493@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73546', 'test73546', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73546', 'test73546@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73669', 'test73669', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73669', 'test73669@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73790', 'test73790', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73790', 'test73790@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73797', 'test73797', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73797', 'test73797@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73849', 'test73849', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73849', 'test73849@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73866', 'test73866', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73866', 'test73866@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('73948', 'test73948', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test73948', 'test73948@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74038', 'test74038', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74038', 'test74038@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74072', 'test74072', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74072', 'test74072@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74160', 'test74160', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74160', 'test74160@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74167', 'test74167', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74167', 'test74167@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74211', 'test74211', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74211', 'test74211@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74298', 'test74298', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74298', 'test74298@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74482', 'test74482', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74482', 'test74482@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74551', 'test74551', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74551', 'test74551@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74589', 'test74589', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74589', 'test74589@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74591', 'test74591', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74591', 'test74591@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74611', 'test74611', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74611', 'test74611@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74630', 'test74630', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74630', 'test74630@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74742', 'test74742', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74742', 'test74742@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74757', 'test74757', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74757', 'test74757@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('74772', 'test74772', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test74772', 'test74772@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75055', 'test75055', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75055', 'test75055@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75081', 'test75081', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75081', 'test75081@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75084', 'test75084', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75084', 'test75084@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75087', 'test75087', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75087', 'test75087@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75096', 'test75096', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75096', 'test75096@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75272', 'test75272', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75272', 'test75272@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75273', 'test75273', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75273', 'test75273@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75356', 'test75356', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75356', 'test75356@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75407', 'test75407', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75407', 'test75407@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75439', 'test75439', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75439', 'test75439@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75548', 'test75548', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75548', 'test75548@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75562', 'test75562', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75562', 'test75562@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75864', 'test75864', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75864', 'test75864@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('75916', 'test75916', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test75916', 'test75916@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76193', 'test76193', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76193', 'test76193@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76199', 'test76199', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76199', 'test76199@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76202', 'test76202', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76202', 'test76202@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76430', 'test76430', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76430', 'test76430@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76435', 'test76435', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76435', 'test76435@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76519', 'test76519', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76519', 'test76519@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76526', 'test76526', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76526', 'test76526@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76609', 'test76609', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76609', 'test76609@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76836', 'test76836', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76836', 'test76836@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76915', 'test76915', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76915', 'test76915@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('76939', 'test76939', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test76939', 'test76939@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77028', 'test77028', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77028', 'test77028@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77093', 'test77093', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77093', 'test77093@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77230', 'test77230', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77230', 'test77230@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77349', 'test77349', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77349', 'test77349@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77697', 'test77697', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77697', 'test77697@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77818', 'test77818', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77818', 'test77818@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77879', 'test77879', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77879', 'test77879@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77923', 'test77923', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77923', 'test77923@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('77978', 'test77978', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test77978', 'test77978@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78050', 'test78050', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78050', 'test78050@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78081', 'test78081', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78081', 'test78081@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78128', 'test78128', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78128', 'test78128@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78192', 'test78192', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78192', 'test78192@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78207', 'test78207', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78207', 'test78207@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78250', 'test78250', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78250', 'test78250@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78577', 'test78577', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78577', 'test78577@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78796', 'test78796', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78796', 'test78796@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78832', 'test78832', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78832', 'test78832@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78902', 'test78902', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78902', 'test78902@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('78956', 'test78956', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test78956', 'test78956@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79019', 'test79019', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79019', 'test79019@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79070', 'test79070', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79070', 'test79070@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79082', 'test79082', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79082', 'test79082@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79196', 'test79196', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79196', 'test79196@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79259', 'test79259', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79259', 'test79259@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79469', 'test79469', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79469', 'test79469@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79503', 'test79503', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79503', 'test79503@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79726', 'test79726', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79726', 'test79726@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('79786', 'test79786', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test79786', 'test79786@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('80073', 'test80073', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test80073', 'test80073@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('80263', 'test80263', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test80263', 'test80263@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('80678', 'test80678', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test80678', 'test80678@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81159', 'test81159', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81159', 'test81159@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81214', 'test81214', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81214', 'test81214@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81232', 'test81232', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81232', 'test81232@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81346', 'test81346', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81346', 'test81346@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81469', 'test81469', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81469', 'test81469@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81840', 'test81840', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81840', 'test81840@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81851', 'test81851', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81851', 'test81851@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('81872', 'test81872', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test81872', 'test81872@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82004', 'test82004', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82004', 'test82004@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82063', 'test82063', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82063', 'test82063@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82330', 'test82330', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82330', 'test82330@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82414', 'test82414', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82414', 'test82414@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82489', 'test82489', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82489', 'test82489@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82690', 'test82690', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82690', 'test82690@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82757', 'test82757', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82757', 'test82757@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82772', 'test82772', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82772', 'test82772@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82787', 'test82787', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82787', 'test82787@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82864', 'test82864', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82864', 'test82864@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82887', 'test82887', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82887', 'test82887@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82889', 'test82889', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82889', 'test82889@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82896', 'test82896', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82896', 'test82896@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82913', 'test82913', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82913', 'test82913@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('82929', 'test82929', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test82929', 'test82929@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83262', 'test83262', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83262', 'test83262@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83430', 'test83430', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83430', 'test83430@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83436', 'test83436', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83436', 'test83436@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83601', 'test83601', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83601', 'test83601@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83632', 'test83632', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83632', 'test83632@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83679', 'test83679', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83679', 'test83679@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('83846', 'test83846', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test83846', 'test83846@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84039', 'test84039', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84039', 'test84039@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84143', 'test84143', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84143', 'test84143@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84145', 'test84145', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84145', 'test84145@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84349', 'test84349', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84349', 'test84349@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84357', 'test84357', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84357', 'test84357@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84360', 'test84360', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84360', 'test84360@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84505', 'test84505', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84505', 'test84505@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84578', 'test84578', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84578', 'test84578@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84635', 'test84635', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84635', 'test84635@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84638', 'test84638', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84638', 'test84638@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84688', 'test84688', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84688', 'test84688@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('84988', 'test84988', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test84988', 'test84988@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85069', 'test85069', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85069', 'test85069@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85240', 'test85240', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85240', 'test85240@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85375', 'test85375', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85375', 'test85375@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85483', 'test85483', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85483', 'test85483@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85570', 'test85570', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85570', 'test85570@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85573', 'test85573', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85573', 'test85573@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85654', 'test85654', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85654', 'test85654@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85878', 'test85878', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85878', 'test85878@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85883', 'test85883', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85883', 'test85883@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85964', 'test85964', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85964', 'test85964@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('85980', 'test85980', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test85980', 'test85980@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86041', 'test86041', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86041', 'test86041@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86159', 'test86159', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86159', 'test86159@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86163', 'test86163', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86163', 'test86163@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86256', 'test86256', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86256', 'test86256@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86320', 'test86320', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86320', 'test86320@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86377', 'test86377', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86377', 'test86377@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86407', 'test86407', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86407', 'test86407@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86422', 'test86422', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86422', 'test86422@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86803', 'test86803', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86803', 'test86803@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86809', 'test86809', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86809', 'test86809@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('86992', 'test86992', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test86992', 'test86992@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87060', 'test87060', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87060', 'test87060@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87074', 'test87074', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87074', 'test87074@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87099', 'test87099', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87099', 'test87099@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87199', 'test87199', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87199', 'test87199@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87273', 'test87273', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87273', 'test87273@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87453', 'test87453', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87453', 'test87453@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87473', 'test87473', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87473', 'test87473@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87607', 'test87607', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87607', 'test87607@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87765', 'test87765', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87765', 'test87765@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87948', 'test87948', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87948', 'test87948@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87973', 'test87973', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87973', 'test87973@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('87994', 'test87994', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test87994', 'test87994@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('88022', 'test88022', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test88022', 'test88022@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('88030', 'test88030', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test88030', 'test88030@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('88203', 'test88203', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test88203', 'test88203@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('88684', 'test88684', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test88684', 'test88684@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('88764', 'test88764', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test88764', 'test88764@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89210', 'test89210', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89210', 'test89210@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89332', 'test89332', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89332', 'test89332@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89488', 'test89488', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89488', 'test89488@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89547', 'test89547', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89547', 'test89547@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89658', 'test89658', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89658', 'test89658@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89757', 'test89757', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89757', 'test89757@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89884', 'test89884', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89884', 'test89884@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('89926', 'test89926', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test89926', 'test89926@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90066', 'test90066', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90066', 'test90066@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90222', 'test90222', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90222', 'test90222@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90559', 'test90559', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90559', 'test90559@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90748', 'test90748', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90748', 'test90748@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90785', 'test90785', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90785', 'test90785@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90882', 'test90882', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90882', 'test90882@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90976', 'test90976', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90976', 'test90976@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('90983', 'test90983', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test90983', 'test90983@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91066', 'test91066', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91066', 'test91066@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91098', 'test91098', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91098', 'test91098@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91143', 'test91143', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91143', 'test91143@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91165', 'test91165', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91165', 'test91165@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91401', 'test91401', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91401', 'test91401@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91409', 'test91409', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91409', 'test91409@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('91548', 'test91548', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test91548', 'test91548@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92155', 'test92155', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92155', 'test92155@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92411', 'test92411', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92411', 'test92411@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92423', 'test92423', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92423', 'test92423@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92845', 'test92845', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92845', 'test92845@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92846', 'test92846', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92846', 'test92846@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92929', 'test92929', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92929', 'test92929@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('92956', 'test92956', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test92956', 'test92956@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1'), -+('93236', 'test93236', '$2y$13$6X4RYJqepBi2Te1pY1nq5.oGtUMY7aB6SOTO2lTEOx7lUTlNwOfqS', 'test93236', 'test93236@test.com', '2018-01-02 02:40:51', '127.0.0.1', '2018-01-02 02:40:51', '1', '1') - ; --- -2.37.3 - diff --git a/dev/0002-Later-changelog-edits-now.patch b/dev/0002-Later-changelog-edits-now.patch deleted file mode 100644 index 2eadb898..00000000 --- a/dev/0002-Later-changelog-edits-now.patch +++ /dev/null @@ -1,61 +0,0 @@ -From fff6065b9c918942afc00c7b34e0685c524f4b46 Mon Sep 17 00:00:00 2001 -From: Pysis868 -Date: Fri, 17 Apr 2020 01:18:35 -0400 -Subject: [PATCH 2/3] Later changelog edits now. - ---- - dev/db/zeldamaps.sql | 25 +++++++++++++++---------- - 1 file changed, 15 insertions(+), 10 deletions(-) - -diff --git a/dev/db/zeldamaps.sql b/dev/db/zeldamaps.sql -index 468b2c8..e62843c 100644 ---- a/dev/db/zeldamaps.sql -+++ b/dev/db/zeldamaps.sql -@@ -39,7 +39,7 @@ CREATE TABLE `changelog` ( - `version_patch` int(11) NOT NULL, - `content` text, - PRIMARY KEY (`id`) --) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; -+) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=latin1; - /*!40101 SET character_set_client = @saved_cs_client */; - - -- -@@ -496,21 +496,26 @@ INSERT INTO `changelog` VALUES (7,0,3,0,'Don\'t show this again has been fixed. - INSERT INTO `changelog` VALUES (8,0,3,0,'(Admins only) Ability to draw lines and polygons. Soon, we will have paths for Koroks, side-quests, etc.'); - INSERT INTO `changelog` VALUES (9,0,3,0,'The following markers were extracted from the game files and their position are considered final: Koroks, Shrines, Towers, Villages, Stables, Great Fairies! More to come...'); - INSERT INTO `changelog` VALUES (10,0,4,0,'Remember to right-click (Desktop) or long press (Mobile) to set a marker as complete!'); --INSERT INTO `changelog` VALUES (11,0,4,0,'1400+ new markers! This time we added Treasure Chests (with contents); Blupees, Goddess Statues, Memories, Diaries & Books and Cooking Pots. These markers were extracted from the game files and their position are considered final, along with Koroks, Shrines, Towers, Villages, Stables, Great Fairies!'); -+INSERT INTO `changelog` VALUES (11,0,4,0,'1400+ new markers! This time we added Treasure Chests (with contents), Blupees, Goddess Statues, Memories, Diaries & Books and Cooking Pots. These markers were extracted from the game files and their position are considered final, along with Koroks, Shrines, Towers, Villages, Stables, Great Fairies!'); - INSERT INTO `changelog` VALUES (12,0,5,0,'Completed markers are tied to your account!'); - INSERT INTO `changelog` VALUES (13,0,5,0,'You can now select multiple categories at the same type.'); - INSERT INTO `changelog` VALUES (14,0,5,0,'The top left box can now be collapsed.'); - INSERT INTO `changelog` VALUES (15,0,5,0,'Marker clustering has been disabled (experimental?).'); - INSERT INTO `changelog` VALUES (16,0,5,0,'Markers now show up according to zoom.'); - INSERT INTO `changelog` VALUES (17,0,5,0,'Usability fixes and improvements all over the place.'); --INSERT INTO `changelog` VALUES (18,0,6,0,'Added login button for more obvious accessibility.'); --INSERT INTO `changelog` VALUES (19,0,6,0,'Incremental search with type icons, visual and textual relevancy, jump-to navigation, auto-focus, and quick clear!\nWatch out, the first release of this may be wonky.\nMobile gets a separate-looking search bar.'); --INSERT INTO `changelog` VALUES (20,0,6,0,'Slippery fast \'Escape\' hotkey now works for clearing the drawer and toggling its presence.\nThe undo marker completion hotkey was updated to be more intelligent per-OS.'); --INSERT INTO `changelog` VALUES (21,0,6,0,'More account features such as recovering a lost password through a reset email, and changing an existing password.'); --INSERT INTO `changelog` VALUES (22,0,6,0,'Able to set a starting area to focus the map on page load!\nDynamic controls available upon request to help identify the intended coordinates.\nAlso comes with some new configurable zoom parameters for snap enforcement and change interval amount.'); --INSERT INTO `changelog` VALUES (23,0,6,0,'Made top drawer buttons have a larger link area and with highlighting background for representing the current state.'); --INSERT INTO `changelog` VALUES (24,0,6,0,'Stylistic updates to more closely match final vision.'); --INSERT INTO `changelog` VALUES (25,0,6,0,'A lot of internal system, documentation, and tooling updates!!'); -+INSERT INTO `changelog` VALUES (26,0,6,0,'New logo by the Zelda Universe design team!'); -+INSERT INTO `changelog` VALUES (27,0,6,0,'Added Login/Account button'); -+INSERT INTO `changelog` VALUES (28,0,6,0,'Added Lost Password and Change Password functionality'); -+INSERT INTO `changelog` VALUES (29,0,6,0,'Added search with live results, category icons, relevancy indicators, jump-to navigation, auto-focus, and quick clear!'); -+INSERT INTO `changelog` VALUES (30,0,6,0,'Removed button to collapse the sidebar on desktop in favor of hotkey (esc)'); -+INSERT INTO `changelog` VALUES (31,0,6,0,'Made marker completion hotkeys more intelligent per-OS'); -+INSERT INTO `changelog` VALUES (32,0,6,0,'Lots of small interface improvements'); -+INSERT INTO `changelog` VALUES (33,0,6,0,'Internal prep work and documentation for the upcoming Zelda Maps open source project'); -+INSERT INTO `changelog` VALUES (34,0,7,0,'Multi-game support with Link\'s Awakening: More maps for more Zelda games are on the way.'); -+INSERT INTO `changelog` VALUES (35,0,7,0,'Sub-map support: Sub-maps cover areas like dungeons. You can view a list of all sub-maps for a given game by clicking on \"Switch Maps\". For LA, we\'ve got maps for every dungeon. We\'re looking into ways to incorporate sub-maps into the Breath of the Wild side of things, too.'); -+INSERT INTO `changelog` VALUES (36,0,7,0,'Reset completed markers: You can now reset your completed marker progress from your account settings. Super useful if you\'re starting a new run.'); -+INSERT INTO `changelog` VALUES (37,0,7,0,'Category completion progress: Hovering over marker categories will now show you how many markers you\'ve completed out of the category total.'); -+INSERT INTO `changelog` VALUES (38,0,7,0,'Embed codes for markers: In addition to being able to get a permalink for each marker, you can now get an iframe embed code. Embeds show a nice zoomed in view of the selected marker.'); - /*!40000 ALTER TABLE `changelog` ENABLE KEYS */; - UNLOCK TABLES; - --- -2.37.3 - diff --git a/dev/0003-Adding-game-to-list-where-the-project-gained-support.patch b/dev/0003-Adding-game-to-list-where-the-project-gained-support.patch deleted file mode 100644 index eaba95f7..00000000 --- a/dev/0003-Adding-game-to-list-where-the-project-gained-support.patch +++ /dev/null @@ -1,25 +0,0 @@ -From b0122ec54dda8ed19e42bb8f757b0f052302d76d Mon Sep 17 00:00:00 2001 -From: Pysis868 -Date: Fri, 17 Apr 2020 01:22:23 -0400 -Subject: [PATCH 3/3] Adding game to list where the project gained support - already. - ---- - README.md | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/README.md b/README.md -index 40321a1..2710176 100644 ---- a/README.md -+++ b/README.md -@@ -3,6 +3,7 @@ - - Currently supports: - - The Legend of Zelda: Breath of the Wild for the Nintendo Switch and Wii U (March 3, 2017) -+ - The Legend of Zelda: Link's Awakening for the Nintendo Switch (September 20, 2019) - - ## Help Sections - - [Installation Instructions](https://github.com/Zelda-Universe/Zelda-Maps/blob/master/INSTALL.md) --- -2.37.3 - diff --git a/dev/db/samples/tingle.sql b/dev/db/samples/tingle.sql index 2e088f8a..74d56bd1 100644 --- a/dev/db/samples/tingle.sql +++ b/dev/db/samples/tingle.sql @@ -522,13 +522,21 @@ INSERT INTO `changelog` VALUES (7,0,3,0,'Don\'t show this again has been fixed. INSERT INTO `changelog` VALUES (8,0,3,0,'(Admins only) Ability to draw lines and polygons. Soon, we will have paths for Koroks, side-quests, etc.'); INSERT INTO `changelog` VALUES (9,0,3,0,'The following markers were extracted from the game files and their position are considered final: Koroks, Shrines, Towers, Villages, Stables, Great Fairies! More to come...'); INSERT INTO `changelog` VALUES (10,0,4,0,'Remember to right-click (Desktop) or long press (Mobile) to set a marker as complete!'); -INSERT INTO `changelog` VALUES (11,0,4,0,'1400+ new markers! This time we added Treasure Chests (with contents), Blupees, Goddess Statues, Memories, Diaries & Books and Cooking Pots. These markers were extracted from the game files and their position are considered final, along with Koroks, Shrines, Towers, Villages, Stables, Great Fairies!'); +INSERT INTO `changelog` VALUES (11,0,4,0,'1400+ new markers! This time we added Treasure Chests (with contents), Blupees, Goddess Statues, Memories, Diaries & Books, and Cooking Pots. These markers were extracted from the game files and their position are considered final, along with Koroks, Shrines, Towers, Villages, Stables, Great Fairies!'); INSERT INTO `changelog` VALUES (12,0,5,0,'Completed markers are tied to your account!'); -INSERT INTO `changelog` VALUES (13,0,5,0,'You can now select multiple categories at the same type.'); +INSERT INTO `changelog` VALUES (13,0,5,0,'You can now select multiple categories of the same type.'); INSERT INTO `changelog` VALUES (14,0,5,0,'The top left box can now be collapsed.'); INSERT INTO `changelog` VALUES (15,0,5,0,'Marker clustering has been disabled (experimental?).'); INSERT INTO `changelog` VALUES (16,0,5,0,'Markers now show up according to zoom.'); INSERT INTO `changelog` VALUES (17,0,5,0,'Usability fixes and improvements all over the place.'); +INSERT INTO `changelog` VALUES (18,0,6,0,'Added login button for more obvious accessibility.'); +INSERT INTO `changelog` VALUES (19,0,6,0,'Incremental search with type icons, visual and textual relevancy, jump-to navigation, auto-focus, and quick clear!\nWatch out, the first release of this may be wonky.\nMobile gets a separate-looking search bar.'); +INSERT INTO `changelog` VALUES (20,0,6,0,'Slippery fast \'Escape\' hotkey now works for clearing the drawer and toggling its presence.\nThe undo marker completion hotkey was updated to be more intelligent per-OS.'); +INSERT INTO `changelog` VALUES (21,0,6,0,'More account features such as recovering a lost password through a reset email, and changing an existing password.'); +INSERT INTO `changelog` VALUES (22,0,6,0,'Able to set a starting area to focus the map on page load!\nDynamic controls available upon request to help identify the intended coordinates.\nAlso comes with some new configurable zoom parameters for snap enforcement and change interval amount.'); +INSERT INTO `changelog` VALUES (23,0,6,0,'Made top drawer buttons have a larger link area and with highlighting background for representing the current state.'); +INSERT INTO `changelog` VALUES (24,0,6,0,'Stylistic updates to more closely match final vision.'); +INSERT INTO `changelog` VALUES (25,0,6,0,'A lot of internal system, documentation, and tooling updates!!'); INSERT INTO `changelog` VALUES (26,0,6,0,'New logo by the Zelda Universe design team!'); INSERT INTO `changelog` VALUES (27,0,6,0,'Added Login/Account button'); INSERT INTO `changelog` VALUES (28,0,6,0,'Added Lost Password and Change Password functionality');