Cleaned up namespaces (still have to do Map Project) and removed references to FFXIV Classic from the code. Removed the Launcher Editor project as it is no longer needed (host file editing is cleaner).

This commit is contained in:
Filip Maj 2019-06-19 00:05:18 -04:00
parent 7587a6e142
commit 0f61c4c0e1
544 changed files with 54548 additions and 55498 deletions

51
data/sql/characters.sql Normal file
View file

@ -0,0 +1,51 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 5/1/2017 10:28:15 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for characters
-- ----------------------------
CREATE TABLE `characters` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) unsigned NOT NULL,
`slot` smallint(6) unsigned NOT NULL,
`serverId` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
`state` smallint(5) unsigned NOT NULL DEFAULT '0',
`creationDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`isLegacy` smallint(1) unsigned DEFAULT '0',
`doRename` smallint(1) unsigned DEFAULT '0',
`playTime` int(10) unsigned NOT NULL DEFAULT '0',
`positionX` float NOT NULL DEFAULT '0',
`positionY` float NOT NULL DEFAULT '0',
`positionZ` float NOT NULL DEFAULT '0',
`rotation` float NOT NULL DEFAULT '0',
`actorState` smallint(5) unsigned DEFAULT '0',
`currentZoneId` smallint(5) unsigned DEFAULT '0',
`currentPrivateArea` varchar(32) DEFAULT NULL,
`currentPrivateAreaType` int(10) unsigned DEFAULT '0',
`destinationZoneId` smallint(5) unsigned DEFAULT '0',
`destinationSpawnType` tinyint(3) unsigned DEFAULT '0',
`guardian` tinyint(3) unsigned DEFAULT '0',
`birthDay` tinyint(3) unsigned DEFAULT '0',
`birthMonth` tinyint(3) unsigned DEFAULT '0',
`initialTown` tinyint(3) unsigned DEFAULT '0',
`tribe` tinyint(3) unsigned DEFAULT '0',
`gcCurrent` tinyint(3) unsigned DEFAULT '0',
`gcLimsaRank` tinyint(3) unsigned DEFAULT '127',
`gcGridaniaRank` tinyint(3) unsigned DEFAULT '127',
`gcUldahRank` tinyint(3) unsigned DEFAULT '127',
`currentTitle` int(10) unsigned DEFAULT '0',
`restBonus` int(10) DEFAULT '0',
`achievementPoints` int(10) unsigned DEFAULT '0',
`currentActiveLinkshell` varchar(32) NOT NULL DEFAULT '',
`homepoint` int(10) unsigned NOT NULL DEFAULT '0',
`homepointInn` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;

View file

@ -0,0 +1,54 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_achievements`
--
DROP TABLE IF EXISTS `characters_achievements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_achievements` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`achievementId` int(10) unsigned NOT NULL,
`timeDone` int(10) unsigned DEFAULT NULL,
`progress` int(10) unsigned DEFAULT '0',
`progressFlags` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_achievements`
--
LOCK TABLES `characters_achievements` WRITE;
/*!40000 ALTER TABLE `characters_achievements` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_achievements` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:43

View file

@ -0,0 +1,82 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_appearance`
--
DROP TABLE IF EXISTS `characters_appearance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_appearance` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`baseId` int(10) unsigned NOT NULL,
`size` tinyint(3) unsigned NOT NULL DEFAULT '0',
`voice` tinyint(3) unsigned NOT NULL DEFAULT '0',
`skinColor` smallint(5) unsigned NOT NULL,
`hairStyle` smallint(5) unsigned NOT NULL,
`hairColor` smallint(5) unsigned NOT NULL,
`hairHighlightColor` smallint(5) unsigned NOT NULL DEFAULT '0',
`hairVariation` smallint(5) unsigned NOT NULL,
`eyeColor` smallint(5) unsigned NOT NULL,
`faceType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`faceEyebrows` tinyint(3) unsigned NOT NULL DEFAULT '0',
`faceEyeShape` tinyint(3) unsigned NOT NULL DEFAULT '0',
`faceIrisSize` tinyint(3) unsigned NOT NULL DEFAULT '0',
`faceNose` tinyint(3) unsigned NOT NULL DEFAULT '0',
`faceMouth` tinyint(3) unsigned NOT NULL DEFAULT '0',
`faceFeatures` tinyint(3) unsigned NOT NULL,
`ears` tinyint(3) unsigned NOT NULL DEFAULT '0',
`characteristics` tinyint(3) unsigned NOT NULL DEFAULT '0',
`characteristicsColor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`mainhand` int(10) unsigned NOT NULL,
`offhand` int(10) unsigned NOT NULL,
`head` int(10) unsigned NOT NULL,
`body` int(10) unsigned NOT NULL,
`hands` int(10) unsigned NOT NULL,
`legs` int(10) unsigned NOT NULL,
`feet` int(10) unsigned NOT NULL,
`waist` int(10) unsigned NOT NULL,
`leftFinger` int(10) unsigned NOT NULL DEFAULT '0',
`rightFinger` int(10) unsigned NOT NULL DEFAULT '0',
`leftEar` int(10) unsigned NOT NULL DEFAULT '0',
`rightEar` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_appearance`
--
LOCK TABLES `characters_appearance` WRITE;
/*!40000 ALTER TABLE `characters_appearance` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_appearance` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:43

View file

@ -0,0 +1,51 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_blacklist`
--
DROP TABLE IF EXISTS `characters_blacklist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_blacklist` (
`characterId` int(10) unsigned NOT NULL,
`slot` int(10) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_blacklist`
--
LOCK TABLES `characters_blacklist` WRITE;
/*!40000 ALTER TABLE `characters_blacklist` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_blacklist` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:44

View file

@ -0,0 +1,53 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_chocobo`
--
DROP TABLE IF EXISTS `characters_chocobo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_chocobo` (
`characterId` int(10) unsigned NOT NULL,
`hasChocobo` tinyint(1) unsigned DEFAULT '0',
`hasGoobbue` tinyint(1) unsigned DEFAULT '0',
`chocoboAppearance` tinyint(3) unsigned DEFAULT NULL,
`chocoboName` varchar(255) DEFAULT '',
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_chocobo`
--
LOCK TABLES `characters_chocobo` WRITE;
/*!40000 ALTER TABLE `characters_chocobo` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_chocobo` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:44

View file

@ -0,0 +1,68 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_class_exp`
--
DROP TABLE IF EXISTS `characters_class_exp`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_class_exp` (
`characterId` int(10) unsigned NOT NULL,
`pug` int(10) unsigned DEFAULT '0',
`gla` int(10) unsigned DEFAULT '0',
`mrd` int(10) unsigned DEFAULT '0',
`arc` int(10) unsigned DEFAULT '0',
`lnc` int(10) unsigned DEFAULT '0',
`thm` int(10) unsigned DEFAULT '0',
`cnj` int(10) unsigned DEFAULT '0',
`crp` int(10) unsigned DEFAULT '0',
`bsm` int(10) unsigned DEFAULT '0',
`arm` int(10) unsigned DEFAULT '0',
`gsm` int(10) unsigned DEFAULT '0',
`ltw` int(10) unsigned DEFAULT '0',
`wvr` int(10) unsigned DEFAULT '0',
`alc` int(10) unsigned DEFAULT '0',
`cul` int(10) unsigned DEFAULT '0',
`min` int(10) unsigned DEFAULT '0',
`btn` int(10) unsigned DEFAULT '0',
`fsh` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_class_exp`
--
LOCK TABLES `characters_class_exp` WRITE;
/*!40000 ALTER TABLE `characters_class_exp` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_class_exp` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:44

View file

@ -0,0 +1,68 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_class_levels`
--
DROP TABLE IF EXISTS `characters_class_levels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_class_levels` (
`characterId` int(10) unsigned NOT NULL,
`pug` smallint(6) DEFAULT '0',
`gla` smallint(6) DEFAULT '0',
`mrd` smallint(6) DEFAULT '0',
`arc` smallint(6) DEFAULT '0',
`lnc` smallint(6) DEFAULT '0',
`thm` smallint(6) DEFAULT '0',
`cnj` smallint(6) DEFAULT '0',
`crp` smallint(6) DEFAULT '0',
`bsm` smallint(6) DEFAULT '0',
`arm` smallint(6) DEFAULT '0',
`gsm` smallint(6) DEFAULT '0',
`ltw` smallint(6) DEFAULT '0',
`wvr` smallint(6) DEFAULT '0',
`alc` smallint(6) DEFAULT '0',
`cul` smallint(6) DEFAULT '0',
`min` smallint(6) DEFAULT '0',
`btn` smallint(6) DEFAULT '0',
`fsh` smallint(6) DEFAULT '0',
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_class_levels`
--
LOCK TABLES `characters_class_levels` WRITE;
/*!40000 ALTER TABLE `characters_class_levels` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_class_levels` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:45

View file

@ -0,0 +1,56 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_customattributes`
--
DROP TABLE IF EXISTS `characters_customattributes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_customattributes` (
`characterId` int(10) unsigned NOT NULL,
`pointsRemaining` int(11) DEFAULT '0',
`strSpent` int(11) DEFAULT '0',
`vitSpent` int(11) DEFAULT '0',
`dexSpent` int(11) DEFAULT '0',
`intSpent` int(11) DEFAULT '0',
`minSpent` int(11) DEFAULT '0',
`pieSpent` int(11) DEFAULT '0',
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_customattributes`
--
LOCK TABLES `characters_customattributes` WRITE;
/*!40000 ALTER TABLE `characters_customattributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_customattributes` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:45

View file

@ -0,0 +1,52 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_friendlist`
--
DROP TABLE IF EXISTS `characters_friendlist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_friendlist` (
`id` int(10) unsigned zerofill NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`slot` int(10) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_friendlist`
--
LOCK TABLES `characters_friendlist` WRITE;
/*!40000 ALTER TABLE `characters_friendlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_friendlist` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:45

View file

@ -0,0 +1,53 @@
-- MySQL dump 10.13 Distrib 5.7.11, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.11
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_hotbar`
--
DROP TABLE IF EXISTS `characters_hotbar`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_hotbar` (
`characterId` int(10) unsigned NOT NULL,
`classId` smallint(5) unsigned NOT NULL,
`hotbarSlot` smallint(5) unsigned NOT NULL,
`commandId` int(10) unsigned NOT NULL,
`recastTime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`characterId`,`classId`,`hotbarSlot`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_hotbar`
--
LOCK TABLES `characters_hotbar` WRITE;
/*!40000 ALTER TABLE `characters_hotbar` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_hotbar` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-02-15 0:04:39

View file

@ -0,0 +1,25 @@
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.6.17 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 10.1.0.5464
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table ffxiv_server.characters_inventory
CREATE TABLE IF NOT EXISTS `characters_inventory` (
`characterId` int(10) unsigned NOT NULL,
`serverItemId` bigint(20) unsigned NOT NULL,
`itemPackage` smallint(5) unsigned NOT NULL,
`slot` smallint(5) unsigned NOT NULL,
PRIMARY KEY (`characterId`,`serverItemId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

View file

@ -0,0 +1,25 @@
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.6.17 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 10.1.0.5464
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table ffxiv_server.characters_inventory_equipment
CREATE TABLE IF NOT EXISTS `characters_inventory_equipment` (
`characterId` int(10) unsigned NOT NULL,
`classId` smallint(5) unsigned NOT NULL,
`equipSlot` smallint(5) unsigned NOT NULL,
`itemId` bigint(10) unsigned NOT NULL,
PRIMARY KEY (`characterId`,`classId`,`equipSlot`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

View file

@ -0,0 +1,19 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 4/2/2017 3:12:27 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for characters_linkshells
-- ----------------------------
CREATE TABLE `characters_linkshells` (
`characterId` int(10) unsigned NOT NULL,
`linkshellId` bigint(20) unsigned NOT NULL,
`rank` tinyint(3) unsigned NOT NULL DEFAULT '4',
PRIMARY KEY (`characterId`,`linkshellId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -0,0 +1,52 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_npclinkshell`
--
DROP TABLE IF EXISTS `characters_npclinkshell`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_npclinkshell` (
`characterId` int(11) unsigned NOT NULL,
`npcLinkshellId` smallint(5) unsigned NOT NULL,
`isCalling` tinyint(1) unsigned NOT NULL DEFAULT '0',
`isExtra` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`characterId`,`npcLinkshellId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_npclinkshell`
--
LOCK TABLES `characters_npclinkshell` WRITE;
/*!40000 ALTER TABLE `characters_npclinkshell` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_npclinkshell` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:47

View file

@ -0,0 +1,55 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_parametersave`
--
DROP TABLE IF EXISTS `characters_parametersave`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_parametersave` (
`characterId` int(10) unsigned NOT NULL,
`hp` smallint(6) NOT NULL,
`hpMax` smallint(6) NOT NULL,
`mp` smallint(6) NOT NULL,
`mpMax` smallint(6) NOT NULL,
`mainSkill` tinyint(3) unsigned NOT NULL,
`mainSkillLevel` smallint(6) NOT NULL,
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_parametersave`
--
LOCK TABLES `characters_parametersave` WRITE;
/*!40000 ALTER TABLE `characters_parametersave` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_parametersave` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:47

View file

@ -0,0 +1,51 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_quest_completed`
--
DROP TABLE IF EXISTS `characters_quest_completed`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_quest_completed` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`questId` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_quest_completed`
--
LOCK TABLES `characters_quest_completed` WRITE;
/*!40000 ALTER TABLE `characters_quest_completed` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_quest_completed` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:47

View file

@ -0,0 +1,54 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_quest_guildleve_local`
--
DROP TABLE IF EXISTS `characters_quest_guildleve_local`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_quest_guildleve_local` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`slot` smallint(5) unsigned NOT NULL,
`questId` int(10) unsigned NOT NULL,
`abandoned` tinyint(1) unsigned DEFAULT '0',
`completed` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_quest_guildleve_local`
--
LOCK TABLES `characters_quest_guildleve_local` WRITE;
/*!40000 ALTER TABLE `characters_quest_guildleve_local` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_quest_guildleve_local` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:48

View file

@ -0,0 +1,54 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_quest_guildleve_regional`
--
DROP TABLE IF EXISTS `characters_quest_guildleve_regional`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_quest_guildleve_regional` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`slot` smallint(5) unsigned NOT NULL,
`guildleveId` smallint(3) unsigned NOT NULL,
`abandoned` tinyint(1) unsigned DEFAULT '0',
`completed` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_quest_guildleve_regional`
--
LOCK TABLES `characters_quest_guildleve_regional` WRITE;
/*!40000 ALTER TABLE `characters_quest_guildleve_regional` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_quest_guildleve_regional` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:48

View file

@ -0,0 +1,52 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_quest_guildlevehistory`
--
DROP TABLE IF EXISTS `characters_quest_guildlevehistory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_quest_guildlevehistory` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`characterId` int(10) unsigned NOT NULL,
`questId` int(10) unsigned NOT NULL,
`timeCompleted` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_quest_guildlevehistory`
--
LOCK TABLES `characters_quest_guildlevehistory` WRITE;
/*!40000 ALTER TABLE `characters_quest_guildlevehistory` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_quest_guildlevehistory` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:48

View file

@ -0,0 +1,22 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 4/2/2017 2:27:54 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for characters_quest_scenario
-- ----------------------------
CREATE TABLE `characters_quest_scenario` (
`characterId` int(10) unsigned NOT NULL,
`slot` smallint(5) unsigned NOT NULL,
`questId` int(10) unsigned NOT NULL,
`currentPhase` int(10) unsigned NOT NULL DEFAULT '0',
`questData` longtext,
`questFlags` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`characterId`,`slot`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

View file

@ -0,0 +1,19 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 9/9/2017 2:30:57 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for characters_retainers
-- ----------------------------
CREATE TABLE `characters_retainers` (
`characterId` int(10) unsigned NOT NULL,
`retainerId` int(10) unsigned NOT NULL,
`doRename` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`characterId`,`retainerId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

View file

@ -0,0 +1,55 @@
-- MySQL dump 10.13 Distrib 5.7.11, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.11
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_statuseffect`
--
DROP TABLE IF EXISTS `characters_statuseffect`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_statuseffect` (
`characterId` int(10) unsigned NOT NULL,
`statusId` mediumint(8) unsigned NOT NULL,
`magnitude` bigint(20) unsigned NOT NULL,
`duration` int(10) unsigned NOT NULL,
`tick` int(10) unsigned NOT NULL,
`tier` tinyint(3) unsigned NOT NULL,
`extra` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`characterId`,`statusId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_statuseffect`
--
LOCK TABLES `characters_statuseffect` WRITE;
/*!40000 ALTER TABLE `characters_statuseffect` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_statuseffect` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-05-27 17:59:07

View file

@ -0,0 +1,69 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `characters_timers`
--
DROP TABLE IF EXISTS `characters_timers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters_timers` (
`characterId` int(10) unsigned NOT NULL DEFAULT '0',
`thousandmaws` int(10) unsigned DEFAULT '0',
`dzemaeldarkhold` int(10) unsigned DEFAULT '0',
`bowlofembers_hard` int(10) unsigned DEFAULT '0',
`bowlofembers` int(10) unsigned DEFAULT '0',
`thornmarch` int(10) unsigned DEFAULT '0',
`aurumvale` int(10) unsigned DEFAULT '0',
`cutterscry` int(10) unsigned DEFAULT '0',
`battle_aleport` int(10) unsigned DEFAULT '0',
`battle_hyrstmill` int(10) unsigned DEFAULT '0',
`battle_goldenbazaar` int(10) unsigned DEFAULT '0',
`howlingeye_hard` int(10) unsigned DEFAULT '0',
`howlingeye` int(10) unsigned DEFAULT '0',
`castrumnovum` int(10) unsigned DEFAULT '0',
`bowlofembers_extreme` int(10) unsigned DEFAULT '0',
`rivenroad` int(10) unsigned DEFAULT '0',
`rivenroad_hard` int(10) unsigned DEFAULT '0',
`behests` int(10) unsigned DEFAULT '0',
`companybehests` int(10) unsigned DEFAULT '0',
`returntimer` int(10) unsigned DEFAULT '0',
`skirmish` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`characterId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `characters_timers`
--
LOCK TABLES `characters_timers` WRITE;
/*!40000 ALTER TABLE `characters_timers` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters_timers` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:49

10
data/sql/export.sh Normal file
View file

@ -0,0 +1,10 @@
#!/bin/bash
EXPORT_PATH=C:/repositories/ffxiv-classic-server/sql/
USER=root
PASS=root
DBNAME=ffxiv_server
for T in `mysqlshow -u $USER -p$PASS $DBNAME %`;
do
echo "Backing up $T"
mysqldump -u $USER -p$PASS $DBNAME $T --extended-insert=FALSE --no-tablespaces --no-autocommit > $EXPORT_PATH/$T.sql
done;

View file

@ -0,0 +1,802 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `gamedata_achievements`
--
SET autocommit = 0;
DROP TABLE IF EXISTS `gamedata_achievements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gamedata_achievements` (
`achievementId` smallint(5) unsigned NOT NULL,
`name` varchar(255) CHARACTER SET utf8 NOT NULL,
`packetOffsetId` smallint(5) unsigned NOT NULL,
`rewardPoints` smallint(5) unsigned NOT NULL,
PRIMARY KEY (`achievementId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gamedata_achievements`
--
LOCK TABLES `gamedata_achievements` WRITE;
/*!40000 ALTER TABLE `gamedata_achievements` DISABLE KEYS */;
INSERT INTO `gamedata_achievements` VALUES (100,'Battle',0,0);
INSERT INTO `gamedata_achievements` VALUES (101,'To Crush Your Enemies I',1,5);
INSERT INTO `gamedata_achievements` VALUES (102,'To Crush Your Enemies II',2,5);
INSERT INTO `gamedata_achievements` VALUES (103,'To Crush Your Enemies III',3,10);
INSERT INTO `gamedata_achievements` VALUES (104,'To Crush Your Enemies IV',4,10);
INSERT INTO `gamedata_achievements` VALUES (105,'To Crush Your Enemies V',5,10);
INSERT INTO `gamedata_achievements` VALUES (106,'To Crush Your Enemies VI',6,10);
INSERT INTO `gamedata_achievements` VALUES (107,'Let the Bodies Hit the Floor',7,30);
INSERT INTO `gamedata_achievements` VALUES (108,'La Noscea Big Game Hunter',8,10);
INSERT INTO `gamedata_achievements` VALUES (109,'Black Shroud Big Game Hunter',9,10);
INSERT INTO `gamedata_achievements` VALUES (110,'Thanalan Big Game Hunter',10,10);
INSERT INTO `gamedata_achievements` VALUES (111,'Coerthas Big Game Hunter',11,10);
INSERT INTO `gamedata_achievements` VALUES (112,'Mor Dhona Big Game Hunter',12,10);
INSERT INTO `gamedata_achievements` VALUES (113,'Shposhae Big Game Hunter',13,10);
INSERT INTO `gamedata_achievements` VALUES (114,'Bane of the Tribes',14,10);
INSERT INTO `gamedata_achievements` VALUES (115,'Notorious Monster Hunting',15,30);
INSERT INTO `gamedata_achievements` VALUES (116,'Had Me Some Fun',16,5);
INSERT INTO `gamedata_achievements` VALUES (117,'Most Adorable Death Ever',17,5);
INSERT INTO `gamedata_achievements` VALUES (118,'Where the Wind Blows',18,5);
INSERT INTO `gamedata_achievements` VALUES (197,'To Crush Your Enemies IV',19,0);
INSERT INTO `gamedata_achievements` VALUES (198,'Notorious Monster Hunting',20,0);
INSERT INTO `gamedata_achievements` VALUES (199,'Let the Bodies Hit the Floor',21,0);
INSERT INTO `gamedata_achievements` VALUES (200,'Character',50,0);
INSERT INTO `gamedata_achievements` VALUES (201,'Stick Them with the Pointy End I',51,5);
INSERT INTO `gamedata_achievements` VALUES (202,'Stick Them with the Pointy End II',52,5);
INSERT INTO `gamedata_achievements` VALUES (203,'Stick Them with the Pointy End III',53,5);
INSERT INTO `gamedata_achievements` VALUES (204,'Stick Them with the Pointy End IV',54,5);
INSERT INTO `gamedata_achievements` VALUES (205,'Stick Them with the Pointy End V',55,5);
INSERT INTO `gamedata_achievements` VALUES (206,'The Sweet Science I',56,5);
INSERT INTO `gamedata_achievements` VALUES (207,'The Sweet Science II',57,5);
INSERT INTO `gamedata_achievements` VALUES (208,'The Sweet Science III',58,5);
INSERT INTO `gamedata_achievements` VALUES (209,'The Sweet Science IV',59,5);
INSERT INTO `gamedata_achievements` VALUES (210,'The Sweet Science V',60,5);
INSERT INTO `gamedata_achievements` VALUES (211,'An Axe to Grind I',61,5);
INSERT INTO `gamedata_achievements` VALUES (212,'An Axe to Grind II',62,5);
INSERT INTO `gamedata_achievements` VALUES (213,'An Axe to Grind III',63,5);
INSERT INTO `gamedata_achievements` VALUES (214,'An Axe to Grind IV',64,5);
INSERT INTO `gamedata_achievements` VALUES (215,'An Axe to Grind V',65,5);
INSERT INTO `gamedata_achievements` VALUES (216,'Strong Lance Arm I',66,5);
INSERT INTO `gamedata_achievements` VALUES (217,'Strong Lance Arm II',67,5);
INSERT INTO `gamedata_achievements` VALUES (218,'Strong Lance Arm III',68,5);
INSERT INTO `gamedata_achievements` VALUES (219,'Strong Lance Arm IV',69,5);
INSERT INTO `gamedata_achievements` VALUES (220,'Strong Lance Arm V',70,5);
INSERT INTO `gamedata_achievements` VALUES (221,'Just Talkin\' \'Bout Shafts I',71,5);
INSERT INTO `gamedata_achievements` VALUES (222,'Just Talkin\' \'Bout Shafts II',72,5);
INSERT INTO `gamedata_achievements` VALUES (223,'Just Talkin\' \'Bout Shafts III',73,5);
INSERT INTO `gamedata_achievements` VALUES (224,'Just Talkin\' \'Bout Shafts IV',74,5);
INSERT INTO `gamedata_achievements` VALUES (225,'Just Talkin\' \'Bout Shafts V',75,5);
INSERT INTO `gamedata_achievements` VALUES (226,'Mastering War',76,20);
INSERT INTO `gamedata_achievements` VALUES (227,'I Got the Magic Stick I',77,5);
INSERT INTO `gamedata_achievements` VALUES (228,'I Got the Magic Stick II',78,5);
INSERT INTO `gamedata_achievements` VALUES (229,'I Got the Magic Stick III',79,5);
INSERT INTO `gamedata_achievements` VALUES (230,'I Got the Magic Stick IV',80,5);
INSERT INTO `gamedata_achievements` VALUES (231,'I Got the Magic Stick V',81,5);
INSERT INTO `gamedata_achievements` VALUES (232,'Bring Out Your Dead I',82,5);
INSERT INTO `gamedata_achievements` VALUES (233,'Bring Out Your Dead II',83,5);
INSERT INTO `gamedata_achievements` VALUES (234,'Bring Out Your Dead III',84,5);
INSERT INTO `gamedata_achievements` VALUES (235,'Bring Out Your Dead IV',85,5);
INSERT INTO `gamedata_achievements` VALUES (236,'Bring Out Your Dead V',86,5);
INSERT INTO `gamedata_achievements` VALUES (237,'Mastering Magic',87,20);
INSERT INTO `gamedata_achievements` VALUES (238,'A Life of Adventure',88,30);
INSERT INTO `gamedata_achievements` VALUES (239,'Knock on Wood I',89,5);
INSERT INTO `gamedata_achievements` VALUES (240,'Knock on Wood II',90,5);
INSERT INTO `gamedata_achievements` VALUES (241,'Knock on Wood III',91,5);
INSERT INTO `gamedata_achievements` VALUES (242,'Knock on Wood IV',92,5);
INSERT INTO `gamedata_achievements` VALUES (243,'Knock on Wood V',93,5);
INSERT INTO `gamedata_achievements` VALUES (244,'\"Temper, Temper I\"',94,5);
INSERT INTO `gamedata_achievements` VALUES (245,'\"Temper, Temper II\"',95,5);
INSERT INTO `gamedata_achievements` VALUES (246,'\"Temper, Temper III\"',96,5);
INSERT INTO `gamedata_achievements` VALUES (247,'\"Temper, Temper IV\"',97,5);
INSERT INTO `gamedata_achievements` VALUES (248,'\"Temper, Temper V\"',98,5);
INSERT INTO `gamedata_achievements` VALUES (249,'The Riddle of Steel I',99,5);
INSERT INTO `gamedata_achievements` VALUES (250,'The Riddle of Steel II',100,5);
INSERT INTO `gamedata_achievements` VALUES (251,'The Riddle of Steel III',101,5);
INSERT INTO `gamedata_achievements` VALUES (252,'The Riddle of Steel IV',102,5);
INSERT INTO `gamedata_achievements` VALUES (253,'The Riddle of Steel V',103,5);
INSERT INTO `gamedata_achievements` VALUES (254,'Heart of Gold I',104,0);
INSERT INTO `gamedata_achievements` VALUES (255,'Heart of Gold II',105,5);
INSERT INTO `gamedata_achievements` VALUES (256,'Heart of Gold III',106,5);
INSERT INTO `gamedata_achievements` VALUES (257,'Heart of Gold IV',107,5);
INSERT INTO `gamedata_achievements` VALUES (258,'Heart of Gold V',108,5);
INSERT INTO `gamedata_achievements` VALUES (259,'Tougher Than Leather I',109,5);
INSERT INTO `gamedata_achievements` VALUES (260,'Tougher Than Leather II',110,5);
INSERT INTO `gamedata_achievements` VALUES (261,'Tougher Than Leather III',111,5);
INSERT INTO `gamedata_achievements` VALUES (262,'Tougher Than Leather IV',112,5);
INSERT INTO `gamedata_achievements` VALUES (263,'Tougher Than Leather V',113,5);
INSERT INTO `gamedata_achievements` VALUES (264,'\"Smiling, Styling, and Textiling I\"',114,5);
INSERT INTO `gamedata_achievements` VALUES (265,'\"Smiling, Styling, and Textiling II\"',115,5);
INSERT INTO `gamedata_achievements` VALUES (266,'\"Smiling, Styling, and Textiling III\"',116,5);
INSERT INTO `gamedata_achievements` VALUES (267,'\"Smiling, Styling, and Textiling IV\"',117,5);
INSERT INTO `gamedata_achievements` VALUES (268,'\"Smiling, Styling, and Textiling V\"',118,5);
INSERT INTO `gamedata_achievements` VALUES (269,'\'Tis True Without Lying I',119,5);
INSERT INTO `gamedata_achievements` VALUES (270,'\'Tis True Without Lying II',120,5);
INSERT INTO `gamedata_achievements` VALUES (271,'\'Tis True Without Lying III',121,5);
INSERT INTO `gamedata_achievements` VALUES (272,'\'Tis True Without Lying IV',122,5);
INSERT INTO `gamedata_achievements` VALUES (273,'\'Tis True Without Lying V',123,5);
INSERT INTO `gamedata_achievements` VALUES (274,'All in Good Taste I',124,5);
INSERT INTO `gamedata_achievements` VALUES (275,'All in Good Taste II',125,5);
INSERT INTO `gamedata_achievements` VALUES (276,'All in Good Taste III',126,5);
INSERT INTO `gamedata_achievements` VALUES (277,'All in Good Taste IV',127,5);
INSERT INTO `gamedata_achievements` VALUES (278,'All in Good Taste V',128,5);
INSERT INTO `gamedata_achievements` VALUES (279,'Mastering the Hand',129,20);
INSERT INTO `gamedata_achievements` VALUES (280,'Breaking Rocks in the Hot Sun I',130,5);
INSERT INTO `gamedata_achievements` VALUES (281,'Breaking Rocks in the Hot Sun II',131,5);
INSERT INTO `gamedata_achievements` VALUES (282,'Breaking Rocks in the Hot Sun III',132,5);
INSERT INTO `gamedata_achievements` VALUES (283,'Breaking Rocks in the Hot Sun IV',133,5);
INSERT INTO `gamedata_achievements` VALUES (284,'Breaking Rocks in the Hot Sun V',134,5);
INSERT INTO `gamedata_achievements` VALUES (285,'Don\'t Fear the Reaper I',135,5);
INSERT INTO `gamedata_achievements` VALUES (286,'Don\'t Fear the Reaper II',136,5);
INSERT INTO `gamedata_achievements` VALUES (287,'Don\'t Fear the Reaper III',137,5);
INSERT INTO `gamedata_achievements` VALUES (288,'Don\'t Fear the Reaper IV',138,5);
INSERT INTO `gamedata_achievements` VALUES (289,'Don\'t Fear the Reaper V',139,5);
INSERT INTO `gamedata_achievements` VALUES (290,'Gone Fishin\' I',140,5);
INSERT INTO `gamedata_achievements` VALUES (291,'Gone Fishin\' II',141,5);
INSERT INTO `gamedata_achievements` VALUES (292,'Gone Fishin\' III',142,5);
INSERT INTO `gamedata_achievements` VALUES (293,'Gone Fishin\' IV',143,5);
INSERT INTO `gamedata_achievements` VALUES (294,'Gone Fishin\' V',144,5);
INSERT INTO `gamedata_achievements` VALUES (295,'Mastering the Land',145,20);
INSERT INTO `gamedata_achievements` VALUES (390,'Mastering War',146,0);
INSERT INTO `gamedata_achievements` VALUES (391,'Mastering Magic',147,0);
INSERT INTO `gamedata_achievements` VALUES (392,'Mastering the Hand',148,0);
INSERT INTO `gamedata_achievements` VALUES (393,'Mastering the Land',149,0);
INSERT INTO `gamedata_achievements` VALUES (394,'A Life of Adventure',150,0);
INSERT INTO `gamedata_achievements` VALUES (400,'Currency',200,0);
INSERT INTO `gamedata_achievements` VALUES (401,'On the Payroll I',201,5);
INSERT INTO `gamedata_achievements` VALUES (402,'On the Payroll II',202,5);
INSERT INTO `gamedata_achievements` VALUES (403,'On the Payroll III',203,5);
INSERT INTO `gamedata_achievements` VALUES (404,'On the Payroll IV',204,5);
INSERT INTO `gamedata_achievements` VALUES (405,'On the Payroll V',205,5);
INSERT INTO `gamedata_achievements` VALUES (406,'Who Wants to Be a Gillionaire?',206,10);
INSERT INTO `gamedata_achievements` VALUES (407,'You Can\'t Take It With You I',207,5);
INSERT INTO `gamedata_achievements` VALUES (408,'You Can\'t Take It With You II',208,5);
INSERT INTO `gamedata_achievements` VALUES (409,'You Can\'t Take It With You III',209,5);
INSERT INTO `gamedata_achievements` VALUES (410,'You Can\'t Take It With You IV',210,5);
INSERT INTO `gamedata_achievements` VALUES (411,'You Can\'t Take It With You V',211,5);
INSERT INTO `gamedata_achievements` VALUES (412,'Never Met a Corpse I Couldn\'t Rifle',212,10);
INSERT INTO `gamedata_achievements` VALUES (498,'Who Wants to Be a Gillionaire?',213,0);
INSERT INTO `gamedata_achievements` VALUES (499,'Never Met a Corpse I Couldn\'t Rifle',214,0);
INSERT INTO `gamedata_achievements` VALUES (500,'Items',250,0);
INSERT INTO `gamedata_achievements` VALUES (501,'My Body is a Temple',251,5);
INSERT INTO `gamedata_achievements` VALUES (502,'Dress Like a Pirate Day',252,5);
INSERT INTO `gamedata_achievements` VALUES (503,'A Mummer in Motley',253,5);
INSERT INTO `gamedata_achievements` VALUES (504,'Raising the Curtana',254,10);
INSERT INTO `gamedata_achievements` VALUES (505,'Enter the Coeurl',255,10);
INSERT INTO `gamedata_achievements` VALUES (506,'Cleaving to Tradition',256,10);
INSERT INTO `gamedata_achievements` VALUES (507,'Having a Gae Old Time',257,10);
INSERT INTO `gamedata_achievements` VALUES (508,'Hard to Miss',258,10);
INSERT INTO `gamedata_achievements` VALUES (509,'Dressed to Heal',259,10);
INSERT INTO `gamedata_achievements` VALUES (510,'Ohohohohoho!',260,10);
INSERT INTO `gamedata_achievements` VALUES (511,'Armed to the Teeth',261,30);
INSERT INTO `gamedata_achievements` VALUES (592,'Raising the Curtana',262,0);
INSERT INTO `gamedata_achievements` VALUES (593,'Enter the Coeurl',263,0);
INSERT INTO `gamedata_achievements` VALUES (594,'Cleaving to Tradition',264,0);
INSERT INTO `gamedata_achievements` VALUES (595,'Having a Gae Old Time',265,0);
INSERT INTO `gamedata_achievements` VALUES (596,'Hard to Miss',266,0);
INSERT INTO `gamedata_achievements` VALUES (597,'Dressed to Heal',267,0);
INSERT INTO `gamedata_achievements` VALUES (598,'Ohohohohoho!',268,0);
INSERT INTO `gamedata_achievements` VALUES (599,'Armed to the Teeth',269,0);
INSERT INTO `gamedata_achievements` VALUES (600,'Synthesis',300,0);
INSERT INTO `gamedata_achievements` VALUES (601,'Going with the Grain: Amateur',301,5);
INSERT INTO `gamedata_achievements` VALUES (602,'Going with the Grain: Initiate',302,5);
INSERT INTO `gamedata_achievements` VALUES (603,'Going with the Grain: Apprentice',303,5);
INSERT INTO `gamedata_achievements` VALUES (604,'Going with the Grain: Journeyman',304,5);
INSERT INTO `gamedata_achievements` VALUES (605,'Going with the Grain: Artisan',305,10);
INSERT INTO `gamedata_achievements` VALUES (606,'A Carpenter\'s Life for Me',306,30);
INSERT INTO `gamedata_achievements` VALUES (607,'Working the Bellows: Amateur',307,5);
INSERT INTO `gamedata_achievements` VALUES (608,'Working the Bellows: Initiate',308,5);
INSERT INTO `gamedata_achievements` VALUES (609,'Working the Bellows: Apprentice',309,5);
INSERT INTO `gamedata_achievements` VALUES (610,'Working the Bellows: Journeyman',310,5);
INSERT INTO `gamedata_achievements` VALUES (611,'Working the Bellows: Artisan',311,10);
INSERT INTO `gamedata_achievements` VALUES (612,'A Blacksmith\'s Life for Me',312,30);
INSERT INTO `gamedata_achievements` VALUES (613,'Pounding Out the Dents: Amateur',313,5);
INSERT INTO `gamedata_achievements` VALUES (614,'Pounding Out the Dents: Initiate',314,5);
INSERT INTO `gamedata_achievements` VALUES (615,'Pounding Out the Dents: Apprentice',315,5);
INSERT INTO `gamedata_achievements` VALUES (616,'Pounding Out the Dents: Journeyman',316,5);
INSERT INTO `gamedata_achievements` VALUES (617,'Pounding Out the Dents: Artisan',317,10);
INSERT INTO `gamedata_achievements` VALUES (618,'An Armorer\'s Life for Me',318,30);
INSERT INTO `gamedata_achievements` VALUES (619,'Cutting the Carats: Amateur',319,5);
INSERT INTO `gamedata_achievements` VALUES (620,'Cutting the Carats: Initiate',320,5);
INSERT INTO `gamedata_achievements` VALUES (621,'Cutting the Carats: Apprentice',321,5);
INSERT INTO `gamedata_achievements` VALUES (622,'Cutting the Carats: Journeyman',322,5);
INSERT INTO `gamedata_achievements` VALUES (623,'Cutting the Carats: Artisan',323,10);
INSERT INTO `gamedata_achievements` VALUES (624,'A Goldsmith\'s Life for Me',324,30);
INSERT INTO `gamedata_achievements` VALUES (625,'Hiding in Plain Sight: Amateur',325,5);
INSERT INTO `gamedata_achievements` VALUES (626,'Hiding in Plain Sight: Initiate',326,5);
INSERT INTO `gamedata_achievements` VALUES (627,'Hiding in Plain Sight: Apprentice',327,5);
INSERT INTO `gamedata_achievements` VALUES (628,'Hiding in Plain Sight: Journeyman',328,5);
INSERT INTO `gamedata_achievements` VALUES (629,'Hiding in Plain Sight: Artisan',329,10);
INSERT INTO `gamedata_achievements` VALUES (630,'A Leatherworker\'s Life for Me',330,30);
INSERT INTO `gamedata_achievements` VALUES (631,'Threading the Needle: Amateur',331,5);
INSERT INTO `gamedata_achievements` VALUES (632,'Threading the Needle: Initiate',332,5);
INSERT INTO `gamedata_achievements` VALUES (633,'Threading the Needle: Apprentice',333,5);
INSERT INTO `gamedata_achievements` VALUES (634,'Threading the Needle: Journeyman',334,5);
INSERT INTO `gamedata_achievements` VALUES (635,'Threading the Needle: Artisan',335,10);
INSERT INTO `gamedata_achievements` VALUES (636,'A Weaver\'s Life for Me',336,30);
INSERT INTO `gamedata_achievements` VALUES (637,'Mixing It Up: Amateur',337,5);
INSERT INTO `gamedata_achievements` VALUES (638,'Mixing It Up: Initiate',338,5);
INSERT INTO `gamedata_achievements` VALUES (639,'Mixing It Up: Apprentice',339,5);
INSERT INTO `gamedata_achievements` VALUES (640,'Mixing It Up: Journeyman',340,5);
INSERT INTO `gamedata_achievements` VALUES (641,'Mixing It Up: Artisan',341,10);
INSERT INTO `gamedata_achievements` VALUES (642,'An Alchemist\'s Life for Me',342,30);
INSERT INTO `gamedata_achievements` VALUES (643,'Savoring the Realm: Amateur',343,5);
INSERT INTO `gamedata_achievements` VALUES (644,'Savoring the Realm: Initiate',344,5);
INSERT INTO `gamedata_achievements` VALUES (645,'Savoring the Realm: Apprentice',345,5);
INSERT INTO `gamedata_achievements` VALUES (646,'Savoring the Realm: Journeyman',346,5);
INSERT INTO `gamedata_achievements` VALUES (647,'Savoring the Realm: Artisan',347,10);
INSERT INTO `gamedata_achievements` VALUES (648,'A Life of Cooking',348,30);
INSERT INTO `gamedata_achievements` VALUES (683,'Going with the Grain: Artisan',349,0);
INSERT INTO `gamedata_achievements` VALUES (684,'Working the Bellows: Artisan',350,0);
INSERT INTO `gamedata_achievements` VALUES (685,'Pounding Out the Dents: Artisan',351,0);
INSERT INTO `gamedata_achievements` VALUES (686,'Cutting the Carats: Artisan',352,0);
INSERT INTO `gamedata_achievements` VALUES (687,'Hiding in Plain Sight: Artisan',353,0);
INSERT INTO `gamedata_achievements` VALUES (688,'Threading the Needle: Artisan',354,0);
INSERT INTO `gamedata_achievements` VALUES (689,'Mixing It Up: Artisan',355,0);
INSERT INTO `gamedata_achievements` VALUES (690,'Savoring the Realm: Artisan',356,0);
INSERT INTO `gamedata_achievements` VALUES (691,'A Carpenter\'s Life for Me',357,0);
INSERT INTO `gamedata_achievements` VALUES (692,'A Blacksmith\'s Life for Me',358,0);
INSERT INTO `gamedata_achievements` VALUES (693,'An Armorer\'s Life for Me',359,0);
INSERT INTO `gamedata_achievements` VALUES (694,'A Goldsmith\'s Life for Me',360,0);
INSERT INTO `gamedata_achievements` VALUES (695,'A Leatherworker\'s Life for Me',361,0);
INSERT INTO `gamedata_achievements` VALUES (696,'A Weaver\'s Life for Me',362,0);
INSERT INTO `gamedata_achievements` VALUES (697,'An Alchemist\'s Life for Me',363,0);
INSERT INTO `gamedata_achievements` VALUES (698,'A Life of Cooking',364,0);
INSERT INTO `gamedata_achievements` VALUES (700,'Gathering',400,0);
INSERT INTO `gamedata_achievements` VALUES (701,'Mining Your Own Business: La Noscea I',401,5);
INSERT INTO `gamedata_achievements` VALUES (702,'Mining Your Own Business: La Noscea II',402,5);
INSERT INTO `gamedata_achievements` VALUES (703,'Mining Your Own Business: La Noscea III',403,5);
INSERT INTO `gamedata_achievements` VALUES (704,'Mining Your Own Business: La Noscea IV',404,5);
INSERT INTO `gamedata_achievements` VALUES (705,'Mining Your Own Business: La Noscea V',405,5);
INSERT INTO `gamedata_achievements` VALUES (706,'A Miner\'s Life for Me: La Noscea',406,10);
INSERT INTO `gamedata_achievements` VALUES (707,'Mining Your Own Business: Black Shroud I',407,5);
INSERT INTO `gamedata_achievements` VALUES (708,'Mining Your Own Business: Black Shroud II',408,5);
INSERT INTO `gamedata_achievements` VALUES (709,'Mining Your Own Business: Black Shroud III',409,5);
INSERT INTO `gamedata_achievements` VALUES (710,'Mining Your Own Business: Black Shroud IV',410,5);
INSERT INTO `gamedata_achievements` VALUES (711,'Mining Your Own Business: Black Shroud V',411,5);
INSERT INTO `gamedata_achievements` VALUES (712,'A Miner\'s Life for Me: Black Shroud',412,10);
INSERT INTO `gamedata_achievements` VALUES (713,'Mining Your Own Business: Thanalan I',413,5);
INSERT INTO `gamedata_achievements` VALUES (714,'Mining Your Own Business: Thanalan II',414,5);
INSERT INTO `gamedata_achievements` VALUES (715,'Mining Your Own Business: Thanalan III',415,5);
INSERT INTO `gamedata_achievements` VALUES (716,'Mining Your Own Business: Thanalan IV',416,5);
INSERT INTO `gamedata_achievements` VALUES (717,'Mining Your Own Business: Thanalan V',417,5);
INSERT INTO `gamedata_achievements` VALUES (718,'A Miner\'s Life for Me: Thanalan',418,10);
INSERT INTO `gamedata_achievements` VALUES (719,'A Miner\'s Life for Me: Eorzea',419,30);
INSERT INTO `gamedata_achievements` VALUES (720,'Rocking Around the Clock: La Noscea I',420,5);
INSERT INTO `gamedata_achievements` VALUES (721,'Rocking Around the Clock: La Noscea II',421,5);
INSERT INTO `gamedata_achievements` VALUES (722,'Rocking Around the Clock: La Noscea III',422,5);
INSERT INTO `gamedata_achievements` VALUES (723,'Rocking Around the Clock: La Noscea IV',423,5);
INSERT INTO `gamedata_achievements` VALUES (724,'Rocking Around the Clock: La Noscea V',424,5);
INSERT INTO `gamedata_achievements` VALUES (725,'I\'d Rather Be Quarrying: La Noscea',425,10);
INSERT INTO `gamedata_achievements` VALUES (726,'Rocking Around the Clock: Black Shroud I',426,5);
INSERT INTO `gamedata_achievements` VALUES (727,'Rocking Around the Clock: Black Shroud II',427,5);
INSERT INTO `gamedata_achievements` VALUES (728,'Rocking Around the Clock: Black Shroud III',428,5);
INSERT INTO `gamedata_achievements` VALUES (729,'Rocking Around the Clock: Black Shroud IV',429,5);
INSERT INTO `gamedata_achievements` VALUES (730,'Rocking Around the Clock: Black Shroud V',430,5);
INSERT INTO `gamedata_achievements` VALUES (731,'I\'d Rather Be Quarrying: Black Shroud',431,10);
INSERT INTO `gamedata_achievements` VALUES (732,'Rocking Around the Clock: Thanalan I',432,5);
INSERT INTO `gamedata_achievements` VALUES (733,'Rocking Around the Clock: Thanalan II',433,5);
INSERT INTO `gamedata_achievements` VALUES (734,'Rocking Around the Clock: Thanalan III',434,5);
INSERT INTO `gamedata_achievements` VALUES (735,'Rocking Around the Clock: Thanalan IV',435,5);
INSERT INTO `gamedata_achievements` VALUES (736,'Rocking Around the Clock: Thanalan V',436,5);
INSERT INTO `gamedata_achievements` VALUES (737,'I\'d Rather Be Quarrying: Thanalan',437,10);
INSERT INTO `gamedata_achievements` VALUES (738,'Logging the Hours: La Noscea I',438,5);
INSERT INTO `gamedata_achievements` VALUES (739,'Logging the Hours: La Noscea II',439,5);
INSERT INTO `gamedata_achievements` VALUES (740,'Logging the Hours: La Noscea III',440,5);
INSERT INTO `gamedata_achievements` VALUES (741,'Logging the Hours: La Noscea IV',441,5);
INSERT INTO `gamedata_achievements` VALUES (742,'Logging the Hours: La Noscea V',442,5);
INSERT INTO `gamedata_achievements` VALUES (743,'A Botanist\'s Life for Me: La Noscea',443,10);
INSERT INTO `gamedata_achievements` VALUES (744,'Logging the Hours: Black Shroud I',444,5);
INSERT INTO `gamedata_achievements` VALUES (745,'Logging the Hours: Black Shroud II',445,5);
INSERT INTO `gamedata_achievements` VALUES (746,'Logging the Hours: Black Shroud III',446,5);
INSERT INTO `gamedata_achievements` VALUES (747,'Logging the Hours: Black Shroud IV',447,5);
INSERT INTO `gamedata_achievements` VALUES (748,'Logging the Hours: Black Shroud V',448,5);
INSERT INTO `gamedata_achievements` VALUES (749,'A Botanist\'s Life for Me: Black Shroud',449,10);
INSERT INTO `gamedata_achievements` VALUES (750,'Logging the Hours: Thanalan I',450,5);
INSERT INTO `gamedata_achievements` VALUES (751,'Logging the Hours: Thanalan II',451,5);
INSERT INTO `gamedata_achievements` VALUES (752,'Logging the Hours: Thanalan III',452,5);
INSERT INTO `gamedata_achievements` VALUES (753,'Logging the Hours: Thanalan IV',453,5);
INSERT INTO `gamedata_achievements` VALUES (754,'Logging the Hours: Thanalan V',454,5);
INSERT INTO `gamedata_achievements` VALUES (755,'A Botanist\'s Life for Me: Thanalan',455,10);
INSERT INTO `gamedata_achievements` VALUES (756,'A Botanist\'s Life for Me: Eorzea',456,30);
INSERT INTO `gamedata_achievements` VALUES (757,'Reaping What You Sow: La Noscea I',457,5);
INSERT INTO `gamedata_achievements` VALUES (758,'Reaping What You Sow: La Noscea II',458,5);
INSERT INTO `gamedata_achievements` VALUES (759,'Reaping What You Sow: La Noscea III',459,5);
INSERT INTO `gamedata_achievements` VALUES (760,'Reaping What You Sow: La Noscea IV',460,5);
INSERT INTO `gamedata_achievements` VALUES (761,'Reaping What You Sow: La Noscea V',461,5);
INSERT INTO `gamedata_achievements` VALUES (762,'I\'d Rather Be Harvesting: La Noscea',462,10);
INSERT INTO `gamedata_achievements` VALUES (763,'Reaping What You Sow: Black Shroud I',463,5);
INSERT INTO `gamedata_achievements` VALUES (764,'Reaping What You Sow: Black Shroud II',464,5);
INSERT INTO `gamedata_achievements` VALUES (765,'Reaping What You Sow: Black Shroud III',465,5);
INSERT INTO `gamedata_achievements` VALUES (766,'Reaping What You Sow: Black Shroud IV',466,5);
INSERT INTO `gamedata_achievements` VALUES (767,'Reaping What You Sow: Black Shroud V',467,5);
INSERT INTO `gamedata_achievements` VALUES (768,'I\'d Rather Be Harvesting: Black Shroud',468,10);
INSERT INTO `gamedata_achievements` VALUES (769,'Reaping What You Sow: Thanalan I',469,5);
INSERT INTO `gamedata_achievements` VALUES (770,'Reaping What You Sow: Thanalan II',470,5);
INSERT INTO `gamedata_achievements` VALUES (771,'Reaping What You Sow: Thanalan III',471,5);
INSERT INTO `gamedata_achievements` VALUES (772,'Reaping What You Sow: Thanalan IV',472,5);
INSERT INTO `gamedata_achievements` VALUES (773,'Reaping What You Sow: Thanalan V',473,5);
INSERT INTO `gamedata_achievements` VALUES (774,'I\'d Rather Be Harvesting: Thanalan',474,10);
INSERT INTO `gamedata_achievements` VALUES (775,'Good Things Come to Those Who Bait: La Noscea I',475,5);
INSERT INTO `gamedata_achievements` VALUES (776,'Good Things Come to Those Who Bait: La Noscea II',476,5);
INSERT INTO `gamedata_achievements` VALUES (777,'Good Things Come to Those Who Bait: La Noscea III',477,5);
INSERT INTO `gamedata_achievements` VALUES (778,'Good Things Come to Those Who Bait: La Noscea IV',478,5);
INSERT INTO `gamedata_achievements` VALUES (779,'Good Things Come to Those Who Bait: La Noscea V',479,5);
INSERT INTO `gamedata_achievements` VALUES (780,'A Fisher\'s Life for Me: La Noscea',480,10);
INSERT INTO `gamedata_achievements` VALUES (781,'Good Things Come to Those Who Bait: Black Shroud I',481,5);
INSERT INTO `gamedata_achievements` VALUES (782,'Good Things Come to Those Who Bait: Black Shroud II',482,5);
INSERT INTO `gamedata_achievements` VALUES (783,'Good Things Come to Those Who Bait: Black Shroud III',483,5);
INSERT INTO `gamedata_achievements` VALUES (784,'Good Things Come to Those Who Bait: Black Shroud IV',484,5);
INSERT INTO `gamedata_achievements` VALUES (785,'Good Things Come to Those Who Bait: Black Shroud V',485,5);
INSERT INTO `gamedata_achievements` VALUES (786,'A Fisher\'s Life for Me: Black Shroud',486,10);
INSERT INTO `gamedata_achievements` VALUES (787,'Good Things Come to Those Who Bait: Thanalan I',487,5);
INSERT INTO `gamedata_achievements` VALUES (788,'Good Things Come to Those Who Bait: Thanalan II',488,5);
INSERT INTO `gamedata_achievements` VALUES (789,'Good Things Come to Those Who Bait: Thanalan III',489,5);
INSERT INTO `gamedata_achievements` VALUES (790,'Good Things Come to Those Who Bait: Thanalan IV',490,5);
INSERT INTO `gamedata_achievements` VALUES (791,'Good Things Come to Those Who Bait: Thanalan V',491,5);
INSERT INTO `gamedata_achievements` VALUES (792,'A Fisher\'s Life for Me: Thanalan',492,10);
INSERT INTO `gamedata_achievements` VALUES (793,'A Fisher\'s Life for Me: Eorzea',493,30);
INSERT INTO `gamedata_achievements` VALUES (794,'Getting Giggy with It: La Noscea I',494,5);
INSERT INTO `gamedata_achievements` VALUES (795,'Getting Giggy with It: La Noscea II',495,5);
INSERT INTO `gamedata_achievements` VALUES (796,'Getting Giggy with It: La Noscea III',496,5);
INSERT INTO `gamedata_achievements` VALUES (797,'Getting Giggy with It: La Noscea IV',497,5);
INSERT INTO `gamedata_achievements` VALUES (798,'Getting Giggy with It: La Noscea V',498,5);
INSERT INTO `gamedata_achievements` VALUES (799,'I\'d Rather Be Spearfishing: La Noscea',499,10);
INSERT INTO `gamedata_achievements` VALUES (800,'Getting Giggy with It: Black Shroud I',500,5);
INSERT INTO `gamedata_achievements` VALUES (801,'Getting Giggy with It: Black Shroud II',501,5);
INSERT INTO `gamedata_achievements` VALUES (802,'Getting Giggy with It: Black Shroud III',502,5);
INSERT INTO `gamedata_achievements` VALUES (803,'Getting Giggy with It: Black Shroud IV',503,5);
INSERT INTO `gamedata_achievements` VALUES (804,'Getting Giggy with It: Black Shroud V',504,5);
INSERT INTO `gamedata_achievements` VALUES (805,'I\'d Rather Be Spearfishing: Black Shroud',505,10);
INSERT INTO `gamedata_achievements` VALUES (806,'Getting Giggy with It: Thanalan I',506,5);
INSERT INTO `gamedata_achievements` VALUES (807,'Getting Giggy with It: Thanalan II',507,5);
INSERT INTO `gamedata_achievements` VALUES (808,'Getting Giggy with It: Thanalan III',508,5);
INSERT INTO `gamedata_achievements` VALUES (809,'Getting Giggy with It: Thanalan IV',509,5);
INSERT INTO `gamedata_achievements` VALUES (810,'Getting Giggy with It: Thanalan V',510,5);
INSERT INTO `gamedata_achievements` VALUES (811,'I\'d Rather Be Spearfishing: Thanalan',511,10);
INSERT INTO `gamedata_achievements` VALUES (879,'A Miner\'s Life for Me: La Noscea',512,0);
INSERT INTO `gamedata_achievements` VALUES (880,'A Miner\'s Life for Me: Black Shroud',513,0);
INSERT INTO `gamedata_achievements` VALUES (881,'A Miner\'s Life for Me: Thanalan',514,0);
INSERT INTO `gamedata_achievements` VALUES (882,'I\'d Rather Be Quarrying: La Noscea',515,0);
INSERT INTO `gamedata_achievements` VALUES (883,'I\'d Rather Be Quarrying: Black Shroud',516,0);
INSERT INTO `gamedata_achievements` VALUES (884,'I\'d Rather Be Quarrying: Thanalan',517,0);
INSERT INTO `gamedata_achievements` VALUES (885,'A Botanist\'s Life for Me: La Noscea',518,0);
INSERT INTO `gamedata_achievements` VALUES (886,'A Botanist\'s Life for Me: Black Shroud',519,0);
INSERT INTO `gamedata_achievements` VALUES (887,'A Botanist\'s Life for Me: Thanalan',520,0);
INSERT INTO `gamedata_achievements` VALUES (888,'I\'d Rather Be Harvesting: La Noscea',521,0);
INSERT INTO `gamedata_achievements` VALUES (889,'I\'d Rather Be Harvesting: Black Shroud',522,0);
INSERT INTO `gamedata_achievements` VALUES (890,'I\'d Rather Be Harvesting: Thanalan',523,0);
INSERT INTO `gamedata_achievements` VALUES (891,'A Fisher\'s Life for Me: La Noscea',524,0);
INSERT INTO `gamedata_achievements` VALUES (892,'A Fisher\'s Life for Me: Black Shroud',525,0);
INSERT INTO `gamedata_achievements` VALUES (893,'A Fisher\'s Life for Me: Thanalan',526,0);
INSERT INTO `gamedata_achievements` VALUES (894,'I\'d Rather Be Spearfishing: La Noscea',527,0);
INSERT INTO `gamedata_achievements` VALUES (895,'I\'d Rather Be Spearfishing: Black Shroud',528,0);
INSERT INTO `gamedata_achievements` VALUES (896,'I\'d Rather Be Spearfishing: Thanalan',529,0);
INSERT INTO `gamedata_achievements` VALUES (897,'A Miner\'s Life for Me: Eorzea',530,0);
INSERT INTO `gamedata_achievements` VALUES (898,'A Botanist\'s Life for Me: Eorzea',531,0);
INSERT INTO `gamedata_achievements` VALUES (899,'A Fisher\'s Life for Me: Eorzea',532,0);
INSERT INTO `gamedata_achievements` VALUES (900,'Materia',550,0);
INSERT INTO `gamedata_achievements` VALUES (901,'Getting Too Attached I',551,5);
INSERT INTO `gamedata_achievements` VALUES (902,'Getting Too Attached II',552,5);
INSERT INTO `gamedata_achievements` VALUES (903,'Getting Too Attached III',553,5);
INSERT INTO `gamedata_achievements` VALUES (904,'Getting Too Attached IV',554,5);
INSERT INTO `gamedata_achievements` VALUES (905,'Materia Hysteria',555,10);
INSERT INTO `gamedata_achievements` VALUES (906,'Beginner\'s Luck',556,10);
INSERT INTO `gamedata_achievements` VALUES (907,'I Make My Own Luck',557,20);
INSERT INTO `gamedata_achievements` VALUES (908,'Luck\'s Got Nothing to Do with It',558,30);
INSERT INTO `gamedata_achievements` VALUES (909,'I Got This!',559,40);
INSERT INTO `gamedata_achievements` VALUES (910,'Prepare to Be Assimilated I',560,5);
INSERT INTO `gamedata_achievements` VALUES (911,'Prepare to Be Assimilated II',561,5);
INSERT INTO `gamedata_achievements` VALUES (912,'Prepare to Be Assimilated III',562,5);
INSERT INTO `gamedata_achievements` VALUES (913,'Prepare to Be Assimilated IV',563,5);
INSERT INTO `gamedata_achievements` VALUES (914,'Living in a Materia World',564,10);
INSERT INTO `gamedata_achievements` VALUES (997,'Materia Hysteria',565,0);
INSERT INTO `gamedata_achievements` VALUES (998,'Living in a Materia World',566,0);
INSERT INTO `gamedata_achievements` VALUES (999,'I Got This!',567,0);
INSERT INTO `gamedata_achievements` VALUES (1000,'Quests',600,0);
INSERT INTO `gamedata_achievements` VALUES (1001,'Leaving Limsa Lominsa',601,5);
INSERT INTO `gamedata_achievements` VALUES (1002,'Gone from Gridania',602,5);
INSERT INTO `gamedata_achievements` VALUES (1003,'Out of Ul\'dah',603,5);
INSERT INTO `gamedata_achievements` VALUES (1004,'\"This One Time, at Level Thirty-six...\"',604,5);
INSERT INTO `gamedata_achievements` VALUES (1005,'Tales of War',605,10);
INSERT INTO `gamedata_achievements` VALUES (1006,'Tales of Magic',606,10);
INSERT INTO `gamedata_achievements` VALUES (1007,'Tales of the Hand',607,10);
INSERT INTO `gamedata_achievements` VALUES (1008,'Tales of the Land',608,10);
INSERT INTO `gamedata_achievements` VALUES (1009,'The Greatest Tales Ever Told',609,20);
INSERT INTO `gamedata_achievements` VALUES (1010,'A Little Something on the Side: La Noscea',610,5);
INSERT INTO `gamedata_achievements` VALUES (1011,'A Little Something on the Side: Black Shroud',611,5);
INSERT INTO `gamedata_achievements` VALUES (1012,'A Little Something on the Side: Thanalan',612,5);
INSERT INTO `gamedata_achievements` VALUES (1013,'Sideways',613,10);
INSERT INTO `gamedata_achievements` VALUES (1014,'All the More Region to Leve I',614,5);
INSERT INTO `gamedata_achievements` VALUES (1015,'All the More Region to Leve II',615,5);
INSERT INTO `gamedata_achievements` VALUES (1016,'All the More Region to Leve III',616,5);
INSERT INTO `gamedata_achievements` VALUES (1017,'All the More Region to Leve IV',617,5);
INSERT INTO `gamedata_achievements` VALUES (1018,'All the More Region to Leve V',618,5);
INSERT INTO `gamedata_achievements` VALUES (1019,'All the More Region to Leve VI',619,10);
INSERT INTO `gamedata_achievements` VALUES (1020,'Region d\'Etre',620,20);
INSERT INTO `gamedata_achievements` VALUES (1021,'\"Think Global, Quest Local I\"',621,5);
INSERT INTO `gamedata_achievements` VALUES (1022,'\"Think Global, Quest Local II\"',622,5);
INSERT INTO `gamedata_achievements` VALUES (1023,'\"Think Global, Quest Local III\"',623,5);
INSERT INTO `gamedata_achievements` VALUES (1024,'\"Think Global, Quest Local IV\"',624,5);
INSERT INTO `gamedata_achievements` VALUES (1025,'\"Think Global, Quest Local V\"',625,5);
INSERT INTO `gamedata_achievements` VALUES (1026,'\"Think Global, Quest Local VI\"',626,10);
INSERT INTO `gamedata_achievements` VALUES (1027,'Lost in Localization',627,20);
INSERT INTO `gamedata_achievements` VALUES (1028,'A Slave to Faction I',628,5);
INSERT INTO `gamedata_achievements` VALUES (1029,'A Slave to Faction II',629,5);
INSERT INTO `gamedata_achievements` VALUES (1030,'A Slave to Faction III',630,10);
INSERT INTO `gamedata_achievements` VALUES (1031,'\"Just the Factions, Ma\'am\"',631,20);
INSERT INTO `gamedata_achievements` VALUES (1032,'Serving a Greater Cause I',632,5);
INSERT INTO `gamedata_achievements` VALUES (1033,'Serving a Greater Cause II',633,5);
INSERT INTO `gamedata_achievements` VALUES (1034,'Serving a Greater Cause III',634,5);
INSERT INTO `gamedata_achievements` VALUES (1035,'Serving a Greater Cause IV',635,5);
INSERT INTO `gamedata_achievements` VALUES (1036,'Serving a Greater Cause V',636,5);
INSERT INTO `gamedata_achievements` VALUES (1037,'Serving a Greater Cause VI',637,10);
INSERT INTO `gamedata_achievements` VALUES (1038,'Enraptured Servitude',638,20);
INSERT INTO `gamedata_achievements` VALUES (1039,'Around the Realm and Back Again',639,5);
INSERT INTO `gamedata_achievements` VALUES (1040,'I Survived Camp Bearded Rock',640,5);
INSERT INTO `gamedata_achievements` VALUES (1041,'I Survived Cedarwood',641,5);
INSERT INTO `gamedata_achievements` VALUES (1042,'I Survived Camp Skull Valley',642,5);
INSERT INTO `gamedata_achievements` VALUES (1043,'I Survived Camp Bald Knoll',643,5);
INSERT INTO `gamedata_achievements` VALUES (1044,'I Survived Camp Bloodshore',644,5);
INSERT INTO `gamedata_achievements` VALUES (1045,'I Survived Cassiopeia Hollow',645,5);
INSERT INTO `gamedata_achievements` VALUES (1046,'I Survived Camp Iron Lake',646,5);
INSERT INTO `gamedata_achievements` VALUES (1047,'And All I Got Was This Lousy Achievement: La Noscea',647,10);
INSERT INTO `gamedata_achievements` VALUES (1048,'I Survived Camp Bentbranch',648,5);
INSERT INTO `gamedata_achievements` VALUES (1049,'I Survived Humblehearth',649,5);
INSERT INTO `gamedata_achievements` VALUES (1050,'I Survived Camp Nine Ivies',650,5);
INSERT INTO `gamedata_achievements` VALUES (1051,'I Survived Camp Emerald Moss',651,5);
INSERT INTO `gamedata_achievements` VALUES (1052,'I Survived Treespeak',652,5);
INSERT INTO `gamedata_achievements` VALUES (1053,'I Survived the Mun-Tuy Cellars',653,5);
INSERT INTO `gamedata_achievements` VALUES (1054,'I Survived Camp Tranquil',654,5);
INSERT INTO `gamedata_achievements` VALUES (1055,'And All I Got Was This Lousy Achievement: Black Shroud',655,10);
INSERT INTO `gamedata_achievements` VALUES (1056,'I Survived Camp Black Brush',656,5);
INSERT INTO `gamedata_achievements` VALUES (1057,'I Survived the Nanawa Mines',657,5);
INSERT INTO `gamedata_achievements` VALUES (1058,'I Survived Camp Drybone',658,5);
INSERT INTO `gamedata_achievements` VALUES (1059,'I Survived Halatali',659,5);
INSERT INTO `gamedata_achievements` VALUES (1060,'I Survived Camp Horizon',660,5);
INSERT INTO `gamedata_achievements` VALUES (1061,'I Survived Nophica\'s Wells',661,5);
INSERT INTO `gamedata_achievements` VALUES (1062,'I Survived Camp Broken Water',662,5);
INSERT INTO `gamedata_achievements` VALUES (1063,'And All I Got Was This Lousy Achievement: Thanalan',663,10);
INSERT INTO `gamedata_achievements` VALUES (1064,'Globetrotter',664,20);
INSERT INTO `gamedata_achievements` VALUES (1065,'At the Realm\'s Behest',665,5);
INSERT INTO `gamedata_achievements` VALUES (1066,'To Serve and Protect: Camp Bearded Rock',666,5);
INSERT INTO `gamedata_achievements` VALUES (1067,'To Serve and Protect: Cedarwood',667,5);
INSERT INTO `gamedata_achievements` VALUES (1068,'To Serve and Protect: Camp Skull Valley',668,5);
INSERT INTO `gamedata_achievements` VALUES (1069,'To Serve and Protect: Camp Bald Knoll',669,5);
INSERT INTO `gamedata_achievements` VALUES (1070,'To Serve and Protect: Camp Bloodshore',670,5);
INSERT INTO `gamedata_achievements` VALUES (1071,'To Serve and Protect: Cassiopeia Hollow',671,5);
INSERT INTO `gamedata_achievements` VALUES (1072,'To Serve and Protect: Camp Iron Lake',672,5);
INSERT INTO `gamedata_achievements` VALUES (1073,'La Noscea Got Served...and Protected',673,10);
INSERT INTO `gamedata_achievements` VALUES (1074,'To Serve and Protect: Camp Bentbranch',674,5);
INSERT INTO `gamedata_achievements` VALUES (1075,'To Serve and Protect: Humblehearth',675,5);
INSERT INTO `gamedata_achievements` VALUES (1076,'To Serve and Protect: Camp Nine Ivies',676,5);
INSERT INTO `gamedata_achievements` VALUES (1077,'To Serve and Protect: Camp Emerald Moss',677,5);
INSERT INTO `gamedata_achievements` VALUES (1078,'To Serve and Protect: Treespeak',678,5);
INSERT INTO `gamedata_achievements` VALUES (1079,'To Serve and Protect: Mun[@1F]Tuy Cellars',679,5);
INSERT INTO `gamedata_achievements` VALUES (1080,'To Serve and Protect: Camp Tranquil',680,5);
INSERT INTO `gamedata_achievements` VALUES (1081,'The Black Shroud Got Served...and Protected',681,10);
INSERT INTO `gamedata_achievements` VALUES (1082,'To Serve and Protect: Camp Black Brush',682,5);
INSERT INTO `gamedata_achievements` VALUES (1083,'To Serve and Protect: Nanawa Silvermines',683,5);
INSERT INTO `gamedata_achievements` VALUES (1084,'To Serve and Protect: Camp Drybone',684,5);
INSERT INTO `gamedata_achievements` VALUES (1085,'To Serve and Protect: Halatali',685,5);
INSERT INTO `gamedata_achievements` VALUES (1086,'To Serve and Protect: Camp Horizon',686,5);
INSERT INTO `gamedata_achievements` VALUES (1087,'To Serve and Protect: Nophica\'s Wells',687,5);
INSERT INTO `gamedata_achievements` VALUES (1088,'To Serve and Protect: Camp Broken Water',688,5);
INSERT INTO `gamedata_achievements` VALUES (1089,'Thanalan Got Served...and Protected',689,10);
INSERT INTO `gamedata_achievements` VALUES (1090,'Eorzea Got Served...and Protected',690,20);
INSERT INTO `gamedata_achievements` VALUES (1091,'Leaning Towards the Brotherhood',691,5);
INSERT INTO `gamedata_achievements` VALUES (1092,'Love Thy Brother',692,10);
INSERT INTO `gamedata_achievements` VALUES (1093,'Leaning Towards the Shield',693,5);
INSERT INTO `gamedata_achievements` VALUES (1094,'Another Brick in the Shield Wall',694,10);
INSERT INTO `gamedata_achievements` VALUES (1095,'Leaning Towards the Horn',695,5);
INSERT INTO `gamedata_achievements` VALUES (1096,'A Helping Horn',696,10);
INSERT INTO `gamedata_achievements` VALUES (1097,'Commitment Issues',697,20);
INSERT INTO `gamedata_achievements` VALUES (1098,'Like a Knight in Shining Armor',698,5);
INSERT INTO `gamedata_achievements` VALUES (1099,'Bulletproof',699,5);
INSERT INTO `gamedata_achievements` VALUES (1100,'I am the Warrior',700,5);
INSERT INTO `gamedata_achievements` VALUES (1101,'Dragoon Age',701,5);
INSERT INTO `gamedata_achievements` VALUES (1102,'A Bard\'s Tale',702,5);
INSERT INTO `gamedata_achievements` VALUES (1103,'Seeing White',703,5);
INSERT INTO `gamedata_achievements` VALUES (1104,'Back in Black',704,5);
INSERT INTO `gamedata_achievements` VALUES (1105,'Career Opportunities',705,20);
INSERT INTO `gamedata_achievements` VALUES (1106,'Once in a Lifetime',706,20);
INSERT INTO `gamedata_achievements` VALUES (1107,'x',707,1);
INSERT INTO `gamedata_achievements` VALUES (1108,'x',708,1);
INSERT INTO `gamedata_achievements` VALUES (1109,'x',709,1);
INSERT INTO `gamedata_achievements` VALUES (1110,'x',710,1);
INSERT INTO `gamedata_achievements` VALUES (1156,'Once in a Lifetime',711,20);
INSERT INTO `gamedata_achievements` VALUES (1157,'Patricide',712,0);
INSERT INTO `gamedata_achievements` VALUES (1158,'To Kill a Mocking Bird',713,0);
INSERT INTO `gamedata_achievements` VALUES (1159,'Pounding the Spike',714,0);
INSERT INTO `gamedata_achievements` VALUES (1160,'First Blood: Aleport',715,0);
INSERT INTO `gamedata_achievements` VALUES (1161,'First Blood: Hyrstmill',716,0);
INSERT INTO `gamedata_achievements` VALUES (1162,'First Blood: Golden Bazaar',717,0);
INSERT INTO `gamedata_achievements` VALUES (1163,'To Be or Not to Be the Guardian of Aleport',718,0);
INSERT INTO `gamedata_achievements` VALUES (1164,'To Be or Not to Be the Guardian of Hyrstmill',719,0);
INSERT INTO `gamedata_achievements` VALUES (1165,'To Be or Not to Be the Guardian of the Golden Bazaar',720,0);
INSERT INTO `gamedata_achievements` VALUES (1166,'To Be or Not to Be the Wind of Aleport',721,0);
INSERT INTO `gamedata_achievements` VALUES (1167,'To Be or Not to Be the Wind of Hyrstmill',722,0);
INSERT INTO `gamedata_achievements` VALUES (1168,'To Be or Not to Be the Wind of the Golden Bazaar',723,0);
INSERT INTO `gamedata_achievements` VALUES (1169,'To Be or Not to Be the Hand of Aleport',724,0);
INSERT INTO `gamedata_achievements` VALUES (1171,'To Be or Not to Be the Hand of Hyrstmill',725,0);
INSERT INTO `gamedata_achievements` VALUES (1172,'To Be or Not to Be the Hand of the Golden Bazaar',726,0);
INSERT INTO `gamedata_achievements` VALUES (1173,'A Slave to Faction III',727,0);
INSERT INTO `gamedata_achievements` VALUES (1174,'Serving a Greater Cause VI',728,0);
INSERT INTO `gamedata_achievements` VALUES (1175,'And All I Got Was This Lousy Achievement: La Noscea',729,0);
INSERT INTO `gamedata_achievements` VALUES (1176,'And All I Got Was This Lousy Achievement: Black Shroud',730,0);
INSERT INTO `gamedata_achievements` VALUES (1177,'And All I Got Was This Lousy Achievement: Thanalan',731,0);
INSERT INTO `gamedata_achievements` VALUES (1178,'Globetrotter',732,0);
INSERT INTO `gamedata_achievements` VALUES (1179,'La Noscea Got Served...and Protected',733,0);
INSERT INTO `gamedata_achievements` VALUES (1180,'The Black Shroud Got Served...and Protected',734,0);
INSERT INTO `gamedata_achievements` VALUES (1181,'Thanalan Got Served...and Protected',735,0);
INSERT INTO `gamedata_achievements` VALUES (1182,'Eorzea Got Served...and Protected',736,0);
INSERT INTO `gamedata_achievements` VALUES (1183,'Love Thy Brother',737,0);
INSERT INTO `gamedata_achievements` VALUES (1184,'Another Brick in the Shield Wall',738,0);
INSERT INTO `gamedata_achievements` VALUES (1185,'A Helping Horn',739,0);
INSERT INTO `gamedata_achievements` VALUES (1186,'Commitment Issues',740,0);
INSERT INTO `gamedata_achievements` VALUES (1187,'Career Opportunities',741,0);
INSERT INTO `gamedata_achievements` VALUES (1188,'Sideways',742,0);
INSERT INTO `gamedata_achievements` VALUES (1189,'All the More Region to Leve VI',743,0);
INSERT INTO `gamedata_achievements` VALUES (1190,'\"Think Global, Quest Local VI\"',744,0);
INSERT INTO `gamedata_achievements` VALUES (1191,'Tales of War',745,0);
INSERT INTO `gamedata_achievements` VALUES (1192,'Tales of Magic',746,0);
INSERT INTO `gamedata_achievements` VALUES (1193,'Tales of the Hand',747,0);
INSERT INTO `gamedata_achievements` VALUES (1194,'Tales of the Land',748,0);
INSERT INTO `gamedata_achievements` VALUES (1195,'The Greatest Tales Ever Told',749,0);
INSERT INTO `gamedata_achievements` VALUES (1196,'Region d\'Etre',750,0);
INSERT INTO `gamedata_achievements` VALUES (1197,'Lost in Localization',751,0);
INSERT INTO `gamedata_achievements` VALUES (1198,'\"Just the Factions, Ma\'am\"',752,0);
INSERT INTO `gamedata_achievements` VALUES (1199,'Enraptured Servitude',753,0);
INSERT INTO `gamedata_achievements` VALUES (1200,'Seasonal Events',700,0);
INSERT INTO `gamedata_achievements` VALUES (1201,'It\'s Reining Deer',701,20);
INSERT INTO `gamedata_achievements` VALUES (1202,'Beast from the East',702,5);
INSERT INTO `gamedata_achievements` VALUES (1203,'Red Beast from the East',703,5);
INSERT INTO `gamedata_achievements` VALUES (1204,'Gold Beast from the East',704,5);
INSERT INTO `gamedata_achievements` VALUES (1205,'Black Beast from the East',705,5);
INSERT INTO `gamedata_achievements` VALUES (1206,'Get All the Things!',706,20);
INSERT INTO `gamedata_achievements` VALUES (1207,'Love Me Tender',707,5);
INSERT INTO `gamedata_achievements` VALUES (1208,'B.F.F.',708,5);
INSERT INTO `gamedata_achievements` VALUES (1209,'Did It All for the Glory of Love',709,5);
INSERT INTO `gamedata_achievements` VALUES (1210,'Love Makes the World Go Round',710,20);
INSERT INTO `gamedata_achievements` VALUES (1211,'Royal Audience',711,20);
INSERT INTO `gamedata_achievements` VALUES (1212,'Eggsceptional Hunting',712,5);
INSERT INTO `gamedata_achievements` VALUES (1213,'Eggstraordinary Hunting',713,5);
INSERT INTO `gamedata_achievements` VALUES (1214,'Eggsemplary Hunting',714,5);
INSERT INTO `gamedata_achievements` VALUES (1215,'Eggstreme Hunting',715,5);
INSERT INTO `gamedata_achievements` VALUES (1216,'Eggstravagant Hunting',716,5);
INSERT INTO `gamedata_achievements` VALUES (1217,'Seven Short of a Dozen',717,20);
INSERT INTO `gamedata_achievements` VALUES (1218,'Cascadier Survivor',718,5);
INSERT INTO `gamedata_achievements` VALUES (1219,'Stylish Cascadier',719,5);
INSERT INTO `gamedata_achievements` VALUES (1220,'Dapper Cascadier',720,5);
INSERT INTO `gamedata_achievements` VALUES (1221,'Dapper Cascadier',721,5);
INSERT INTO `gamedata_achievements` VALUES (1222,'Classy Cascadier',722,5);
INSERT INTO `gamedata_achievements` VALUES (1223,'Refined Cascadier',723,5);
INSERT INTO `gamedata_achievements` VALUES (1224,'Clogging Along',724,5);
INSERT INTO `gamedata_achievements` VALUES (1225,'Cascadier for Life',725,20);
INSERT INTO `gamedata_achievements` VALUES (1226,'Chock-full of Elemental Goodness',726,20);
INSERT INTO `gamedata_achievements` VALUES (1281,'It\'s Reining Deer',727,0);
INSERT INTO `gamedata_achievements` VALUES (1282,'Get All the Things!',728,0);
INSERT INTO `gamedata_achievements` VALUES (1283,'Love Makes the World Go Round',729,0);
INSERT INTO `gamedata_achievements` VALUES (1284,'Royal Audience',730,0);
INSERT INTO `gamedata_achievements` VALUES (1285,'Seven Short of a Dozen',731,0);
INSERT INTO `gamedata_achievements` VALUES (1286,'Cascadier for Life',732,20);
INSERT INTO `gamedata_achievements` VALUES (1287,'Chock-full of Elemental Goodness',733,20);
INSERT INTO `gamedata_achievements` VALUES (1300,'Dungeons',750,0);
INSERT INTO `gamedata_achievements` VALUES (1301,'One-upping the Antares',751,5);
INSERT INTO `gamedata_achievements` VALUES (1302,'Kicking Sargas and Taking Names',752,5);
INSERT INTO `gamedata_achievements` VALUES (1303,'Shaula We Dance?',753,5);
INSERT INTO `gamedata_achievements` VALUES (1304,'Like a Batraal Out of Hell',754,5);
INSERT INTO `gamedata_achievements` VALUES (1305,'Miser Neutralizer',755,5);
INSERT INTO `gamedata_achievements` VALUES (1306,'Raiding the Vale',756,5);
INSERT INTO `gamedata_achievements` VALUES (1307,'Breathless',757,5);
INSERT INTO `gamedata_achievements` VALUES (1308,'Three Heads Are Better Than One',758,5);
INSERT INTO `gamedata_achievements` VALUES (1309,'Making the Cut',759,5);
INSERT INTO `gamedata_achievements` VALUES (1310,'Big Ants Don\'t Cry',760,5);
INSERT INTO `gamedata_achievements` VALUES (1400,'Exploration',800,0);
INSERT INTO `gamedata_achievements` VALUES (1401,'Taking in the Sights: La Noscea',801,5);
INSERT INTO `gamedata_achievements` VALUES (1402,'Taking in the Sights: Black Shroud',802,5);
INSERT INTO `gamedata_achievements` VALUES (1403,'Taking in the Sights: Thanalan',803,5);
INSERT INTO `gamedata_achievements` VALUES (1404,'Taking in the Sights: Coerthas',804,5);
INSERT INTO `gamedata_achievements` VALUES (1405,'Taking in the Sights: Mor Dhona',805,5);
INSERT INTO `gamedata_achievements` VALUES (1406,'\"Been There, Done That\"',806,10);
INSERT INTO `gamedata_achievements` VALUES (1499,'\"Been There, Done That\"',807,0);
INSERT INTO `gamedata_achievements` VALUES (1500,'Grand Company',820,0);
INSERT INTO `gamedata_achievements` VALUES (1501,'All Watched Over by a Maelstrom of Loving Grace',821,5);
INSERT INTO `gamedata_achievements` VALUES (1502,'Snakebitten',822,5);
INSERT INTO `gamedata_achievements` VALUES (1503,'\"Come On Baby, Light My Fire\"',823,5);
INSERT INTO `gamedata_achievements` VALUES (1504,'A Storm of Seals I',824,5);
INSERT INTO `gamedata_achievements` VALUES (1505,'A Storm of Seals II',825,5);
INSERT INTO `gamedata_achievements` VALUES (1506,'A Storm of Seals III',826,10);
INSERT INTO `gamedata_achievements` VALUES (1507,'The Ruby Anchor',827,20);
INSERT INTO `gamedata_achievements` VALUES (1508,'A Snake in the Brass I',828,5);
INSERT INTO `gamedata_achievements` VALUES (1509,'A Snake in the Brass II',829,5);
INSERT INTO `gamedata_achievements` VALUES (1510,'A Snake in the Brass III',830,10);
INSERT INTO `gamedata_achievements` VALUES (1511,'The Mahogany Leaf',831,20);
INSERT INTO `gamedata_achievements` VALUES (1512,'Burning a Hole in My Pocket I',832,5);
INSERT INTO `gamedata_achievements` VALUES (1513,'Burning a Hole in My Pocket II',833,5);
INSERT INTO `gamedata_achievements` VALUES (1514,'Burning a Hole in My Pocket III',834,10);
INSERT INTO `gamedata_achievements` VALUES (1515,'The Mythril Scales',835,20);
INSERT INTO `gamedata_achievements` VALUES (1516,'In Good Company: Maelstrom I',836,5);
INSERT INTO `gamedata_achievements` VALUES (1517,'In Good Company: Maelstrom II',837,5);
INSERT INTO `gamedata_achievements` VALUES (1518,'In Good Company: Maelstrom III',838,10);
INSERT INTO `gamedata_achievements` VALUES (1519,'The Turquoise Cannon',839,20);
INSERT INTO `gamedata_achievements` VALUES (1520,'In Good Company: Twin Adder I',840,5);
INSERT INTO `gamedata_achievements` VALUES (1521,'In Good Company: Twin Adder II',841,5);
INSERT INTO `gamedata_achievements` VALUES (1522,'In Good Company: Twin Adder III',842,10);
INSERT INTO `gamedata_achievements` VALUES (1523,'The Ironwood Leaf',843,20);
INSERT INTO `gamedata_achievements` VALUES (1524,'In Good Company: Immortal Flames I',844,5);
INSERT INTO `gamedata_achievements` VALUES (1525,'In Good Company: Immortal Flames II',845,5);
INSERT INTO `gamedata_achievements` VALUES (1526,'In Good Company: Immortal Flames III',846,10);
INSERT INTO `gamedata_achievements` VALUES (1527,'The Silver Scales',847,20);
INSERT INTO `gamedata_achievements` VALUES (1528,'Fueling the Storm I',848,5);
INSERT INTO `gamedata_achievements` VALUES (1529,'Fueling the Storm II',849,5);
INSERT INTO `gamedata_achievements` VALUES (1530,'Fueling the Storm III',850,10);
INSERT INTO `gamedata_achievements` VALUES (1531,'The Onyx Oars',851,20);
INSERT INTO `gamedata_achievements` VALUES (1532,'Feeding the Serpent I',852,5);
INSERT INTO `gamedata_achievements` VALUES (1533,'Feeding the Serpent II',853,5);
INSERT INTO `gamedata_achievements` VALUES (1534,'Feeding the Serpent III',854,10);
INSERT INTO `gamedata_achievements` VALUES (1535,'The Sycamore Leaf',855,20);
INSERT INTO `gamedata_achievements` VALUES (1536,'Fanning the Flames I',856,5);
INSERT INTO `gamedata_achievements` VALUES (1537,'Fanning the Flames II',857,5);
INSERT INTO `gamedata_achievements` VALUES (1538,'Fanning the Flames III',858,10);
INSERT INTO `gamedata_achievements` VALUES (1539,'The Brass Scales',859,20);
INSERT INTO `gamedata_achievements` VALUES (1540,'To Each According to His Need: Maelstrom I',860,5);
INSERT INTO `gamedata_achievements` VALUES (1541,'To Each According to His Need: Maelstrom II',861,5);
INSERT INTO `gamedata_achievements` VALUES (1542,'To Each According to His Need: Maelstrom III',862,10);
INSERT INTO `gamedata_achievements` VALUES (1543,'The Jade Mast',863,20);
INSERT INTO `gamedata_achievements` VALUES (1544,'To Each According to His Need: Twin Adder I',864,5);
INSERT INTO `gamedata_achievements` VALUES (1545,'To Each According to His Need: Twin Adder II',865,5);
INSERT INTO `gamedata_achievements` VALUES (1546,'To Each According to His Need: Twin Adder III',866,10);
INSERT INTO `gamedata_achievements` VALUES (1547,'The Willow Leaf',867,20);
INSERT INTO `gamedata_achievements` VALUES (1548,'To Each According to His Need: Immortal Flames I',868,5);
INSERT INTO `gamedata_achievements` VALUES (1549,'To Each According to His Need: Immortal Flames II',869,5);
INSERT INTO `gamedata_achievements` VALUES (1550,'To Each According to His Need: Immortal Flames III',870,10);
INSERT INTO `gamedata_achievements` VALUES (1551,'The Bronze Scales',871,20);
INSERT INTO `gamedata_achievements` VALUES (1552,'Twelve Minutes or Less or Your Cargo\'s Free',872,5);
INSERT INTO `gamedata_achievements` VALUES (1553,'Ten Minutes or Less or Your Cargo\'s Free',873,5);
INSERT INTO `gamedata_achievements` VALUES (1554,'Eight Minutes or Less or Your Cargo\'s Free',874,10);
INSERT INTO `gamedata_achievements` VALUES (1555,'Gone in Twelve Minutes',875,5);
INSERT INTO `gamedata_achievements` VALUES (1556,'Gone in Ten Minutes',876,5);
INSERT INTO `gamedata_achievements` VALUES (1557,'Gone in Eight Minutes',877,10);
INSERT INTO `gamedata_achievements` VALUES (1558,'Handle with Care I',878,5);
INSERT INTO `gamedata_achievements` VALUES (1559,'Handle with Care II',879,5);
INSERT INTO `gamedata_achievements` VALUES (1560,'Handle with Care III',880,5);
INSERT INTO `gamedata_achievements` VALUES (1561,'Handle with Care IV',881,10);
INSERT INTO `gamedata_achievements` VALUES (1562,'Chocobo Shrugged',882,20);
INSERT INTO `gamedata_achievements` VALUES (1563,'I Make This Look Good',883,5);
INSERT INTO `gamedata_achievements` VALUES (1564,'My Little Chocobo',884,5);
INSERT INTO `gamedata_achievements` VALUES (1565,'Pimp Your Ride',885,5);
INSERT INTO `gamedata_achievements` VALUES (1671,'A Storm of Seals III',886,0);
INSERT INTO `gamedata_achievements` VALUES (1672,'The Ruby Anchor',887,0);
INSERT INTO `gamedata_achievements` VALUES (1673,'A Snake in the Brass III',888,0);
INSERT INTO `gamedata_achievements` VALUES (1674,'The Mahogany Leaf',889,0);
INSERT INTO `gamedata_achievements` VALUES (1675,'Burning a Hole in My Pocket III',890,0);
INSERT INTO `gamedata_achievements` VALUES (1676,'The Mythril Scales',891,0);
INSERT INTO `gamedata_achievements` VALUES (1677,'In Good Company: Maelstrom III',892,0);
INSERT INTO `gamedata_achievements` VALUES (1678,'The Turquoise Cannon',893,0);
INSERT INTO `gamedata_achievements` VALUES (1679,'In Good Company: Twin Adder III',894,0);
INSERT INTO `gamedata_achievements` VALUES (1680,'The Ironwood Leaf',895,0);
INSERT INTO `gamedata_achievements` VALUES (1681,'In Good Company: Immortal Flames III',896,0);
INSERT INTO `gamedata_achievements` VALUES (1682,'The Silver Scales',897,0);
INSERT INTO `gamedata_achievements` VALUES (1683,'Fueling the Storm III',898,0);
INSERT INTO `gamedata_achievements` VALUES (1684,'The Onyx Oars',899,0);
INSERT INTO `gamedata_achievements` VALUES (1685,'Feeding the Serpent III',900,0);
INSERT INTO `gamedata_achievements` VALUES (1686,'The Sycamore Leaf',901,0);
INSERT INTO `gamedata_achievements` VALUES (1687,'Fanning the Flames III',902,0);
INSERT INTO `gamedata_achievements` VALUES (1688,'The Brass Scales',903,0);
INSERT INTO `gamedata_achievements` VALUES (1689,'To Each According to His Need: Maelstrom III',904,0);
INSERT INTO `gamedata_achievements` VALUES (1690,'The Jade Mast',905,0);
INSERT INTO `gamedata_achievements` VALUES (1691,'To Each According to His Need: Twin Adder III',906,0);
INSERT INTO `gamedata_achievements` VALUES (1692,'The Willow Leaf',907,0);
INSERT INTO `gamedata_achievements` VALUES (1693,'To Each According to His Need: Immortal Flames III',908,0);
INSERT INTO `gamedata_achievements` VALUES (1694,'The Bronze Scales',909,0);
INSERT INTO `gamedata_achievements` VALUES (1695,'Eight Minutes or Less or Your Cargo\'s Free',910,0);
INSERT INTO `gamedata_achievements` VALUES (1696,'Gone in Eight Minutes',911,0);
INSERT INTO `gamedata_achievements` VALUES (1697,'Handle with Care IV',912,0);
INSERT INTO `gamedata_achievements` VALUES (1698,'Handle with Care III',913,0);
INSERT INTO `gamedata_achievements` VALUES (1699,'Pimp Your Ride',914,0);
INSERT INTO `gamedata_achievements` VALUES (2001,'Patricide',915,5);
INSERT INTO `gamedata_achievements` VALUES (2006,'To Kill a Mocking Bird',916,5);
INSERT INTO `gamedata_achievements` VALUES (2011,'Pounding the Spike',917,5);
INSERT INTO `gamedata_achievements` VALUES (2016,'An Eye on the Ale I',918,5);
INSERT INTO `gamedata_achievements` VALUES (2017,'An Eye on the Ale II',919,5);
INSERT INTO `gamedata_achievements` VALUES (2018,'An Eye on the Ale III',920,5);
INSERT INTO `gamedata_achievements` VALUES (2019,'An Eye on the Ale IV',921,5);
INSERT INTO `gamedata_achievements` VALUES (2020,'First Blood: Aleport',922,10);
INSERT INTO `gamedata_achievements` VALUES (2021,'An Eye on the Trees I',923,5);
INSERT INTO `gamedata_achievements` VALUES (2022,'An Eye on the Trees II',924,5);
INSERT INTO `gamedata_achievements` VALUES (2023,'An Eye on the Trees III',925,5);
INSERT INTO `gamedata_achievements` VALUES (2024,'An Eye on the Trees IV',926,5);
INSERT INTO `gamedata_achievements` VALUES (2025,'First Blood: Hyrstmill',927,10);
INSERT INTO `gamedata_achievements` VALUES (2026,'An Eye on the Gold I',928,5);
INSERT INTO `gamedata_achievements` VALUES (2027,'An Eye on the Gold II',929,5);
INSERT INTO `gamedata_achievements` VALUES (2028,'An Eye on the Gold III',930,5);
INSERT INTO `gamedata_achievements` VALUES (2029,'An Eye on the Gold IV',931,5);
INSERT INTO `gamedata_achievements` VALUES (2030,'First Blood: Golden Bazaar',932,10);
INSERT INTO `gamedata_achievements` VALUES (2031,'Holding the Hamlet: Aleport I',933,5);
INSERT INTO `gamedata_achievements` VALUES (2032,'Holding the Hamlet: Aleport II',934,5);
INSERT INTO `gamedata_achievements` VALUES (2033,'Holding the Hamlet: Aleport III',935,5);
INSERT INTO `gamedata_achievements` VALUES (2034,'Holding the Hamlet: Aleport IV',936,5);
INSERT INTO `gamedata_achievements` VALUES (2035,'To Be or Not to Be the Guardian of Aleport',937,10);
INSERT INTO `gamedata_achievements` VALUES (2036,'Holding the Hamlet: Hyrstmill I',938,5);
INSERT INTO `gamedata_achievements` VALUES (2037,'Holding the Hamlet: Hyrstmill II',939,5);
INSERT INTO `gamedata_achievements` VALUES (2038,'Holding the Hamlet: Hyrstmill III',940,5);
INSERT INTO `gamedata_achievements` VALUES (2039,'Holding the Hamlet: Hyrstmill IV',941,5);
INSERT INTO `gamedata_achievements` VALUES (2040,'To Be or Not to Be the Guardian of Hyrstmill',942,10);
INSERT INTO `gamedata_achievements` VALUES (2041,'Holding the Hamlet: Golden Bazaar I',943,5);
INSERT INTO `gamedata_achievements` VALUES (2042,'Holding the Hamlet: Golden Bazaar II',944,5);
INSERT INTO `gamedata_achievements` VALUES (2043,'Holding the Hamlet: Golden Bazaar III',945,5);
INSERT INTO `gamedata_achievements` VALUES (2044,'Holding the Hamlet: Golden Bazaar IV',946,5);
INSERT INTO `gamedata_achievements` VALUES (2045,'To Be or Not to Be the Guardian of the Golden Bazaar',947,10);
INSERT INTO `gamedata_achievements` VALUES (2046,'Helping the Hamlet: Aleport I',948,5);
INSERT INTO `gamedata_achievements` VALUES (2047,'Helping the Hamlet: Aleport II',949,5);
INSERT INTO `gamedata_achievements` VALUES (2048,'Helping the Hamlet: Aleport III',950,5);
INSERT INTO `gamedata_achievements` VALUES (2049,'Helping the Hamlet: Aleport IV',951,5);
INSERT INTO `gamedata_achievements` VALUES (2050,'To Be or Not to Be the Wind of Aleport',952,10);
INSERT INTO `gamedata_achievements` VALUES (2051,'Helping the Hamlet: Hyrstmill I',953,5);
INSERT INTO `gamedata_achievements` VALUES (2052,'Helping the Hamlet: Hyrstmill II',954,5);
INSERT INTO `gamedata_achievements` VALUES (2053,'Helping the Hamlet: Hyrstmill III',955,5);
INSERT INTO `gamedata_achievements` VALUES (2054,'Helping the Hamlet: Hyrstmill IV',956,5);
INSERT INTO `gamedata_achievements` VALUES (2055,'To Be or Not to Be the Wind of Hyrstmill',957,10);
INSERT INTO `gamedata_achievements` VALUES (2056,'Helping the Hamlet: Golden Bazaar I',958,5);
INSERT INTO `gamedata_achievements` VALUES (2057,'Helping the Hamlet: Golden Bazaar II',959,5);
INSERT INTO `gamedata_achievements` VALUES (2058,'Helping the Hamlet: Golden Bazaar III',960,5);
INSERT INTO `gamedata_achievements` VALUES (2059,'Helping the Hamlet: Golden Bazaar IV',961,5);
INSERT INTO `gamedata_achievements` VALUES (2060,'To Be or Not to Be the Wind of the Golden Bazaar',962,10);
INSERT INTO `gamedata_achievements` VALUES (2061,'Habiting the Hamlet: Aleport I',963,5);
INSERT INTO `gamedata_achievements` VALUES (2062,'Habiting the Hamlet: Aleport II',964,5);
INSERT INTO `gamedata_achievements` VALUES (2063,'Habiting the Hamlet: Aleport III',965,5);
INSERT INTO `gamedata_achievements` VALUES (2064,'Habiting the Hamlet: Aleport IV',966,5);
INSERT INTO `gamedata_achievements` VALUES (2065,'To Be or Not to Be the Hand of Aleport',967,10);
INSERT INTO `gamedata_achievements` VALUES (2066,'Habiting the Hamlet: Hyrstmill I',968,5);
INSERT INTO `gamedata_achievements` VALUES (2067,'Habiting the Hamlet: Hyrstmill II',969,5);
INSERT INTO `gamedata_achievements` VALUES (2068,'Habiting the Hamlet: Hyrstmill III',970,5);
INSERT INTO `gamedata_achievements` VALUES (2069,'Habiting the Hamlet: Hyrstmill IV',971,5);
INSERT INTO `gamedata_achievements` VALUES (2070,'To Be or Not to Be the Hand of Hyrstmill',972,10);
INSERT INTO `gamedata_achievements` VALUES (2071,'Habiting the Hamlet: Golden Bazaar I',973,5);
INSERT INTO `gamedata_achievements` VALUES (2072,'Habiting the Hamlet: Golden Bazaar II',974,5);
INSERT INTO `gamedata_achievements` VALUES (2073,'Habiting the Hamlet: Golden Bazaar III',975,5);
INSERT INTO `gamedata_achievements` VALUES (2074,'Habiting the Hamlet: Golden Bazaar IV',976,5);
INSERT INTO `gamedata_achievements` VALUES (2075,'To Be or Not to Be the Hand of the Golden Bazaar',977,10);
INSERT INTO `gamedata_achievements` VALUES (2076,'Leave Your Hammer at Home: Aleport',978,5);
INSERT INTO `gamedata_achievements` VALUES (2077,'Leave Your Hammer at Home: Hyrstmill',979,5);
INSERT INTO `gamedata_achievements` VALUES (2078,'Leave Your Hammer at Home: Golden Bazaar',980,5);
INSERT INTO `gamedata_achievements` VALUES (2079,'\"Make Stuff, Not War: Aleport\"',981,5);
INSERT INTO `gamedata_achievements` VALUES (2080,'\"Make Stuff, Not War: Hyrstmill\"',982,5);
INSERT INTO `gamedata_achievements` VALUES (2081,'\"Make Stuff, Not War: Golden Bazaar\"',983,5);
INSERT INTO `gamedata_achievements` VALUES (2082,'Looking Out for the Little People',984,5);
/*!40000 ALTER TABLE `gamedata_achievements` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
COMMIT;
-- Dump completed on 2016-06-07 22:54:49

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,169 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 6/19/2017 10:23:42 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for gamedata_actor_pushcommand
-- ----------------------------
CREATE TABLE `gamedata_actor_pushcommand` (
`id` int(10) unsigned NOT NULL,
`pushCommand` smallint(5) unsigned NOT NULL DEFAULT '0',
`pushCommandSub` smallint(6) NOT NULL DEFAULT '0',
`pushCommandPriority` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1090460', '10013', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1090461', '10013', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1090462', '10013', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1290007', '10006', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1290008', '10006', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1290009', '10006', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200052', '20001', '0', '6');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200055', '20006', '0', '6');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200053', '20005', '0', '6');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200057', '20007', '0', '6');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200054', '20002', '0', '6');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200056', '20003', '0', '6');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280000', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280001', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280002', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280003', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280004', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280005', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280006', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280007', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280008', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280009', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280010', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280011', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280012', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280013', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280014', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280015', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280016', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280017', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280018', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280019', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280020', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280021', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280022', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280023', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280024', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280025', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280026', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280027', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280028', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280029', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280030', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280031', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280032', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280033', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280034', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280035', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280036', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280037', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280038', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280039', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280040', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280041', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280042', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280043', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280044', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280045', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280046', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280047', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280048', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280049', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280050', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280051', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280052', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280053', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280054', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280055', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280056', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280057', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280058', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280059', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280060', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280061', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280062', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280063', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280064', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280065', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280066', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280067', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280068', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280069', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280070', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280071', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280072', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280073', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280074', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280075', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280076', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280077', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280078', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280079', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280080', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280081', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280082', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280083', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280084', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280085', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280086', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280087', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280088', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280089', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280090', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280091', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280092', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280093', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280094', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280095', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280096', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280097', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280098', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280099', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280100', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280101', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280102', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280103', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280104', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280105', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280106', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280107', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280108', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280109', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280110', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280111', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280112', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280113', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280114', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280115', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280116', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280117', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280118', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280119', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280120', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280121', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280122', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280123', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280124', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280125', '10010', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280126', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1280127', '10002', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200027', '10008', '0', '8');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1200040', '10003', '0', '12');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1090547', '10011', '0', '10');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1090548', '10011', '0', '10');
INSERT INTO `gamedata_actor_pushcommand` VALUES ('1090549', '10011', '0', '10');

View file

@ -0,0 +1,671 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 6/24/2017 2:11:35 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for gamedata_guildleves
-- ----------------------------
CREATE TABLE `gamedata_guildleves` (
`id` int(10) unsigned NOT NULL,
`classType` int(10) unsigned DEFAULT NULL,
`location` int(10) unsigned DEFAULT NULL,
`factionCreditRequired` smallint(5) unsigned DEFAULT NULL,
`level` smallint(5) unsigned DEFAULT NULL,
`aetheryte` int(10) unsigned DEFAULT NULL,
`plateId` int(10) unsigned NOT NULL,
`borderId` int(10) unsigned NOT NULL,
`objective` int(10) unsigned DEFAULT NULL,
`partyRecommended` int(10) unsigned DEFAULT NULL,
`targetLocation` int(10) unsigned DEFAULT NULL,
`authority` int(10) unsigned DEFAULT NULL,
`timeLimit` tinyint(3) unsigned DEFAULT NULL,
`skill` int(10) unsigned DEFAULT NULL,
`favorCount` tinyint(3) unsigned DEFAULT NULL,
`aimNum1` tinyint(4) NOT NULL DEFAULT '0',
`aimNum2` tinyint(4) NOT NULL DEFAULT '0',
`aimNum3` tinyint(4) NOT NULL DEFAULT '0',
`aimNum4` tinyint(4) NOT NULL DEFAULT '0',
`item1` int(10) unsigned NOT NULL DEFAULT '0',
`item2` int(10) unsigned NOT NULL DEFAULT '0',
`item3` int(10) unsigned NOT NULL DEFAULT '0',
`item4` int(10) unsigned NOT NULL DEFAULT '0',
`mob1` int(10) unsigned NOT NULL DEFAULT '0',
`mob2` int(10) unsigned NOT NULL DEFAULT '0',
`mob3` int(10) unsigned NOT NULL DEFAULT '0',
`mob4` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `gamedata_guildleves` VALUES ('0', '1', '0', '0', '0', '1280000', '0', '0', '0', '0', '0', '40001', '60', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1', '1', '0', '0', '0', '1280000', '0', '0', '10011', '0', '0', '0', '30', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('2', '1', '1', '0', '5', '1280002', '20021', '20005', '10011', '0', '0', '40001', '40', '1', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3204006', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3', '1', '1', '0', '5', '1280002', '20021', '20005', '10021', '0', '0', '40001', '30', '1', '10', '3', '1', '0', '0', '0', '0', '0', '0', '3204006', '3204006', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4', '1', '1', '0', '5', '1280002', '20022', '20005', '10031', '0', '0', '40001', '30', '1', '10', '3', '1', '0', '0', '0', '0', '0', '0', '3204006', '3204006', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '2', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('6', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '2', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('7', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '2', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('8', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('9', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11', '1', '1', '0', '5', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('47', '1', '1', '0', '0', '1280002', '20021', '20001', '0', '0', '0', '40001', '60', '0', '10', '8', '1', '1', '1', '0', '0', '0', '0', '1', '3106209', '3200801', '0');
INSERT INTO `gamedata_guildleves` VALUES ('48', '1', '1', '0', '0', '1280002', '20021', '20005', '0', '0', '0', '40001', '60', '0', '10', '8', '1', '1', '1', '0', '0', '0', '0', '1', '3106312', '3101511', '3100612');
INSERT INTO `gamedata_guildleves` VALUES ('49', '1', '1', '0', '0', '1280002', '20032', '20005', '10011', '0', '0', '40001', '60', '0', '10', '8', '1', '1', '1', '0', '0', '0', '0', '1', '3104323', '3107616', '3100913');
INSERT INTO `gamedata_guildleves` VALUES ('1001', '1', '1', '100', '20', '1280003', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '4', '2', '4', '0', '0', '0', '0', '0', '3280203', '3280207', '3280211', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1002', '1', '1', '100', '20', '1280005', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '10', '0', '0', '0', '0', '0', '0', '0', '3206601', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1003', '1', '2', '100', '20', '1280066', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3206701', '3206702', '3206703', '3206704');
INSERT INTO `gamedata_guildleves` VALUES ('1004', '1', '1', '200', '30', '1280007', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206601', '3206601', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1005', '1', '3', '200', '30', '1280042', '20022', '20002', '12006', '0', '0', '40019', '40', '0', '10', '4', '6', '9', '0', '0', '0', '0', '0', '3206301', '3206301', '3206301', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1006', '1', '1', '200', '30', '1280007', '20025', '20002', '10021', '0', '0', '40019', '40', '0', '10', '5', '0', '0', '0', '12000078', '0', '0', '0', '3280203', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1007', '1', '3', '300', '40', '1280036', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3206501', '3206505', '3206509', '3206513');
INSERT INTO `gamedata_guildleves` VALUES ('1008', '1', '3', '300', '40', '1280036', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '5', '4', '3', '0', '0', '0', '0', '0', '3206501', '3206505', '3206513', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1009', '1', '4', '300', '40', '1280092', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '8', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1010', '1', '2', '300', '40', '1280063', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1011', '1', '3', '100', '50', '1280036', '20025', '20002', '10021', '0', '0', '40019', '40', '0', '10', '20', '0', '0', '0', '12000187', '0', '0', '0', '3202201', '3202204', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1012', '1', '3', '100', '50', '1280036', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '3', '6', '0', '0', '0', '0', '0', '0', '3206506', '3202205', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1013', '1', '3', '400', '50', '1280036', '20021', '20002', '12001', '101', '0', '40019', '40', '0', '10', '1', '1', '2', '4', '0', '0', '0', '0', '3206515', '3202201', '3206506', '3202205');
INSERT INTO `gamedata_guildleves` VALUES ('1014', '1', '2', '100', '50', '1280073', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '3', '6', '0', '0', '0', '0', '0', '0', '3201419', '3201404', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1015', '1', '2', '100', '50', '1280073', '20022', '20002', '12006', '0', '0', '40019', '40', '0', '10', '3', '4', '0', '1', '0', '0', '0', '0', '3201419', '3201419', '0', '3206402');
INSERT INTO `gamedata_guildleves` VALUES ('1016', '1', '2', '400', '50', '1280073', '20021', '20002', '12001', '101', '0', '40019', '40', '0', '10', '1', '1', '3', '4', '0', '0', '0', '0', '3206403', '3201405', '3206402', '3201419');
INSERT INTO `gamedata_guildleves` VALUES ('1017', '1', '4', '100', '50', '1280096', '20060', '20002', '12001', '106', '0', '40019', '12', '0', '10', '1', '1', '1', '1', '0', '0', '0', '0', '3206432', '3206433', '3206434', '3206435');
INSERT INTO `gamedata_guildleves` VALUES ('1018', '1', '3', '100', '50', '1280049', '20060', '20002', '12006', '106', '0', '40019', '11', '0', '10', '1', '1', '1', '0', '0', '0', '0', '0', '3206542', '3206543', '3202210', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1019', '1', '1', '100', '50', '1280006', '20060', '20002', '12009', '106', '0', '40019', '10', '0', '10', '6', '1', '1', '0', '0', '0', '0', '0', '3206624', '3206622', '3206623', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1020', '1', '1', '100', '50', '1280006', '20059', '20002', '12001', '103', '0', '40019', '10', '0', '10', '1', '1', '0', '0', '0', '0', '0', '0', '3110702', '3110703', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1021', '1', '2', '300', '40', '1280063', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1022', '1', '2', '300', '40', '1280063', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1023', '1', '2', '300', '40', '1280063', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1024', '1', '2', '300', '40', '1280063', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1025', '1', '2', '300', '40', '1280063', '20021', '20002', '12001', '0', '0', '40019', '40', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3206401', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1101', '1', '1', '100', '20', '1280003', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '11', '0', '0', '0', '0', '0', '0', '3280107', '3204001', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1102', '1', '1', '100', '20', '1280005', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '3', '8', '0', '0', '0', '0', '0', '3280108', '3201401', '3201402', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1103', '1', '2', '100', '20', '1280066', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '3', '6', '0', '0', '0', '0', '0', '3280131', '3200502', '3200501', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1104', '1', '3', '200', '30', '1280042', '20022', '20002', '12006', '0', '0', '40020', '40', '0', '10', '1', '8', '0', '3', '0', '0', '0', '0', '3280121', '3203902', '0', '3203904');
INSERT INTO `gamedata_guildleves` VALUES ('1105', '1', '1', '200', '30', '1280020', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '8', '3', '0', '0', '0', '0', '0', '3280109', '3204202', '3204204', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1106', '1', '1', '200', '30', '1280007', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '1', '4', '6', '0', '0', '0', '0', '3280110', '3201403', '3206010', '3206009');
INSERT INTO `gamedata_guildleves` VALUES ('1107', '1', '3', '300', '40', '1280036', '20022', '20002', '12006', '0', '0', '40020', '40', '0', '10', '1', '6', '0', '3', '0', '0', '0', '0', '3280121', '3205306', '0', '3200602');
INSERT INTO `gamedata_guildleves` VALUES ('1108', '1', '2', '300', '40', '1280063', '20022', '20002', '12006', '0', '0', '40020', '40', '0', '10', '1', '2', '0', '5', '0', '0', '0', '0', '3280132', '3200702', '0', '3200107');
INSERT INTO `gamedata_guildleves` VALUES ('1109', '1', '4', '300', '40', '1280092', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '7', '0', '0', '0', '0', '0', '0', '3280146', '3203101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1110', '1', '2', '300', '40', '1280063', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '6', '5', '0', '0', '0', '0', '0', '3280133', '3205902', '3202706', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1111', '1', '1', '100', '50', '1280005', '20025', '20002', '10021', '0', '0', '40020', '40', '0', '10', '5', '0', '0', '0', '12000184', '0', '0', '0', '3200603', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1112', '1', '1', '100', '50', '1280005', '20025', '20002', '10021', '0', '0', '40020', '40', '0', '10', '20', '0', '0', '0', '12000185', '0', '0', '0', '3202707', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1113', '1', '1', '400', '50', '1280005', '20021', '20002', '12002', '102', '0', '40020', '40', '0', '10', '1', '1', '0', '0', '0', '0', '0', '12000186', '3280111', '3200801', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1114', '1', '1', '100', '50', '1280012', '20060', '20002', '12010', '106', '0', '40020', '10', '0', '10', '5', '1', '0', '1', '0', '0', '0', '12000188', '3203507', '3203506', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1115', '1', '1', '100', '50', '1280018', '20060', '20002', '12008', '106', '0', '40020', '10', '0', '10', '3', '1', '0', '0', '0', '0', '0', '0', '3203408', '3203407', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1116', '1', '1', '100', '50', '1280012', '20060', '20002', '12009', '106', '0', '40020', '10', '0', '0', '6', '1', '1', '0', '0', '0', '0', '0', '3280195', '3280194', '3203203', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1117', '1', '4', '100', '50', '1280103', '20060', '20002', '12007', '106', '0', '40020', '10', '0', '0', '1', '0', '0', '1', '0', '0', '0', '0', '3202505', '0', '0', '3290010');
INSERT INTO `gamedata_guildleves` VALUES ('1118', '1', '1', '100', '50', '1280010', '20059', '20002', '12011', '104', '0', '40020', '15', '0', '10', '1', '0', '0', '1', '0', '0', '0', '0', '3280403', '3101424', '0', '1900183');
INSERT INTO `gamedata_guildleves` VALUES ('1119', '1', '1', '400', '50', '1280002', '20059', '20002', '12012', '103', '0', '40020', '15', '0', '10', '1', '1', '0', '1', '0', '0', '0', '0', '3109003', '3109004', '0', '1900183');
INSERT INTO `gamedata_guildleves` VALUES ('1120', '1', '2', '300', '40', '1280063', '20021', '20002', '12002', '0', '0', '40020', '40', '0', '10', '1', '6', '5', '0', '0', '0', '0', '0', '3280133', '3205902', '3202706', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1201', '4', '1', '100', '20', '1280001', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '10', '2', '2', '2', '9', '12000069', '12000069', '12000069', '12000069', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1202', '4', '1', '200', '30', '1280020', '20031', '20002', '12003', '0', '0', '40021', '20', '0', '10', '18', '7', '5', '6', '12000075', '12000075', '12000075', '12000075', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1203', '4', '1', '300', '40', '1280006', '20031', '20002', '12004', '0', '0', '40021', '10', '0', '10', '3', '2', '1', '7', '12000068', '12000068', '12000068', '12000068', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1204', '4', '3', '200', '30', '1280031', '20031', '20002', '12004', '0', '0', '40021', '10', '0', '10', '3', '2', '2', '9', '12000070', '12000070', '12000070', '12000070', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1205', '4', '2', '200', '30', '1280061', '20031', '20002', '12004', '0', '0', '40021', '10', '0', '10', '4', '3', '3', '12', '12000071', '12000071', '12000071', '12000071', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1206', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '10', '4', '3', '2', '11', '12000072', '12000072', '12000072', '12000072', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1207', '4', '2', '300', '40', '1280063', '20043', '20002', '12005', '0', '0', '40021', '20', '0', '10', '1', '0', '0', '0', '12000073', '12000073', '12000073', '12000073', '3206303', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1208', '4', '4', '300', '40', '1280096', '20043', '20002', '12005', '0', '0', '40021', '20', '0', '10', '1', '0', '0', '0', '12000074', '12000074', '12000074', '12000074', '3206207', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1209', '4', '3', '300', '40', '1280052', '20031', '20002', '12003', '0', '0', '40021', '20', '0', '10', '12', '1', '5', '6', '12000076', '12000076', '12000076', '12000076', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1210', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '10', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1211', '4', '2', '100', '20', '1280066', '20031', '20002', '12003', '0', '0', '40021', '20', '0', '10', '12', '3', '5', '4', '12000181', '12000181', '12000181', '12000181', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1212', '4', '3', '100', '20', '1280034', '20043', '20002', '12005', '0', '0', '40021', '20', '0', '10', '1', '0', '0', '0', '12000182', '12000182', '12000182', '12000182', '3200707', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1213', '4', '2', '250', '30', '1280082', '20043', '20002', '12005', '0', '0', '40021', '20', '0', '10', '1', '0', '0', '0', '12000183', '12000183', '12000183', '12000183', '3280173', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1214', '4', '1', '100', '50', '1280004', '20059', '20002', '12013', '104', '30003', '40021', '15', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1215', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '0', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1216', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '0', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1217', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '0', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1218', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '0', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1219', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '0', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('1220', '4', '4', '200', '30', '1280094', '20031', '20002', '12004', '0', '0', '40021', '20', '0', '0', '8', '2', '4', '2', '12000077', '12000077', '12000077', '12000077', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3200', '2', '1', '0', '1', '1280002', '20029', '20005', '11021', '0', '31001', '40013', '30', '39', '10', '3', '0', '0', '0', '12000060', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3201', '2', '1', '0', '1', '1280002', '20029', '20005', '11011', '0', '31001', '40009', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3203', '2', '1', '0', '1', '1280002', '20044', '20005', '11021', '0', '31001', '40011', '30', '39', '10', '3', '0', '0', '0', '12000061', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3216', '2', '1', '0', '10', '1280003', '20029', '20005', '11011', '0', '31001', '40009', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3219', '2', '1', '0', '10', '1280003', '20044', '20005', '11021', '0', '31001', '40011', '30', '39', '10', '3', '0', '0', '0', '12000062', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3232', '2', '1', '0', '20', '1280005', '20029', '20005', '11011', '0', '31001', '40009', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3235', '2', '1', '0', '20', '1280005', '20044', '20005', '11021', '0', '31001', '40011', '30', '39', '10', '3', '0', '0', '0', '12000063', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3248', '2', '1', '0', '30', '1280007', '20029', '20005', '11011', '0', '31001', '40009', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3251', '2', '1', '0', '30', '1280007', '20044', '20005', '11021', '0', '31001', '40011', '30', '39', '10', '3', '0', '0', '0', '12000163', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3264', '2', '1', '0', '40', '1280006', '20029', '20005', '11011', '0', '31001', '40009', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3266', '2', '1', '0', '40', '1280006', '20044', '20005', '11021', '0', '31001', '40011', '30', '39', '10', '3', '0', '0', '0', '12000164', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3400', '2', '1', '0', '1', '1280002', '20029', '20005', '11021', '0', '31003', '40013', '30', '40', '10', '3', '0', '0', '0', '12000064', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3401', '2', '1', '0', '1', '1280002', '20029', '20005', '11013', '0', '31003', '40014', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3403', '2', '1', '0', '1', '1280002', '20044', '20005', '11021', '0', '31003', '40015', '30', '40', '10', '3', '0', '0', '0', '12000066', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3416', '2', '1', '0', '10', '1280003', '20029', '20005', '11013', '0', '31003', '40014', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3419', '2', '1', '0', '10', '1280003', '20044', '20005', '11021', '0', '31003', '40015', '30', '40', '10', '3', '0', '0', '0', '12000067', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3432', '2', '1', '0', '20', '1280005', '20029', '20005', '11013', '0', '31003', '40014', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3435', '2', '1', '0', '20', '1280005', '20044', '20005', '11021', '0', '31003', '40015', '30', '40', '10', '3', '0', '0', '0', '12000165', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3448', '2', '1', '0', '30', '1280007', '20029', '20005', '11013', '0', '31003', '40014', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3451', '2', '1', '0', '30', '1280007', '20044', '20005', '11021', '0', '31003', '40015', '30', '40', '10', '3', '0', '0', '0', '12000166', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3464', '2', '1', '0', '40', '1280006', '20029', '20005', '11013', '0', '31003', '40014', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3466', '2', '1', '0', '40', '1280006', '20044', '20005', '11021', '0', '31003', '40015', '30', '40', '10', '3', '0', '0', '0', '12000162', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3600', '2', '1', '0', '1', '1280002', '20029', '20005', '11021', '0', '31004', '40013', '30', '41', '10', '3', '0', '0', '0', '12000144', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3601', '2', '1', '0', '1', '1280002', '20029', '20005', '11014', '0', '31004', '40023', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3603', '2', '1', '0', '1', '1280002', '20044', '20005', '11021', '0', '31004', '40024', '30', '41', '10', '3', '0', '0', '0', '12000147', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3616', '2', '1', '0', '10', '1280003', '20029', '20005', '11014', '0', '31004', '40023', '30', '41', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3619', '2', '1', '0', '10', '1280003', '20044', '20005', '11021', '0', '31004', '40024', '30', '41', '10', '3', '0', '0', '0', '12000148', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3632', '2', '1', '0', '20', '1280005', '20029', '20005', '11014', '0', '31004', '40023', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3635', '2', '1', '0', '20', '1280005', '20044', '20005', '11021', '0', '31004', '40024', '30', '41', '10', '3', '0', '0', '0', '12000167', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3648', '2', '1', '0', '30', '1280007', '20029', '20005', '11014', '0', '31004', '40023', '30', '41', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3651', '2', '1', '0', '30', '1280007', '20044', '20005', '11021', '0', '31004', '40024', '30', '41', '10', '3', '0', '0', '0', '12000149', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3664', '2', '1', '0', '40', '1280006', '20029', '20005', '11014', '0', '31004', '40023', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('3666', '2', '1', '0', '40', '1280006', '20044', '20005', '11021', '0', '31004', '40024', '30', '41', '10', '3', '0', '0', '0', '12000168', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4000', '2', '3', '0', '1', '1280032', '20029', '20005', '11021', '0', '31001', '40025', '30', '39', '10', '3', '0', '0', '0', '12000060', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4001', '2', '3', '0', '1', '1280032', '20029', '20005', '11011', '0', '31001', '40032', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4003', '2', '3', '0', '1', '1280032', '20044', '20005', '11021', '0', '31001', '40033', '30', '39', '10', '3', '0', '0', '0', '12000061', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4016', '2', '3', '0', '10', '1280033', '20029', '20005', '11011', '0', '31001', '40032', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4019', '2', '3', '0', '10', '1280033', '20044', '20005', '11021', '0', '31001', '40033', '30', '39', '10', '3', '0', '0', '0', '12000140', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4032', '2', '3', '0', '20', '1280034', '20029', '20005', '11011', '0', '31001', '40032', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4035', '2', '3', '0', '20', '1280034', '20044', '20005', '11021', '0', '31001', '40033', '30', '39', '10', '3', '0', '0', '0', '12000169', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4048', '2', '3', '0', '30', '1280042', '20029', '20005', '11011', '0', '31001', '40032', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4051', '2', '3', '0', '30', '1280042', '20044', '20005', '11021', '0', '31001', '40033', '30', '39', '10', '3', '0', '0', '0', '12000141', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4064', '2', '3', '0', '40', '1280039', '20029', '20005', '11011', '0', '31001', '40032', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4066', '2', '3', '0', '40', '1280039', '20044', '20005', '11021', '0', '31001', '40033', '30', '39', '10', '3', '0', '0', '0', '12000170', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4200', '2', '3', '0', '1', '1280032', '20029', '20005', '11021', '0', '31003', '40025', '30', '40', '10', '3', '0', '0', '0', '12000064', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4201', '2', '3', '0', '1', '1280032', '20029', '20005', '11013', '0', '31003', '40034', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4203', '2', '3', '0', '1', '1280032', '20044', '20005', '11021', '0', '31003', '40035', '30', '40', '10', '3', '0', '0', '0', '12000156', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4216', '2', '3', '0', '10', '1280033', '20029', '20005', '11013', '0', '31003', '40034', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4219', '2', '3', '0', '10', '1280033', '20044', '20005', '11021', '0', '31003', '40035', '30', '40', '10', '3', '0', '0', '0', '12000157', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4232', '2', '3', '0', '20', '1280034', '20029', '20005', '11013', '0', '31003', '40034', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4235', '2', '3', '0', '20', '1280034', '20044', '20005', '11021', '0', '31003', '40035', '30', '40', '10', '3', '0', '0', '0', '12000158', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4248', '2', '3', '0', '30', '1280042', '20029', '20005', '11013', '0', '31003', '40034', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4251', '2', '3', '0', '30', '1280042', '20044', '20005', '11021', '0', '31003', '40035', '30', '40', '10', '3', '0', '0', '0', '12000171', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4264', '2', '3', '0', '40', '1280039', '20029', '20005', '11013', '0', '31003', '40034', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4266', '2', '3', '0', '40', '1280039', '20044', '20005', '11021', '0', '31003', '40035', '30', '40', '10', '3', '0', '0', '0', '12000172', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4400', '2', '3', '0', '1', '1280032', '20029', '20005', '11021', '0', '31004', '40025', '30', '41', '10', '3', '0', '0', '0', '12000145', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4401', '2', '3', '0', '1', '1280032', '20029', '20005', '11014', '0', '31004', '40036', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4403', '2', '3', '0', '1', '1280032', '20044', '20005', '11021', '0', '31004', '40037', '30', '41', '10', '3', '0', '0', '0', '12000150', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4416', '2', '3', '0', '10', '1280033', '20029', '20005', '11014', '0', '31004', '40036', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4419', '2', '3', '0', '10', '1280033', '20044', '20005', '11021', '0', '31004', '40037', '30', '41', '10', '3', '0', '0', '0', '12000151', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4432', '2', '3', '0', '40', '1280039', '20029', '20005', '11014', '0', '31004', '40036', '30', '41', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4435', '2', '3', '0', '40', '1280039', '20044', '20005', '11021', '0', '31004', '40037', '30', '41', '10', '3', '0', '0', '0', '12000152', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4448', '2', '3', '0', '30', '1280042', '20029', '20005', '11014', '0', '31004', '40036', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4451', '2', '3', '0', '30', '1280042', '20044', '20005', '11021', '0', '31004', '40037', '30', '41', '10', '3', '0', '0', '0', '12000174', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4464', '2', '3', '0', '20', '1280034', '20029', '20005', '11014', '0', '31004', '40036', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4467', '2', '3', '0', '20', '1280034', '20044', '20005', '11021', '0', '31004', '40037', '30', '41', '10', '3', '0', '0', '0', '12000173', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4800', '2', '2', '0', '1', '1280062', '20029', '20005', '11021', '0', '31001', '40038', '30', '39', '10', '3', '0', '0', '0', '12000060', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4801', '2', '2', '0', '1', '1280062', '20029', '20005', '11011', '0', '31001', '40045', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4803', '2', '2', '0', '1', '1280062', '20044', '20005', '11021', '0', '31001', '40046', '30', '39', '10', '3', '0', '0', '0', '12000142', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4816', '2', '2', '0', '10', '1280064', '20029', '20005', '11011', '0', '31001', '40045', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4819', '2', '2', '0', '10', '1280064', '20044', '20005', '11021', '0', '31001', '40046', '30', '39', '10', '3', '0', '0', '0', '12000063', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4832', '2', '2', '0', '20', '1280066', '20029', '20005', '11011', '0', '31001', '40045', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4835', '2', '2', '0', '20', '1280066', '20044', '20005', '11021', '0', '31001', '40046', '30', '39', '10', '3', '0', '0', '0', '12000175', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4848', '2', '2', '0', '30', '1280067', '20029', '20005', '11011', '0', '31001', '40045', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4851', '2', '2', '0', '30', '1280067', '20044', '20005', '11021', '0', '31001', '40046', '30', '39', '10', '3', '0', '0', '0', '12000176', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4864', '2', '2', '0', '40', '1280073', '20029', '20005', '11011', '0', '31001', '40045', '30', '39', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('4866', '2', '2', '0', '40', '1280073', '20044', '20005', '11021', '0', '31001', '40046', '30', '39', '10', '3', '0', '0', '0', '12000143', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5000', '2', '2', '0', '1', '1280062', '20029', '20005', '11021', '0', '31003', '40038', '30', '40', '10', '3', '0', '0', '0', '12000064', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5001', '2', '2', '0', '1', '1280062', '20029', '20005', '11013', '0', '31003', '40047', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5003', '2', '2', '0', '1', '1280062', '20044', '20005', '11021', '0', '31003', '40048', '30', '40', '10', '3', '0', '0', '0', '12000159', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5016', '2', '2', '0', '10', '1280064', '20029', '20005', '11013', '0', '31003', '40047', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5019', '2', '2', '0', '10', '1280064', '20044', '20005', '11021', '0', '31003', '40048', '30', '40', '10', '3', '0', '0', '0', '12000160', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5032', '2', '2', '0', '20', '1280066', '20029', '20005', '11013', '0', '31003', '40047', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5035', '2', '2', '0', '20', '1280066', '20044', '20005', '11021', '0', '31003', '40048', '30', '40', '10', '3', '0', '0', '0', '12000177', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5048', '2', '2', '0', '30', '1280067', '20029', '20005', '11013', '0', '31003', '40047', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5051', '2', '2', '0', '30', '1280067', '20044', '20005', '11021', '0', '31003', '40048', '30', '40', '10', '3', '0', '0', '0', '12000161', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5064', '2', '2', '0', '40', '1280073', '20029', '20005', '11013', '0', '31003', '40047', '30', '40', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5066', '2', '2', '0', '40', '1280073', '20044', '20005', '11021', '0', '31003', '40048', '30', '40', '10', '3', '0', '0', '0', '12000178', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5200', '2', '2', '0', '1', '1280062', '20029', '20005', '11021', '0', '31004', '40038', '30', '41', '10', '3', '0', '0', '0', '12000146', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5201', '2', '2', '0', '1', '1280062', '20029', '20005', '11014', '0', '31004', '40049', '30', '41', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5203', '2', '2', '0', '1', '1280062', '20044', '20005', '11021', '0', '31004', '40050', '30', '41', '10', '3', '0', '0', '0', '12000153', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5216', '2', '2', '0', '10', '1280064', '20029', '20005', '11014', '0', '31004', '40049', '30', '41', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5219', '2', '2', '0', '10', '1280064', '20044', '20005', '11021', '0', '31004', '40050', '30', '41', '10', '3', '0', '0', '0', '12000154', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5232', '2', '2', '0', '40', '1280063', '20029', '20005', '11014', '0', '31004', '40049', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5234', '2', '2', '0', '40', '1280063', '20044', '20005', '11021', '0', '31004', '40050', '30', '41', '10', '3', '0', '0', '0', '12000180', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5248', '2', '2', '0', '30', '1280067', '20029', '20005', '11014', '0', '31004', '40049', '30', '41', '10', '0', '0', '0', '2', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5251', '2', '2', '0', '30', '1280067', '20044', '20005', '11021', '0', '31004', '40050', '30', '41', '10', '3', '0', '0', '0', '12000179', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5264', '2', '2', '0', '20', '1280066', '20029', '20005', '11014', '0', '31004', '40049', '30', '41', '10', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('5266', '2', '2', '0', '20', '1280066', '20044', '20005', '11021', '0', '31004', '40050', '30', '41', '10', '3', '0', '0', '0', '12000155', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10801', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40013', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204001', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10802', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40013', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204001', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10821', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '3205701', '3205701', '3205701', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10822', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '3206002', '3206002', '3206002', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10823', '1', '1', '0', '1', '1280002', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '3', '0', '0', '0', '12000042', '0', '0', '0', '3204001', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10824', '1', '1', '0', '1', '1280002', '20025', '20004', '10021', '0', '0', '40004', '30', '0', '10', '20', '0', '0', '0', '12000049', '0', '0', '0', '3206201', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10825', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3204001', '3204001', '3204001', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10826', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '3203901', '3203901', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10827', '1', '1', '0', '1', '1280002', '20021', '20005', '10012', '0', '0', '40001', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205601', '3205601', '3205601', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10828', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10829', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10830', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10831', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10832', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10833', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10834', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10835', '1', '1', '0', '1', '1280002', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3204101', '3204101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10841', '1', '1', '0', '30', '1280007', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '10', '2', '0', '0', '0', '0', '0', '0', '3202304', '3202301', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10842', '1', '1', '0', '30', '1280007', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '8', '0', '0', '0', '0', '0', '0', '0', '3205507', '3205507', '3205507', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10843', '1', '1', '0', '30', '1280007', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '3', '0', '0', '0', '12000046', '0', '0', '0', '3202305', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10844', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '6', '2', '4', '0', '0', '0', '0', '0', '3201601', '3204601', '3204601', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10845', '1', '1', '0', '30', '1280007', '20028', '20005', '10041', '0', '0', '40001', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3202604', '3204601', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10846', '1', '1', '0', '30', '1280007', '20023', '20004', '10051', '0', '0', '40022', '30', '0', '10', '3', '0', '0', '0', '12000003', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10847', '1', '1', '0', '30', '1280007', '20023', '20005', '10051', '0', '0', '40022', '30', '0', '10', '3', '3', '0', '0', '12000001', '12000002', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10848', '1', '1', '0', '30', '1280007', '20023', '20005', '10051', '0', '0', '40022', '30', '0', '10', '5', '0', '0', '0', '12000003', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10849', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10850', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10851', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10852', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10853', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10854', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10855', '1', '1', '0', '30', '1280007', '20022', '20005', '10031', '0', '0', '40005', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10861', '1', '1', '0', '20', '1280005', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '11', '0', '0', '0', '0', '0', '0', '0', '3202002', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10862', '1', '1', '0', '20', '1280005', '20021', '20005', '10012', '0', '0', '40001', '30', '0', '10', '3', '3', '3', '2', '0', '0', '0', '0', '3203902', '3205602', '3205304', '3203903');
INSERT INTO `gamedata_guildleves` VALUES ('10863', '1', '1', '0', '20', '1280005', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '3', '0', '0', '0', '12000058', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10864', '1', '1', '0', '20', '1280005', '20025', '20004', '10021', '0', '0', '40004', '30', '0', '10', '5', '0', '0', '0', '12000047', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10865', '1', '1', '0', '20', '1280005', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '2', '4', '6', '0', '0', '0', '0', '0', '3200502', '3200502', '3200502', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10866', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '3202603', '3206004', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10867', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40007', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '3202603', '3202002', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10868', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40051', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '12000101', '3202603', '3202002', '0', '3205803');
INSERT INTO `gamedata_guildleves` VALUES ('10869', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10870', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10871', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10872', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10873', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10874', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10875', '1', '1', '0', '20', '1280005', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3202607', '3202006', '0', '3205804');
INSERT INTO `gamedata_guildleves` VALUES ('10881', '1', '1', '0', '10', '1280003', '20021', '20005', '10012', '0', '0', '40001', '30', '0', '10', '3', '4', '1', '0', '0', '0', '0', '0', '3205602', '3204102', '3204305', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10882', '1', '1', '0', '10', '1280003', '20021', '20004', '10012', '0', '0', '40002', '30', '0', '10', '4', '4', '0', '0', '0', '0', '0', '0', '3200101', '3202701', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10883', '1', '1', '0', '10', '1280003', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '2', '2', '0', '0', '12000043', '12000044', '0', '0', '3200101', '3204102', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10884', '1', '1', '0', '10', '1280003', '20022', '20004', '10031', '0', '0', '40002', '30', '0', '10', '1', '2', '0', '0', '0', '0', '0', '0', '3202601', '3201401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10885', '1', '1', '0', '10', '1280003', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '4', '6', '8', '0', '0', '0', '0', '0', '3205304', '3205304', '3205304', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10886', '1', '1', '0', '10', '1280003', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '6', '2', '0', '0', '0', '0', '0', '0', '3204002', '3200101', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10887', '1', '1', '0', '10', '1280003', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '6', '7', '0', '0', '0', '0', '0', '0', '3202001', '3202001', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10888', '1', '1', '0', '10', '1280003', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3205401', '3205401', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10889', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10890', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10891', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10892', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10893', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10894', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10895', '1', '1', '0', '10', '1280003', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10901', '1', '1', '0', '40', '1280004', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '8', '0', '0', '0', '0', '0', '0', '0', '3201301', '3201301', '3201301', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10902', '1', '1', '0', '40', '1280004', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3202705', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10903', '1', '1', '0', '40', '1280004', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '16', '0', '0', '0', '12000128', '0', '0', '0', '3201301', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10904', '1', '1', '0', '40', '1280004', '20022', '20005', '10031', '0', '0', '40052', '30', '0', '10', '3', '4', '2', '0', '0', '0', '0', '0', '3202003', '3206004', '3201412', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10905', '1', '1', '0', '40', '1280004', '20028', '20005', '10041', '0', '0', '40051', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000048', '3202605', '3202302', '0', '3202705');
INSERT INTO `gamedata_guildleves` VALUES ('10906', '1', '1', '0', '40', '1280004', '20027', '20005', '10061', '0', '30001', '40001', '30', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10907', '1', '1', '0', '40', '1280004', '20027', '20004', '10061', '0', '30001', '40001', '30', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3203101', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10908', '1', '1', '0', '40', '1280004', '20027', '20005', '10061', '0', '30001', '40001', '30', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10909', '1', '1', '0', '40', '1280004', '20024', '20005', '10071', '0', '0', '40001', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3201301', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10910', '1', '1', '0', '40', '1280004', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10911', '1', '1', '0', '40', '1280004', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10912', '1', '1', '0', '40', '1280004', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10913', '1', '1', '0', '40', '1280004', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10914', '1', '1', '0', '40', '1280004', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10915', '1', '1', '0', '40', '1280004', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10921', '1', '1', '0', '40', '1280006', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '9', '0', '0', '0', '0', '0', '0', '3205404', '3205402', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10922', '1', '1', '0', '40', '1280006', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '7', '1', '0', '0', '0', '0', '0', '0', '3200602', '3201301', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10923', '1', '1', '0', '40', '1280006', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '1', '2', '0', '0', '12000089', '12000096', '0', '0', '3201412', '3202302', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10924', '1', '1', '0', '40', '1280006', '20022', '20005', '10031', '0', '0', '40053', '30', '0', '10', '6', '8', '10', '0', '0', '0', '0', '0', '3201412', '3201412', '3201412', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10925', '1', '1', '0', '40', '1280006', '20028', '20005', '10041', '0', '0', '40001', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '3202605', '3205705', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10926', '1', '1', '0', '40', '1280006', '20023', '20005', '10051', '0', '0', '40022', '30', '0', '10', '3', '3', '0', '0', '12000001', '12000002', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10927', '1', '1', '0', '40', '1280006', '20027', '20005', '10061', '0', '30001', '40001', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3205404', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10928', '1', '1', '0', '40', '1280006', '20027', '20005', '10061', '0', '30001', '40001', '30', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10929', '1', '1', '0', '40', '1280006', '20024', '20004', '10071', '0', '0', '40054', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000045', '3203101', '0', '0', '3205509');
INSERT INTO `gamedata_guildleves` VALUES ('10930', '1', '1', '0', '40', '1280006', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10931', '1', '1', '0', '40', '1280006', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10932', '1', '1', '0', '40', '1280006', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10933', '1', '1', '0', '40', '1280006', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10934', '1', '1', '0', '40', '1280006', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10935', '1', '1', '0', '40', '1280006', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10941', '1', '1', '0', '100', '1280012', '20021', '20005', '10011', '0', '0', '40001', '20', '0', '10', '12', '0', '0', '0', '0', '0', '0', '0', '3205710', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10942', '1', '1', '0', '100', '1280012', '20025', '20005', '10021', '0', '0', '40001', '20', '0', '10', '10', '0', '0', '0', '0', '0', '0', '0', '3204210', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10943', '1', '1', '0', '100', '1280012', '20022', '20005', '10031', '0', '0', '40001', '20', '0', '10', '11', '0', '0', '0', '0', '0', '0', '0', '3204021', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10944', '1', '1', '0', '100', '1280012', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10945', '1', '1', '0', '100', '1280012', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10946', '1', '1', '0', '100', '1280012', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10947', '1', '1', '0', '100', '1280012', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10948', '1', '1', '0', '100', '1280012', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10961', '1', '1', '0', '100', '1280008', '20021', '20005', '10011', '0', '0', '40001', '20', '0', '10', '2', '4', '4', '0', '0', '0', '0', '0', '3202204', '3200112', '3205005', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10962', '1', '1', '0', '100', '1280008', '20025', '20005', '10021', '0', '0', '40001', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3200605', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10963', '1', '1', '0', '100', '1280008', '20022', '20005', '10031', '0', '0', '40001', '20', '0', '10', '6', '6', '0', '0', '0', '0', '0', '0', '3207607', '3207608', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10964', '1', '1', '0', '100', '1280008', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10965', '1', '1', '0', '100', '1280008', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10966', '1', '1', '0', '100', '1280008', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10967', '1', '1', '0', '100', '1280008', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10968', '1', '1', '0', '100', '1280008', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10981', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10982', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10983', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10984', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10985', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10986', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10987', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('10988', '1', '1', '0', '100', '1280015', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11001', '1', '1', '0', '100', '1280010', '20021', '20005', '10011', '0', '0', '40001', '20', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3203502', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11002', '1', '1', '0', '100', '1280010', '20025', '20005', '10021', '0', '0', '40001', '20', '0', '10', '1', '1', '1', '1', '0', '0', '0', '0', '3203403', '3201703', '3200605', '3201307');
INSERT INTO `gamedata_guildleves` VALUES ('11003', '1', '1', '0', '100', '1280010', '20022', '20005', '10031', '0', '0', '40001', '20', '0', '10', '6', '2', '0', '0', '0', '0', '0', '0', '3201704', '3203502', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11004', '1', '1', '0', '100', '1280010', '20021', '20005', '10051', '0', '0', '40001', '20', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11005', '1', '1', '0', '100', '1280010', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11006', '1', '1', '0', '100', '1280010', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11007', '1', '1', '0', '100', '1280010', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11008', '1', '1', '0', '100', '1280010', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11021', '1', '1', '0', '100', '1280013', '20021', '20005', '10011', '0', '0', '40001', '20', '0', '10', '2', '3', '2', '0', '0', '0', '0', '0', '3206209', '3201704', '3203404', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11022', '1', '1', '0', '100', '1280013', '20021', '20005', '10011', '0', '0', '40001', '20', '0', '10', '4', '2', '0', '0', '0', '0', '0', '0', '3203104', '3203302', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11023', '1', '1', '0', '100', '1280013', '20028', '20005', '10041', '0', '0', '40001', '20', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3202608', '3203302', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11024', '1', '1', '0', '100', '1280013', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11025', '1', '1', '0', '100', '1280013', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11026', '1', '1', '0', '100', '1280013', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11027', '1', '1', '0', '100', '1280013', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11028', '1', '1', '0', '100', '1280013', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11041', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11042', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11043', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11044', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11045', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11046', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11047', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11048', '1', '1', '0', '100', '1280016', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11421', '1', '1', '0', '30', '1280020', '20021', '20005', '10011', '0', '0', '40001', '30', '0', '10', '3', '6', '0', '0', '0', '0', '0', '0', '3200601', '3205306', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11422', '1', '1', '0', '30', '1280020', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '24', '0', '0', '0', '12000045', '0', '0', '0', '3205507', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11423', '1', '1', '0', '30', '1280020', '20025', '20005', '10021', '0', '0', '40003', '30', '0', '10', '5', '0', '0', '0', '12000055', '0', '0', '0', '3204901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11424', '1', '1', '0', '30', '1280020', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '3', '6', '3', '0', '0', '0', '0', '0', '3202305', '3202305', '3202301', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11425', '1', '1', '0', '30', '1280020', '20022', '20005', '10031', '0', '0', '40001', '30', '0', '10', '2', '4', '2', '0', '0', '0', '0', '0', '3207603', '3207603', '3205101', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11426', '1', '1', '0', '30', '1280020', '20028', '20005', '10041', '0', '0', '40051', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000091', '3202604', '3207603', '0', '3201601');
INSERT INTO `gamedata_guildleves` VALUES ('11427', '1', '1', '0', '30', '1280020', '20023', '20005', '10051', '0', '0', '40022', '30', '0', '10', '3', '0', '0', '0', '12000002', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11428', '1', '1', '0', '30', '1280020', '20023', '20004', '10051', '0', '0', '40022', '30', '0', '10', '5', '0', '0', '0', '12000003', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11441', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11442', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11443', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11444', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11445', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11446', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11447', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11448', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11449', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11450', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11451', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11452', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11453', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11454', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11455', '1', '1', '0', '40', '1280018', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11461', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11462', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11463', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11464', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11465', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11466', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11467', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11468', '1', '1', '0', '100', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11601', '1', '3', '0', '1', '1280032', '20021', '20005', '10011', '0', '0', '40025', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3205702', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11602', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11621', '1', '3', '0', '1', '1280032', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3204008', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11622', '1', '3', '0', '1', '1280032', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '2', '4', '0', '0', '0', '0', '0', '0', '3203901', '3205601', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11623', '1', '3', '0', '1', '1280032', '20025', '20004', '10021', '0', '0', '40027', '30', '0', '10', '4', '0', '0', '0', '12000108', '0', '0', '0', '3204301', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11624', '1', '3', '0', '1', '1280032', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '24', '0', '0', '0', '12000050', '0', '0', '0', '3202101', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11625', '1', '3', '0', '1', '1280032', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205307', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11626', '1', '3', '0', '1', '1280032', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205702', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11627', '1', '3', '0', '1', '1280032', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3206201', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11628', '1', '3', '0', '1', '1280032', '20021', '20005', '10012', '0', '0', '40026', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3202101', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11629', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11630', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11631', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11632', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11633', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11634', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11635', '1', '3', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11641', '1', '3', '0', '10', '1280033', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '8', '0', '0', '0', '0', '0', '0', '0', '3205501', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11642', '1', '3', '0', '10', '1280033', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '6', '2', '0', '0', '0', '0', '0', '0', '3205308', '3205304', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11643', '1', '3', '0', '10', '1280033', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '4', '0', '0', '0', '12000049', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11644', '1', '3', '0', '10', '1280033', '20022', '20005', '10031', '0', '0', '40029', '30', '0', '10', '6', '9', '0', '0', '0', '0', '0', '0', '3205501', '3205501', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11645', '1', '3', '0', '10', '1280033', '20022', '20005', '10031', '0', '0', '40030', '30', '0', '10', '4', '6', '8', '0', '0', '0', '0', '0', '3206202', '3206202', '3206202', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11646', '1', '3', '0', '10', '1280033', '20022', '20005', '10031', '0', '0', '40026', '30', '0', '10', '6', '2', '0', '0', '0', '0', '0', '0', '3204009', '3205704', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11647', '1', '3', '0', '10', '1280033', '20022', '20005', '10031', '0', '0', '40030', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3202102', '3202102', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11648', '1', '3', '0', '10', '1280033', '20022', '20004', '10031', '0', '0', '40031', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3202001', '3202001', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11649', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11650', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11651', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11652', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11653', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11654', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11655', '1', '3', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11661', '1', '3', '0', '20', '1280034', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '5', '5', '0', '0', '0', '0', '0', '0', '3280101', '3280105', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11662', '1', '3', '0', '20', '1280034', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '10', '0', '0', '0', '0', '0', '0', '0', '3200901', '3200901', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11663', '1', '3', '0', '20', '1280034', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '5', '0', '0', '0', '12000087', '0', '0', '0', '3200901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11664', '1', '3', '0', '20', '1280034', '20025', '20005', '10021', '0', '0', '40055', '30', '0', '10', '20', '0', '0', '0', '12000134', '0', '0', '0', '3201901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11665', '1', '3', '0', '20', '1280034', '20022', '20005', '10031', '0', '0', '40029', '30', '0', '10', '6', '1', '0', '1', '0', '0', '0', '0', '3280117', '3280114', '0', '3280120');
INSERT INTO `gamedata_guildleves` VALUES ('11666', '1', '3', '0', '20', '1280034', '20028', '20004', '10041', '0', '0', '40031', '30', '0', '10', '2', '0', '2', '0', '0', '0', '0', '0', '3202603', '3202002', '3209901', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11667', '1', '3', '0', '20', '1280034', '20028', '20005', '10042', '0', '0', '40030', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '3203903', '3202002', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11668', '1', '3', '0', '20', '1280034', '20028', '20005', '10041', '0', '0', '40056', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '12000117', '3202603', '3280114', '0', '3209901');
INSERT INTO `gamedata_guildleves` VALUES ('11669', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11670', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11671', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11672', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11673', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11674', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11675', '1', '3', '0', '20', '1280034', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11681', '1', '3', '0', '30', '1280042', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '10', '0', '0', '0', '0', '0', '0', '0', '3200601', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11682', '1', '3', '0', '30', '1280042', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '9', '1', '0', '0', '0', '0', '0', '0', '3202003', '3204801', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11683', '1', '3', '0', '30', '1280042', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '3', '0', '0', '0', '12000116', '0', '0', '0', '3205606', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11684', '1', '3', '0', '30', '1280042', '20022', '20005', '10031', '0', '0', '40026', '30', '0', '10', '6', '2', '0', '0', '0', '0', '0', '0', '3202003', '3202305', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11685', '1', '3', '0', '30', '1280042', '20028', '20005', '10041', '0', '0', '40057', '30', '0', '10', '2', '0', '2', '0', '0', '0', '0', '0', '3202604', '3200503', '3204601', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11686', '1', '3', '0', '30', '1280042', '20023', '20005', '10051', '0', '0', '40058', '30', '0', '10', '4', '0', '0', '0', '12000001', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11687', '1', '3', '0', '30', '1280042', '20023', '20005', '10051', '0', '0', '40058', '30', '0', '10', '3', '3', '0', '0', '12000002', '12000003', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11688', '1', '3', '0', '30', '1280042', '20023', '20004', '10051', '0', '0', '40058', '30', '0', '10', '4', '0', '0', '0', '12000001', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11689', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11690', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11691', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11692', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11693', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11694', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11695', '1', '3', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11701', '1', '3', '0', '40', '1280039', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '3200701', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11702', '1', '3', '0', '40', '1280039', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '5', '0', '0', '0', '12000089', '0', '0', '0', '3201413', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11703', '1', '3', '0', '40', '1280039', '20025', '20005', '10021', '0', '0', '40055', '30', '0', '10', '4', '0', '0', '0', '12000136', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11704', '1', '3', '0', '40', '1280039', '20022', '20005', '10031', '0', '0', '40030', '30', '0', '10', '3', '4', '0', '0', '0', '0', '0', '0', '3200701', '3200701', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11705', '1', '3', '0', '40', '1280039', '20028', '20005', '10041', '0', '0', '40057', '30', '0', '10', '2', '0', '2', '0', '0', '0', '0', '0', '3202605', '3205706', '3204802', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11706', '1', '3', '0', '40', '1280039', '20023', '20005', '10051', '0', '0', '40058', '30', '0', '10', '4', '0', '0', '0', '12000003', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11707', '1', '3', '0', '40', '1280039', '20026', '20005', '10081', '0', '30002', '40057', '30', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3200701', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11708', '1', '3', '0', '40', '1280039', '20026', '20005', '10081', '0', '30002', '40057', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3201803', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11709', '1', '3', '0', '40', '1280039', '20024', '20004', '10071', '0', '0', '40059', '30', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3205607', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11710', '1', '3', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11711', '1', '3', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11712', '1', '3', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11713', '1', '3', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11714', '1', '3', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11715', '1', '3', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11721', '1', '3', '0', '40', '1280036', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '4', '4', '0', '0', '0', '0', '0', '0', '3202302', '3202004', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11722', '1', '3', '0', '40', '1280036', '20021', '20005', '10011', '0', '0', '40026', '30', '0', '10', '8', '0', '0', '0', '0', '0', '0', '0', '3205706', '3205706', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11723', '1', '3', '0', '40', '1280036', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '30', '0', '0', '0', '12000094', '0', '0', '0', '3202004', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11724', '1', '3', '0', '40', '1280036', '20022', '20005', '10031', '0', '0', '40030', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3200602', '3200602', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11725', '1', '3', '0', '40', '1280036', '20028', '20005', '10041', '0', '0', '40030', '30', '0', '10', '2', '0', '2', '0', '0', '0', '0', '0', '3202605', '3202105', '3201701', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11726', '1', '3', '0', '40', '1280036', '20023', '20005', '10051', '0', '0', '40058', '30', '0', '10', '4', '0', '0', '0', '12000003', '0', '0', '12000004', '3200107', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11727', '1', '3', '0', '40', '1280036', '20026', '20004', '10081', '0', '30002', '40057', '30', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '3200701', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11728', '1', '3', '0', '40', '1280036', '20026', '20005', '10081', '0', '30002', '40057', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3201413', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11729', '1', '3', '0', '40', '1280036', '20024', '20005', '10071', '0', '0', '40057', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000089', '3200701', '0', '0', '3201413');
INSERT INTO `gamedata_guildleves` VALUES ('11730', '1', '3', '0', '40', '1280036', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11731', '1', '3', '0', '40', '1280036', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11732', '1', '3', '0', '40', '1280036', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11733', '1', '3', '0', '40', '1280036', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11734', '1', '3', '0', '40', '1280036', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('11735', '1', '3', '0', '40', '1280036', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12221', '1', '3', '0', '30', '1280052', '20021', '20005', '10011', '0', '0', '40030', '30', '0', '10', '10', '0', '0', '0', '0', '0', '0', '0', '3200104', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12222', '1', '3', '0', '30', '1280052', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '5', '0', '0', '0', '12000084', '0', '0', '0', '3200601', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12223', '1', '3', '0', '30', '1280052', '20025', '20005', '10021', '0', '0', '40028', '30', '0', '10', '4', '0', '0', '0', '12000117', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12224', '1', '3', '0', '30', '1280052', '20022', '20005', '10031', '0', '0', '40030', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3209902', '3209902', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12225', '1', '3', '0', '30', '1280052', '20022', '20005', '10031', '0', '0', '40030', '30', '0', '10', '6', '7', '0', '0', '0', '0', '0', '0', '3203001', '3203001', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12226', '1', '3', '0', '30', '1280052', '20028', '20005', '10041', '0', '0', '40056', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '12000117', '3202604', '3203904', '0', '3209902');
INSERT INTO `gamedata_guildleves` VALUES ('12227', '1', '3', '0', '30', '1280052', '20023', '20004', '10051', '0', '0', '40058', '30', '0', '10', '4', '0', '0', '0', '12000002', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12228', '1', '3', '0', '30', '1280052', '20023', '20005', '10051', '0', '0', '40058', '30', '0', '10', '4', '0', '0', '0', '12000002', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12229', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12230', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12231', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12232', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12233', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12234', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12235', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12241', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12242', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12243', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12244', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12245', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12246', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12247', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12248', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12249', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12250', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12251', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12252', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12253', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12254', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12255', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12401', '1', '2', '0', '1', '1280062', '20021', '20005', '10011', '0', '0', '40038', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3205901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12402', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12421', '1', '2', '0', '1', '1280062', '20021', '20005', '10012', '0', '0', '40039', '30', '0', '10', '3', '3', '0', '0', '0', '0', '0', '0', '3204008', '3205901', '3205901', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12422', '1', '2', '0', '1', '1280062', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205601', '3205601', '3205601', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12423', '1', '2', '0', '1', '1280062', '20025', '20005', '10021', '0', '0', '40040', '30', '0', '10', '3', '0', '0', '0', '12000101', '0', '0', '0', '3205801', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12424', '1', '2', '0', '1', '1280062', '20025', '20005', '10021', '0', '0', '40040', '30', '0', '10', '20', '0', '0', '0', '12000127', '0', '0', '0', '3205901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12425', '1', '2', '0', '1', '1280062', '20021', '20004', '10011', '0', '0', '40041', '30', '0', '10', '3', '3', '0', '0', '0', '0', '0', '0', '3206201', '3205801', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12426', '1', '2', '0', '1', '1280062', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205702', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12427', '1', '2', '0', '1', '1280062', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12428', '1', '2', '0', '1', '1280062', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3205301', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12429', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12430', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12431', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12432', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12433', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12434', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12435', '1', '1', '0', '1', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12441', '1', '2', '0', '10', '1280064', '20021', '20005', '10012', '0', '0', '40039', '30', '0', '10', '4', '4', '0', '0', '0', '0', '0', '0', '3200501', '3205602', '3200501', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12442', '1', '2', '0', '10', '1280064', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3205501', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12443', '1', '2', '0', '10', '1280064', '20025', '20005', '10021', '0', '0', '40042', '30', '0', '10', '3', '0', '0', '0', '12000050', '0', '0', '0', '3206202', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12444', '1', '2', '0', '10', '1280064', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3205902', '3205902', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12445', '1', '2', '0', '10', '1280064', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '5', '8', '0', '0', '0', '0', '0', '0', '3205602', '3205602', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12446', '1', '2', '0', '10', '1280064', '20022', '20004', '10031', '0', '0', '40044', '30', '0', '10', '4', '2', '0', '0', '0', '0', '0', '0', '3202601', '3205801', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12447', '1', '2', '0', '10', '1280064', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '4', '8', '0', '0', '0', '0', '0', '0', '3205704', '3205704', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12448', '1', '2', '0', '10', '1280064', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '6', '7', '0', '1', '0', '0', '0', '0', '3205302', '3205302', '0', '3202702');
INSERT INTO `gamedata_guildleves` VALUES ('12449', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12450', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12451', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12452', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12453', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12454', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12455', '1', '1', '0', '10', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12461', '1', '2', '0', '20', '1280066', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '3', '6', '0', '0', '0', '0', '0', '0', '3204006', '3204009', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12462', '1', '2', '0', '20', '1280066', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '10', '0', '0', '0', '0', '0', '0', '0', '3200301', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12463', '1', '2', '0', '20', '1280066', '20025', '20005', '10021', '0', '0', '40042', '30', '0', '10', '5', '0', '0', '0', '12000079', '0', '0', '0', '3200105', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12464', '1', '2', '0', '20', '1280066', '20025', '20005', '10021', '0', '0', '40040', '30', '0', '10', '32', '0', '0', '0', '12000130', '0', '0', '0', '3205303', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12465', '1', '2', '0', '20', '1280066', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '8', '10', '0', '0', '0', '0', '0', '0', '3207601', '3207601', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12466', '1', '2', '0', '20', '1280066', '20028', '20005', '10041', '0', '0', '40060', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '3202603', '3200502', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12467', '1', '2', '0', '20', '1280066', '20028', '20005', '10041', '0', '0', '40060', '30', '0', '10', '2', '0', '2', '0', '0', '0', '0', '0', '3202603', '3200301', '3205801', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12468', '1', '2', '0', '20', '1280066', '20028', '20004', '10041', '0', '0', '40061', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000101', '3202603', '3200105', '0', '3205803');
INSERT INTO `gamedata_guildleves` VALUES ('12469', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12470', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12471', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12472', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12473', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12474', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12475', '1', '1', '0', '20', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12481', '1', '2', '0', '30', '1280067', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '5', '5', '0', '0', '0', '0', '0', '0', '3204013', '3204007', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12482', '1', '2', '0', '30', '1280067', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '9', '1', '1', '0', '0', '0', '0', '0', '3204502', '3204501', '3204202', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12483', '1', '2', '0', '30', '1280067', '20025', '20005', '10021', '0', '0', '40042', '30', '0', '10', '5', '0', '0', '0', '12000137', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12484', '1', '2', '0', '30', '1280067', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3200302', '3200302', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12485', '1', '2', '0', '30', '1280067', '20028', '20005', '10041', '0', '0', '40060', '30', '0', '10', '1', '0', '1', '0', '0', '0', '0', '0', '3202604', '3207604', '3205101', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12486', '1', '2', '0', '30', '1280067', '20023', '20004', '10051', '0', '0', '40062', '30', '0', '10', '4', '0', '0', '0', '12000001', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12487', '1', '2', '0', '30', '1280067', '20023', '20005', '10051', '0', '0', '40062', '30', '0', '10', '3', '3', '0', '0', '12000003', '12000001', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12488', '1', '2', '0', '30', '1280067', '20023', '20005', '10051', '0', '0', '40062', '30', '0', '10', '4', '0', '0', '0', '12000001', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12489', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12490', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12491', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12492', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12493', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12494', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12495', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12501', '1', '2', '0', '40', '1280063', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '6', '0', '0', '0', '0', '0', '0', '0', '3201501', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12502', '1', '2', '0', '40', '1280063', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '7', '1', '0', '0', '0', '0', '0', '0', '3201701', '3204902', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12503', '1', '2', '0', '40', '1280063', '20025', '20005', '10021', '0', '0', '40042', '30', '0', '10', '24', '0', '0', '0', '12000111', '0', '0', '0', '3204504', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12504', '1', '2', '0', '40', '1280063', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '6', '8', '0', '0', '0', '0', '0', '0', '3201302', '3201302', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12505', '1', '2', '0', '40', '1280063', '20028', '20005', '10041', '0', '0', '40060', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '0', '3202605', '3204015', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12506', '1', '2', '0', '40', '1280063', '20023', '20005', '10051', '0', '0', '40062', '30', '0', '10', '4', '0', '0', '0', '12000003', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12507', '1', '2', '0', '40', '1280063', '20027', '20005', '10061', '0', '30001', '40060', '30', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12508', '1', '2', '0', '40', '1280063', '20027', '20004', '10061', '0', '30001', '40064', '30', '0', '10', '1', '1', '0', '0', '0', '0', '0', '0', '3202706', '3210001', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12509', '1', '2', '0', '40', '1280063', '20026', '20005', '10081', '0', '30002', '40060', '30', '0', '10', '3', '0', '0', '0', '0', '0', '0', '0', '3207606', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12510', '1', '1', '0', '40', '1280063', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12511', '1', '1', '0', '40', '1280063', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12512', '1', '1', '0', '40', '1280063', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12513', '1', '1', '0', '40', '1280063', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12514', '1', '1', '0', '40', '1280063', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12515', '1', '1', '0', '40', '1280063', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12521', '1', '2', '0', '40', '1280073', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '5', '0', '0', '0', '0', '0', '0', '0', '3203101', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12522', '1', '2', '0', '40', '1280073', '20025', '20005', '10021', '0', '0', '40042', '30', '0', '10', '4', '0', '0', '0', '12000083', '0', '0', '0', '3200504', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12523', '1', '2', '0', '40', '1280073', '20025', '20005', '10021', '0', '0', '40042', '30', '0', '10', '5', '0', '0', '0', '12000119', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12524', '1', '2', '0', '40', '1280073', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '4', '5', '6', '0', '0', '0', '0', '0', '3203101', '3203101', '3203101', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12525', '1', '2', '0', '40', '1280073', '20028', '20005', '10041', '0', '0', '40061', '30', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000056', '3202605', '3207606', '0', '3205002');
INSERT INTO `gamedata_guildleves` VALUES ('12526', '1', '2', '0', '40', '1280073', '20023', '20005', '10051', '0', '0', '40062', '30', '0', '10', '4', '0', '0', '0', '12000003', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12527', '1', '2', '0', '40', '1280073', '20027', '20005', '10061', '0', '30001', '40060', '30', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12528', '1', '2', '0', '40', '1280073', '20027', '20005', '10061', '0', '30001', '40060', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3201303', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12529', '1', '2', '0', '40', '1280073', '20026', '20004', '10081', '0', '30002', '40064', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3280125', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12530', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12531', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12532', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12533', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12534', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('12535', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13021', '1', '2', '0', '30', '1280082', '20021', '20005', '10011', '0', '0', '40039', '30', '0', '10', '8', '0', '0', '0', '0', '0', '0', '0', '3200104', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13022', '1', '2', '0', '30', '1280082', '20025', '20004', '10021', '0', '0', '40063', '30', '0', '10', '5', '0', '0', '0', '12000084', '0', '0', '0', '3200601', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13023', '1', '2', '0', '30', '1280082', '20025', '20005', '10021', '0', '0', '40040', '30', '0', '10', '5', '0', '0', '0', '12000055', '0', '0', '0', '3204901', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13024', '1', '2', '0', '30', '1280082', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '3', '5', '0', '0', '0', '0', '0', '0', '3201403', '3201403', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13025', '1', '2', '0', '30', '1280082', '20022', '20005', '10031', '0', '0', '40043', '30', '0', '10', '1', '3', '0', '0', '0', '0', '0', '0', '3207604', '3207604', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13026', '1', '2', '0', '30', '1280082', '20028', '20005', '10041', '0', '0', '40060', '30', '0', '10', '2', '0', '0', '0', '0', '0', '0', '0', '3202604', '3203903', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13027', '1', '2', '0', '30', '1280082', '20023', '20005', '10051', '0', '0', '40062', '30', '0', '10', '4', '0', '0', '0', '12000002', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13028', '1', '2', '0', '30', '1280082', '20023', '20005', '10051', '0', '0', '40062', '30', '0', '10', '4', '0', '0', '0', '12000002', '0', '0', '12000004', '0', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13029', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13030', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13031', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13032', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13033', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13034', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13035', '1', '1', '0', '30', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13041', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13042', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13043', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13044', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13045', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13046', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13047', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13048', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13049', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13050', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13051', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13052', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13053', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13054', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('13055', '1', '1', '0', '40', '1280022', '20021', '20005', '0', '0', '0', '40001', '20', '0', '10', '9', '0', '0', '0', '0', '0', '0', '0', '3000009', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('20901', '1', '1', '0', '40', '1280004', '20051', '20003', '13001', '104', '0', '40065', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000625', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('20902', '1', '1', '0', '40', '1280004', '20051', '20003', '13001', '104', '0', '40065', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000626', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('20903', '1', '1', '0', '40', '1280004', '20036', '20003', '13002', '104', '0', '40065', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3204404', '3205411', '3202715', '3205713');
INSERT INTO `gamedata_guildleves` VALUES ('20904', '1', '1', '0', '40', '1280004', '20036', '20003', '13002', '104', '0', '40065', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3204404', '3205106', '3204806', '3205006');
INSERT INTO `gamedata_guildleves` VALUES ('20905', '1', '1', '0', '40', '1280004', '20049', '20003', '13003', '105', '0', '40065', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000200', '3204404', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('20906', '1', '1', '0', '40', '1280004', '20049', '20003', '13003', '105', '0', '40065', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000200', '3201707', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21421', '1', '1', '0', '30', '1280020', '20051', '20003', '13001', '104', '0', '40065', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000622', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21422', '1', '1', '0', '30', '1280020', '20036', '20003', '13002', '104', '0', '40065', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3203406', '3205410', '3207609', '3204213');
INSERT INTO `gamedata_guildleves` VALUES ('21423', '1', '1', '0', '30', '1280020', '20049', '20003', '13003', '105', '0', '40065', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000200', '3202610', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21424', '1', '1', '0', '30', '1280020', '20049', '20003', '13003', '105', '0', '40065', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000200', '3204320', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21701', '1', '3', '0', '40', '1280039', '20051', '20003', '13001', '104', '0', '40067', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000629', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21702', '1', '3', '0', '40', '1280039', '20051', '20003', '13001', '104', '0', '40067', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000630', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21703', '1', '3', '0', '40', '1280039', '20036', '20003', '13002', '104', '0', '40067', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3205613', '3201609', '3201610', '3202010');
INSERT INTO `gamedata_guildleves` VALUES ('21704', '1', '3', '0', '40', '1280039', '20036', '20003', '13002', '104', '0', '40067', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3201609', '3205106', '3204806', '3205006');
INSERT INTO `gamedata_guildleves` VALUES ('21705', '1', '3', '0', '40', '1280039', '20049', '20003', '13003', '105', '0', '40067', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000200', '3204404', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('21706', '1', '3', '0', '40', '1280039', '20049', '20003', '13003', '105', '0', '40067', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000200', '3201707', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22221', '1', '3', '0', '30', '1280052', '20051', '20003', '13001', '104', '0', '40067', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000624', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22222', '1', '3', '0', '30', '1280052', '20036', '20003', '13002', '104', '0', '40067', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3201117', '3202114', '3200115', '3205612');
INSERT INTO `gamedata_guildleves` VALUES ('22223', '1', '3', '0', '30', '1280052', '20049', '20003', '13003', '105', '0', '40067', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000200', '3202610', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22224', '1', '3', '0', '30', '1280052', '20049', '20003', '13003', '105', '0', '40067', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000200', '3204320', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22521', '1', '2', '0', '40', '1280073', '20051', '20003', '13001', '104', '0', '40066', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000627', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22522', '1', '2', '0', '40', '1280073', '20051', '20003', '13001', '104', '0', '40066', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000628', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22523', '1', '2', '0', '40', '1280073', '20036', '20003', '13002', '104', '0', '40066', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3205907', '3207610', '3200310', '3200510');
INSERT INTO `gamedata_guildleves` VALUES ('22524', '1', '2', '0', '40', '1280073', '20036', '20003', '13002', '104', '0', '40066', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3205907', '3205106', '3204806', '3205006');
INSERT INTO `gamedata_guildleves` VALUES ('22525', '1', '2', '0', '40', '1280073', '20049', '20003', '13003', '105', '0', '40066', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000200', '3204404', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('22526', '1', '2', '0', '40', '1280073', '20049', '20003', '13003', '105', '0', '40066', '20', '0', '10', '4', '0', '0', '0', '0', '0', '0', '12000200', '3201707', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('23021', '1', '2', '0', '30', '1280082', '20051', '20003', '13001', '104', '0', '40066', '15', '0', '10', '1', '0', '0', '0', '0', '0', '0', '0', '4000623', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('23022', '1', '2', '0', '30', '1280082', '20036', '20003', '13002', '104', '0', '40066', '15', '0', '10', '2', '2', '2', '2', '0', '0', '0', '0', '3203406', '3204025', '3200509', '3204213');
INSERT INTO `gamedata_guildleves` VALUES ('23023', '1', '2', '0', '30', '1280082', '20049', '20003', '13003', '105', '0', '40066', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000200', '3202610', '0', '0', '0');
INSERT INTO `gamedata_guildleves` VALUES ('23024', '1', '2', '0', '30', '1280082', '20049', '20003', '13003', '105', '0', '40066', '20', '0', '10', '3', '0', '0', '0', '0', '0', '0', '12000200', '3204320', '0', '0', '0');

8483
data/sql/gamedata_items.sql Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,333 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `gamedata_items_accessory`
--
SET autocommit = 0;
DROP TABLE IF EXISTS `gamedata_items_accessory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gamedata_items_accessory` (
`catalogID` int(10) unsigned NOT NULL,
`power` tinyint(4) NOT NULL,
`size` tinyint(4) NOT NULL,
PRIMARY KEY (`catalogID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `gamedata_items_accessory`
--
LOCK TABLES `gamedata_items_accessory` WRITE;
/*!40000 ALTER TABLE `gamedata_items_accessory` DISABLE KEYS */;
INSERT INTO `gamedata_items_accessory` VALUES (9010001,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010002,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010003,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010004,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010005,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010006,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010007,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010008,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010009,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010010,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010011,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010012,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010013,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010014,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010015,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010016,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010017,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010018,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010019,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010020,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010021,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010022,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010023,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010024,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010025,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010026,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010027,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010028,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010029,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010030,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010031,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010032,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010033,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010034,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010035,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010036,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010037,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010038,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010039,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010040,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010041,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010042,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010043,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010044,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010045,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010046,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010047,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010048,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010049,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010050,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010051,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010052,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010053,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010054,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010055,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010056,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010057,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010058,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010059,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010060,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010061,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010062,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010063,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9010064,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030001,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030002,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030003,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030004,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030005,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030006,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030007,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030008,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030009,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030010,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030011,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030012,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030013,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030014,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030015,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030016,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030017,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030018,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030019,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030020,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030021,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030022,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030023,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030024,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030025,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030026,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030027,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030028,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030029,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030030,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030031,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030032,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030033,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030034,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030035,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030036,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030037,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030038,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030039,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030040,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030041,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030042,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030043,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030044,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030045,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030046,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030047,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030048,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030049,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030050,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030051,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030052,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030053,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030054,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030055,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030056,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030057,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030058,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030059,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030060,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030061,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030062,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030063,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030064,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9030065,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040001,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040002,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040003,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040004,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040005,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040006,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040007,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040008,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040009,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040010,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040011,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040012,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040013,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040014,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040015,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040016,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040017,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040018,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040019,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040020,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040021,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040022,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040023,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040024,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040025,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040026,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040027,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040028,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040029,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040030,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040031,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040032,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040033,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040034,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040035,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040036,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040037,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040038,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040039,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040040,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040041,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040042,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040043,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040044,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040045,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040046,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040047,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040048,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040049,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040050,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040051,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040052,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040053,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040054,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040055,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040056,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040057,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040058,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040059,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040060,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040061,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040062,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040063,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040064,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040065,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040066,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040067,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9040068,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050001,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050002,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050003,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050004,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050005,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050006,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050007,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050008,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050009,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050010,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050011,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050012,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050013,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050014,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050015,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050016,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050017,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050018,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050019,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050020,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050021,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050022,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050023,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050024,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050025,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050026,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050027,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050028,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050029,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050030,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050031,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050032,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050033,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050034,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050035,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050036,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050037,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050038,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050039,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050040,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050041,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050042,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050043,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050044,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050045,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050046,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050047,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050048,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050049,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050050,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050051,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050052,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050053,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050054,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050055,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050056,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050057,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050058,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050059,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050060,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050061,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050062,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050063,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050064,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050065,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050066,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050067,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050068,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050069,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050070,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050071,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050072,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050073,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050074,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050075,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050076,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050077,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050078,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050079,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050080,0,0);
INSERT INTO `gamedata_items_accessory` VALUES (9050081,0,0);
/*!40000 ALTER TABLE `gamedata_items_accessory` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
COMMIT;
-- Dump completed on 2016-06-07 22:54:51

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,26 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 7/9/2017 11:38:35 AM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for gamedata_items_graphics_extra
-- ----------------------------
CREATE TABLE `gamedata_items_graphics_extra` (
`catalogID` int(10) unsigned NOT NULL,
`offHandWeaponId` int(10) unsigned NOT NULL DEFAULT '0',
`offHandEquipmentId` int(10) unsigned NOT NULL DEFAULT '0',
`offHandVarientId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`catalogID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `gamedata_items_graphics_extra` VALUES ('4020001', '58', '1', '0');
INSERT INTO `gamedata_items_graphics_extra` VALUES ('4070001', '226', '1', '0');

File diff suppressed because it is too large Load diff

34
data/sql/import.bat Normal file
View file

@ -0,0 +1,34 @@
@ECHO OFF
SETLOCAL
REM =============
REM IMPORT CONFIG
REM =============
REM NOTE: No spaces before or after the '='!!!
REM =============
SET PATH_MYSQL="C:\wamp\bin\mysql\mysql5.6.17\bin\mysql.exe"
SET PATH_MYSQLADMIN="C:\wamp\bin\mysql\mysql5.6.17\bin\mysqladmin.exe"
SET PATH_SQL="D:\Coding\FFXIV Related\ffxiv-classic-map-server\sql"
SET USER=root
SET PASSWORD=
SET DBADDRESS=localhost
SET DBPORT=3306
SET DBNAME=ffxiv_server
REM =============
IF DEFINED PASSWORD (SET PASSWORD=-p%PASSWORD%)
ECHO Deleteing old database
%PATH_MYSQLADMIN% -h %DBADDRESS% -u %USER% %PASSWORD% DROP %DBNAME%
ECHO Creating new database
%PATH_MYSQLADMIN% -h %DBADDRESS% -u %USER% %PASSWORD% CREATE %DBNAME%
ECHO Loading tables into the database
cd %PATH_SQL%
FOR %%X IN (*.sql) DO ECHO Importing %%X & %PATH_MYSQL% %DBNAME% -h %DBADDRESS% -u %USER% < %%X
ECHO Finished!
ENDLOCAL
@ECHO ON

25
data/sql/import.sh Normal file
View file

@ -0,0 +1,25 @@
#!/bin/bash
IMPORT_PATH="path/to/ffxiv-classic-server/sql/"
USER=root
PASS=root
DBNAME=ffxiv_server
echo Creating Database $DBNAME
mysql -h localhost -u $USER -p$PASS DROP $DBNAME
echo Creating Database $DBNAME
mysql -h localhost -u $USER -p$PASS CREATE $DBNAME IF NOT EXISTS $DBNAME
echo Loading $DBNAME tables into the database
for X in $IMPORT_PATH'*.sql';
do
for Y in $X
do
echo Importing $Y;
mysql $DBNAME -h localhost -u $USER -p$PASS < $Y
done
done
echo Finished!

View file

@ -0,0 +1,51 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `reserved_names`
--
DROP TABLE IF EXISTS `reserved_names`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reserved_names` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `reserved_names`
--
LOCK TABLES `reserved_names` WRITE;
/*!40000 ALTER TABLE `reserved_names` DISABLE KEYS */;
/*!40000 ALTER TABLE `reserved_names` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:53

View file

@ -0,0 +1,246 @@
-- MySQL dump 10.13 Distrib 5.7.23, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.23
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battle_commands`
--
DROP TABLE IF EXISTS `server_battle_commands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battle_commands` (
`id` smallint(5) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`classJob` tinyint(3) unsigned NOT NULL,
`lvl` tinyint(3) unsigned NOT NULL,
`requirements` smallint(5) unsigned NOT NULL,
`mainTarget` smallint(5) unsigned NOT NULL,
`validTarget` smallint(5) unsigned NOT NULL,
`aoeType` tinyint(3) unsigned NOT NULL,
`aoeRange` float NOT NULL DEFAULT '0',
`aoeMinRange` float NOT NULL DEFAULT '0',
`aoeConeAngle` float NOT NULL DEFAULT '0',
`aoeRotateAngle` float NOT NULL DEFAULT '0',
`aoeTarget` tinyint(3) NOT NULL,
`basePotency` smallint(5) unsigned NOT NULL,
`numHits` tinyint(3) unsigned NOT NULL,
`positionBonus` tinyint(3) unsigned NOT NULL,
`procRequirement` tinyint(3) unsigned NOT NULL,
`range` int(10) unsigned NOT NULL,
`minRange` int(10) unsigned NOT NULL DEFAULT '0',
`bestRange` int(10) unsigned NOT NULL DEFAULT '0',
`rangeHeight` int(10) unsigned NOT NULL DEFAULT '10',
`rangeWidth` int(10) unsigned NOT NULL DEFAULT '2',
`statusId` int(10) NOT NULL,
`statusDuration` int(10) unsigned NOT NULL,
`statusChance` float NOT NULL DEFAULT '0.5',
`castType` tinyint(3) unsigned NOT NULL,
`castTime` int(10) unsigned NOT NULL,
`recastTime` int(10) unsigned NOT NULL,
`mpCost` smallint(5) unsigned NOT NULL,
`tpCost` smallint(5) unsigned NOT NULL,
`animationType` tinyint(3) unsigned NOT NULL,
`effectAnimation` smallint(5) unsigned NOT NULL,
`modelAnimation` smallint(5) unsigned NOT NULL,
`animationDuration` smallint(5) unsigned NOT NULL,
`battleAnimation` int(10) unsigned NOT NULL DEFAULT '0',
`validUser` tinyint(3) unsigned NOT NULL DEFAULT '0',
`comboId1` int(11) NOT NULL DEFAULT '0',
`comboId2` int(11) NOT NULL DEFAULT '0',
`comboStep` tinyint(4) NOT NULL DEFAULT '0',
`accuracyMod` float NOT NULL DEFAULT '1',
`worldMasterTextId` smallint(5) unsigned NOT NULL DEFAULT '0',
`commandType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`actionType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`actionProperty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`isRanged` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battle_commands`
--
LOCK TABLES `server_battle_commands` WRITE;
/*!40000 ALTER TABLE `server_battle_commands` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battle_commands` VALUES (23456,'breath_of_the_lion',0,1,0,31,17152,2,12,0,0.5,0,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,1,3,318771200,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23457,'voice_of_the_lion',0,1,0,31,17152,3,20,0,0,0,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,2,3,318775296,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23458,'breath_of_the_dragon',0,1,0,31,17152,2,12,0,0.666667,0.25,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,3,3,318779392,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23459,'voice_of_the_dragon',0,1,0,31,17152,1,22,15,2,0,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,4,3,318783488,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23460,'breath_of_the_ram',0,1,0,31,17152,2,12,0,0.666667,-0.25,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,5,3,318787584,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23461,'voice_of_the_ram',0,1,0,31,17152,1,10,0,2,0,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,6,3,318791680,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23462,'dissent_of_the_bat',0,1,0,31,17152,2,16,0,0.66667,0,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,7,3,318795776,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23463,'chaotic_chorus',0,1,0,31,17152,1,16,0,2,0,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,8,3,318799872,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (23464,'the_scorpions_sting',0,1,0,31,17152,2,12,0,0.5,1,1,100,1,0,0,0,0,0,10,2,0,0,0,11,3500,10,0,0,19,0,9,3,318803968,0,0,0,3,0,30301,2,2,9,1);
INSERT INTO `server_battle_commands` VALUES (27100,'second_wind',2,6,3,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,0,0,0,0,0,45,0,0,14,519,2,3,234889735,0,0,0,0,0,30320,3,3,13,0);
INSERT INTO `server_battle_commands` VALUES (27101,'blindside',2,14,3,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223237,60,1,0,0,60,0,0,14,635,2,3,234889851,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27102,'taunt',2,42,4,768,17152,0,0,0,0,0,0,100,1,0,0,15,0,0,10,2,223073,5,1,0,0,60,0,0,14,517,2,3,234889733,0,0,0,0,0,30335,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27103,'featherfoot',2,2,3,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223075,30,1,0,0,60,0,0,14,535,2,3,234889751,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27104,'fists_of_fire',2,34,4,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223209,4294967295,1,0,0,10,0,0,14,684,2,3,234889900,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27105,'fists_of_earth',2,22,4,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223210,4294967295,1,0,0,10,0,0,14,685,2,3,234889901,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27106,'hundred_fists',15,50,0,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223244,15,1,0,0,900,0,0,14,712,2,3,234889928,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27107,'spinning_heel',15,35,0,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223245,20,1,0,0,120,0,0,14,718,2,3,234889934,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27108,'shoulder_tackle',15,30,0,768,17152,0,0,0,0,0,0,100,1,0,0,15,0,0,10,2,223015,10,0.75,0,0,60,0,0,18,1048,205,3,302830616,0,0,0,0,0,30301,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27109,'fists_of_wind',15,40,0,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223211,4294967295,1,0,0,10,0,0,14,720,2,3,234889936,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27110,'pummel',2,1,1,768,17152,0,0,0,0,0,0,100,1,1,0,5,0,0,10,2,0,0,0,0,0,10,0,1000,18,1027,1,3,301995011,0,27111,27113,1,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27111,'concussive_blow',2,10,1,768,17152,0,0,0,0,0,0,100,1,4,0,5,0,0,10,2,223007,30,0,0,0,30,0,1500,18,20,3,3,302002196,0,27112,0,2,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27112,'simian_thrash',2,50,4,768,17152,0,0,0,0,0,0,100,9,0,0,5,0,0,10,2,0,0,0,0,0,80,0,2000,18,1003,202,3,302818283,0,0,0,3,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27113,'aura_pulse',2,38,4,768,17152,1,8,0,0,0,1,100,1,0,0,5,0,0,10,2,223003,30,0,0,0,40,0,1500,18,66,203,3,302821442,0,0,0,2,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27114,'pounce',2,4,4,768,17152,0,0,0,0,0,0,100,1,2,0,5,0,0,10,2,223015,10,0,0,0,20,0,1500,18,8,3,3,302002184,0,27115,27117,1,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27115,'demolish',2,30,1,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,0,0,0,0,0,30,0,1500,18,1028,2,3,301999108,0,27116,0,2,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27116,'howling_fist',2,46,4,768,17152,0,0,0,0,0,0,100,1,4,0,5,0,0,10,2,0,0,0,0,0,80,0,3000,18,1029,2,3,301999109,0,0,0,3,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27117,'sucker_punch',2,26,1,768,17152,0,0,0,0,0,0,100,1,4,0,5,0,0,10,2,0,0,0,0,0,15,0,1000,18,73,3,3,302002249,0,0,0,3,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27118,'dragon_kick',15,45,0,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,223013,10,0,0,0,60,0,2000,18,1041,204,3,302826513,0,0,0,0,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27119,'haymaker',2,18,4,768,17152,0,0,0,0,0,0,100,1,0,2,5,0,0,10,2,223015,10,0.75,0,0,5,0,250,18,23,201,3,302813207,0,0,0,0,0,30301,2,1,3,0);
INSERT INTO `server_battle_commands` VALUES (27140,'sentinel',3,22,3,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223062,15,1,0,0,90,0,0,14,526,2,3,234889742,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27141,'aegis_boon',3,6,8,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223058,30,1,0,0,60,0,0,14,583,21,3,234967623,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27142,'rampart',3,2,3,31,16445,0,8,0,0,0,1,100,1,0,0,0,0,0,10,2,223064,60,1,0,0,120,0,0,14,536,2,3,234889752,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27143,'tempered_will',3,42,8,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223068,20,1,0,0,180,0,0,14,515,2,3,234889731,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27144,'outmaneuver',3,34,8,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223236,30,1,0,0,90,0,0,14,512,21,3,234967552,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27145,'flash',3,14,3,768,17152,0,8,0,0,0,0,100,1,0,0,15,0,0,10,2,223007,10,0,0,0,30,0,0,14,696,2,3,234889912,0,0,0,0,0,30101,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27146,'cover',16,30,0,60,16412,0,0,0,0,0,1,100,1,0,0,15,0,0,10,2,223173,15,1,0,0,60,0,0,14,725,2,3,234889941,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27147,'divine_veil',16,35,0,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223248,20,1,0,0,60,0,0,14,713,2,3,234889929,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27148,'hallowed_ground',16,50,0,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223249,20,1,0,0,900,0,0,14,709,2,3,234889925,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27149,'holy_succor',16,40,0,53,16405,0,0,0,0,0,1,100,1,0,0,15,0,0,10,2,0,0,0,3,2000,10,100,0,1,701,1,3,16782013,0,0,0,0,0,30328,4,3,13,0);
INSERT INTO `server_battle_commands` VALUES (27150,'fast_blade',3,1,1,768,17152,0,0,0,0,0,0,100,1,1,0,5,0,0,10,2,0,0,0,0,0,10,0,1000,18,1023,1,3,301995007,0,27151,27152,1,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27151,'flat_blade',3,26,1,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,0,0,0,0,0,10,0,1500,18,1024,2,3,301999104,0,0,0,2,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27152,'savage_blade',3,10,1,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,0,0,0,0,0,30,0,1000,18,1025,1,3,301995009,0,27153,0,2,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27153,'goring_blade',3,50,8,768,17152,0,0,0,0,0,0,100,1,2,0,5,0,0,10,2,223206,30,0,0,0,60,0,3000,18,1026,301,3,303223810,0,0,0,3,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27154,'riot_blade',3,30,8,768,17152,0,0,0,0,0,0,100,1,2,0,15,0,0,10,2,223038,30,0,0,0,80,0,2000,18,75,2,3,301998155,0,27155,0,1,0,30301,2,1,1,1);
INSERT INTO `server_battle_commands` VALUES (27155,'rage_of_halone',3,46,8,768,17152,0,0,0,0,0,0,100,5,0,0,5,0,0,10,2,0,0,0,0,0,20,0,1500,18,1008,302,3,303227888,0,0,0,2,-40,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27156,'shield_bash',3,18,17,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,223015,5,0.75,0,0,30,0,250,18,5,26,3,302096389,0,0,0,0,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27157,'war_drum',3,38,24,768,17152,1,8,0,0,0,1,100,1,0,4,5,0,0,10,2,0,0,0,0,0,60,0,500,14,502,21,3,234967542,0,0,0,0,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27158,'phalanx',3,4,8,768,17152,0,0,0,0,0,1,100,1,0,4,5,0,0,10,2,0,0,0,0,0,5,0,250,18,32,1,3,301994016,0,27159,0,1,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27159,'spirits_within',16,45,0,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,0,0,0,0,0,60,0,3000,18,1044,304,3,303236116,0,0,0,2,50,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27180,'provoke',4,14,3,768,17152,0,0,0,0,0,0,100,1,0,0,15,0,0,10,2,223034,30,0,0,0,30,0,0,14,600,2,3,234889816,0,0,0,0,0,30101,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27181,'foresight',4,2,3,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223083,30,1,0,0,60,0,0,14,545,2,3,234889761,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27182,'bloodbath',4,6,3,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223081,30,1,0,0,60,0,0,14,581,2,3,234889797,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27183,'berserk',4,22,32,31,16415,0,0,0,0,0,1,100,1,0,0,0,0,0,10,2,223207,4294967295,1,0,0,10,0,0,14,682,2,3,234889898,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27184,'rampage',4,34,32,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223208,4294967295,1,0,0,10,0,0,14,546,2,3,234889762,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27185,'enduring_march',4,42,32,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223078,20,1,0,0,180,0,0,14,539,2,3,234889755,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27186,'vengeance',17,30,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223250,15,1,0,0,150,0,0,14,714,2,3,234889930,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27187,'antagonize',17,35,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223251,15,1,0,0,120,0,0,14,715,2,3,234889931,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27188,'collusion',17,40,0,60,16412,0,0,0,0,0,0,100,1,0,0,15,0,0,10,2,223097,15,1,0,0,90,0,0,14,711,2,3,234889927,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27189,'mighty_strikes',17,50,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223252,15,1,0,0,900,0,0,14,716,2,3,234889932,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27190,'heavy_swing',4,1,1,768,17152,0,0,0,0,0,0,100,1,1,0,5,0,0,10,2,0,0,0,0,0,10,0,1000,18,14,1,3,301993998,0,27191,0,1,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27191,'skull_sunder',4,10,1,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,0,0,0,0,0,30,0,1500,18,43,1,3,301994027,0,27192,0,2,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27192,'steel_cyclone',17,45,0,768,17152,1,8,0,0,0,1,100,1,0,0,5,0,0,10,2,223015,3,0,0,0,30,0,2000,18,1040,404,3,303645712,0,0,0,3,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27193,'brutal_swing',4,4,1,768,17152,0,0,0,0,0,0,100,1,4,0,5,0,0,10,2,0,0,0,0,0,20,0,1500,18,15,3,3,302002191,0,27194,0,1,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27194,'maim',4,26,1,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,0,0,0,0,0,30,0,1500,18,88,1,3,301994072,0,27195,0,2,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27195,'godsbane',4,50,32,768,17152,0,0,0,0,0,0,100,3,0,0,5,0,0,10,2,0,0,0,0,0,60,0,3000,18,1014,402,3,303637494,0,0,0,3,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27196,'path_of_the_storm',4,38,32,768,17152,0,0,0,0,0,0,100,1,2,0,5,0,0,10,2,228021,30,0,0,0,30,0,1500,18,44,401,3,303632428,0,27197,0,1,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27197,'whirlwind',4,46,32,768,17152,1,8,0,0,0,1,100,1,0,0,5,0,0,10,2,0,0,0,0,0,80,0,3000,18,1015,403,3,303641591,0,0,0,2,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27198,'fracture',4,18,32,768,17152,0,0,0,0,0,0,100,1,0,3,5,0,0,10,2,223013,8,0.75,0,0,40,0,500,18,42,3,3,302002218,0,0,0,0,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27199,'overpower',4,30,1,768,17152,2,8,0,0.5,0,1,100,1,0,3,8,0,0,10,2,0,0,0,0,0,5,0,250,18,89,1,3,301994073,0,0,0,0,0,30301,2,1,1,0);
INSERT INTO `server_battle_commands` VALUES (27220,'hawks_eye',7,6,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223106,15,1,0,0,90,0,0,14,516,2,3,234889732,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27221,'quelling_strike',7,22,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223104,30,1,0,0,60,0,0,14,614,2,3,234889830,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27222,'decoy',7,2,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223108,60,1,0,0,90,100,0,14,565,2,3,234889781,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27223,'chameleon',7,42,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,0,0,0,0,0,180,0,0,14,504,2,3,234889720,0,0,0,0,0,30101,3,0,0,0);
INSERT INTO `server_battle_commands` VALUES (27224,'barrage',7,34,64,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223220,60,1,0,0,90,0,0,14,683,2,3,234889899,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27225,'raging_strike',7,14,64,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223221,4294967295,1,0,0,10,0,0,14,632,2,3,234889848,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27226,'swiftsong',7,26,64,31,16445,1,20,0,0,0,1,100,1,0,0,0,0,0,10,2,223224,180,1,0,0,10,100,0,1,150,1,3,16781462,0,0,0,0,0,30328,4,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27227,'battle_voice',18,50,0,31,16445,1,20,0,0,0,1,100,1,0,0,0,0,0,10,2,223029,60,1,0,0,900,0,0,14,721,2,3,234889937,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27228,'heavy_shot',7,1,1,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,8,10,2,0,0,0,0,0,10,0,1000,18,1036,4,3,302007308,0,27229,27231,1,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27229,'leaden_arrow',7,10,1,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,228021,30,0.75,0,0,30,0,1500,18,1035,4,3,302007307,0,27230,0,2,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27230,'wide_volley',7,50,64,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,0,0,80,0,2000,18,18,703,3,304869394,0,0,0,3,-20,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27231,'quick_nock',7,38,64,768,17152,2,10,0,0.5,0,1,100,1,0,0,10,0,0,10,2,0,0,0,0,0,180,0,1000,18,1017,702,3,304866297,0,27232,0,2,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27232,'rain_of_death',18,45,0,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,223015,5,0.75,0,0,30,0,3000,18,1037,704,3,304874509,0,0,0,3,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27233,'piercing_arrow',7,4,1,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,8,10,2,0,0,0,0,0,20,0,1000,18,1038,1,3,301995022,0,27234,27236,1,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27234,'gloom_arrow',7,30,1,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223007,30,0,0,0,10,0,1000,18,1039,4,3,302007311,0,27235,0,2,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27235,'bloodletter',7,46,64,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223241,30,0.75,0,0,80,0,1500,18,53,701,3,304861237,0,0,0,3,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27236,'shadowbind',7,18,64,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,228011,15,0.9,0,0,40,0,250,18,17,4,3,302006289,0,0,0,2,0,30301,2,1,4,1);
INSERT INTO `server_battle_commands` VALUES (27237,'ballad_of_magi',18,30,0,31,16445,1,20,0,0,0,1,100,1,0,0,0,0,0,10,2,223254,180,1,8,3000,10,100,0,1,709,1,3,16782021,0,0,0,0,0,30328,4,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27238,'paeon_of_war',18,40,0,31,16445,1,20,0,0,0,1,100,1,0,0,0,0,0,10,2,223255,180,1,8,3000,10,50,1000,1,710,1,3,16782022,0,0,0,0,0,30328,4,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27239,'minuet_of_rigor',18,35,0,31,16445,1,20,0,0,0,1,100,1,0,0,0,0,0,10,2,223256,180,1,8,3000,10,100,0,1,711,1,3,16782023,0,0,0,0,0,30328,4,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27258,'refill',7,1,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,32613,3,0,0,0);
INSERT INTO `server_battle_commands` VALUES (27259,'light_shot',7,1,0,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,0,0,0,0,0,17,0,1,3,285216768,0,0,0,0,0,30301,3,1,0,1);
INSERT INTO `server_battle_commands` VALUES (27260,'invigorate',8,14,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223094,30,1,0,0,90,0,0,14,575,2,3,234889791,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27261,'power_surge',8,34,128,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223212,60,1,0,0,10,0,0,14,686,2,3,234889902,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27262,'life_surge',8,22,128,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223215,180,1,0,0,15,0,250,14,687,2,3,234889903,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27263,'dread_spike',8,42,128,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223218,30,1,0,0,120,0,0,14,686,2,3,234889902,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27264,'blood_for_blood',8,6,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223219,60,1,0,0,60,0,0,14,689,2,3,234889905,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27265,'keen_flurry',8,26,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223091,30,1,0,0,90,0,0,14,569,2,3,234889785,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27266,'jump',19,30,0,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,0,0,60,0,0,18,1045,804,3,305284117,0,0,0,0,0,30301,3,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27267,'elusive_jump',19,40,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,0,0,0,0,0,180,0,0,18,1046,806,3,305292310,0,0,0,0,0,30101,3,0,0,0);
INSERT INTO `server_battle_commands` VALUES (27268,'dragonfire_dive',19,50,0,768,17152,1,4,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,0,0,900,0,0,18,1045,804,3,305284117,0,0,0,0,0,30301,3,2,5,0);
INSERT INTO `server_battle_commands` VALUES (27269,'true_thrust',8,1,1,768,17152,0,0,0,0,0,0,100,1,1,0,5,0,0,10,2,0,0,0,0,0,10,0,1000,18,1030,2,3,301999110,0,27270,27273,1,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27270,'leg_sweep',8,30,1,768,17152,2,8,0,0.5,0,1,100,1,0,0,5,0,0,10,2,223015,8,0,0,0,30,0,1000,18,37,1,3,301994021,0,27271,0,2,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27271,'doom_spike',8,46,128,768,17152,3,5,0,0,0,1,100,1,0,0,5,0,0,10,2,0,0,0,0,0,60,0,3000,18,83,801,3,305270867,0,0,0,3,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27272,'disembowel',19,35,0,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,223005,15,0.75,0,0,30,0,750,18,1042,2,3,301999122,0,0,0,0,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27273,'heavy_thrust',8,10,1,768,17152,0,0,0,0,0,0,100,1,0,0,5,0,0,10,2,223015,4,0.75,0,0,20,0,1500,18,1031,1,3,301995015,0,0,0,0,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27274,'vorpal_thrust',8,2,1,768,17152,0,0,0,0,0,0,100,1,2,0,5,0,0,10,2,0,0,0,0,0,20,0,1500,18,1032,2,3,301999112,0,27275,0,1,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27275,'impulse_drive',8,18,1,768,17152,0,0,0,0,0,0,100,1,4,0,5,0,0,10,2,0,0,0,0,0,30,0,1500,18,1033,2,3,301999113,0,27276,27277,2,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27276,'chaos_thrust',8,50,128,768,17152,0,0,0,0,0,0,100,6,0,0,5,0,0,10,2,0,0,0,0,0,80,0,3000,18,40,802,3,305274920,0,0,0,3,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27277,'ring_of_talons',19,45,0,768,17152,1,8,0,0,0,1,100,1,0,0,5,0,0,10,2,0,0,0,0,0,60,0,2000,18,1009,803,3,305279985,0,0,0,3,0,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27278,'feint',8,4,1,768,17152,0,0,0,0,0,0,100,1,0,1,5,0,0,10,2,0,0,0,0,0,10,0,250,18,39,2,3,301998119,0,27272,0,1,100,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27279,'full_thrust',8,38,128,768,17152,0,0,0,0,0,0,100,1,0,1,5,0,0,10,2,0,0,0,0,0,30,0,250,18,1034,801,3,305271818,0,0,0,0,50,30301,2,1,2,0);
INSERT INTO `server_battle_commands` VALUES (27300,'dark_seal',22,14,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223229,30,1,0,0,90,0,0,14,518,2,3,234889734,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27301,'resonance',22,22,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223230,30,1,0,0,90,0,0,14,669,2,3,234889885,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27302,'excruciate',22,38,256,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223231,30,1,0,0,90,0,0,14,694,2,3,234889910,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27303,'necrogenesis',22,6,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223232,30,1,0,0,90,0,0,14,695,2,3,234889911,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27304,'parsimony',22,2,256,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223233,30,1,0,0,90,0,0,14,568,2,3,234889784,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27305,'convert',26,30,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,0,0,0,0,0,450,0,0,14,724,2,3,234889940,0,0,0,0,0,30101,3,0,0,0);
INSERT INTO `server_battle_commands` VALUES (27306,'sleep',22,42,256,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,228001,60,0.9,2,3000,0,75,0,1,651,1,3,16781963,0,0,0,0,0,30335,4,4,12,0);
INSERT INTO `server_battle_commands` VALUES (27307,'sanguine_rite',22,30,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223234,20,1,0,0,60,120,0,1,152,1,3,16781464,0,0,0,0,0,30328,4,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27308,'blizzard',22,4,256,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,228021,30,0.75,2,3000,10,90,0,1,502,1,3,16781814,0,0,0,0,0,30301,4,2,6,0);
INSERT INTO `server_battle_commands` VALUES (27309,'blizzara',22,26,256,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,228011,30,0.75,0,0,40,150,0,1,506,1,3,16781818,0,0,0,0,0,30301,4,2,6,0);
INSERT INTO `server_battle_commands` VALUES (27310,'fire',22,10,3,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,3000,8,105,0,1,501,1,3,16781813,0,27311,0,1,0,30301,4,2,5,0);
INSERT INTO `server_battle_commands` VALUES (27311,'fira',22,34,3,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,5000,16,180,0,1,504,1,3,16781816,0,27312,0,2,0,30301,4,2,5,0);
INSERT INTO `server_battle_commands` VALUES (27312,'firaga',22,50,256,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,8000,7,255,0,1,700,1,3,16782012,0,0,0,3,0,30301,4,2,5,0);
INSERT INTO `server_battle_commands` VALUES (27313,'thunder',22,1,3,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,2000,6,75,0,1,503,1,3,16781815,0,27314,0,1,0,30301,4,2,9,0);
INSERT INTO `server_battle_commands` VALUES (27314,'thundara',22,18,256,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223015,4,0.75,0,0,30,135,0,1,508,1,3,16781820,0,27315,27316,2,0,30301,4,2,9,0);
INSERT INTO `server_battle_commands` VALUES (27315,'thundaga',22,46,256,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,5000,45,195,0,1,509,1,3,16781821,0,0,0,3,0,30301,4,2,9,0);
INSERT INTO `server_battle_commands` VALUES (27316,'burst',26,50,0,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,4000,900,90,0,1,705,1,3,16782017,0,0,0,3,0,30301,4,2,9,0);
INSERT INTO `server_battle_commands` VALUES (27317,'sleepga',26,45,0,768,17152,1,8,0,0,0,0,100,1,0,0,20,0,0,10,2,228001,60,0.9,2,4000,0,100,0,1,704,1,3,16782016,0,0,0,0,0,30335,4,4,12,0);
INSERT INTO `server_battle_commands` VALUES (27318,'flare',26,40,0,31,17152,1,8,0,0,0,1,100,1,0,0,20,0,0,10,2,223262,30,0.75,2,8000,120,200,0,1,706,1,3,16782018,0,0,0,0,0,30301,4,2,5,0);
INSERT INTO `server_battle_commands` VALUES (27319,'freeze',26,35,0,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,2,5000,120,120,0,1,707,1,3,16782019,0,0,0,0,0,30301,4,2,6,0);
INSERT INTO `server_battle_commands` VALUES (27340,'sacred_prism',23,34,3,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223225,60,1,0,0,90,0,0,14,690,2,3,234889906,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27341,'shroud_of_saints',23,38,512,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223226,20,1,0,0,180,0,0,14,691,2,3,234889907,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27342,'cleric_stance',23,10,512,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223227,4294967295,1,0,0,30,0,0,14,692,2,3,234889908,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27343,'blissful_mind',23,14,512,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223228,4294967295,1,0,0,30,0,0,14,693,2,3,234889909,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27344,'presence_of_mind',27,30,0,31,16415,0,0,0,0,0,0,100,1,0,0,0,0,0,10,2,223116,30,1,0,0,300,0,0,14,722,2,3,234889938,0,0,0,0,0,30328,3,4,0,0);
INSERT INTO `server_battle_commands` VALUES (27345,'benediction',27,50,0,31,16445,1,20,0,0,0,1,100,1,0,0,0,0,0,10,2,0,0,0,0,0,900,0,0,14,723,2,3,234889939,0,0,0,0,0,30320,3,3,13,0);
INSERT INTO `server_battle_commands` VALUES (27346,'cure',23,2,3,53,16393,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,3,2000,5,40,0,1,101,1,3,16781413,0,0,0,0,0,30320,4,3,13,0);
INSERT INTO `server_battle_commands` VALUES (27347,'cura',23,30,512,53,16393,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,3,2000,5,100,0,1,103,1,3,16781415,0,0,0,0,0,30320,4,3,13,0);
INSERT INTO `server_battle_commands` VALUES (27348,'curaga',23,46,512,61,16445,1,15,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,3,3000,10,150,0,1,146,1,3,16781458,0,0,0,0,0,30320,4,3,13,0);
INSERT INTO `server_battle_commands` VALUES (27349,'raise',23,18,512,12340,28724,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,3,10000,300,150,0,1,148,1,3,16781460,0,0,0,0,0,30101,4,4,11,0);
INSERT INTO `server_battle_commands` VALUES (27350,'stoneskin',23,26,3,53,16393,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223133,300,1,3,3000,30,50,0,1,133,1,3,16781445,0,0,0,0,0,30328,4,4,8,0);
INSERT INTO `server_battle_commands` VALUES (27351,'protect',23,6,3,53,49205,1,20,0,0,0,0,100,1,0,0,20,0,0,10,2,223129,300,1,3,3000,30,80,0,1,1085,1,3,16782397,0,0,0,0,0,30328,4,4,11,0);
INSERT INTO `server_battle_commands` VALUES (27352,'repose',23,50,0,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,228001,60,0.9,3,3000,0,80,0,1,151,1,3,16781463,0,0,0,0,0,30328,4,4,10,0);
INSERT INTO `server_battle_commands` VALUES (27353,'aero',23,4,3,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223235,20,0.75,3,3000,6,75,0,1,510,1,3,16781822,0,27354,0,1,0,30301,4,2,7,0);
INSERT INTO `server_battle_commands` VALUES (27354,'aerora',23,42,512,768,17152,1,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,3,4000,20,150,0,1,511,1,3,16781823,0,0,0,2,0,30301,4,2,7,0);
INSERT INTO `server_battle_commands` VALUES (27355,'stone',23,1,3,768,17152,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223243,10,0.75,3,2000,6,75,0,1,513,1,3,16781825,0,27356,0,1,0,30301,4,2,8,0);
INSERT INTO `server_battle_commands` VALUES (27356,'stonera',23,22,512,768,17152,1,0,0,0,0,0,100,1,0,0,20,0,0,10,2,228021,30,0.75,3,3000,30,150,0,1,514,1,3,16781826,0,0,0,2,0,30301,4,2,8,0);
INSERT INTO `server_battle_commands` VALUES (27357,'esuna',27,40,0,53,16405,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,0,0,0,3,2000,10,40,0,1,702,1,3,16782014,0,0,0,0,0,30329,4,0,13,0);
INSERT INTO `server_battle_commands` VALUES (27358,'regen',27,35,0,53,16405,0,0,0,0,0,0,100,1,0,0,20,0,0,10,2,223180,45,1,3,2000,5,20,0,1,703,1,3,16782015,0,0,0,0,0,30328,4,4,13,0);
INSERT INTO `server_battle_commands` VALUES (27359,'holy',27,45,0,31,17152,1,8,0,0,0,1,100,1,0,0,0,0,0,10,2,228011,10,0.9,0,0,300,100,0,1,708,1,3,16782020,0,0,0,0,0,30301,4,2,11,0);
/*!40000 ALTER TABLE `server_battle_commands` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-06-05 18:56:04

View file

@ -0,0 +1,133 @@
-- MySQL dump 10.13 Distrib 5.7.23, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.23
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battle_traits`
--
DROP TABLE IF EXISTS `server_battle_traits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battle_traits` (
`id` smallint(6) NOT NULL,
`name` varchar(50) NOT NULL,
`classJob` tinyint(4) NOT NULL,
`lvl` tinyint(4) NOT NULL,
`modifier` int(11) NOT NULL DEFAULT '0',
`bonus` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battle_traits`
--
LOCK TABLES `server_battle_traits` WRITE;
/*!40000 ALTER TABLE `server_battle_traits` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battle_traits` VALUES (27240,'enhanced_hawks_eye',7,28,0,0);
INSERT INTO `server_battle_traits` VALUES (27242,'enhanced_barrage',7,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27241,'enhanced_quelling_strike',7,32,0,0);
INSERT INTO `server_battle_traits` VALUES (27243,'enhanced_raging_strike',7,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27244,'enhanced_decoy',7,16,0,0);
INSERT INTO `server_battle_traits` VALUES (27245,'swift_chameleon',7,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27246,'enhanced_physical_crit_accuracy',7,40,19,10);
INSERT INTO `server_battle_traits` VALUES (27247,'enhanced_physical_crit_evasion',7,20,20,10);
INSERT INTO `server_battle_traits` VALUES (27248,'enhanced_physical_evasion',7,12,16,8);
INSERT INTO `server_battle_traits` VALUES (27249,'enhanced_physical_accuracy',7,8,15,8);
INSERT INTO `server_battle_traits` VALUES (27250,'enhanced_physical_accuracy_ii',7,24,15,10);
INSERT INTO `server_battle_traits` VALUES (27120,'enhanced_second_wind',2,20,0,0);
INSERT INTO `server_battle_traits` VALUES (27121,'enhanced_blindside',2,24,0,0);
INSERT INTO `server_battle_traits` VALUES (27122,'swift_taunt',2,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27123,'enhanced_featherfoot',2,28,0,0);
INSERT INTO `server_battle_traits` VALUES (27124,'enhanced_fists_of_fire',2,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27125,'enhanced_fists_of_earth',2,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27126,'enhanced_physical_accuracy',2,16,15,8);
INSERT INTO `server_battle_traits` VALUES (27127,'enhanced_physical_attack',2,8,17,8);
INSERT INTO `server_battle_traits` VALUES (27128,'enhanced_physical_attack_ii',2,40,17,10);
INSERT INTO `server_battle_traits` VALUES (27129,'enhanced_evasion',2,12,16,8);
INSERT INTO `server_battle_traits` VALUES (27130,'enhanced_physical_crit_damage',2,32,21,10);
INSERT INTO `server_battle_traits` VALUES (27160,'enhanced_sentinel',3,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27161,'enhanced_flash',3,28,0,0);
INSERT INTO `server_battle_traits` VALUES (27162,'enhanced_flash_ii',3,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27163,'enhanced_rampart',3,12,0,0);
INSERT INTO `server_battle_traits` VALUES (27164,'swift_aegis_boon',3,20,0,0);
INSERT INTO `server_battle_traits` VALUES (27165,'enhanced_outmaneuver',3,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27167,'enhanced_block_rate',3,16,41,10);
INSERT INTO `server_battle_traits` VALUES (27166,'enhanced_physical_crit_resilience',3,32,22,10);
INSERT INTO `server_battle_traits` VALUES (27168,'enhanced_physical_defense',3,8,18,10);
INSERT INTO `server_battle_traits` VALUES (27169,'enhanced_physical_defense_ii',3,24,18,10);
INSERT INTO `server_battle_traits` VALUES (27170,'enhanced_physical_defense_iii',3,40,18,12);
INSERT INTO `server_battle_traits` VALUES (27200,'enhanced_provoke',4,28,0,0);
INSERT INTO `server_battle_traits` VALUES (27201,'swift_foresight',4,20,0,0);
INSERT INTO `server_battle_traits` VALUES (27202,'swift_bloodbath',4,16,0,0);
INSERT INTO `server_battle_traits` VALUES (27203,'enhanced_enduring_march',4,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27204,'enhanced_rampage',4,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27205,'enhanced_berserk',4,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27206,'enhanced_physical_crit_evasion',4,32,20,10);
INSERT INTO `server_battle_traits` VALUES (27207,'enhanced_parry',4,24,39,8);
INSERT INTO `server_battle_traits` VALUES (27208,'enhanced_physical_defense',4,12,18,8);
INSERT INTO `server_battle_traits` VALUES (27209,'enhanced_physical_defense_ii',4,40,18,10);
INSERT INTO `server_battle_traits` VALUES (27210,'enhanced_physical_attack_power',4,8,17,8);
INSERT INTO `server_battle_traits` VALUES (27280,'enhanced_invigorate',8,28,0,0);
INSERT INTO `server_battle_traits` VALUES (27281,'enhanced_power_surge',8,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27282,'enhanced_life_surge',8,32,0,0);
INSERT INTO `server_battle_traits` VALUES (27283,'enhanced_blood_for_blood',8,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27284,'swift_blood_for_blood',8,16,0,0);
INSERT INTO `server_battle_traits` VALUES (27285,'enhanced_keen_flurry',8,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27286,'store_tp',8,12,50,50);
INSERT INTO `server_battle_traits` VALUES (27287,'enhanced_physical_crit_accuracy',8,24,19,10);
INSERT INTO `server_battle_traits` VALUES (27288,'enhanced_physical_attack_power',8,8,17,8);
INSERT INTO `server_battle_traits` VALUES (27289,'enhanced_physical_attack_power_ii',8,20,17,10);
INSERT INTO `server_battle_traits` VALUES (27290,'enhanced_physical_attack_power_iii',8,40,17,10);
INSERT INTO `server_battle_traits` VALUES (27320,'swift_dark_seal',22,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27321,'enhanced_excruciate',22,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27322,'swift_necrogenesis',22,24,0,0);
INSERT INTO `server_battle_traits` VALUES (27323,'enhanced_parsimony',22,16,0,0);
INSERT INTO `server_battle_traits` VALUES (27324,'enhanced_sanguine_rite',22,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27325,'enhanced_enfeebling_magic',22,12,26,8);
INSERT INTO `server_battle_traits` VALUES (27326,'enhanced_enfeebling_magic_ii',22,28,26,10);
INSERT INTO `server_battle_traits` VALUES (27327,'enhanced_magic_potency',22,8,23,8);
INSERT INTO `server_battle_traits` VALUES (27328,'enhanced_magic_potency_ii',22,28,23,10);
INSERT INTO `server_battle_traits` VALUES (27329,'enhanced_magic_crit_potency',22,40,37,10);
INSERT INTO `server_battle_traits` VALUES (27330,'auto-refresh',22,20,49,3);
INSERT INTO `server_battle_traits` VALUES (27360,'swift_sacred_prism',23,40,0,0);
INSERT INTO `server_battle_traits` VALUES (27361,'swift_shroud_of_saints',23,44,0,0);
INSERT INTO `server_battle_traits` VALUES (27362,'enhanced_blissful_mind',23,32,0,0);
INSERT INTO `server_battle_traits` VALUES (27363,'enhanced_raise',23,48,0,0);
INSERT INTO `server_battle_traits` VALUES (27364,'enhanced_stoneskin',23,36,0,0);
INSERT INTO `server_battle_traits` VALUES (27365,'enhanced_protect',23,24,0,0);
INSERT INTO `server_battle_traits` VALUES (27366,'greater_enhancing_magic',23,12,25,8);
INSERT INTO `server_battle_traits` VALUES (27367,'greater_healing',23,8,24,8);
INSERT INTO `server_battle_traits` VALUES (27368,'greater_healing_ii',23,18,24,10);
INSERT INTO `server_battle_traits` VALUES (27369,'enhanced_magic_accuracy',23,16,27,8);
INSERT INTO `server_battle_traits` VALUES (27370,'auto-refresh',23,20,49,3);
/*!40000 ALTER TABLE `server_battle_traits` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-06-01 21:15:51

View file

@ -0,0 +1,146 @@
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_genus`
--
DROP TABLE IF EXISTS `server_battlenpc_genus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_genus` (
`genusId` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`modelSize` tinyint(3) unsigned NOT NULL DEFAULT '1',
`speed` tinyint(3) unsigned NOT NULL DEFAULT '0',
`kindredId` int(11) unsigned NOT NULL DEFAULT '0',
`kindredName` varchar(255) NOT NULL DEFAULT 'Unknown',
`detection` smallint(5) unsigned NOT NULL DEFAULT '0',
`hpp` smallint(5) unsigned NOT NULL DEFAULT '100',
`mpp` smallint(5) unsigned NOT NULL DEFAULT '100',
`tpp` smallint(5) unsigned NOT NULL DEFAULT '100',
`str` smallint(4) unsigned NOT NULL DEFAULT '1',
`vit` smallint(4) unsigned NOT NULL DEFAULT '1',
`dex` smallint(4) unsigned NOT NULL DEFAULT '1',
`int` smallint(4) unsigned NOT NULL DEFAULT '1',
`mnd` smallint(4) unsigned NOT NULL DEFAULT '1',
`pie` smallint(4) unsigned NOT NULL DEFAULT '1',
`att` smallint(4) unsigned NOT NULL DEFAULT '1',
`acc` smallint(4) unsigned NOT NULL DEFAULT '1',
`def` smallint(4) unsigned NOT NULL DEFAULT '1',
`eva` smallint(4) unsigned NOT NULL DEFAULT '1',
`slash` float NOT NULL DEFAULT '1',
`pierce` float NOT NULL DEFAULT '1',
`h2h` float NOT NULL DEFAULT '1',
`blunt` float NOT NULL DEFAULT '1',
`fire` float NOT NULL DEFAULT '1',
`ice` float NOT NULL DEFAULT '1',
`wind` float NOT NULL DEFAULT '1',
`lightning` float NOT NULL DEFAULT '1',
`earth` float NOT NULL DEFAULT '1',
`water` float NOT NULL DEFAULT '1',
`element` tinyint(4) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`genusId`)
) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_genus`
--
LOCK TABLES `server_battlenpc_genus` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_genus` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battlenpc_genus` VALUES (1,'Aldgoat',1,8,1,'Beast',1,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (2,'Antelope',1,8,1,'Beast',1,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (3,'Wolf',1,8,1,'Beast',2,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (4,'Opo-opo',1,8,1,'Beast',1,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (5,'Coeurl',1,8,1,'Beast',15,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (6,'Goobbue',1,8,1,'Beast',4,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (7,'Sheep',1,8,1,'Beast',1,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (8,'Buffalo',1,8,1,'Beast',4,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (9,'Boar',1,8,1,'Beast',2,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (10,'Moon-Mouse?',1,8,1,'Beast',2,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (11,'Mole',1,8,1,'Beast',4,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (12,'Rodent',1,8,1,'Beast',2,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (13,'Cactuar',1,8,2,'Plantoid',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (14,'Funguar',1,8,2,'Plantoid',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (15,'Flying-trap',1,8,2,'Plantoid',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (16,'Morbol',1,8,2,'Plantoid',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (17,'Orobon',1,8,3,'Aquan',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (18,'Gigantoad',1,8,3,'Aquan',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (19,'Salamander',1,8,3,'Aquan',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (20,'Jelly-fish',1,8,3,'Aquan',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (21,'Slug',1,8,3,'Aquan',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (22,'Megalo-crab',1,8,3,'Aquan',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (23,'Amaalja',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (24,'Ixal',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (25,'Qiqirn',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (26,'Goblin',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (27,'Kobold',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (28,'Sylph',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (29,'Person',1,8,4,'Spoken',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (30,'Drake',1,8,5,'Reptilian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (31,'Basilisk',1,8,5,'Reptilian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (32,'Raptor',1,8,5,'Reptilian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (33,'Ant-ring',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (34,'Swarm',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (35,'Diremite',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (36,'Chigoe',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (37,'Gnat',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (38,'Beetle',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (39,'Yarzon',1,8,6,'Insect',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (40,'Apkallu',1,8,7,'Avian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (41,'Vulture',1,8,7,'Avian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (42,'Dodo',1,8,7,'Avian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (43,'Bat',1,8,7,'Avian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (44,'Hippogryph',1,8,7,'Avian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (45,'Puk',1,8,7,'Avian',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (46,'Ghost',1,8,8,'Undead',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (47,'The-Damned',1,8,8,'Undead',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (48,'Wight',1,8,8,'Undead',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (49,'Coblyn',1,8,9,'Cursed',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (50,'Spriggan',1,8,9,'Cursed',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (51,'Ahriman',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (52,'Imp',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (53,'Will-O-Wisp',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (54,'Fire-Elemental',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (55,'Water-Elemental',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (56,'Earth-Elemental',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (57,'Lightning-Elemental',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (58,'Ice-Elemental',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (59,'Wind-Elemental',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (60,'Ogre',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (61,'Phurble',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (62,'Plasmoid',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (63,'Flan',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (64,'Bomb',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
INSERT INTO `server_battlenpc_genus` VALUES (65,'Grenade',1,8,10,'Voidsent',0,100,100,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0);
/*!40000 ALTER TABLE `server_battlenpc_genus` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-10-11 14:48:52

View file

@ -0,0 +1,53 @@
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_genus_mods`
--
DROP TABLE IF EXISTS `server_battlenpc_genus_mods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_genus_mods` (
`genusId` int(10) unsigned NOT NULL,
`modId` smallint(5) unsigned NOT NULL,
`modVal` bigint(20) NOT NULL,
`isMobMod` tinyint(1) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_genus_mods`
--
LOCK TABLES `server_battlenpc_genus_mods` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_genus_mods` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `server_battlenpc_genus_mods` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-09-16 2:43:01

View file

@ -0,0 +1,70 @@
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_groups`
--
DROP TABLE IF EXISTS `server_battlenpc_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_groups` (
`groupId` int(10) unsigned NOT NULL DEFAULT '0',
`poolId` int(10) unsigned NOT NULL DEFAULT '0',
`scriptName` varchar(50) NOT NULL,
`minLevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
`maxLevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
`respawnTime` int(10) unsigned NOT NULL DEFAULT '10',
`hp` int(10) unsigned NOT NULL DEFAULT '0',
`mp` int(10) unsigned NOT NULL DEFAULT '0',
`dropListId` int(10) unsigned NOT NULL DEFAULT '0',
`allegiance` tinyint(3) unsigned NOT NULL DEFAULT '0',
`spawnType` smallint(5) unsigned NOT NULL DEFAULT '0',
`animationId` int(10) unsigned NOT NULL DEFAULT '0',
`actorState` smallint(5) unsigned NOT NULL DEFAULT '0',
`privateAreaName` varchar(32) NOT NULL DEFAULT '',
`privateAreaLevel` int(11) NOT NULL DEFAULT '0',
`zoneId` smallint(3) unsigned NOT NULL,
PRIMARY KEY (`groupId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_groups`
--
LOCK TABLES `server_battlenpc_groups` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_groups` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battlenpc_groups` VALUES (1,1,'wharf_rat',1,1,10,0,0,0,0,0,0,0,'',0,170);
INSERT INTO `server_battlenpc_groups` VALUES (2,2,'bloodthirsty_wolf',1,1,0,0,0,0,0,1,0,0,'',0,166);
INSERT INTO `server_battlenpc_groups` VALUES (3,3,'yda',1,1,0,0,0,0,1,1,0,0,'',0,166);
INSERT INTO `server_battlenpc_groups` VALUES (4,4,'papalymo',1,1,0,0,0,0,1,1,0,0,'',0,166);
/*!40000 ALTER TABLE `server_battlenpc_groups` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-10-11 14:44:48

View file

@ -0,0 +1,61 @@
-- MySQL dump 10.13 Distrib 5.7.11, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.11
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_pool_mods`
--
DROP TABLE IF EXISTS `server_battlenpc_pool_mods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_pool_mods` (
`poolId` int(10) unsigned NOT NULL,
`modId` smallint(5) unsigned NOT NULL,
`modVal` bigint(20) NOT NULL,
`isMobMod` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`poolId`,`modId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_pool_mods`
--
LOCK TABLES `server_battlenpc_pool_mods` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_pool_mods` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battlenpc_pool_mods` VALUES (2,2,3,1);
INSERT INTO `server_battlenpc_pool_mods` VALUES (2,3,3,1);
INSERT INTO `server_battlenpc_pool_mods` VALUES (2,24,0,1);
INSERT INTO `server_battlenpc_pool_mods` VALUES (3,24,0,1);
INSERT INTO `server_battlenpc_pool_mods` VALUES (3,49,1,0);
INSERT INTO `server_battlenpc_pool_mods` VALUES (4,24,0,1);
INSERT INTO `server_battlenpc_pool_mods` VALUES (4,49,1,0);
/*!40000 ALTER TABLE `server_battlenpc_pool_mods` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-04-18 14:54:09

View file

@ -0,0 +1,67 @@
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_pools`
--
DROP TABLE IF EXISTS `server_battlenpc_pools`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_pools` (
`poolId` int(10) unsigned NOT NULL,
`actorClassId` int(10) unsigned NOT NULL,
`name` varchar(50) NOT NULL,
`genusId` int(10) unsigned NOT NULL,
`currentJob` tinyint(3) unsigned NOT NULL DEFAULT '0',
`combatSkill` tinyint(3) unsigned NOT NULL,
`combatDelay` smallint(5) unsigned NOT NULL,
`combatDmgMult` float unsigned NOT NULL DEFAULT '1',
`aggroType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`immunity` int(10) unsigned NOT NULL DEFAULT '0',
`linkType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`spellListId` int(10) unsigned NOT NULL DEFAULT '0',
`skillListId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`poolId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_pools`
--
LOCK TABLES `server_battlenpc_pools` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_pools` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battlenpc_pools` VALUES (1,2104001,'wharf_rat',12,0,1,4200,1,0,0,0,0,0);
INSERT INTO `server_battlenpc_pools` VALUES (2,2201407,'bloodthirsty_wolf',3,0,1,4200,1,0,0,0,0,0);
INSERT INTO `server_battlenpc_pools` VALUES (3,2290005,'yda',29,2,1,4200,1,0,0,0,0,0);
INSERT INTO `server_battlenpc_pools` VALUES (4,2290006,'papalymo',29,22,1,4200,1,0,0,0,0,0);
/*!40000 ALTER TABLE `server_battlenpc_pools` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-10-11 14:47:40

View file

@ -0,0 +1,21 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 5/1/2017 10:28:15 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_battlenpc_skill_list
-- ----------------------------
DROP TABLE IF EXISTS `server_battlenpc_skill_list`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_skill_list` (
`skillListId` int(10) unsigned NOT NULL DEFAULT '0',
`skillId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`skillListId`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

View file

@ -0,0 +1,64 @@
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_spawn_locations`
--
DROP TABLE IF EXISTS `server_battlenpc_spawn_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_spawn_locations` (
`bnpcId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`customDisplayName` varchar(32) NOT NULL DEFAULT '',
`groupId` int(10) unsigned NOT NULL,
`positionX` float NOT NULL,
`positionY` float NOT NULL,
`positionZ` float NOT NULL,
`rotation` float NOT NULL,
PRIMARY KEY (`bnpcId`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_spawn_locations`
--
LOCK TABLES `server_battlenpc_spawn_locations` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_spawn_locations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battlenpc_spawn_locations` VALUES (1,'test',1,25.584,200,-450,-2.514);
INSERT INTO `server_battlenpc_spawn_locations` VALUES (2,'test',1,20,200,-444,-3.14);
INSERT INTO `server_battlenpc_spawn_locations` VALUES (3,'bloodthirsty_wolf',2,374.427,4.4,-698.711,-1.942);
INSERT INTO `server_battlenpc_spawn_locations` VALUES (4,'bloodthirsty_wolf',2,375.377,4.4,-700.247,-1.992);
INSERT INTO `server_battlenpc_spawn_locations` VALUES (5,'bloodthirsty_wolf',2,375.125,4.4,-703.591,-1.54);
INSERT INTO `server_battlenpc_spawn_locations` VALUES (6,'yda',3,365.266,4.122,-700.73,1.5659);
INSERT INTO `server_battlenpc_spawn_locations` VALUES (7,'papalymo',4,365.89,4.0943,-706.72,-0.718);
/*!40000 ALTER TABLE `server_battlenpc_spawn_locations` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-10-11 14:47:29

View file

@ -0,0 +1,56 @@
-- MySQL dump 10.13 Distrib 5.7.11, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.11
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_battlenpc_spawn_mods`
--
DROP TABLE IF EXISTS `server_battlenpc_spawn_mods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_spawn_mods` (
`bnpcId` int(10) unsigned NOT NULL,
`modId` smallint(5) unsigned NOT NULL,
`modVal` bigint(20) NOT NULL,
`isMobMod` tinyint(1) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_battlenpc_spawn_mods`
--
LOCK TABLES `server_battlenpc_spawn_mods` WRITE;
/*!40000 ALTER TABLE `server_battlenpc_spawn_mods` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_battlenpc_spawn_mods` VALUES (3,25,30,1);
INSERT INTO `server_battlenpc_spawn_mods` VALUES (4,25,35,1);
INSERT INTO `server_battlenpc_spawn_mods` VALUES (5,25,40,1);
/*!40000 ALTER TABLE `server_battlenpc_spawn_mods` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-02-15 0:04:49

View file

@ -0,0 +1,21 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 5/1/2017 10:28:15 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_battlenpc_spell_list
-- ----------------------------
DROP TABLE IF EXISTS `server_battlenpc_spell_list`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_battlenpc_spell_list` (
`spellListId` int(10) unsigned NOT NULL DEFAULT '0',
`spellId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`spellListId`, `spellId`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

25
data/sql/server_items.sql Normal file
View file

@ -0,0 +1,25 @@
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.6.17 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 10.1.0.5464
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table ffxiv_server.server_items
CREATE TABLE IF NOT EXISTS `server_items` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`itemId` int(10) unsigned NOT NULL,
`quantity` int(10) unsigned NOT NULL DEFAULT '0',
`quality` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=150 DEFAULT CHARSET=utf8;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

View file

@ -0,0 +1,29 @@
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.6.17 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 10.1.0.5464
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table ffxiv_server.server_items_dealing
CREATE TABLE IF NOT EXISTS `server_items_dealing` (
`id` bigint(20) unsigned NOT NULL,
`dealingValue` tinyint(3) unsigned NOT NULL DEFAULT '0',
`dealingMode` tinyint(3) unsigned NOT NULL DEFAULT '0',
`dealingAttached1` int(11) DEFAULT '0',
`dealingAttached2` int(11) NOT NULL DEFAULT '0',
`dealingAttached3` int(11) NOT NULL DEFAULT '0',
`dealingTag` tinyint(3) unsigned NOT NULL DEFAULT '0',
`bazaarMode` tinyint(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

View file

@ -0,0 +1,36 @@
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 5.6.17 - MySQL Community Server (GPL)
-- Server OS: Win64
-- HeidiSQL Version: 10.1.0.5464
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping structure for table ffxiv_server.server_items_modifiers
CREATE TABLE IF NOT EXISTS `server_items_modifiers` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`durability` mediumint(8) unsigned NOT NULL DEFAULT '0',
`mainQuality` tinyint(3) unsigned NOT NULL DEFAULT '0',
`subQuality1` tinyint(3) unsigned NOT NULL DEFAULT '0',
`subQuality2` tinyint(3) unsigned NOT NULL DEFAULT '0',
`subQuality3` tinyint(3) unsigned NOT NULL DEFAULT '0',
`param1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`param2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`param3` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spiritbind` smallint(5) unsigned NOT NULL DEFAULT '0',
`materia1` smallint(5) unsigned NOT NULL DEFAULT '0',
`materia2` smallint(5) unsigned NOT NULL DEFAULT '0',
`materia3` smallint(5) unsigned NOT NULL DEFAULT '0',
`materia4` smallint(5) unsigned NOT NULL DEFAULT '0',
`materia5` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=latin1;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

View file

@ -0,0 +1,25 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 4/15/2017 4:38:26 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_linkshells
-- ----------------------------
CREATE TABLE `server_linkshells` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`crestIcon` smallint(5) unsigned NOT NULL,
`master` int(10) unsigned NOT NULL DEFAULT '0',
`rank` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records
-- ----------------------------

View file

@ -0,0 +1,23 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 9/9/2017 2:30:21 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_retainers
-- ----------------------------
CREATE TABLE `server_retainers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`actorClassId` int(10) unsigned NOT NULL,
`cdIDOffset` tinyint(3) unsigned NOT NULL DEFAULT '0',
`placeName` smallint(5) unsigned NOT NULL,
`conditions` tinyint(3) unsigned NOT NULL DEFAULT '0',
`level` tinyint(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

View file

@ -0,0 +1,53 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 8/14/2016 9:43:11 AM
*/
SET FOREIGN_KEY_CHECKS = 0;
SET autocommit = 0;
-- ----------------------------
-- Table structure for server_seamless_zonechange_bounds
-- ----------------------------
CREATE TABLE `server_seamless_zonechange_bounds` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`regionId` int(10) unsigned NOT NULL,
`zoneId1` int(10) unsigned NOT NULL,
`zoneId2` int(10) unsigned NOT NULL,
`zone1_boundingbox_x1` float NOT NULL,
`zone1_boundingbox_y1` float NOT NULL,
`zone1_boundingbox_x2` float NOT NULL,
`zone1_boundingbox_y2` float NOT NULL,
`zone2_boundingbox_x1` float NOT NULL,
`zone2_boundingbox_x2` float NOT NULL,
`zone2_boundingbox_y1` float NOT NULL,
`zone2_boundingbox_y2` float NOT NULL,
`merge_boundingbox_x1` float NOT NULL,
`merge_boundingbox_y1` float NOT NULL,
`merge_boundingbox_x2` float NOT NULL,
`merge_boundingbox_y2` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('1', '103', '155', '206', '115', '-1219', '55', '-1217', '33', '95', '-1279', '-1261', '55', '-1219', '95', '-1261');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('2', '103', '155', '150', '255', '-1139', '304', '-1125', '304', '338', '-1066', '-1046', '255', '-1125', '338', '-1066');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('3', '101', '133', '230', '-457', '131', '-436', '142', '-460', '-439', '92', '100', '-454', '101', '-439', '128');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('4', '101', '133', '230', '-486', '228', '-501', '218', '-482', '-503', '255', '242', '-490', '238', '-501', '229');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('5', '101', '133', '128', '-85', '165', '-79', '185', '-51', '-47', '149', '167', '-71', '160', '-69', '174');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('6', '101', '133', '230', '-483', '200', '-496', '181', '-506', '-514', '206', '177', '-500', '198', '-505', '185');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('7', '104', '170', '209', '87', '178', '110', '189', '89', '108', '142', '150', '94', '158', '108', '167');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('8', '104', '175', '209', '-134', '84', '-95', '92', '-120', '-82', '139', '143', '-120', '125', '-96', '124');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('9', '104', '170', '175', '-70', '-47', '-47', '-17', '-117', '-108', '-43', '-28', '-99', '-43', '-86', '-28');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('10', '104', '170', '175', '-39', '-33', '-24', '-9', '22', '23', '-7', '22', '-7', '-26', '-1', '-4');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('11', '104', '175', '209', '-243', '82', '-208', '107', '-264', '-230', '138', '173', '-254', '109', '-220', '128');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('12', '104', '175', '209', '0', '173', '24', '179', '-23', '9', '204', '232', '-6', '185', '13', '201');
INSERT INTO `server_seamless_zonechange_bounds` VALUES ('13', '104', '175', '209', '-20', '99', '5', '119', '-57', '-31', '124', '145', '-41', '115', '-15', '127');
COMMIT;

View file

@ -0,0 +1,51 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_sessions`
--
DROP TABLE IF EXISTS `server_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_sessions` (
`id` char(255) NOT NULL,
`characterId` int(11) NOT NULL,
`actorId` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_sessions`
--
LOCK TABLES `server_sessions` WRITE;
/*!40000 ALTER TABLE `server_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `server_sessions` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:54

View file

@ -0,0 +1,974 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 9/9/2017 2:33:14 PM
*/
DROP TABLE IF EXISTS `server_spawn_locations`;
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_spawn_locations
-- ----------------------------
CREATE TABLE `server_spawn_locations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`actorClassId` int(10) unsigned NOT NULL,
`uniqueId` varchar(32) NOT NULL DEFAULT '',
`zoneId` int(10) unsigned NOT NULL,
`privateAreaName` varchar(32) NOT NULL DEFAULT '',
`privateAreaLevel` int(11) NOT NULL DEFAULT '0',
`positionX` float NOT NULL,
`positionY` float NOT NULL,
`positionZ` float NOT NULL,
`rotation` float NOT NULL,
`actorState` smallint(5) unsigned NOT NULL DEFAULT '0',
`animationId` int(10) unsigned NOT NULL DEFAULT '0',
`customDisplayName` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=960 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `server_spawn_locations` VALUES ('1', '2104001', 'wharf_rat', '1', '', '0', '-84.628', '54.497', '-3.52', '2.491', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('2', '2105701', 'sewer_mole', '1', '', '0', '-148.265', '25.623', '-130.56', '0.93', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('3', '2105701', 'sewer_mole', '1', '', '0', '-143.877', '32.978', '-104.431', '-2.156', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('4', '1500001', 'piralnaut', '133', '', '0', '-460.18', '40', '179.68', '0.82', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('5', '1000078', 'ashakkal', '133', '', '0', '-439.55', '40', '182.26', '-0.31', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('6', '1000137', 'baderon', '133', '', '0', '-428.06', '40.2', '185.96', '-1.37', '0', '1060', null);
INSERT INTO `server_spawn_locations` VALUES ('7', '1000166', 'ursulie', '133', '', '0', '-429.68', '40.2', '182.19', '-1', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('8', '1000167', 'mytesyn', '133', '', '0', '-435.2', '40', '207.07', '-1.9', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('9', '1000271', 'maunie', '133', '', '0', '-447.57', '39.52', '194.65', '-1.55', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('10', '1000270', 'gigirya', '133', '', '0', '-440.36', '39.52', '193.94', '-0.95', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('11', '1000269', 'kokoto', '133', '', '0', '-452.41', '39.52', '202.89', '2.03', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('12', '1000272', 'tirauland', '133', '', '0', '-446', '39.52', '184.8', '1.56', '0', '1054', null);
INSERT INTO `server_spawn_locations` VALUES ('13', '1000273', 'estrilda', '133', '', '0', '-442.85', '39.52', '185.29', '-1.69', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('14', '1000274', 'gregory', '133', '', '0', '-449.2', '39.52', '196.13', '-3.12', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('15', '1000275', 'chantine', '133', '', '0', '-453.35', '39.52', '190.29', '-3.08', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('16', '1000276', 'nanaka', '133', '', '0', '-440.71', '39.52', '195.76', '-2.46', '0', '1024', null);
INSERT INTO `server_spawn_locations` VALUES ('17', '1000277', 'kakamehi', '133', '', '0', '-442.17', '39.52', '193.61', '0.39', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('18', '1000278', 'stephannot', '133', '', '0', '-450.17', '39.52', '201.08', '-0.73', '0', '1061', null);
INSERT INTO `server_spawn_locations` VALUES ('19', '1000279', 'josias', '133', '', '0', '-444.62', '39.52', '186.68', '3.04', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('20', '1000280', 'frithuric', '133', '', '0', '-464.54', '40', '185.15', '1.49', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('21', '1000281', 'lauda', '133', '', '0', '-450.79', '39.52', '182.56', '0.15', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('22', '1500006', 'isleen', '133', '', '0', '-440.19', '19', '206.1', '3.14', '0', '2051', null);
INSERT INTO `server_spawn_locations` VALUES ('23', '1000225', 'zehrymm', '133', '', '0', '-421.29', '40', '229.11', '-1.39', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('24', '1000226', 'fzhumii', '133', '', '0', '-462.43', '20.76', '178.16', '0.71', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('25', '1000347', 'aergwynt', '133', '', '0', '-489.56', '20', '184.91', '-0.24', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('26', '1000455', 'tmokkri', '133', '', '0', '-459.76', '40', '178.22', '1.6', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('27', '1000351', 'zanthael', '133', '', '0', '-441.8', '21', '175', '-0.35', '0', '10', null);
INSERT INTO `server_spawn_locations` VALUES ('28', '1500125', 'merewina', '133', '', '0', '-423.93', '32', '224.19', '1.28', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('29', '1001573', 'sweetnix_rosycheeks', '133', '', '0', '-477.8', '32', '168.21', '-2.49', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('30', '1290007', 'crows_lift_lvl1', '133', '', '0', '-447', '19', '220', '-2', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('31', '1290008', 'crows_lift_lvl2', '133', '', '0', '-447.13', '40', '220.03', '-2', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('32', '1290009', 'crows_lift_lvl3', '133', '', '0', '-458', '92', '175', '-1', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('33', '1200044', 'chocobo', '133', '', '0', '-441.12', '19', '206.39', '2.59', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('34', '1200022', 'chocobo_standard', '133', '', '0', '-438.76', '19', '207.6', '3.14', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('35', '1200027', 'retainer_bell', '133', '', '0', '-432', '40', '202', '-1', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('36', '1200193', 'task_board', '133', '', '0', '-464.77', '41.71', '183.27', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('37', '1001424', 'gegeissa', '170', '', '0', '-56.69', '192', '-6.59', '2.89', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('38', '1001425', 'gdatnan', '170', '', '0', '-46.93', '191.98', '-3.62', '2.89', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('39', '1090078', '', '170', '', '0', '-25.71', '181.36', '-82.63', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('40', '1090464', '', '170', '', '0', '-40.55', '186.25', '-48.05', '1.24', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('41', '1200052', '', '170', '', '0', '32.79', '188.08', '-101.84', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('42', '1000070', 'kukumuko', '175', '', '0', '-169.63', '188.6', '100.93', '2.37', '0', '2025', null);
INSERT INTO `server_spawn_locations` VALUES ('43', '1000374', 'rorojaru', '175', '', '0', '28.93', '192', '109.69', '1.84', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('44', '1000632', 'moruith', '175', '', '0', '-186.1', '190.17', '106.58', '2.12', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('45', '1000651', 'popori', '175', '', '0', '-175.1', '188.6', '96.47', '2.37', '0', '2060', null);
INSERT INTO `server_spawn_locations` VALUES ('46', '1000658', 'gairbert', '175', '', '0', '17.31', '196', '164.36', '-0.52', '0', '2055', null);
INSERT INTO `server_spawn_locations` VALUES ('47', '1000659', 'drew', '175', '', '0', '-0.01', '196', '148.85', '0.77', '0', '2055', null);
INSERT INTO `server_spawn_locations` VALUES ('48', '1000666', 'ococo', '175', '', '0', '-17.11', '192.95', '22.18', '-1.25', '0', '2048', null);
INSERT INTO `server_spawn_locations` VALUES ('49', '1000780', 'kiora', '175', '', '0', '-72.92', '195.21', '55.55', '0.47', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('50', '1000781', 'opondhao', '175', '', '0', '-80.13', '195.21', '60.5', '2.34', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('51', '1000782', 'bertram', '175', '', '0', '-77.32', '195.19', '59.75', '-1.84', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('52', '1000783', 'minerva', '175', '', '0', '-56.87', '196', '64.15', '-1.66', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('53', '1000784', 'zoengterbin', '175', '', '0', '-74.97', '195.19', '53.96', '0.6', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('54', '1000785', 'styrmoeya', '175', '', '0', '-69.86', '195.2', '67.71', '2.5', '0', '1033', null);
INSERT INTO `server_spawn_locations` VALUES ('55', '1000786', 'yhah_amariyo', '175', '', '0', '-58.75', '196', '45.82', '2.09', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('56', '1000787', 'hildie', '175', '', '0', '-71.24', '195.2', '57.32', '-1.78', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('57', '1000788', 'lettice', '175', '', '0', '-83.19', '195', '74.14', '0.06', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('58', '1000789', 'tyon', '175', '', '0', '-67.93', '195.2', '65.1', '-0.45', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('59', '1000840', 'rururaji', '175', '', '0', '-36.99', '192.1', '15.9', '-0.56', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('60', '1000841', 'momodi', '175', '', '0', '-74.91', '195.45', '81.14', '2.88', '0', '1060', null);
INSERT INTO `server_spawn_locations` VALUES ('61', '1000862', 'gagaruna', '175', '', '0', '-184.94', '190.55', '108.87', '1.49', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('62', '1000864', 'otopa_pottopa', '175', '', '0', '-66.44', '195.45', '81.64', '-3.07', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('63', '1000865', 'thaisie', '175', '', '0', '-81.81', '195', '78.05', '2.65', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('64', '1000934', 'titinin', '175', '', '0', '-170.63', '190.01', '117.15', '-1.58', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('65', '1000955', 'naida_zamaida', '175', '', '0', '0.29', '196.4', '144.53', '1.8', '0', '1002', null);
INSERT INTO `server_spawn_locations` VALUES ('66', '1001007', 'halstein', '175', '', '0', '-160.78', '188.7', '117.31', '-2.56', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('67', '1001009', 'melisie', '175', '', '0', '-171.69', '190', '123.84', '-1.77', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('68', '1001012', 'shamani_lohmani', '175', '', '0', '-168.34', '188.7', '116.06', '2.96', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('69', '1001182', 'sesebaru', '175', '', '0', '-78.6', '196', '52.08', '0.26', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('70', '1001191', 'roarich', '175', '', '0', '1.98', '196', '106.25', '-1.23', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('71', '1001192', 'claroise', '175', '', '0', '-227.51', '192.1', '78.92', '0.56', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('72', '1001256', 'gunnulf', '175', '', '0', '-173.16', '188.7', '106.58', '0.92', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('73', '1001257', 'heibert', '175', '', '0', '-158.15', '188.7', '107.36', '-0.45', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('74', '1001260', 'ipaghlo', '175', '', '0', '-145.89', '185.45', '122.34', '-2.18', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('75', '1001371', 'totonawa', '175', '', '0', '-54.07', '196.47', '52.49', '-0.9', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('76', '1001372', 'eustace', '175', '', '0', '-52.83', '196.01', '53.44', '-0.34', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('77', '1001424', 'gegeissa', '175', '', '0', '-56.69', '192', '-6.59', '2.89', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('78', '1001426', 'hehena', '175', '', '0', '67.72', '192', '209.29', '1.27', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('79', '1001427', 'guillaunaux', '175', '', '0', '70.42', '191.98', '199.33', '1.27', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('80', '1001428', 'yuyuhase', '175', '', '0', '-218.1', '190', '23.69', '0.65', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('81', '1001429', 'lulumo', '175', '', '0', '-211.25', '190', '17.98', '0.65', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('82', '1001438', 'nokksu_shanksu', '175', '', '0', '17.99', '196.4', '164.98', '-0.99', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('83', '1001439', 'thimm', '175', '', '0', '3.52', '196', '110.96', '-2.04', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('84', '1001440', 'qaruru', '175', '', '0', '-34.43', '196', '82.32', '-2.73', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('85', '1001441', 'wracwulf', '175', '', '0', '-1.54', '196', '101.74', '1.27', '0', '1023', null);
INSERT INTO `server_spawn_locations` VALUES ('86', '1001442', 'wenefreda', '175', '', '0', '19.93', '196', '182.33', '-2.36', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('87', '1001443', 'judithe', '175', '', '0', '-36.51', '196', '80.42', '1.43', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('88', '1001444', 'robyn', '175', '', '0', '-35.04', '196', '81.91', '2.67', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('89', '1001455', 'mammet', '175', '', '0', '-182.02', '193.45', '85.12', '-2.52', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('90', '1001462', 'qata_nelhah', '175', '', '0', '-183.3', '193', '86.33', '-2.48', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('91', '1001471', 'kokobi', '175', '', '0', '-226.15', '190', '46.2', '2.45', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('92', '1001472', 'mimishu', '175', '', '0', '-232.39', '190', '40.56', '1.94', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('93', '1001726', 'aistan', '175', '', '0', '-98.88', '192.2', '1.08', '0.22', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('94', '1001932', 'sibold', '175', '', '0', '-138.11', '196', '67', '3', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('95', '1001953', 'berndan', '175', '', '0', '-80.39', '196', '54.22', '1.01', '0', '1044', null);
INSERT INTO `server_spawn_locations` VALUES ('96', '1002101', 'dural_tharal', '175', '', '0', '-131.03', '193', '29.41', '-3', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('97', '1002110', 'flame_lieutenant_somber_meadow', '175', '', '0', '-168.71', '192', '31.22', '0.53', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('98', '1002111', 'flame_sergeant_mimio_mio', '175', '', '0', '-166.1', '192', '29.48', '0.27', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('99', '1002112', 'flame_private_sisimuza_tetemuza', '175', '', '0', '-170.1', '192', '31.05', '0.14', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('100', '1002113', 'flame_sergeant_gagaleo_pupuleo', '175', '', '0', '-164.29', '192', '28.6', '0.42', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('101', '1090042', '', '175', '', '0', '-183.53', '193', '82.76', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('102', '1090059', '', '175', '', '0', '-183.92', '190.5', '99.04', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('103', '1090114', '', '175', '', '0', '-153.9', '185.65', '128.15', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('104', '1090265', 'market_entrance_uldah', '175', '', '0', '-235', '189', '50.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('105', '1090375', '', '175', '', '0', '-66.1', '196', '48.94', '-1.7', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('106', '1090402', '', '175', '', '0', '-22.81', '196', '87.82', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('107', '1090460', 'wellhead_lift_lvl1', '175', '', '0', '-117.2', '198', '117.6', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('108', '1200022', '', '175', '', '0', '-39.26', '192.1', '13.97', '-0.38', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('109', '1200027', '', '175', '', '0', '-58.4', '195', '75.84', '-0.89', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('110', '1200027', '', '175', '', '0', '27.35', '192.1', '109.02', '3.13', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('111', '1200044', '', '175', '', '0', '-41.24', '192.1', '12.87', '0.1', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('112', '1200194', 'task_board', '175', '', '0', '-50.24', '197.6', '58.94', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('113', '1200210', '', '175', '', '0', '-169.94', '191.8', '25.9', '0.523', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('114', '1200288', '', '175', '', '0', '-189.13', '190', '15.59', '-1.04', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('117', '1290004', '', '175', '', '0', '-239.02', '190', '55.67', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('118', '1500116', 'gogorano', '175', '', '0', '-77.82', '192.1', '4.29', '0.23', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('119', '1500129', 'yayatoki', '175', '', '0', '-27.31', '196', '87.25', '1.91', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('120', '1500182', 'rowena', '175', '', '0', '-178.67', '192.1', '55.82', '-2.39', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('121', '1500274', 'orrick', '175', '', '0', '-153.91', '192.1', '13.35', '0.07', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('122', '1500327', 'flame_private_newton', '175', '', '0', '-187.61', '190', '15.88', '-1.04', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('123', '1600043', 'psonjha', '175', '', '0', '-109.62', '198', '80.59', '-1.29', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('124', '1600044', 'allenaure', '175', '', '0', '25.49', '192', '102.36', '2.01', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('125', '1600045', 'elgiva', '175', '', '0', '-112.39', '197', '71.19', '-1.43', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('126', '1600046', 'doesdornn', '175', '', '0', '45.2', '192', '99.92', '-1.13', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('127', '1600047', 'barryn', '175', '', '0', '26.57', '192', '67.47', '-0.88', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('128', '1600048', 'tataroga', '175', '', '0', '15.51', '192.45', '84.32', '2.17', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('129', '1600049', 'helena', '175', '', '0', '31.77', '192', '75.48', '-0.99', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('130', '1600050', 'gugudi', '175', '', '0', '41.18', '192.45', '91.8', '-1.13', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('131', '1600051', 'johannes', '175', '', '0', '20.57', '192', '92.96', '2.07', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('132', '1600052', 'quiloud', '175', '', '0', '36.82', '192', '83.36', '-1.08', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('133', '1600053', 'eormengild', '175', '', '0', '-123.59', '198', '84.96', '1.83', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('134', '1600054', 'fabrellet', '175', '', '0', '-127.5', '197.1', '75.21', '1.83', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('135', '1600055', 'roserette', '175', '', '0', '-106.56', '198', '90.21', '-1.28', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('136', '1600056', 'wysslorh', '175', '', '0', '-121.16', '198', '94.12', '1.82', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('137', '1600059', 'pimelle', '175', '', '0', '-163.44', '192.59', '52.55', '-2.59', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('138', '1600066', 'wawapo', '175', '', '0', '-105.68', '198', '95.23', '-1.29', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('139', '1600077', 'gwahaii', '175', '', '0', '-181.53', '190', '115.54', '2.41', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('140', '1600129', 'ganelon', '175', '', '0', '-76.95', '195', '80.8', '2.88', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('141', '1600133', 'etgar', '175', '', '0', '-72.84', '195', '81.96', '3.02', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('142', '1700039', 'baterich', '175', '', '0', '33.77', '192.1', '129.97', '2.57', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('143', '5900001', 'guild_pug', '175', '', '0', '-183', '191', '100', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('144', '5900001', 'adv_guild_west', '175', '', '0', '-91', '196', '56', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('145', '5900001', 'adv_guild_north', '175', '', '0', '-64', '196', '40', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('146', '5900001', 'adv_guild_east', '175', '', '0', '-48', '196', '67', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('147', '1000046', 'gogofu', '209', '', '0', '-301.18', '206', '239.6', '-1.82', '0', '2004', null);
INSERT INTO `server_spawn_locations` VALUES ('148', '1000047', 'hahayo', '209', '', '0', '7.24', '206.5', '301.88', '0.46', '0', '2005', null);
INSERT INTO `server_spawn_locations` VALUES ('149', '1000293', 'deaustie', '209', '', '0', '38.84', '195.59', '257.89', '1.37', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('150', '1000597', 'nogeloix', '209', '', '0', '-211.67', '229.6', '279.04', '0.38', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('151', '1000631', 'coynach', '209', '', '0', '-192.85', '194.6', '182.58', '1.17', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('152', '1000633', 'nyunoeya', '209', '', '0', '-291.55', '206', '220.4', '-0.45', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('153', '1000634', 'kylene', '209', '', '0', '-210.07', '229.6', '278.19', '0.6', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('154', '1000635', 'hnaufrid', '209', '', '0', '-129.71', '201.6', '256.29', '0.63', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('155', '1000636', 'lafla_morfla', '209', '', '0', '38.78', '196.04', '256.07', '1.82', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('156', '1000637', 'shilgen', '209', '', '0', '-91.81', '195.6', '314.82', '-1.05', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('157', '1000638', 'hawazi_zowazi', '209', '', '0', '-119.086', '200.7', '268.745', '2.618', '0', '2038', null);
INSERT INTO `server_spawn_locations` VALUES ('158', '1000639', 'isabella', '209', '', '0', '-119.486', '200.2', '273.871', '0.524', '0', '2039', null);
INSERT INTO `server_spawn_locations` VALUES ('159', '1000640', 'ciceroix', '209', '', '0', '-123.55', '200.2', '271.41', '-1.57', '0', '2049', null);
INSERT INTO `server_spawn_locations` VALUES ('160', '1000641', 'xau_nbolo', '209', '', '0', '-204.51', '228.2', '292.21', '-0.44', '0', '2040', null);
INSERT INTO `server_spawn_locations` VALUES ('161', '1000642', 'oefyrblaet', '209', '', '0', '-197.89', '228.2', '301.61', '-2.04', '0', '2041', null);
INSERT INTO `server_spawn_locations` VALUES ('162', '1000643', 'babaki', '209', '', '0', '-199.72', '228.65', '286.03', '-1.05', '0', '2042', null);
INSERT INTO `server_spawn_locations` VALUES ('163', '1000644', 'lohwaeb', '209', '', '0', '51.65', '194.2', '253.32', '0.01', '0', '2050', null);
INSERT INTO `server_spawn_locations` VALUES ('164', '1000645', 'margarete', '209', '', '0', '54.39', '194.2', '246.24', '2.57', '0', '2043', null);
INSERT INTO `server_spawn_locations` VALUES ('165', '1000646', 'rinh_maimhov', '209', '', '0', '48.75', '194.4', '243.01', '-0.58', '0', '2044', null);
INSERT INTO `server_spawn_locations` VALUES ('166', '1000647', 'lyngwaek', '209', '', '0', '-177.43', '193.1', '185.88', '3.14', '0', '2047', null);
INSERT INTO `server_spawn_locations` VALUES ('167', '1000648', 'wawaton', '209', '', '0', '-346.08', '206', '244.62', '-2.79', '0', '2068', null);
INSERT INTO `server_spawn_locations` VALUES ('168', '1000652', 'mamaza', '209', '', '0', '-119.86', '194.7', '318.76', '1.05', '0', '2045', null);
INSERT INTO `server_spawn_locations` VALUES ('169', '1000653', 'nhagi_amariyo', '209', '', '0', '-107.1', '195', '325', '2.89', '0', '2062', null);
INSERT INTO `server_spawn_locations` VALUES ('170', '1000654', 'jajanzo', '209', '', '0', '-176.12', '195.03', '165.26', '-2.17', '0', '2052', null);
INSERT INTO `server_spawn_locations` VALUES ('171', '1000655', 'jeger', '209', '', '0', '-73.85', '202', '166.4', '-1.67', '0', '2029', null);
INSERT INTO `server_spawn_locations` VALUES ('172', '1000656', 'martine', '209', '', '0', '-108.85', '218', '182.03', '2.43', '0', '2029', null);
INSERT INTO `server_spawn_locations` VALUES ('173', '1000665', 'rosalind', '209', '', '0', '-18.27', '206.04', '303.94', '-1.03', '0', '2057', null);
INSERT INTO `server_spawn_locations` VALUES ('174', '1000668', 'ubokhn', '209', '', '0', '-181.86', '195.02', '149.04', '-0.75', '0', '10', null);
INSERT INTO `server_spawn_locations` VALUES ('175', '1000846', 'yayake', '209', '', '0', '-292.89', '206.46', '219.88', '-0.52', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('176', '1000847', 'illofii', '209', '', '0', '-306.8', '206.5', '239.27', '1.8', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('177', '1000861', 'linette', '209', '', '0', '-92.38', '195.6', '313.43', '-1.43', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('178', '1000863', 'lulutsu', '209', '', '0', '-193.46', '195.05', '183.65', '0.61', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('179', '1000915', 'cahernaut', '209', '', '0', '44.52', '194.39', '242.84', '-2.08', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('180', '1000916', 'aspipi', '209', '', '0', '56.21', '194.2', '251.37', '0.51', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('181', '1000917', 'gloiucen', '209', '', '0', '61.19', '194.2', '249.57', '-0.22', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('182', '1000950', 'elecotte', '209', '', '0', '-131.49', '201.6', '256.97', '0.37', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('183', '1000962', 'papawa', '209', '', '0', '-175.05', '193.2', '201.17', '-2.46', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('184', '1000963', 'galeren', '209', '', '0', '-195.89', '194.5', '193.41', '-1.69', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('185', '1000964', 'fruhybolg', '209', '', '0', '-186.65', '193.2', '198.78', '1.59', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('186', '1000965', 'abylgo_hamylgo', '209', '', '0', '-180.83', '193.2', '206.51', '2.83', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('187', '1000966', 'fineco_romanecco', '209', '', '0', '-190.21', '194.5', '199.58', '1.28', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('188', '1000967', 'swerdahrm', '209', '', '0', '-182.91', '189.95', '221.78', '2.53', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('189', '1000968', 'wannore', '209', '', '0', '-190.21', '194.5', '201.41', '1.66', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('190', '1000969', 'qmhalawi', '209', '', '0', '-184.92', '193.2', '191.66', '0.57', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('191', '1000994', 'lefchild', '209', '', '0', '-127.24', '200.2', '267.51', '1.54', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('192', '1001022', 'sungi_kelungi', '209', '', '0', '-113.9', '200.2', '262.21', '-1.58', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('193', '1001055', 'bouchard', '209', '', '0', '-128.08', '200.2', '274.56', '2.8', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('194', '1001056', 'holbubu', '209', '', '0', '-117.87', '200.2', '263.67', '2.09', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('195', '1001073', 'obili_tambili', '209', '', '0', '-219.02', '231.5', '297.38', '-2.17', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('196', '1001074', 'miyaya', '209', '', '0', '-215.94', '229.5', '288.33', '-2.55', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('197', '1001075', 'berthar', '209', '', '0', '-197.52', '228.2', '297.35', '2.71', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('198', '1001141', 'tutubuki', '209', '', '0', '-334.02', '206', '233.12', '0.15', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('199', '1001142', 'kamlito_halito', '209', '', '0', '-309.56', '206', '256.45', '0.72', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('200', '1001143', 'totono', '209', '', '0', '-305', '206', '227.27', '-0.66', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('201', '1001144', 'fyrilsunn', '209', '', '0', '-285.41', '206', '232.67', '-2.32', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('202', '1001145', 'sinette', '209', '', '0', '-305.49', '206', '221.67', '1.84', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('203', '1001165', 'mumukiya', '209', '', '0', '-100.34', '195.5', '308.78', '3', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('204', '1001166', 'yuyubesu', '209', '', '0', '-110.27', '195.5', '305.12', '2.7', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('205', '1001167', 'chachai', '209', '', '0', '-101.69', '195.5', '308.33', '2.36', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('206', '1001168', 'fifilo', '209', '', '0', '-108.73', '195.5', '305.8', '-3.02', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('207', '1001169', 'pierriquet', '209', '', '0', '-104.15', '194.2', '319.82', '-0.35', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('208', '1001170', 'mohtfryd', '209', '', '0', '-97.81', '194.2', '325.9', '-1.5', '0', '1072', null);
INSERT INTO `server_spawn_locations` VALUES ('209', '1001171', 'qhota_nbolo', '209', '', '0', '-110.72', '194.57', '320.36', '2.51', '0', '1071', null);
INSERT INTO `server_spawn_locations` VALUES ('210', '1001193', 'uwilsyng', '209', '', '0', '-136.04', '206', '205.93', '-2.54', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('211', '1001200', 'jannie', '209', '', '0', '46.45', '195.49', '265.79', '-2.91', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('212', '1001201', 'dylise', '209', '', '0', '58.72', '195.49', '266.32', '1.25', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('213', '1001202', 'barnabaix', '209', '', '0', '57.32', '194.2', '253.56', '-2.32', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('214', '1001203', 'tyago_moui', '209', '', '0', '-116.04', '194.2', '313.08', '0.87', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('215', '1001415', 'anthoinette', '209', '', '0', '1.69', '206', '282.62', '0.26', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('216', '1001416', 'wise_moon', '209', '', '0', '3.39', '206', '282.82', '-0.12', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('217', '1001417', 'apacho_naccho', '209', '', '0', '3.06', '206.5', '300.33', '0.77', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('218', '1001418', 'wyznguld', '209', '', '0', '3.71', '206', '285.59', '-3.09', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('219', '1001419', 'neymumu', '209', '', '0', '-0.31', '206.02', '303.69', '1.22', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('220', '1001420', 'safufu', '209', '', '0', '14.4', '206', '314.85', '0.64', '0', '1075', null);
INSERT INTO `server_spawn_locations` VALUES ('221', '1001421', 'peneli_zuneli', '209', '', '0', '28.78', '206', '335.11', '-2.55', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('222', '1001422', 'milgogo', '209', '', '0', '-115.68', '226', '245.98', '2.85', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('223', '1001423', 'mumutano', '209', '', '0', '-121.98', '226', '244.1', '2.85', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('224', '1001445', 'singleton', '209', '', '0', '-191.98', '194.6', '181.33', '1.06', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('225', '1001451', 'mammet_gsm', '209', '', '0', '-138.31', '203.5', '274.12', '-1.42', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('226', '1001452', 'mammet_gsm2', '209', '', '0', '-136.17', '201.5', '266.45', '-2.63', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('227', '1001453', 'mammet_wvr', '209', '', '0', '49.71', '194.39', '243.82', '-1.11', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('228', '1001454', 'mammet_alc', '209', '', '0', '-203.9', '228.2', '297.97', '-0.4', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('229', '1001463', 'kukusi', '209', '', '0', '-195.01', '228.2', '293.18', '0.69', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('230', '1001464', 'vannes', '209', '', '0', '-185.18', '195.03', '149.95', '0.07', '0', '1076', null);
INSERT INTO `server_spawn_locations` VALUES ('231', '1001465', 'tatasha', '209', '', '0', '-193.23', '195.01', '168.92', '2.31', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('232', '1001466', 'xdhilogo', '209', '', '0', '-194.39', '195.03', '154.45', '1.5', '0', '1077', null);
INSERT INTO `server_spawn_locations` VALUES ('233', '1001467', 'dariustel', '209', '', '0', '-190.05', '174.89', '160.32', '1.43', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('234', '1001468', 'guencen', '209', '', '0', '-183.75', '174.89', '160.38', '-1.61', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('235', '1001475', 'diriaine', '209', '', '0', '-99.84', '194.2', '329.94', '-1.3', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('236', '1001476', 'crhabye', '209', '', '0', '-115.46', '194.2', '320.35', '1.5', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('237', '1001565', 'eleanor', '209', '', '0', '-278.97', '206', '211.56', '1.4', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('238', '1001712', 'guillestet', '209', '', '0', '-124.84', '272', '178.72', '1.34', '0', '1006', null);
INSERT INTO `server_spawn_locations` VALUES ('239', '1001713', 'hcidjaa', '209', '', '0', '-115.03', '272', '184.61', '-0.36', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('240', '1001717', 'goodife', '209', '', '0', '-116.35', '271.2', '163.86', '1.8', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('241', '1001770', 'eara', '209', '', '0', '-104.62', '271', '152.63', '-1.35', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('242', '1001771', 'liaime', '209', '', '0', '-104.93', '271', '161.17', '-1.83', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('243', '1002047', 'kopuru_fupuru', '209', '', '0', '-112.72', '202.405', '175.37', '2.31', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('244', '1060042', 'jenlyns', '209', '', '0', '-113.68', '218', '148.92', '0.92', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('245', '1090044', '', '209', '', '0', '-91.35', '196.02', '323.18', '1.97', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('246', '1090051', '', '209', '', '0', '38.29', '195.99', '247.09', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('247', '1090055', '', '209', '', '0', '-110.2', '224', '212.37', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('248', '1090058', '', '209', '', '0', '-121.99', '201.5', '257.62', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('249', '1090077', '', '209', '', '0', '-177.81', '192.56', '209.92', '-0.47', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('250', '1090119', '', '209', '', '0', '-216.38', '229.5', '302.07', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('251', '1090123', '', '209', '', '0', '-135.965', '201.5', '280.14', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('252', '1090131', '', '209', '', '0', '-242.14', '202.05', '224.2', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('253', '1090141', '', '209', '', '0', '-187.225', '190.15', '219.73', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('254', '1090142', '', '209', '', '0', '-207.3', '175', '160.13', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('255', '1090143', '', '209', '', '0', '-163.35', '175', '160.13', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('256', '1090253', '', '209', '', '0', '-250.38', '202', '202.4', '2.83', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('257', '1090283', '', '209', '', '0', '-185.26', '195', '179.74', '-2.28', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('258', '1090314', '', '209', '', '0', '-72.53', '202.02', '153.78', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('259', '1090452', '', '209', '', '0', '-105.3', '222.01', '194.83', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('260', '1090461', 'wellhead_lift_lvl2', '209', '', '0', '-117.2', '222', '117.6', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('261', '1090462', 'wellhead_lift_lvl3', '209', '', '0', '-119.84', '269.86', '127.86', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('262', '1090524', '', '209', '', '0', '-111.41', '224', '217.13', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('263', '1200120', 'dusty_tomes', '209', '', '0', '-289', '207.1', '221.54', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('264', '1200288', '', '209', '', '0', '-151.15', '198', '160.49', '1.62', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('265', '1290004', '', '209', '', '0', '-147.71', '234.14', '198.37', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('266', '1290023', 'wellhead_lift_lvl2', '209', '', '0', '-117.2', '222', '117.6', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('267', '1500126', 'vavaki', '209', '', '0', '-32.44', '198', '143.58', '1.52', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('268', '1500208', 'stangyth', '209', '', '0', '-121.95', '271.2', '158.42', '-2.95', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('269', '1500209', 'lunnie', '209', '', '0', '-120.52', '271.2', '161.81', '0.21', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('270', '1500328', 'flame_private_allen', '209', '', '0', '-151.15', '198', '159.55', '1.62', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('271', '1500394', 'edine', '209', '', '0', '-92.88', '203', '166.92', '0.56', '0', '1045', null);
INSERT INTO `server_spawn_locations` VALUES ('272', '1600039', 'jemimi', '209', '', '0', '-208.76', '230.05', '277.1', '0.73', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('273', '1600040', 'pamisolaux', '209', '', '0', '-128.58', '201.6', '255.11', '0.95', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('274', '1600041', 'norbettaux', '209', '', '0', '37.73', '195.59', '254.73', '2.24', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('275', '1600042', 'nortmoen', '209', '', '0', '-90.84', '195.6', '315.94', '-0.82', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('276', '1600057', 'zagylswerd', '209', '', '0', '-259.27', '200.59', '163.35', '1.51', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('277', '1600058', 'wnhalki', '209', '', '0', '-156.37', '206.5', '227.78', '2.86', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('278', '1600094', 'waeksatz', '209', '', '0', '-136.18', '271.2', '181.9', '2.3', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('279', '5900001', 'guild_alc', '209', '', '0', '-202', '230', '277', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('280', '5900001', 'guild_gla', '209', '', '0', '-185', '195', '179', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('281', '5900001', 'ne_of_eshtaimes', '209', '', '0', '-139', '206', '195', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('282', '5900001', 'guild_gsm', '209', '', '0', '-121', '202', '255', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('283', '5900001', 'guild_min', '209', '', '0', '-91', '196', '323', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('284', '5900001', 'east_of_goldcourt', '209', '', '0', '-37', '198', '154', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('285', '5900001', 'nw_of_guild_wvr', '209', '', '0', '-26', '201', '205', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('286', '5900001', 'guild_wvr', '209', '', '0', '40', '196', '248', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('287', '5900011', 'uldah_mapshipport_1', '209', '', '0', '-127', '271', '157', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('288', '1000045', 'fabodji', '230', '', '0', '-587.95', '6', '429.28', '-0.94', '0', '2003', null);
INSERT INTO `server_spawn_locations` VALUES ('289', '1000049', 'jainelette', '230', '', '0', '-793.27', '10.35', '386.55', '1.7', '0', '2007', null);
INSERT INTO `server_spawn_locations` VALUES ('290', '1000050', 'robairlain', '230', '', '0', '-617.1', '11.84', '261.67', '1.6', '0', '2008', null);
INSERT INTO `server_spawn_locations` VALUES ('291', '1000051', 'brictt', '230', '', '0', '-739.35', '16.35', '386.66', '1.5', '0', '2002', null);
INSERT INTO `server_spawn_locations` VALUES ('292', '1000052', 'liautroix', '230', '', '0', '-794.17', '21.35', '378.93', '2.88', '0', '2009', null);
INSERT INTO `server_spawn_locations` VALUES ('293', '1000053', 'slaiboli', '230', '', '0', '-615.05', '28.48', '-60.98', '0.8', '0', '2001', null);
INSERT INTO `server_spawn_locations` VALUES ('294', '1000054', 'syhrdaeg', '230', '', '0', '-601.6', '42.1', '-46.65', '2.34', '0', '10', null);
INSERT INTO `server_spawn_locations` VALUES ('295', '1000056', 'laniaitte', '230', '', '0', '-786.92', '-2.37', '209.42', '3', '0', '2011', null);
INSERT INTO `server_spawn_locations` VALUES ('296', '1000057', 'zonggo', '230', '', '0', '-589.34', '4', '381.4', '1.5', '0', '2012', null);
INSERT INTO `server_spawn_locations` VALUES ('297', '1000060', 'pfynhaemr', '230', '', '0', '-492.26', '42.8', '414.65', '1.4', '0', '2015', null);
INSERT INTO `server_spawn_locations` VALUES ('298', '1000061', 'mzimzizi', '230', '', '0', '-489.4', '42.95', '415.4', '-2.28', '0', '2016', null);
INSERT INTO `server_spawn_locations` VALUES ('299', '1000062', 'carrilaut', '230', '', '0', '-486.69', '42.8', '411.36', '-0.78', '0', '2017', null);
INSERT INTO `server_spawn_locations` VALUES ('300', '1000063', 'gerulf', '230', '', '0', '-510.35', '42.3', '36.03', '-0.78', '0', '2018', null);
INSERT INTO `server_spawn_locations` VALUES ('301', '1000064', 'aentfoet', '230', '', '0', '-512.42', '42.3', '39.5', '-0.78', '0', '2019', null);
INSERT INTO `server_spawn_locations` VALUES ('302', '1000065', 'frailoise', '230', '', '0', '-506.14', '42.3', '39.32', '-2.28', '0', '2020', null);
INSERT INTO `server_spawn_locations` VALUES ('303', '1000134', 'martiallais', '230', '', '0', '-488.74', '42.8', '409.7', '-1.54', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('304', '1000135', 'iofa', '230', '', '0', '-490.59', '42.8', '420.71', '-1.74', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('305', '1000138', 'charlys', '230', '', '0', '-511.16', '42.3', '27.91', '-0.37', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('306', '1000144', 'bodenolf', '230', '', '0', '-500.06', '42.8', '416.06', '1.19', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('307', '1000158', 'noline', '230', '', '0', '-509.12', '42.3', '28.23', '-0.01', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('308', '1000159', 'jossy', '230', '', '0', '-506.9', '42.3', '27.81', '0.33', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('309', '1000162', 'qhas_chalahko', '230', '', '0', '-499.97', '42.8', '413.74', '1.19', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('310', '1000168', 'prudentia', '230', '', '0', '-507', '42.3', '40.25', '-2.66', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('311', '1000169', 'pulmia', '230', '', '0', '-509.42', '42.3', '42.9', '-2', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('312', '1000170', 'rsushmo', '230', '', '0', '-506.15', '42.3', '33.88', '-1.69', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('313', '1000171', 'kikichua', '230', '', '0', '-522.55', '42', '38.27', '-2.06', '0', '1058', null);
INSERT INTO `server_spawn_locations` VALUES ('314', '1000172', 'hobriaut', '230', '', '0', '-507.1', '44', '48.12', '1', '0', '1059', null);
INSERT INTO `server_spawn_locations` VALUES ('315', '1000090', 'neale', '230', '', '0', '-791.43', '9.15', '381.93', '0.19', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('316', '1000125', 'chaunollet', '230', '', '0', '-609.19', '43', '-67', '-1.46', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('317', '1000129', 'raragun', '230', '', '0', '-620.33', '43.63', '-74.4', '1.62', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('318', '1000130', 'mynadaeg', '230', '', '0', '-600.29', '28.48', '-67.55', '-0.5', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('319', '1000131', 'tefh_moshroca', '230', '', '0', '-624.14', '43.63', '-65.55', '0.68', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('320', '1000132', 'ginnade', '230', '', '0', '-623.45', '43', '-56.92', '2.41', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('321', '1000133', 'arthurioux', '230', '', '0', '-612.53', '43', '-78.72', '-0.32', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('322', '1000136', 'nanapiri', '230', '', '0', '-782.25', '9.15', '386.96', '2.33', '0', '1022', null);
INSERT INTO `server_spawn_locations` VALUES ('323', '1000150', 'ptahjha', '230', '', '0', '-790.22', '12.9', '195.4', '0.43', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('324', '1000152', 'isaudorel', '230', '', '0', '-611.23', '43', '-55.39', '1.97', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('325', '1000153', 'nnmulika', '230', '', '0', '-612.9', '4.55', '341.42', '0.69', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('326', '1000157', 'sraemha', '230', '', '0', '-772.01', '6.85', '382.13', '2', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('327', '1000160', 'haldberk', '230', '', '0', '-787.39', '12.9', '193.54', '0.29', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('328', '1000161', 'totoruto', '230', '', '0', '-603.41', '43', '-70.45', '-1.21', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('329', '1000163', 'joellaut', '230', '', '0', '-482.91', '41.53', '438.15', '2.36', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('330', '1000164', 'faucillien', '230', '', '0', '-614.73', '4.55', '342.24', '0.14', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('331', '1000165', 'louviaune', '230', '', '0', '-616.7', '4.55', '342.49', '-0.28', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('332', '1000177', 'syngsmyd', '230', '', '0', '-502.44', '42.5', '436.76', '3', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('333', '1000178', 'lilina', '230', '', '0', '-775.45', '12.9', '203.07', '1.36', '0', '1021', null);
INSERT INTO `server_spawn_locations` VALUES ('334', '1000179', 'rubh_epocan', '230', '', '0', '-783.81', '12.9', '193.28', '-0.07', '0', '1034', null);
INSERT INTO `server_spawn_locations` VALUES ('335', '1000180', 'astrid', '230', '', '0', '-606.7', '4.55', '349.59', '-0.83', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('336', '1000181', 'xavalien', '230', '', '0', '-598.59', '6.25', '356.57', '-0.79', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('337', '1000190', 'bayard', '230', '', '0', '-792.25', '9.16', '390.76', '2.82', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('338', '1000191', 'triaine', '230', '', '0', '-782.28', '9.15', '390.27', '-1.85', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('339', '1000192', 'wyra_khamazom', '230', '', '0', '-783.37', '9.15', '390.94', '2.95', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('340', '1000193', 'dhemsunn', '230', '', '0', '-776.25', '10.35', '389.35', '-1.63', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('341', '1000194', 'ositha', '230', '', '0', '-780.34', '10.35', '385.35', '-1.52', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('342', '1000195', 'elilwaen', '230', '', '0', '-787.35', '-0.62', '194.19', '1.9', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('343', '1000196', 'dodoroba', '230', '', '0', '-775.05', '-0.62', '216.35', '-0.27', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('344', '1000197', 'ivan', '230', '', '0', '-786.31', '-0.62', '221.76', '-3.13', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('345', '1000198', 'thosinbaen', '230', '', '0', '-793.26', '12.9', '206.38', '0.11', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('346', '1000199', 'clifton', '230', '', '0', '-618.03', '4.55', '353.03', '-2.4', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('347', '1000200', 'undsatz', '230', '', '0', '-608.92', '4.55', '342.55', '1.79', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('348', '1000201', 'rerenasu', '230', '', '0', '-640.27', '1', '401.35', '2.27', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('349', '1000202', 'daca_jinjahl', '230', '', '0', '-624.77', '4.25', '354.05', '-3.06', '0', '1070', null);
INSERT INTO `server_spawn_locations` VALUES ('350', '1000203', 'bloemerl', '230', '', '0', '-624.67', '4.25', '352.67', '-0.08', '0', '1033', null);
INSERT INTO `server_spawn_locations` VALUES ('351', '1000003', 'waekbyrt', '230', '', '0', '-752.53', '7.35', '382.14', '-1.64', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('352', '1000004', 'nunuba', '230', '', '0', '-753.44', '8.19', '398.01', '0.12', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('353', '1000151', 'hob', '230', '', '0', '-834.77', '6', '241.55', '-2.79', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('354', '1000217', 'chichiroon', '230', '', '0', '-725.19', '18.51', '379.35', '2.71', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('355', '1000282', 'drowsy-eyed_adventurer', '230', '', '0', '-803.68', '8', '231.06', '0.26', '0', '1032', null);
INSERT INTO `server_spawn_locations` VALUES ('356', '1000283', 'unconscious_adventurer', '230', '', '0', '-770.62', '8', '369.34', '-0.51', '0', '1007', null);
INSERT INTO `server_spawn_locations` VALUES ('357', '1000284', 'positively_pungent_pirate', '230', '', '0', '-782.69', '12.9', '196.2', '-2.49', '0', '1010', null);
INSERT INTO `server_spawn_locations` VALUES ('358', '1000286', 'sure-voiced_barracuda_knight', '230', '', '0', '-769.56', '8', '368.88', '-0.95', '0', '1062', null);
INSERT INTO `server_spawn_locations` VALUES ('359', '1000260', 'pearly-toothed_porter', '230', '', '0', '-823.86', '6', '198.95', '0.13', '0', '1070', null);
INSERT INTO `server_spawn_locations` VALUES ('360', '1000261', 'muscle-bound_deckhand', '230', '', '0', '-823.75', '6', '200.27', '-2.7', '0', '1033', null);
INSERT INTO `server_spawn_locations` VALUES ('361', '1000262', 'glowing_goodwife', '230', '', '0', '-784.7', '12.9', '195.61', '2.76', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('362', '1000264', 'pasty-faced_adventurer', '230', '', '0', '-829.72', '6', '260.6', '-1.07', '0', '1058', null);
INSERT INTO `server_spawn_locations` VALUES ('363', '1000253', 'tittering_traveler', '230', '', '0', '-532.859', '41', '45.898', '0.785', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('364', '1000254', 'suspicious-looking_traveler', '230', '', '0', '-530.83', '41', '45.85', '-1.19', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('365', '1000255', 'enraptured_traveler', '230', '', '0', '-531.485', '41', '48.688', '-2.944', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('366', '1000256', 'fickle_beggar', '230', '', '0', '-532.99', '41', '52.45', '-1.29', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('367', '1000257', 'satiated_shopkeep', '230', '', '0', '-528.96', '41', '51.63', '-1.96', '0', '1063', null);
INSERT INTO `server_spawn_locations` VALUES ('368', '1000258', 'pissed_pirate', '230', '', '0', '-527.411', '41', '50.259', '3.14', '0', '1064', null);
INSERT INTO `server_spawn_locations` VALUES ('369', '1000259', 'overweening_woman', '230', '', '0', '-524.9', '41', '52.79', '-1.77', '0', '1055', null);
INSERT INTO `server_spawn_locations` VALUES ('370', '1000250', 'hlahono', '230', '', '0', '-522.92', '42', '20.98', '-1.26', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('371', '1000252', 'wyrstmann', '230', '', '0', '-525.28', '41.01', '51.03', '0.13', '0', '1065', null);
INSERT INTO `server_spawn_locations` VALUES ('372', '1000265', 'sosoze', '230', '', '0', '-476.17', '41.5', '436.86', '1.27', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('373', '1000266', 'colson', '230', '', '0', '-479.56', '41.5', '437.14', '-2.85', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('374', '1000267', 'hihine', '230', '', '0', '-475.29', '41.5', '436.08', '0.31', '0', '1031', null);
INSERT INTO `server_spawn_locations` VALUES ('375', '1000268', 'trinne', '230', '', '0', '-474.72', '41.51', '431.37', '-2.45', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('376', '1001461', 'notrelchamps', '230', '', '0', '-500.12', '42.8', '412', '1.72', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('377', '1001458', 'smydhaemr', '230', '', '0', '-482.08', '44.5', '403.33', '0.87', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('378', '1000220', 'jojoroon', '230', '', '0', '-734.16', '16.35', '383.53', '1.17', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('379', '1000219', 'buburoon', '230', '', '0', '-769.63', '14.85', '386.51', '1.61', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('380', '1001065', 'ighii_moui', '230', '', '0', '-723.98', '18.35', '389.42', '1.89', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('381', '1001063', 'mharelak', '230', '', '0', '-783.15', '9.15', '381.98', '0.02', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('382', '1001064', 'hasthwab', '230', '', '0', '-778.32', '16.35', '383.49', '2.17', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('383', '1600003', 'arnald', '230', '', '0', '-583.2', '18.2', '204.3', '0.4', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('384', '1600005', 'zuzudesu', '230', '', '0', '-605.186', '18.65', '213.609', '0.37', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('385', '1600004', 'eosilie', '230', '', '0', '-577.5', '18.2', '220', '-2.78', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('386', '1600009', 'sgnayak', '230', '', '0', '-587.5', '18.2', '224', '-2.78', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('387', '1600008', 'kikimo', '230', '', '0', '-597.139', '18.65', '227.81', '-2.76', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('388', '1600001', 'sysley', '230', '', '0', '-684.9', '16.2', '229.5', '0', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('389', '1600007', 'nystbyrm', '230', '', '0', '-696.12', '16.2', '229.45', '0', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('390', '1600010', 'fousquenet', '230', '', '0', '-705.5', '16.2', '229.5', '0', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('391', '1600006', 'pndolobo', '230', '', '0', '-683.7', '16.2', '246.3', '-3.14', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('392', '1600002', 'teteu', '230', '', '0', '-705.3', '16.65', '245.95', '-3', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('393', '1600011', 'holasfhis', '230', '', '0', '-490.5', '40', '312', '-1.6', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('394', '1600012', 'zranmaia', '230', '', '0', '-442.6', '44', '37.7', '-1.5', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('395', '1600013', 'kerrich', '230', '', '0', '-500.2', '39.9', '363', '2.5', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('396', '1600014', 'lefleda', '230', '', '0', '-500.2', '39.9', '354.6', '0.9', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('397', '1500004', 'gert', '230', '', '0', '-809.15', '8', '230.88', '0.4', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('398', '1500005', 'lorhzant', '230', '', '0', '-809.19', '8', '244.86', '-2.78', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('399', '1000349', 'sundhimal', '230', '', '0', '-405.5', '42.5', '346', '-2.78', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('400', '1000350', 'eugennoix', '230', '', '0', '-406', '42.5', '328', '0', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('401', '1000173', 'maisie', '230', '', '0', '-603.64', '6.25', '355.46', '-0.75', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('402', '1000342', 'jghonako', '230', '', '0', '-555.18', '42', '-10.4', '0.71', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('403', '1000332', 'ahldskyf', '230', '', '0', '-804.94', '8', '243.25', '-1.01', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('404', '1000333', 'skarnwaen', '230', '', '0', '-579.01', '20', '345.3', '0.53', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('405', '1000339', 'gnibnpha', '230', '', '0', '-455.5', '44', '85.79', '2.32', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('406', '1000346', 'audaine', '230', '', '0', '-583.89', '18.2', '207.16', '2.88', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('407', '1000330', 'ceadda', '230', '', '0', '-778.64', '12', '226.64', '-2.57', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('408', '1000341', 'tatasako', '230', '', '0', '-663.96', '6', '357.09', '0.71', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('409', '1000331', 'dympna', '230', '', '0', '-492.38', '39.9', '362.82', '-2.51', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('410', '1000335', 'bmallpa', '230', '', '0', '-440.1', '40', '363.17', '-2.44', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('411', '1000344', 'ferdillaix', '230', '', '0', '-493.9', '40', '337.98', '-2.28', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('412', '1000345', 'fufuna', '230', '', '0', '-498.89', '40', '304.78', '1.19', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('413', '1001185', 'leveridge', '230', '', '0', '-661.95', '6', '357.26', '-1.06', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('414', '1000348', 'ortolf', '230', '', '0', '-661.28', '8', '316.7', '-2.42', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('415', '1000337', 'maetistym', '230', '', '0', '-704.62', '6', '366.37', '0.42', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('416', '1000334', 'shoshoma', '230', '', '0', '-566.26', '19.83', '279.8', '1.59', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('417', '1000227', 'arnegis', '230', '', '0', '-492.51', '10', '114.29', '0.38', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('418', '1000340', 'rbaharra', '230', '', '0', '-777.01', '12', '247.49', '-2.33', '0', '1066', null);
INSERT INTO `server_spawn_locations` VALUES ('419', '1000347', 'aergwynt', '230', '', '0', '-489.56', '20', '184.91', '-0.24', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('420', '1001187', 'bango_zango', '230', '', '0', '-512.78', '35.4', '308.92', '-2.65', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('421', '1000338', 'sathzant', '230', '', '0', '-497.08', '39.97', '399.95', '3.11', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('422', '1001186', 'hrhanbolo', '230', '', '0', '-633.84', '16', '248.91', '-2.65', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('423', '1000248', 'nheu_jawantal', '230', '', '0', '-610.92', '28.48', '-69.24', '-0.14', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('424', '1000468', 'vhynho', '230', '', '0', '-608.19', '28.48', '-65.14', '0.84', '0', '2001', null);
INSERT INTO `server_spawn_locations` VALUES ('425', '1000469', 'zuzule', '230', '', '0', '-613.87', '29.48', '-70.09', '0.41', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('426', '1000470', 'fuzak_anzak', '230', '', '0', '-618.63', '29.48', '-65.11', '0.86', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('427', '1000471', 'bnhapla', '230', '', '0', '-612.96', '28.48', '-50.86', '-1.21', '0', '1070', null);
INSERT INTO `server_spawn_locations` VALUES ('428', '1000472', 'merlzirn', '230', '', '0', '-614.34', '28.48', '-51.26', '1.03', '0', '1033', null);
INSERT INTO `server_spawn_locations` VALUES ('429', '1000473', 'ninianne', '230', '', '0', '-630.11', '28.79', '-74.77', '2.41', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('430', '1000474', 'kehda_mujuuk', '230', '', '0', '-791.34', '12', '219.55', '1.53', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('431', '1000475', 'whahtoa', '230', '', '0', '-761.7', '-3.15', '391.36', '0.69', '0', '1067', null);
INSERT INTO `server_spawn_locations` VALUES ('432', '1000476', 'gnanghal', '230', '', '0', '-755.69', '-3.15', '382.26', '-2.4', '0', '1021', null);
INSERT INTO `server_spawn_locations` VALUES ('433', '1000365', 'gautzelin', '230', '', '0', '-476.15', '41.5', '433.35', '-0.78', '0', '2033', null);
INSERT INTO `server_spawn_locations` VALUES ('434', '1000221', 'mimiroon', '230', '', '0', '-791.09', '21.35', '386.26', '1.69', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('435', '1500114', 'braitognieux', '230', '', '0', '-693.51', '16.2', '248', '-2.86', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('436', '1000620', 'delado_madalado', '230', '', '0', '-785.93', '-2.37', '206.1', '1.62', '0', '2069', null);
INSERT INTO `server_spawn_locations` VALUES ('437', '1000662', 'skoefmynd', '230', '', '0', '-615.02', '3', '396.9', '-1.58', '0', '2056', null);
INSERT INTO `server_spawn_locations` VALUES ('438', '1700037', 'ansgor', '230', '', '0', '-602.46', '18.2', '228.63', '2.86', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('439', '1001508', 'mareillie', '230', '', '0', '-779.31', '12', '281.83', '2.85', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('440', '1001510', 'angry_river', '230', '', '0', '-791.5', '-1.31', '179.44', '1.61', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('441', '1001474', 'roosting_crow', '230', '', '0', '-460.19', '43', '-89.85', '1.1', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('442', '1001473', 'thata_khamazom', '230', '', '0', '-417.79', '41', '449.92', '2.91', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('443', '1001567', 'imania', '230', '', '0', '-532.86', '37', '86.01', '-0.98', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('444', '1090001', '', '230', '', '0', '-623.66', '28.79', '-81.27', '-0.81', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('445', '1090006', '', '230', '', '0', '-624.55', '4.25', '359', '2.59', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('446', '1090003', '', '230', '', '0', '-598.37', '42.1', '-50.28', '0.61', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('447', '1090018', '', '230', '', '0', '-511.71', '42.3', '29.5', '2.81', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('448', '1090019', '', '230', '', '0', '-567.9', '8', '108.09', '2.69', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('449', '1090017', '', '230', '', '0', '-491.08', '39.99', '39.04', '1.94', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('450', '1090018', '', '230', '', '0', '-513.4', '42.3', '32.69', '0.62', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('451', '1090238', '', '230', '', '0', '-416.5', '40', '446', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('452', '1290004', '', '230', '', '0', '-791.76', '-1.31', '179.53', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('453', '1290004', '', '230', '', '0', '-468.38', '43', '-105.88', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('454', '1090026', '', '230', '', '0', '-753.29', '8.2', '368.39', '0.51', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('455', '1090027', '', '230', '', '0', '-773.43', '10.35', '386.6', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('456', '1090028', '', '230', '', '0', '-764.39', '14.38', '386.44', '-1.67', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('457', '1290004', '', '230', '', '0', '-403.75', '41', '459.25', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('458', '1090097', '', '230', '', '0', '-779.199', '16.347', '386.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('459', '1090100', '', '230', '', '0', '-751.804', '7.352', '390.822', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('460', '1090101', '', '230', '', '0', '-751.804', '7.352', '382.178', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('461', '1090386', '', '230', '', '0', '-631.67', '3.56', '378.76', '0.23', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('462', '1090387', '', '230', '', '0', '-807.66', '8', '234.42', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('463', '1090007', '', '230', '', '0', '-490.38', '42.8', '417.81', '2.45', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('464', '1090400', '', '230', '', '0', '-838.1', '6', '231.94', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('466', '1200119', 'dusty_tomes', '230', '', '0', '-789.24', '14', '195', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('467', '1200027', '', '230', '', '0', '-592', '18', '207', '1', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('468', '5900001', 'guild_mrd_mid', '230', '', '0', '-775', '10', '387', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('469', '5900001', 'guild_mrd_bot', '230', '', '0', '-785', '5', '387', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('470', '5900001', 'guild_mrd_top', '230', '', '0', '-758', '12', '387', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('471', '5900001', 'seventhsage_south', '230', '', '0', '-446', '44', '46', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('472', '5900001', 'seventhsage_east', '230', '', '0', '-435', '48', '32', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('473', '5900001', 'seventhsage_north', '230', '', '0', '-446', '44', '18', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('474', '5900001', 'seventhsage_west', '230', '', '0', '-462', '40', '32', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('475', '5900001', 'northofseventhsage_south', '230', '', '0', '-444', '44', '-15', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('476', '5900001', 'northofseventhsage_east', '230', '', '0', '-441', '44', '-22', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('477', '5900001', 'northofseventhsage_north', '230', '', '0', '-449', '44', '-29', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('478', '5900001', 'northofseventhsage_west', '230', '', '0', '-455', '44', '-22', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('479', '5900001', 'guild_msk_se_se', '230', '', '0', '-560', '42', '-11', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('480', '5900001', 'guild_msk_se_ne', '230', '', '0', '-560', '42', '-20', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('481', '5900001', 'guild_msk_se_nw', '230', '', '0', '-570', '42', '-20', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('482', '5900001', 'guild_msk_se_sw', '230', '', '0', '-570', '42', '-11', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('483', '5900001', 'hyaline_north', '230', '', '0', '-496', '40', '292', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('484', '5900001', 'hyaline_west', '230', '', '0', '-510', '35', '306', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('485', '5900001', 'hyaline_south', '230', '', '0', '-496', '40', '320', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('486', '5900001', 'hyaline_east', '230', '', '0', '-483', '44', '306', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('487', '5900001', 'thundersquall_north', '230', '', '0', '-496', '40', '352', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('488', '5900001', 'thundersquall_south', '230', '', '0', '-496', '40', '366', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('489', '5900001', 'thundersquall_east', '230', '', '0', '-489', '40', '359', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('490', '5900001', 'guild_acn_southsouth', '230', '', '0', '-786', '12', '251', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('491', '5900001', 'guild_acn_south', '230', '', '0', '-786', '12', '225', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('492', '5900001', 'guild_bsm_east', '230', '', '0', '-477', '45', '403', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('493', '5900001', 'guild_bsm_west', '230', '', '0', '-498', '43', '424', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('494', '5900001', 'guild_cul_south', '230', '', '0', '-498', '44', '51', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('495', '5900001', 'guild_cul_nwest', '230', '', '0', '-519', '42', '30', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('496', '5900001', 'guild_msk', '230', '', '0', '-595', '42', '-46', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('497', '5900001', 'marketward', '230', '', '0', '-774', '12', '288', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('498', '5900010', '', '230', '', '0', '-811.176', '8.03', '234.815', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('499', '5900012', '', '230', '', '0', '-806.893', '8.03', '240.885', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('500', '5900011', 'limsa_shipport', '230', '', '0', '-846.89', '5', '240', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('501', '1000042', 'ascilia', '184', '', '0', '-1.5', '196', '124.5', '1.8', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('502', '1000186', 'warburton', '184', '', '0', '-0.2', '196', '123.26', '-0.8', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('503', '1001644', 'stocky_stranger', '184', '', '0', '12.18', '196', '133.42', '-1.26', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('504', '1000840', 'rururaji', '184', '', '0', '9.07', '196', '126.69', '-1.26', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('505', '1001490', 'big-bellied_barker', '184', '', '0', '-19.7', '196', '79.93', '-0.38', '0', '1009', null);
INSERT INTO `server_spawn_locations` VALUES ('506', '1001491', 'fretful_farmhand', '184', '', '0', '3.4', '196', '115.5', '2.7', '0', '1021', null);
INSERT INTO `server_spawn_locations` VALUES ('507', '1001492', 'debauched_demoness', '184', '', '0', '0.8', '196', '103.18', '-1.13', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('508', '1001493', 'dapper_dan', '184', '', '0', '-33.57', '196', '82.42', '1.63', '0', '1013', null);
INSERT INTO `server_spawn_locations` VALUES ('509', '1001494', 'loutish_lad', '184', '', '0', '-9.13', '196', '114.84', '2.33', '0', '1031', null);
INSERT INTO `server_spawn_locations` VALUES ('510', '1001495', 'gil-digging_mistress', '184', '', '0', '-19.11', '196', '95.09', '2.13', '0', '1037', null);
INSERT INTO `server_spawn_locations` VALUES ('511', '1001496', 'twittering_tomboy', '184', '', '0', '-32.37', '196', '80.75', '-0.74', '0', '1101', null);
INSERT INTO `server_spawn_locations` VALUES ('512', '1280127', '', '0', '', '0', '-400', '19', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('513', '1090372', 'exit_trigger', '184', '', '0', '-13', '194.91', '76.75', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('514', '1000438', 'well-traveled_merchant', '193', '', '0', '-0.71', '10.35', '-40.51', '0.3', '0', '1035', null);
INSERT INTO `server_spawn_locations` VALUES ('515', '1000439', 'tipsy_adventurer', '193', '', '0', '-1.87', '9.15', '-30.67', '2.44', '0', '1032', null);
INSERT INTO `server_spawn_locations` VALUES ('516', '1000440', 'cultivated_tender', '193', '', '0', '7.06', '9.15', '-28.62', '-1.54', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('517', '1000441', 'anxious_adventurer', '193', '', '0', '2.63', '9.15', '-33.91', '-0.16', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('518', '1000442', 'baby-faced_adventurer', '193', '', '0', '4.2', '10.35', '-21.98', '3.11', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('519', '1000443', 'austere_adventurer', '193', '', '0', '4.06', '10.35', '-35.24', '2.52', '0', '1036', null);
INSERT INTO `server_spawn_locations` VALUES ('520', '1000444', 'undignified_adventurer', '193', '', '0', '-4.72', '10.35', '-22.56', '2.06', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('521', '1000445', 'shadowy_traveler', '193', '', '0', '-4.09', '9.15', '-24.55', '2.09', '0', '1035', null);
INSERT INTO `server_spawn_locations` VALUES ('522', '1000446', 'astute_merchant', '193', '', '0', '-0.72', '9.15', '-31.81', '-1.18', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('523', '1000447', 'voluptuous_vixen', '193', '', '0', '-2.16', '9.15', '-26.18', '0.09', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('524', '1000448', 'indifferent_passerby', '193', '', '0', '5.93', '10.35', '-25.09', '-2.01', '0', '1037', null);
INSERT INTO `server_spawn_locations` VALUES ('525', '1000449', 'prattling_adventurer', '193', '', '0', '-1.92', '9.15', '-34.19', '0.82', '0', '1013', null);
INSERT INTO `server_spawn_locations` VALUES ('526', '1000450', 'lanky_traveler', '193', '', '0', '4.88', '9.15', '-29.5', '0.65', '0', '1271', null);
INSERT INTO `server_spawn_locations` VALUES ('527', '1000451', 'grinning_adventurer', '193', '', '0', '-1.1', '9.85', '-33.62', '-0.82', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('528', '1001652', 'rostnsthal', '193', '', '0', '-7.73', '9.967', '-27.44', '1.6', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('529', '1090025', 'exit_door', '193', '', '0', '0', '10', '-18', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('530', '2205403', 'opening_jelly', '193', '', '0', '-3.02', '17.35', '14.24', '-2.81', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('531', '2290001', 'opening_yshtola', '193', '', '0', '-8', '16.35', '6', '0.5', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('532', '2290002', 'opening_stahlmann', '193', '', '0', '0', '16.35', '22', '3', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('533', '1000009', 'yda', '166', '', '0', '353.37', '3.88', '-698.98', '-2.6', '0', '1007', null);
INSERT INTO `server_spawn_locations` VALUES ('534', '1000010', 'papalymo', '166', '', '0', '353.37', '3.75', '-703.09', '-2.6', '0', '1000', null);
INSERT INTO `server_spawn_locations` VALUES ('535', '1090384', 'openingstoper_gridania', '166', '', '0', '356.09', '3.74', '-701.62', '-1.41', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('536', '1080120', 'inn_grid_cutscene', '244', '', '0', '159.84', '0.7', '167.17', '-0.2', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('537', '1200335', 'inn_grid_exitdoor_target', '244', '', '0', '159.98', '0.02', '151.9', '-0.44', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('538', '1200376', 'inn_grid_itemstorage', '244', '', '0', '164.91', '-0.1', '167.03', '0.05', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('539', '1200379', 'inn_grid_bed', '244', '', '0', '155.97', '0', '165.14', '-1.65', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('540', '1200380', 'inn_uld_bed', '244', '', '0', '-4.16', '0', '4.14', '-1.65', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('541', '1090264', '', '206', '', '0', '-192.57', '23.48', '-1407.58', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('542', '1001469', 'eldid', '206', '', '0', '-195.3', '23.96', '-1410.34', '0.98', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('543', '1290004', 'bgkeepout_market', '206', '', '0', '-195.3', '23.96', '-1410.34', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('544', '1600089', 'dbhonja', '206', '', '0', '-202.69', '20', '-1456.36', '-2.69', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('545', '1000461', 'kipopo', '206', '', '0', '-206.5', '20.5', '-1454.97', '-2.64', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('546', '1600019', 'gunzelin', '206', '', '0', '-208.47', '20', '-1456.54', '2.72', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('547', '1000236', 'opyltyl', '206', '', '0', '-205.68', '20', '-1454.72', '3.08', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('548', '1000326', 'cicely', '206', '', '0', '-202.69', '20', '-1461.13', '1.84', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('549', '1000629', 'eburhart', '206', '', '0', '-197.02', '18.42', '-1468.43', '1.08', '0', '2071', null);
INSERT INTO `server_spawn_locations` VALUES ('550', '1000074', 'onguen', '206', '', '0', '-200.76', '20', '-1465.8', '-1.15', '0', '10', null);
INSERT INTO `server_spawn_locations` VALUES ('551', '1001102', 'sandre', '206', '', '0', '-201.36', '17.99', '-1469.75', '2.28', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('552', '5900001', 'guild_btn', '206', '', '0', '-206', '20', '-1466', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('553', '1090046', '', '206', '', '0', '-202.91', '18.09', '-1477.51', '-1.42', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('554', '1001103', 'mestonnaux', '206', '', '0', '-211.76', '18.1', '-1473.52', '1.86', '0', '1271', null);
INSERT INTO `server_spawn_locations` VALUES ('555', '1090159', '', '206', '', '0', '-212.97', '18.2', '-1477.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('556', '1001101', 'vnabyano', '206', '', '0', '-200.33', '18.25', '-1484.97', '-2.49', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('557', '1001806', 'enie', '206', '', '0', '-196.95', '18.21', '-1486.62', '0.13', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('558', '1001436', 'owyne', '206', '', '0', '-119.34', '16.24', '-1340.91', '-0.11', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('559', '1090255', '', '206', '', '0', '-110.96', '16.96', '-1342.49', '-0.66', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('560', '1500324', 'serpent_private_white', '206', '', '0', '-106.59', '17.14', '-1341.73', '-2.62', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('561', '1200288', '', '206', '', '0', '-105.7', '17.13', '-1342.14', '1.82', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('562', '1001437', 'sybell', '206', '', '0', '-112.2', '16.08', '-1334.29', '-1.61', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('563', '1280061', 'gridania_aetheryte', '206', '', '0', '-130.63', '16.08', '-1323.99', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('564', '5900001', 'whistling_miller', '206', '', '0', '-70', '19', '-1474', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('565', '1600030', 'littlejohn', '206', '', '0', '-61.5', '19', '-1479.4', '-1.1', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('566', '1500333', 'serpent_private_stone', '206', '', '0', '-82.66', '19.06', '-1500.24', '-2.27', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('567', '1200288', '', '206', '', '0', '-81.98', '19.06', '-1501.04', '-2.27', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('568', '1090445', '', '206', '', '0', '-63.56', '18.13', '-1565.32', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('569', '1090279', '', '206', '', '0', '-70.85', '17.43', '-1577.22', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('570', '1090466', '', '206', '', '0', '2.69', '22.13', '-1566.29', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('571', '1001431', 'genna', '206', '', '0', '-90.54', '16.32', '-1603.25', '-0.37', '0', '1152', null);
INSERT INTO `server_spawn_locations` VALUES ('572', '1060022', 'louisoix', '206', '', '0', '16.62', '22.24', '-1560.96', '-2.53', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('573', '1000630', 'noes', '206', '', '0', '-1.75', '21.34', '-1597.88', '-0.07', '0', '2053', null);
INSERT INTO `server_spawn_locations` VALUES ('574', '1001183', 'emoni', '155', '', '0', '59.81', '4', '-1221.17', '0.87', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('575', '1200027', 'retainerbell_gridania1', '155', '', '0', '55.82', '4', '-1216.88', '2.8', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('576', '1000458', 'vkorolon', '155', '', '0', '55.82', '4', '-1212.23', '1.91', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('577', '1600100', 'zagylhaemr', '155', '', '0', '55.34', '4', '-1210.62', '0.99', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('578', '1000456', 'tierney', '155', '', '0', '56.59', '4', '-1205.44', '2.4', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('579', '1099063', '', '155', '', '0', '67.09', '-6.8', '-1215.63', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('580', '1000457', 'gontrant', '155', '', '0', '56.99', '4', '-1204.07', '1.01', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('581', '1002090', 'serpent_private_hodder', '155', '', '0', '53.78', '-7', '-1205.78', '1.54', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('582', '1002091', 'serpent_private_dauremant', '155', '', '0', '69.21', '-7', '-1206.64', '-1.34', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('583', '1500055', 'lionnellais', '155', '', '0', '58.5', '-7', '-1202', '-1.9', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('584', '1090490', '', '155', '', '0', '73.39', '-6.8', '-1208.94', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('585', '1500056', 'hida', '155', '', '0', '63.7', '-7', '-1201.4', '1', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('586', '1600119', 'naih_khamazom', '155', '', '0', '55.36', '4', '-1197.47', '2.26', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('587', '1000230', 'miounne', '155', '', '0', '55.94', '4', '-1196.44', '1.67', '0', '1060', null);
INSERT INTO `server_spawn_locations` VALUES ('588', '1001184', 'gyles', '155', '', '0', '55.39', '4', '-1194.95', '1.09', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('589', '5900011', 'gridania_shipport', '155', '', '0', '54', '-7', '-1197', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('590', '5900011', 'gridania_shipport2', '155', '', '0', '54', '-7', '-1197', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('591', '1600092', 'aeduin', '155', '', '0', '72', '-7.4', '-1193', '-1.46', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('592', '1500393', 'torsefers', '155', '', '0', '92.08', '3.44', '-1211.22', '0.05', '0', '1045', null);
INSERT INTO `server_spawn_locations` VALUES ('593', '1500334', 'serpent_private_hill', '155', '', '0', '97.81', '3.53', '-1213.97', '-0.21', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('594', '1000437', 'edasshym', '155', '', '0', '63.63', '4', '-1216.16', '1.07', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('595', '1000427', 'anene', '155', '', '0', '65.15', '4.2', '-1219.57', '2.42', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('596', '1000429', 'honga_vunga', '155', '', '0', '64.04', '4', '-1214.38', '3.14', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('597', '1000428', 'sylbyrt', '155', '', '0', '67.66', '4.2', '-1223.57', '-0.58', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('599', '1001707', 'pfarahr', '155', '', '0', '64.18', '-6.8', '-1217.46', '0.6', '0', '1003', null);
INSERT INTO `server_spawn_locations` VALUES ('600', '1001709', 'fryswyde', '155', '', '0', '53.55', '-7', '-1216.54', '1.61', '0', '1151', null);
INSERT INTO `server_spawn_locations` VALUES ('601', '1001706', 'memama', '155', '', '0', '65.26', '-6.75', '-1217.68', '0.5', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('602', '1001710', 'willielmus', '155', '', '0', '53.82', '-7', '-1213.1', '1.57', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('603', '1000430', 'nonco_menanco', '155', '', '0', '67.34', '4', '-1208.33', '-2.63', '0', '1002', null);
INSERT INTO `server_spawn_locations` VALUES ('604', '1001459', 'flavielle', '155', '', '0', '75.4', '4.2', '-1220.13', '-1.43', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('605', '1099046', '', '155', '', '0', '72.19', '4', '-1207.91', '1.17', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('606', '1000431', 'l\'tandhaa', '155', '', '0', '66.46', '4', '-1201.87', '-1.26', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('607', '1000432', 'pofufu', '155', '', '0', '66.15', '4', '-1199.99', '-2.93', '0', '1026', null);
INSERT INTO `server_spawn_locations` VALUES ('608', '1000434', 'odilie', '155', '', '0', '71.95', '4', '-1200.24', '-1', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('609', '1000433', 'drividot', '155', '', '0', '75.45', '4', '-1202.3', '-2.06', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('610', '1200195', 'task_board', '155', '', '0', '75.73', '5.5', '-1201.37', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('611', '1000435', 'basewin', '155', '', '0', '69.39', '4', '-1196.54', '2.97', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('612', '1000436', 'seikfrae', '155', '', '0', '62.33', '4', '-1194.06', '-2.53', '0', '1025', null);
INSERT INTO `server_spawn_locations` VALUES ('613', '1001951', 'anselm', '155', '', '0', '66.94', '4', '-1194.13', '-2.32', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('614', '1700001', 'penelope', '155', '', '0', '58.08', '3.8', '-1183.33', '2.93', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('615', '1001708', 'beaudonet', '155', '', '0', '54.04', '-7', '-1218.46', '-0.59', '0', '1151', null);
INSERT INTO `server_spawn_locations` VALUES ('616', '1200378', 'inn_limsa_bed', '244', '', '0', '-164', '0', '-154.21', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('617', '1080120', 'inn_uld_cutscene', '244', '', '0', '-4', '0.7', '-0.03', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('618', '1080120', 'inn_limsa_cutscene', '244', '', '0', '-161.5', '0.7', '-152.8', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('619', '1200376', 'inn_limsa_itemstorage', '244', '', '0', '-155.31', '-0.1', '-153', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('620', '1200376', 'inn_uld_itemstorage', '244', '', '0', '3.3', '-0.1', '7', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('621', '5900001', 'guild_crp', '206', '', '0', '18', '9', '-1270', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('622', '5900001', 'guild_ltw', '206', '', '0', '87', '20', '-1452', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('623', '5900001', 'fenyll_fineries', '206', '', '0', '114', '20', '-1402', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('624', '5900001', 'centaurs_eye', '206', '', '0', '136', '25', '-1542', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('625', '5900001', 'guild_lnc', '206', '', '0', '172', '28', '-1576', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('626', '5900001', 'guild_arc', '206', '', '0', '227', '12', '-1264', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('627', '5900001', 'guild_cnj', '206', '', '0', '-325', '8', '-1669', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('628', '5900004', 'door1', '184', '', '0', '-14', '196', '112', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('629', '5900004', 'door2', '184', '', '0', '12', '196', '184', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('630', '5900011', 'uldah_mapshipport_2', '209', '', '0', '-127', '271', '157', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('631', '1000466', 'frances', '206', '', '0', '11.85', '8.75', '-1266.45', '1.48', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('632', '1200288', 'miniaeth_adv', '155', '', '0', '98.77', '3.59', '-1213.67', '2.47', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('633', '1200288', 'miniaeth_lnc', '206', '', '0', '164.52', '25.06', '-1557.47', '2.21', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('634', '1200288', 'miniaeth_ltw', '206', '', '0', '86.45', '20.16', '-1423.46', '-0.13', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('635', '1200288', 'miniaeth_arc', '206', '', '0', '202.02', '9.53', '-1246.36', '1.53', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('637', '1600017', 'osgar', '206', '', '0', '22.4', '8.75', '-1261.95', '-1.92', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('638', '1600034', 'goldyve', '206', '', '0', '46', '12.1', '-1310.1', '-1.75', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('639', '1600080', 'ulric', '206', '', '0', '10.31', '8.75', '-1258', '2.43', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('640', '1600035', 'roderic', '206', '', '0', '28.1', '12.05', '-1318', '0.68', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('641', '1600033', 'bkonbalha', '206', '', '0', '23.5', '12', '-1314.2', '0.8', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('642', '1600024', 'foinine', '206', '', '0', '185', '27.7', '-1374.5', '1.3', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('643', '1600022', 'gagaulu', '206', '', '0', '196.7', '28.16', '-1370.25', '-1.97', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('644', '1600027', 'zelia', '206', '', '0', '187.8', '27.7', '-1382', '1.3', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('645', '1600076', 'doelle', '206', '', '0', '222.79', '12', '-1275.95', '0.77', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('646', '1600026', 'humphrey', '206', '', '0', '190.3', '27.7', '-1389.6', '1.2', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('647', '1600020', 'stanilde', '206', '', '0', '202.3', '27.7', '-1385.2', '-1.94', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('648', '1600028', 'wulfthryth', '206', '', '0', '190.2', '27.7', '-1426.3', '1.89', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('649', '1600025', 'mumuko', '206', '', '0', '202.1', '28.15', '-1430.7', '-1.18', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('650', '1600029', 'beaudefoin', '206', '', '0', '187.7', '27.7', '-1433.9', '1.95', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('651', '1600032', 'animuili', '206', '', '0', '114', '20', '-1391', '-3.05', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('652', '1600021', 'matheonien', '206', '', '0', '184.6', '27.7', '-1441.3', '1.85', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('653', '1600023', 'ahldiym', '206', '', '0', '196.9', '27.7', '-1445.8', '-1.2', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('654', '1600031', 'twyrmoht', '206', '', '0', '136.01', '25', '-1530.8', '-3.13', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('655', '1600075', 'roustebant', '206', '', '0', '172.26', '27.5', '-1586.4', '0.38', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('656', '1600018', 'spaerfedar', '206', '', '0', '93.11', '20', '-1451.79', '-1.87', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('657', '1600084', 'voyce', '206', '', '0', '98.67', '20', '-1453.98', '-2.11', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('658', '1600037', 'zaesoeya', '206', '', '0', '36', '17.29', '-1368', '0.32', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('659', '1600064', 'hfudzol', '206', '', '0', '32.52', '17.29', '-1359.72', '2.15', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('660', '1600036', 'yolaine', '206', '', '0', '36.55', '17.29', '-1357.4', '2.74', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('661', '1000462', 'clarembald', '206', '', '0', '179.15', '27.5', '-1579.22', '-1.66', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('662', '1000459', 'gallia', '206', '', '0', '98.44', '20', '-1458.68', '-0.67', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('663', '1000464', 'cassandra', '206', '', '0', '233.02', '12', '-1267', '-1.63', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('664', '1500115', 'meara', '206', '', '0', '204.21', '27.7', '-1438.26', '-1.5', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('665', '1200027', 'retainerbell_gridania2', '206', '', '0', '190.95', '27.5', '-1401.98', '-2.71', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('666', '1080101', '', '206', '', '0', '68.44', '10.87', '-1244.42', '2.45', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('667', '1500061', 'fruhdhem', '206', '', '0', '65.02', '11.79', '-1241.79', '-2.76', '0', '2051', null);
INSERT INTO `server_spawn_locations` VALUES ('668', '1002106', 'serpent_lieutenant_marette', '206', '', '0', '33.7', '10.22', '-1294.37', '-1.59', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('669', '1200022', 'chocobo_standard', '206', '', '0', '66.73', '11.73', '-1242.08', '-2.89', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('670', '1200044', 'chocobo', '206', '', '0', '64.29', '11.79', '-1240.98', '-2.93', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('671', '1200209', 'specialevent_obj', '206', '', '0', '39', '10', '-1293', '-1.57', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('672', '1002109', 'serpent_sergeant_nelhah', '206', '', '0', '34.96', '9.84', '-1288.92', '-1.13', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('673', '1002107', 'serpent_sergeant_frilaix', '206', '', '0', '33.95', '9.85', '-1291.25', '-1.64', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('674', '1002108', 'serpent_private_tristelle', '206', '', '0', '33.45', '10.33', '-1295.4', '-1.49', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('675', '1000465', 'anaidjaa', '206', '', '0', '11.86', '8.75', '-1265.19', '1.66', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('676', '1000701', 'zuzupoja', '206', '', '0', '7.36', '8.75', '-1257.89', '-1.32', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('677', '1001583', 'marcette', '206', '', '0', '22.84', '10.9', '-1306.83', '1.06', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('678', '1500294', 'gagaroon', '206', '', '0', '198.6', '25.21', '-1341.66', '2.79', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('679', '1001396', 'lefwyne', '206', '', '0', '180.42', '25.82', '-1400.37', '2.87', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('680', '1700038', 'aubrenard (check cnstctr)', '206', '', '0', '179.74', '25.82', '-1415.51', '-1.07', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('681', '1080040', '', '206', '', '0', '108.78', '20', '-1467.61', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('682', '1001080', 'tatagoi', '206', '', '0', '106.26', '20', '-1472.57', '0.04', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('683', '1001081', 'khuma_moshroca', '206', '', '0', '105.99', '20', '-1478.71', '-0.8', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('684', '1001077', 'beli', '206', '', '0', '93.63', '20', '-1482.87', '0.8', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('685', '1001470', 'ylessa', '206', '', '0', '59.41', '28.32', '-1656.06', '0.38', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('686', '1290004', 'bgkeepout_lilyhills', '206', '', '0', '63.83', '30.98', '-1679.51', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('687', '1001582', 'swaenhylt', '206', '', '0', '17.61', '21.75', '-1432.55', '1.55', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('688', '1001078', 'maddeline', '206', '', '0', '91.44', '20', '-1464.58', '-0.93', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('689', '1001082', 'luilda', '206', '', '0', '91.83', '20', '-1467.93', '2.78', '0', '1043', null);
INSERT INTO `server_spawn_locations` VALUES ('690', '1500326', 'serpent_private_carver', '206', '', '0', '87.4', '20.16', '-1423.39', '-0.22', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('691', '1000231', 'hereward', '206', '', '0', '97.02', '20', '-1459.46', '-0.48', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('692', '1000067', 'dadalo', '206', '', '0', '100.79', '21.1', '-1466.96', '-2.1', '0', '2022', null);
INSERT INTO `server_spawn_locations` VALUES ('693', '1000066', 'alixe', '206', '', '0', '103.75', '20.4', '-1468.51', '2.18', '0', '2021', null);
INSERT INTO `server_spawn_locations` VALUES ('694', '1000068', 'kain', '206', '', '0', '100.33', '20.22', '-1482.5', '-0.5', '0', '2023', null);
INSERT INTO `server_spawn_locations` VALUES ('695', '1001189', 'pukiki', '206', '', '0', '33.04', '17.29', '-1366.27', '0.83', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('696', '1001079', 'dyrstbrod', '206', '', '0', '106.66', '22', '-1483.73', '-0.74', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('697', '1500325', 'serpent_private_holmes', '206', '', '0', '201.78', '9.53', '-1245.48', '1.53', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('698', '1001188', 'maisenta', '206', '', '0', '221.77', '9.4', '-1230.49', '-2.29', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('699', '1000463', 'nonolato', '206', '', '0', '232.88', '12.46', '-1268.94', '-1.38', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('700', '1000832', 'mianne', '206', '', '0', '238.73', '12', '-1266.18', '-1.6', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('701', '1000830', 'georjeaux', '206', '', '0', '241.71', '13', '-1264.63', '2.48', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('702', '1000625', 'bubuku', '206', '', '0', '242.76', '13', '-1267.73', '1.57', '0', '2054', null);
INSERT INTO `server_spawn_locations` VALUES ('703', '1000829', 'odhinek', '206', '', '0', '241.82', '13', '-1276.62', '1.14', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('704', '1001175', 'chloe', '206', '', '0', '243.35', '12', '-1283.07', '0.54', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('705', '1000626', 'piers', '206', '', '0', '258.39', '14', '-1267.15', '-0.04', '0', '2058', null);
INSERT INTO `server_spawn_locations` VALUES ('706', '1000831', 'alaire', '206', '', '0', '263.37', '14.2', '-1273.47', '1.37', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('707', '1000568', 'luitfrid', '206', '', '0', '199.25', '27.9', '-1577.51', '-3.1', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('708', '1000567', 'dhemdaeg', '206', '', '0', '183.88', '27.5', '-1577.74', '0.83', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('709', '1000243', 'burchard', '206', '', '0', '194.35', '27.9', '-1578.68', '3.13', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('710', '1000681', 'nuala', '206', '', '0', '195.17', '27.9', '-1578.8', '-2.27', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('711', '1000569', 'haurtefert', '206', '', '0', '203.62', '29.5', '-1578.13', '-1.74', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('712', '1000242', 'willelda', '206', '', '0', '179.15', '27.5', '-1580.59', '-1.45', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('713', '1000627', 'aerstsyn', '206', '', '0', '196.18', '27.9', '-1582.29', '1.55', '0', '2046', null);
INSERT INTO `server_spawn_locations` VALUES ('714', '1000570', 'zpahtalo', '206', '', '0', '203.5', '29.5', '-1585.41', '-1.49', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('715', '1000566', 'francis', '206', '', '0', '210.14', '29.7', '-1586.23', '-1.45', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('716', '1000069', 'jolline', '206', '', '0', '197.31', '27.9', '-1589.06', '1.55', '0', '2024', null);
INSERT INTO `server_spawn_locations` VALUES ('717', '1000599', 'jmoldva', '206', '', '0', '195.04', '27.9', '-1591.1', '-0.15', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('718', '1000565', 'ceinguled', '206', '', '0', '190.09', '27.5', '-1595.32', '-0.07', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('719', '1500127', 'prosperlain', '206', '', '0', '92.74', '24.92', '-1573.54', '1.97', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('720', '1500335', 'serpent_private_kirk', '206', '', '0', '163.75', '25.06', '-1558.3', '-1.17', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('721', '1000071', 'bertennant', '155', '', '0', '191.07', '-0.85', '-1147.25', '1.63', '0', '2026', null);
INSERT INTO `server_spawn_locations` VALUES ('722', '1001433', 'ulta', '155', '', '0', '192.07', '-0.85', '-1159.97', '0.78', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('723', '1001432', 'mathye', '155', '', '0', '179.56', '2.75', '-1144.66', '-2.97', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('724', '1000951', 'lonsygg', '155', '', '0', '162.79', '-1.48', '-1153.32', '1.94', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('728', '1200052', 'test_mining_point', '141', '', '0', '-8.48', '45.36', '139.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('729', '5900013', 'ferry_route_thantonoscea', '200', '', '0', '0', '10', '-128', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('730', '5900014', 'ferry_route_nosceatothan', '200', '', '0', '0', '10', '128', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('731', '1280001', 'limsa_aetheryte', '230', '', '0', '-395.1', '42.5', '337.12', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('732', '1280002', 'camp_beardedrock_aetheryte', '128', '', '0', '29.97', '45.83', '-35.47', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('733', '1280003', 'camp_skullvalley_aetheryte', '129', '', '0', '-991.88', '61.71', '-1120.79', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('734', '1280004', 'camp_baldknoll_aetheryte', '129', '', '0', '-1883.47', '53.77', '-1372.68', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('735', '1280005', 'camp_bloodshore_aetheryte', '130', '', '0', '1123.29', '45.7', '-928.69', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('736', '1280006', 'camp_ironlake_aetheryte', '135', '', '0', '-278.181', '77.63', '-2260.79', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('737', '1280007', 'cedarwood_aetherytegate', '128', '', '0', '582.47', '54.52', '-1.2', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('738', '1280008', 'widowcliffs_aetherytegate', '128', '', '0', '966', '50', '833', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('739', '1280009', 'morabybay_aetherytegate', '128', '', '0', '318', '25', '581', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('740', '1280010', 'woadwhisper_aetherytegate', '129', '', '0', '-636', '50', '-1287', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('741', '1280011', 'islesofumbra_aetherytegate', '129', '', '0', '-2018', '61', '-763', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('742', '1280012', 'tigerhelm_aetherytegate', '130', '', '0', '1628', '62', '-449', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('743', '1280013', 'southbloodshore_aetherytegate', '130', '', '0', '1522', '3', '-669', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('744', '1280014', 'agelysswise_aetherytegate', '130', '', '0', '1410', '55', '-1650', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('745', '1280015', 'zelmasrun_aetherytegate', '135', '', '0', '-125', '61', '-1440', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('746', '1280016', 'bronzelake_aetherytegate', '135', '', '0', '-320', '53', '-1826', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('747', '1280017', 'oakwood_aetherytegate', '135', '', '0', '-894', '42', '-2188', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('748', '1280018', 'mistbeardcove_aetherytegate', '131', '', '0', '-1694.5', '-19', '-1534', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('749', '1280020', 'cassiopeia_aetherytegate', '132', '', '0', '1343.5', '-54.38', '-870.84', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('750', '1280031', 'uldah_aetheryte', '175', '', '0', '-240.45', '185.93', '-9.56', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('751', '1280032', 'camp_blackbrush_aetheryte', '170', '', '0', '33', '201', '-482', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('752', '1280033', 'camp_drybone_aetheryte', '171', '', '0', '1250.9', '264', '-544.2', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('753', '1280034', 'camp_horizon_aetheryte', '172', '', '0', '-1315', '57', '-147', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('754', '1280035', 'camp_bluefog_aetheryte', '173', '', '0', '-165', '281', '-1699', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('755', '1280036', 'camp_brokenwater_aetheryte', '174', '', '0', '1686', '297', '995', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('756', '1280037', 'cactusbasin_aetherytegate', '170', '', '0', '639', '185', '122', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('757', '1280038', 'foursisters_aetherytegate', '170', '', '0', '539', '218', '-14', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('758', '1280039', 'halatali_aetherytegate', '171', '', '0', '1599', '259', '-233', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('759', '1280040', 'burningwall_aetherytegate', '171', '', '0', '2010', '281', '-768', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('760', '1280041', 'sandgate_aetherytegate', '171', '', '0', '2015', '248', '64', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('761', '1280042', 'nophicaswells_aetherytegate', '172', '', '0', '-866', '89', '376', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('762', '1280043', 'footfalls_aetherytegate', '172', '', '0', '-1653', '25', '-469', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('763', '1280044', 'scorpionkeep_aetherytegate', '172', '', '0', '-1223', '70', '191', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('764', '1280045', 'hiddengorge_aetherytegate', '173', '', '0', '-635', '281', '-1797', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('765', '1280046', 'seaofspires_aetherytegate', '173', '', '0', '447', '260', '-2158', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('766', '1280047', 'cutterspass_aetherytegate', '173', '', '0', '-710', '281', '-2212', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('767', '1280048', 'redlabyrinth_aetherytegate', '174', '', '0', '1797', '249', '1856', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('768', '1280049', 'burntlizardcreek_aetherytegate', '174', '', '0', '1185', '280', '1407', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('769', '1280050', 'zanrak_aetherytegate', '174', '', '0', '2416', '249', '1535', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('770', '1280052', 'nanawamines_aetherytegate', '0', '', '0', '80.5', '169', '-1268.5', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('771', '1280054', 'copperbellmines_aetherytegate', '0', '', '0', '-621', '112', '-118', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('772', '1280057', '', '0', '', '0', '33', '201', '-482', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('773', '1280058', '', '0', '', '0', '-1315', '57', '-147', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('774', '1280059', '', '0', '', '0', '-165', '281', '-1699', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('775', '1280061', 'gridania_aetheryte', '206', '', '0', '-130.63', '16.08', '-1323.99', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('776', '1280062', 'camp_bentbranch_aetheryte', '150', '', '0', '288', '4', '-543.928', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('777', '1280063', 'camp_nineivies_aetheryte', '151', '', '0', '1702', '20', '-862', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('778', '1280064', 'camp_emeraldmoss_aetheryte', '152', '', '0', '-1052', '20', '-1760', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('779', '1280065', 'camp_crimsonbark_aetheryte', '153', '', '0', '-1566.04', '-11.89', '-550.51', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('780', '1280066', 'camp_tranquil_aetheryte', '154', '', '0', '734', '-12', '1126', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('781', '1280067', 'humblehearth_aetherytegate', '150', '', '0', '-94.07', '4', '-543.16', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('782', '1280068', 'sorrelhaven_aetherytegate', '150', '', '0', '-285', '-21', '-46', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('783', '1280069', 'fivehangs_aetherytegate', '150', '', '0', '636', '17', '-324', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('784', '1280070', 'verdantdrop_aetherytegate', '151', '', '0', '1529', '27', '-1147', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('785', '1280071', 'lynxpeltpatch_aetherytegate', '151', '', '0', '1296', '48', '-1534', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('786', '1280072', 'larkscall_aetherytegate', '151', '', '0', '2297', '33', '-703', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('787', '1280073', 'treespeak_aetherytegate', '152', '', '0', '-888', '40', '-2192', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('788', '1280074', 'aldersprings_aetherytegate', '152', '', '0', '-1567', '17', '-2593', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('789', '1280075', 'lasthold_aetherytegate', '152', '', '0', '-801', '32', '-2792', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('790', '1280076', 'lichenweed_aetherytegate', '153', '', '0', '-1908', '1', '-1042', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('791', '1280077', 'mumurrills_aetherytegate', '153', '', '0', '-2158', '-45', '-166', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('792', '1280078', 'turningleaf_aetherytegate', '153', '', '0', '-1333', '-13', '324', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('793', '1280079', 'silentarbor_aetherytegate', '154', '', '0', '991', '-11', '600', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('794', '1280080', 'longroot_aetherytegate', '154', '', '0', '1126', '1', '1440', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('795', '1280081', 'snakemolt_aetherytegate', '154', '', '0', '189', '1', '1337', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('796', '1280082', 'muntuycellars_aetherytegate', '0', '', '0', '-689', '-15', '-2065', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('797', '1280083', 'tamtaradeeprcroft_aetherytegate', '0', '', '0', '313', '-35', '-171', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('798', '1280088', '', '0', '', '0', '-1054', '21', '-1761', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('799', '1280089', '', '0', '', '0', '-1568', '-11', '-552', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('800', '1280092', 'camp_dragonhead_aetheryte', '143', '', '0', '216', '303', '-258', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('801', '1280093', 'camp_crookedfork_aetheryte', '144', '', '0', '1122', '271', '-1149', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('802', '1280094', 'camp_glory_aetheryte', '145', '', '0', '1498', '207', '767', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('803', '1280095', 'camp_everlakes_aetheryte', '147', '', '0', '-163', '223', '1151', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('804', '1280096', 'camp_riversmeet_aetheryte', '148', '', '0', '-1761', '270', '-198', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('805', '1280097', 'boulderdowns_aetherytegate', '143', '', '0', '-517', '210', '543', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('806', '1280098', 'prominencepoint_aetherytegate', '143', '', '0', '190', '368', '-662', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('807', '1280099', 'feathergorge_aetherytegate', '143', '', '0', '960', '288', '-22', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('808', '1280100', 'maidenglen_aetherytegate', '144', '', '0', '1737', '177', '-1250', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('809', '1280101', 'hushedboughs_aetherytegate', '144', '', '0', '1390', '223', '-736', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('810', '1280102', 'scarwingfall_aetherytegate', '144', '', '0', '1788', '166', '-829', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('811', '1280103', 'weepingvale_aetherytegate', '145', '', '0', '1383', '232', '422', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('812', '1280104', 'clearwater_aetherytegate', '145', '', '0', '2160', '143', '622', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('813', '1280105', 'teriggansstand_aetherytegate', '147', '', '0', '-1', '145', '1373', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('814', '1280106', 'shepherdpeak_aetherytegate', '147', '', '0', '-64', '186', '1924', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('815', '1280107', 'fellwood_aetherytegate', '147', '', '0', '-908', '192', '2162', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('816', '1280108', 'wyrmkingspearch_aetherytegate', '148', '', '0', '-1738', '286', '-844', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('817', '1280109', 'lance_aetherytegate', '148', '', '0', '-2366', '337', '-1058', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('818', '1280110', 'twinpools_aetherytegate', '148', '', '0', '-2821', '257', '-290', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('819', '1280117', '', '0', '', '0', '216', '303', '-258', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('820', '1280118', '', '0', '', '0', '1498', '207', '767', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('821', '1280119', '', '0', '', '0', '-163', '223', '1151', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('822', '1280121', 'camp_brittlebark_aetheryte', '190', '', '0', '484', '19', '672', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('823', '1280122', 'camp_revenantstoll_aetheryte', '190', '', '0', '-400', '19', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('824', '1280123', 'fogfens_aetherytegate', '190', '', '0', '-458', '-40', '-318', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('825', '1280124', 'singingshards_aetherytegate', '190', '', '0', '580', '59', '206', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('826', '1280125', 'jaggedcrestcave_aetherytegate', '190', '', '0', '-365', '-13', '-37', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('827', '1280126', '', '0', '', '0', '484', '19', '672', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('828', '1280127', '', '0', '', '0', '-400', '19', '338', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('832', '1090373', 'opening_stoper_uldah', '184', '', '0', '27.42', '192', '126.94', '0.33', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('835', '1000444', 'undignified_adventurer', '230', 'PrivateAreaMasterPast', '1', '-832.36', '6', '209.44', '-0.35', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('836', '1000438', 'well-traveled_merchant', '230', 'PrivateAreaMasterPast', '1', '-831.73', '6', '196.77', '0.86', '0', '1035', null);
INSERT INTO `server_spawn_locations` VALUES ('837', '1000447', 'voluptuous_vixen', '230', 'PrivateAreaMasterPast', '1', '-863.34', '4', '236.13', '0.93', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('838', '1000450', 'lanky_traveler', '230', 'PrivateAreaMasterPast', '1', '-855.68', '3.1', '258.51', '-1.56', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('839', '1000151', 'hob', '230', 'PrivateAreaMasterPast', '1', '-834.77', '6', '241.55', '-2.79', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('840', '1000260', 'pearly-toothed_porter', '230', 'PrivateAreaMasterPast', '1', '-823.86', '6', '198.95', '0.13', '0', '1070', null);
INSERT INTO `server_spawn_locations` VALUES ('841', '1000264', 'pasty-faced_adventurer', '230', 'PrivateAreaMasterPast', '1', '-829.72', '6', '260.6', '-1.07', '0', '1058', null);
INSERT INTO `server_spawn_locations` VALUES ('842', '1000261', 'muscle-bound_deckhand', '230', 'PrivateAreaMasterPast', '1', '-823.75', '6', '200.27', '-2.7', '0', '1033', null);
INSERT INTO `server_spawn_locations` VALUES ('843', '1500004', 'gert', '230', 'PrivateAreaMasterPast', '1', '-809.15', '8', '230.88', '0.4', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('844', '1500005', 'lorhzant', '230', 'PrivateAreaMasterPast', '1', '-809.19', '8', '244.86', '-2.78', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('845', '1000137', 'man0l1_baderon', '133', 'PrivateAreaMasterPast', '2', '-430.844', '40.2116', '186.773', '-1.30039', '0', '1060', null);
INSERT INTO `server_spawn_locations` VALUES ('846', '1290002', 'privatearea_exit', '230', 'PrivateAreaMasterPast', '1', '-838.1', '6', '231.94', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('847', '1000099', 'skittish_adventurer', '133', 'PrivateAreaMasterPast', '2', '-442.743', '39.5', '185.32', '-1.69155', '0', '1002', null);
INSERT INTO `server_spawn_locations` VALUES ('848', '1000098', 'onyx-haired_adventurer', '133', 'PrivateAreaMasterPast', '2', '-446.004', '39.5', '184.858', '1.482', '0', '1002', null);
INSERT INTO `server_spawn_locations` VALUES ('849', '1000076', 'duplicitous_trader', '133', 'PrivateAreaMasterPast', '2', '-442.31', '39.5', '193.317', '0.581998', '0', '1019', null);
INSERT INTO `server_spawn_locations` VALUES ('850', '1000075', 'crapulous_adventurer', '133', 'PrivateAreaMasterPast', '2', '-450.865', '39.5', '194.59', '1.538', '0', '1019', null);
INSERT INTO `server_spawn_locations` VALUES ('851', '1000100', 'relaxing_adventurer', '133', 'PrivateAreaMasterPast', '2', '-449.132', '39.5', '196.246', '3.108', '0', '1003', null);
INSERT INTO `server_spawn_locations` VALUES ('852', '1000167', 'mytesyn', '133', 'PrivateAreaMasterPast', '2', '-435.2', '40', '207.07', '-1.9', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('853', '1000077', 'debonair_pirate', '133', 'PrivateAreaMasterPast', '2', '-452.427', '39.5', '202.873', '2.25598', '0', '1003', null);
INSERT INTO `server_spawn_locations` VALUES ('854', '1000001', 'yshtola', '133', 'PrivateAreaMasterPast', '2', '-463.547', '40', '183.262', '-1.3983', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('855', '1001643', 'cocksure-cockswain', '133', 'PrivateAreaMasterPast', '2', '-445.719', '40', '221.513', '-1.59477', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('856', '1001649', 'sententious_sellsword', '133', 'PrivateAreaMasterPast', '2', '-473.359', '40', '207.664', '2.742', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('857', '1001650', 'solicitous_sellsword', '133', 'PrivateAreaMasterPast', '2', '-445.765', '43', '167.759', '-1.59122', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('858', '1000951', 'lonsygg', '155', 'PrivateAreaMasterPast', '1', '107.96', '9.4', '-1211.89', '0.3243', '0', '1031', null);
INSERT INTO `server_spawn_locations` VALUES ('859', '1000876', 'tkebbe', '155', 'PrivateAreaMasterPast', '1', '175.76', '-1.25', '-1151.11', '-2.67', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('860', '1000017', 'farrimond', '155', 'PrivateAreaMasterPast', '1', '181.82', '-1', '-1154.03', '-1.57', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('861', '1000680', 'swethyna', '155', 'PrivateAreaMasterPast', '1', '163.58', '-1.44', '-1153.96', '2.23', '0', '1015', null);
INSERT INTO `server_spawn_locations` VALUES ('862', '1000683', 'cecilia', '155', 'PrivateAreaMasterPast', '1', '161.5', '-1.48', '-1156.34', '1.44', '0', '1016', null);
INSERT INTO `server_spawn_locations` VALUES ('863', '1000230', 'miounne', '155', 'PrivateAreaMasterPast', '2', '57.42', '4', '-1196.69', '1.67', '0', '1060', null);
INSERT INTO `server_spawn_locations` VALUES ('864', '1001062', 'beaming_adventurer', '155', 'PrivateAreaMasterPast', '2', '67.4', '4', '-1208.22', '-2.63', '0', '1005', null);
INSERT INTO `server_spawn_locations` VALUES ('865', '1001057', 'amiable_adventurer', '155', 'PrivateAreaMasterPast', '2', '64.89', '4', '-1209.33', '1.74', '0', '1002', null);
INSERT INTO `server_spawn_locations` VALUES ('866', '1001060', 'well-bundled_adventurer', '155', 'PrivateAreaMasterPast', '2', '71.83', '4', '-1200.14', '-0.88', '0', '1005', null);
INSERT INTO `server_spawn_locations` VALUES ('867', '1001059', 'narrow-eyed_adventurer', '155', 'PrivateAreaMasterPast', '2', '69.62', '4', '-1199.51', '1.29', '0', '1005', null);
INSERT INTO `server_spawn_locations` VALUES ('868', '1001058', 'morose_merchant', '155', 'PrivateAreaMasterPast', '2', '66.26', '4', '-1199.79', '-2.71', '0', '1005', null);
INSERT INTO `server_spawn_locations` VALUES ('869', '1000562', 'wispily_whiskered_woodworker', '155', 'PrivateAreaMasterPast', '2', '64.41', '4', '-1199.61', '1.71', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('870', '1000458', 'vkorolon', '155', 'PrivateAreaMasterPast', '2', '55.82', '4', '-1212.23', '1.91', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('871', '5900004', 'closed_gridania_gate', '155', 'PrivateAreaMasterPast', '1', '185', '-1', '-1154', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('872', '1099047', 'gridania_blocker1', '155', 'PrivateAreaMasterPast', '1', '105.945', '10.851', '-1217.8', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('874', '1001430', 'kinnison', '206', '', '0', '-194', '23', '-1610', '0.9', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('875', '1099046', 'gridania_opening_exit', '155', 'PrivateAreaMasterPast', '1', '72.19', '4', '-1207.91', '1.17', '0', '0', '');
INSERT INTO `server_spawn_locations` VALUES ('876', '1001648', 'unconcerned_passerby', '155', 'PrivateAreaMasterPast', '2', '77.577', '3.953', '-1210.66', '-0.518', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('882', '1500007', 'didiwai', '128', '', '0', '23.98', '46.05', '-42.96', '0.6', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('883', '1000613', 'nahctahr', '128', '', '0', '22.57', '45.5', '-23.08', '1.5', '0', '1041', null);
INSERT INTO `server_spawn_locations` VALUES ('884', '1000359', 'ryssfloh', '128', '', '0', '58.78', '46.1', '-12.45', '0.6', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('885', '1000360', 'kiht_gamduhla', '128', '', '0', '8.37', '45.62', '-37.45', '-1.64', '0', '1056', null);
INSERT INTO `server_spawn_locations` VALUES ('886', '1600016', 'sungyve', '128', '', '0', '45.86', '45.53', '-11.5', '-3.13', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('887', '1500013', 'bearded_rock_battlewarden', '128', '', '0', '56.43', '45.34', '-40.84', '-1.65', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('888', '1500008', '', '0', '', '0', '0', '0', '0', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('889', '1001291', 'ferry_man_thantonocea', '200', '', '0', '-14.52', '12.409', '127.997', '-1.57', '0', '2072', null);
INSERT INTO `server_spawn_locations` VALUES ('890', '1001291', 'ferry_man_noceatothan', '200', '', '0', '14.52', '12.409', '-127.997', '1.57', '0', '2072', null);
INSERT INTO `server_spawn_locations` VALUES ('891', '5900015', 'seadun6_door_centralfurnaces', '137', '', '0', '79.8', '-12.2', '-2949.8', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('892', '5900015', 'seadun6_door_dome2605', '137', '', '0', '16.011', '-12.218', '-3077.03', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('893', '5900015', 'seadun6_door_dome2610_topleft', '137', '', '0', '96.858', '-12.567', '-3055.05', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('894', '5900015', 'seadun6_door_dome2610_bottom', '137', '', '0', '144.761', '-12.497', '-2975.01', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('895', '5900015', 'seadun6_door_aurumloft', '137', '', '0', '127.904', '-11.875', '-2928', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('896', '5900015', 'seadun6_door_titandoor1', '137', '', '0', '303.918', '-19.875', '-2991.97', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('897', '5900015', 'seadun6_door_titandoor2', '137', '', '0', '320.025', '-19.875', '-3040.02', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('898', '5900015', 'seadun6_door_titandoor3', '137', '', '0', '383.833', '-19.875', '-3039.93', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('899', '5900001', 'seadun6_beastmachine1', '137', '', '0', '191.217', '-14.427', '-2924.85', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('900', '5900001', 'seadun6_beastmachine2', '137', '', '0', '191.217', '-14.427', '-2924.85', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('901', '5900015', 'rocdun1_door_chocobostables', '231', '', '0', '63.99', '181.25', '192.013', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('902', '5900015', 'rocdun1_door_thegullet', '231', '', '0', '128.173', '181.25', '192.19', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('903', '5900015', 'rocdun1_door_grandhall', '231', '', '0', '79.976', '181.25', '144.041', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('904', '5900016', 'rocdun1_barrier_grandhall', '231', '', '0', '65.725', '180.859', '81.098', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('905', '5900016', 'rocdun1_barrier_feastinghall', '231', '', '0', '-95.198', '164.884', '-13.873', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('906', '5900016', 'rocdun1_barrier_knightsquarters', '231', '', '0', '-0.544', '172.854', '-109.665', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('907', '5900016', 'rocdun1_barrier_captainsquarters', '231', '', '0', '-32.564', '172.795', '-77.364', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('908', '5900016', 'rocdun1_barrier_granary', '231', '', '0', '-74.02', '172.187', '-48.423', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('909', '5900016', 'rocdun1_barrier_unknown1', '0', '', '0', '0', '0', '0', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('910', '5900016', 'rocdun4_barrier_goldenpools_sout', '245', '', '0', '-686.923', '171.343', '1359.91', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('911', '5900016', 'rocdun4_barrier_goldenpools_nort', '245', '', '0', '-733.348', '171.92', '1230.88', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('912', '5900016', 'rocdun4_barrier_minerstare', '245', '', '0', '-996.74', '196.244', '1391.07', '0', '0', '0', '');
INSERT INTO `server_spawn_locations` VALUES ('913', '5900016', 'rocdun4_barrier_coincnterschest', '245', '', '0', '-1083.28', '193.835', '1264.69', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('914', '5900016', 'rocdun4_barrier_map3enter', '245', '', '0', '-1163', '188.093', '1167.11', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('915', '5900001', 'fstdun3_door_entrance', '159', '', '0', '880.116', '-22.89', '648.988', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('916', '5900001', 'fstdun3_door_confessionchamber', '159', '', '0', '1216.05', '-47.89', '-912.021', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('917', '5900001', 'fstdun3_door_interrogatiochamber', '159', '', '0', '1312.07', '-63.89', '560.007', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('918', '5900001', 'fstdun3_door_executionchamber', '159', '', '0', '1456.01', '-59.89', '671.623', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('919', '5900016', 'fstdun3_barrier_tornsrest', '159', '', '0', '1119.88', '-44.125', '880.115', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('920', '5900016', 'fstdun3_barrier_foolsrest_east', '159', '', '0', '1150.34', '-47.975', '687.889', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('921', '5900016', 'fstdun3_barrier_foolsrest_west', '159', '', '0', '1120.43', '-48.125', '688.064', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('922', '5900016', 'fstdun3_barrier_seraucheforne', '159', '', '0', '1223.84', '-52', '816.426', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('923', '5900016', 'fstdun3_barrier_bergand_north', '159', '', '0', '1262.39', '-55.991', '743.272', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('924', '5900016', 'fstdun3_barrier_bergand_east', '159', '', '0', '1279.77', '-56.076', '751.932', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('925', '5900016', 'fstdun3_barrier_joukil', '159', '', '0', '1232.05', '-52.125', '672.751', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('926', '5900001', 'ferry_door1_thantonoscea', '200', '', '0', '-10.242', '7.75', '133.405', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('927', '5900001', 'ferry_door2_thantonoscea', '200', '', '0', '4.066', '4.76', '133.573', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('928', '5900001', 'ferry_door1_nosceatothan', '200', '', '0', '10.211', '7.75', '-133.43', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('929', '5900001', 'ferry_door2_nosceatothan', '200', '', '0', '-4.066', '4.76', '-133.573', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('930', '1090548', 'inn_grid_exitdoor_push', '244', '', '0', '159.98', '0.02', '151.9', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('931', '1200336', 'inn_uld_exitdoor_target', '244', '', '0', '-0.02', '0.02', '-8.6', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('932', '1200334', 'inn_limsa_exitdoor_target', '244', '', '0', '-160.02', '0.02', '-168.4', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('933', '1090549', 'inn_uld_exitdoor_push', '244', '', '0', '-0.02', '0.02', '-8.6', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('934', '1090547', 'inn_limsa_exitdoor_push', '244', '', '0', '-160.02', '0.02', '-168.4', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('935', '1060027', 'yoshi_p', '130', '', '0', '1117.76', '52.143', '-445.258', '2.173', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('936', '5900004', 'door1', '175', 'PrivateAreaMasterPast', '3', '14', '196', '174', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('937', '5900004', 'door2', '175', 'PrivateAreaMasterPast', '3', '12', '196', '184', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('938', '5900004', 'door3', '184', '', '0', '-44', '196', '68', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('939', '1001042', 'high-spirited_fellow', '175', 'PrivateAreaMasterPast', '3', '-36.23', '196', '80', '1.8', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('940', '1001044', 'disreputable_midlander', '175', 'PrivateAreaMasterPast', '3', '-23.92', '196', '76.73', '-0.15', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('941', '1000840', 'rururaji', '175', 'PrivateAreaMasterPast', '3', '-13.509', '196', '86.927', '-1.521', '0', '1017', null);
INSERT INTO `server_spawn_locations` VALUES ('942', '1001112', 'long-legged_lady', '175', 'PrivateAreaMasterPast', '3', '4.308', '196', '116.764', '-1.226', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('943', '0', 'mumpish_miqote', '175', 'PrivateAreaMasterPast', '3', '-15.126', '196', '107.116', '1.308', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('944', '1000401', 'keen-eyed_merchant', '175', 'PrivateAreaMasterPast', '3', '-27.845', '196', '85.814', '1.511', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('945', '1500129', 'yayatoki', '175', 'PrivateAreaMasterPast', '3', '-27.31', '196', '87.25', '1.91', '0', '1040', null);
INSERT INTO `server_spawn_locations` VALUES ('946', '1099046', 'uldah_opening_exit', '175', 'PrivateAreaMasterPast', '3', '-48.704', '196.097', '67.102', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('947', '1001646', 'tooth-grinding_traveler', '175', 'PrivateAreaMasterPast', '3', '-19.553', '196', '79.418', '1.534', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('948', '1001645', 'large-lunged_laborer', '175', 'PrivateAreaMasterPast', '3', '-17.625', '196.072', '79.49', '-1.702', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('949', '1001647', 'full-lipped_fille', '175', 'PrivateAreaMasterPast', '3', '3.938', '196', '119.318', '-2.744', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('950', '1090372', 'blocker1', '175', 'PrivateAreaMasterPast', '3', '-13', '194.91', '76.75', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('951', '1090372', 'blocker2', '175', 'PrivateAreaMasterPast', '3', '3.2', '196', '125.121', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('952', '1000841', 'momodi', '175', 'PrivateAreaMasterPast', '4', '-73.33', '195', '78.531', '-1.404', '0', '1060', null);
INSERT INTO `server_spawn_locations` VALUES ('953', '1090265', 'market_entrance111', '180', 'PrivateAreaMasterMarket', '102', '160', '0', '157', '0', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('954', '1500397', 'vendor1', '180', 'PrivateAreaMasterMarket', '102', '166.7', '1', '174', '-1.57', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('955', '1500419', 'salesman', '180', 'PrivateAreaMasterMarket', '102', '153.3', '1.4', '174', '1.57', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('956', '1200027', 'retainerbell', '180', 'PrivateAreaMasterMarket', '102', '153.3', '1', '184', '2.9', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('957', '1500417', 'vendor2', '180', 'PrivateAreaMasterMarket', '102', '166.7', '1.4', '194', '-1.57', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('958', '1500428', 'repairman', '180', 'PrivateAreaMasterMarket', '102', '153.3', '1', '194', '1.57', '0', '0', null);
INSERT INTO `server_spawn_locations` VALUES ('959', '1090265', 'market_entrance222', '180', 'PrivateAreaMasterMarket', '102', '160', '2', '210', '0', '0', '0', null);

View file

@ -0,0 +1,156 @@
-- MySQL dump 10.13 Distrib 5.7.23, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.23
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_statuseffects`
--
DROP TABLE IF EXISTS `server_statuseffects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_statuseffects` (
`id` int(10) unsigned NOT NULL,
`name` varchar(128) NOT NULL,
`flags` int(10) unsigned NOT NULL DEFAULT '10',
`overwrite` tinyint(3) unsigned NOT NULL DEFAULT '1',
`tickMs` int(10) unsigned NOT NULL DEFAULT '3000',
`hidden` tinyint(4) NOT NULL DEFAULT '0',
`silentOnGain` tinyint(4) NOT NULL DEFAULT '0',
`silentOnLoss` tinyint(4) NOT NULL DEFAULT '0',
`statusGainTextId` smallint(6) NOT NULL DEFAULT '30328',
`statusLossTextId` int(11) NOT NULL DEFAULT '30331',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_statuseffects`
--
LOCK TABLES `server_statuseffects` WRITE;
/*!40000 ALTER TABLE `server_statuseffects` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_statuseffects` VALUES (223001,'quick',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223002,'haste',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223003,'slow',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223004,'petrification',264241173,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223005,'paralysis',21,2,3000,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223006,'silence',4194325,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223007,'blind',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223008,'mute',4194325,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223009,'slowcast',517,1,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223010,'glare',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223011,'poison',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223012,'transfixion',268435477,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223013,'pacification',8388629,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223014,'amnesia',16777237,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223015,'stun',264241173,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223016,'daze',264241173,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223029,'hp_boost',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223030,'hp_penalty',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223038,'defense_down',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223058,'aegis_boon',528409,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223062,'sentinel',1048601,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223063,'cover',16409,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223064,'rampart',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223068,'tempered_will',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223075,'featherfoot',131097,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223078,'enduring_march',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223081,'bloodbath',1048601,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223083,'foresight',262169,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223091,'keen_flurry',1033,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223094,'invigorate',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223097,'collusion',1048601,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223104,'quelling_strike',1041,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223106,'hawks_eye',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223108,'decoy',4113,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223127,'bloodletter',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223129,'protect',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223133,'stoneskin',16393,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223173,'covered',4105,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223180,'regen',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223181,'refresh',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223182,'regain',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223183,'tp_bleed',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223205,'combo',21,2,0,0,1,0,0,30331);
INSERT INTO `server_statuseffects` VALUES (223206,'goring_blade',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223207,'berserk2',537936145,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223208,'rampage2',538984721,1,5000,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223209,'fists_of_fire',536872209,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223210,'fists_of_earth',536872209,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223211,'fists_of_wind',536872209,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223212,'power_surge_I',1297,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223213,'power_surge_II',1297,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223214,'power_surge_III',1297,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223215,'life_surge_I',1048857,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223216,'life_surge_II',1048857,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223217,'life_surge_III',1048857,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223218,'dread_spike',16649,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223219,'blood_for_blood',8209,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223220,'barrage',3081,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223221,'raging_strike2',537985297,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223224,'swiftsong',137,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223227,'cleric_stance',8209,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223228,'blissful_mind',536871185,1,1000,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223229,'dark_seal2',1033,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223230,'resonance2',2569,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223231,'excruciate',2098185,2,3000,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223232,'necrogenesis',1048585,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223233,'parsimony',1049097,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223234,'sanguine_rite2',16393,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223235,'aero',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223236,'outmaneuver2',524313,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223237,'blindside2',8209,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223238,'decoy2',4113,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223239,'protect2',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223240,'sanguine_rite3',16393,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223241,'bloodletter2',21,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223242,'fully_blissful_mind',536871185,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223243,'magic_evasion_down',9,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (223244,'hundred_fists',257,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223245,'spinning_heel',9,1,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223248,'divine_veil',36889,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223250,'vengeance',16401,1,5000,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223251,'antagonize',1048601,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223252,'mighty_strikes',8209,1,3000,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223253,'battle_voice',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223254,'ballad_of_magi',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223255,'paeon_of_war',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223256,'minuet_of_rigor',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (223264,'divine_regen',9,2,0,0,0,0,30328,30331);
INSERT INTO `server_statuseffects` VALUES (228001,'sleep',264273941,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (228011,'bind',67108885,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (228021,'heavy',21,2,0,0,0,0,30335,30338);
INSERT INTO `server_statuseffects` VALUES (300000,'evade_proc',273,1,0,1,1,1,0,30331);
INSERT INTO `server_statuseffects` VALUES (300001,'block_proc',273,1,0,1,1,1,0,30331);
INSERT INTO `server_statuseffects` VALUES (300002,'parry_proc',273,1,0,1,1,1,0,30331);
INSERT INTO `server_statuseffects` VALUES (300003,'miss_proc',273,1,0,1,1,1,0,30331);
INSERT INTO `server_statuseffects` VALUES (300004,'expchain',273,1,0,1,1,1,0,30331);
/*!40000 ALTER TABLE `server_statuseffects` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-06-05 18:56:07

177
data/sql/server_zones.sql Normal file
View file

@ -0,0 +1,177 @@
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_server
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `server_zones`
--
DROP TABLE IF EXISTS `server_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server_zones` (
`id` int(10) unsigned NOT NULL,
`regionId` smallint(6) unsigned NOT NULL,
`zoneName` varchar(255) DEFAULT NULL,
`placeName` varchar(255) NOT NULL,
`serverIp` varchar(32) NOT NULL,
`serverPort` int(10) unsigned NOT NULL,
`classPath` varchar(255) NOT NULL,
`dayMusic` smallint(6) unsigned DEFAULT '0',
`nightMusic` smallint(6) unsigned DEFAULT '0',
`battleMusic` smallint(6) unsigned DEFAULT '0',
`isIsolated` tinyint(1) DEFAULT '0',
`isInn` tinyint(1) DEFAULT '0',
`canRideChocobo` tinyint(1) DEFAULT '1',
`canStealth` tinyint(1) DEFAULT '0',
`isInstanceRaid` tinyint(1) unsigned DEFAULT '0',
`loadNavMesh` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `server_zones`
--
LOCK TABLES `server_zones` WRITE;
/*!40000 ALTER TABLE `server_zones` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `server_zones` VALUES (0,0,NULL,'--','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (128,101,'sea0Field01','Lower La Noscea','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',60,60,21,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (129,101,'sea0Field02','Western La Noscea','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',60,60,21,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (130,101,'sea0Field03','Eastern La Noscea','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',60,60,21,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (131,101,'sea0Dungeon01','Mistbeard Cove','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (132,101,'sea0Dungeon03','Cassiopeia Hollow','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (133,101,'sea0Town01','Limsa Lominsa','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',59,59,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (134,202,'sea0Market01','Market Wards','127.0.0.1',1989,'/Area/Zone/ZoneMasterMarketSeaS0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (135,101,'sea0Field04','Upper La Noscea','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',60,60,21,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (137,101,'sea0Dungeon06','U\'Ghamaro Mines','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (138,101,NULL,'La Noscea','127.0.0.1',1989,'',60,60,21,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (139,112,'sea0Field01a','The Cieldalaes','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (140,101,NULL,'Sailors Ward','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (141,101,'sea0Field01a','Lower La Noscea','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',60,60,21,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (143,102,'roc0Field01','Coerthas Central Highlands','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',55,55,15,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (144,102,'roc0Field02','Coerthas Eastern Highlands','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',55,55,15,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (145,102,'roc0Field03','Coerthas Eastern Lowlands','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',55,55,15,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (146,102,NULL,'Coerthas','127.0.0.1',1989,'',55,55,15,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (147,102,'roc0Field04','Coerthas Central Lowlands','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',55,55,15,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (148,102,'roc0Field05','Coerthas Western Highlands','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',55,55,15,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (150,103,'fst0Field01','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (151,103,'fst0Field02','East Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (152,103,'fst0Field03','North Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (153,103,'fst0Field04','West Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (154,103,'fst0Field05','South Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (155,103,'fst0Town01','Gridania','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',51,51,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (156,103,NULL,'The Black Shroud','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (157,103,'fst0Dungeon01','The Mun-Tuy Cellars','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (158,103,'fst0Dungeon02','The Tam-Tara Deepcroft','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (159,103,'fst0Dungeon03','The Thousand Maws of Toto-Rak','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (160,204,'fst0Market01','Market Wards','127.0.0.1',1989,'/Area/Zone/ZoneMasterMarketFstF0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (161,103,NULL,'Peasants Ward','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (162,103,'fst0Field01a','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (164,106,'fst0Battle01','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleFstF0',0,0,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (165,106,'fst0Battle02','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleFstF0',0,0,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (166,106,'fst0Battle03','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleFstF0',0,0,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (167,106,'fst0Battle04','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleFstF0',0,0,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (168,106,'fst0Battle05','Central Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleFstF0',0,0,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (170,104,'wil0Field01','Central Thanalan','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',68,68,25,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (171,104,'wil0Field02','Eastern Thanalan','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',68,68,25,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (172,104,'wil0Field03','Western Thanalan','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',68,68,25,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (173,104,'wil0Field04','Northern Thanalan','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',68,68,25,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (174,104,'wil0Field05','Southern Thanalan','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',68,68,25,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (175,104,'wil0Town01','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',66,66,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (176,104,'wil0Dungeon02','Nanawa Mines','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (177,207,'_jail','-','127.0.0.1',1989,'/Area/Zone/ZoneMasterJail',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (178,104,'wil0Dungeon04','Copperbell Mines','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (179,104,NULL,'Thanalan','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (180,205,'wil0Market01','Market Wards','127.0.0.1',1989,'/Area/Zone/ZoneMasterMarketWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (181,104,NULL,'Merchants Ward','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (182,104,NULL,'Central Thanalan','127.0.0.1',1989,'',68,68,25,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (184,107,'wil0Battle01','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (185,107,'wil0Battle01','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (186,104,'wil0Battle02','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (187,104,'wil0Battle03','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (188,104,'wil0Battle04','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleWilW0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (190,105,'lak0Field01','Mor Dhona','127.0.0.1',1989,'/Area/Zone/ZoneMasterLakL0',49,49,11,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (192,112,'ocn1Battle01','Rhotano Sea','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleOcnO1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (193,111,'ocn0Battle02','Rhotano Sea','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleOcnO0',7,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (194,112,'ocn1Battle03','Rhotano Sea','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleOcnO1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (195,112,'ocn1Battle04','Rhotano Sea','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleOcnO1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (196,112,'ocn1Battle05','Rhotano Sea','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleOcnO1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (198,112,'ocn1Battle06','Rhotano Sea','127.0.0.1',1989,'/Area/Zone/ZoneMasterBattleOcnO1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (200,805,'sea1Cruise01','Strait of Merlthor','127.0.0.1',1989,'/Area/Zone/ZoneMasterCruiseSeaS1',65,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (201,208,'prv0Cottage00','-','127.0.0.1',1989,'/Area/Zone/ZoneMasterCottagePrv00',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (204,101,'sea0Field02a','Western La Noscea','127.0.0.1',1989,'',60,60,21,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (205,101,'sea0Field03a','Eastern La Noscea','127.0.0.1',1989,'',60,60,21,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (206,103,'fst0Town01a','Gridania','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',51,51,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (207,103,'fst0Field03a','North Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (208,103,'fst0Field05a','South Shroud','127.0.0.1',1989,'/Area/Zone/ZoneMasterFstF0',52,52,13,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (209,104,'wil0Town01a','Ul\'dah','127.0.0.1',1989,'/Area/Zone/ZoneMasterWilW0',66,66,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (210,104,NULL,'Eastern Thanalan','127.0.0.1',1989,'',68,68,25,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (211,104,NULL,'Western Thanalan','127.0.0.1',1989,'',68,68,25,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (230,101,'sea0Town01a','Limsa Lominsa','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS0',59,59,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (231,102,'roc0Dungeon01','Dzemael Darkhold','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (232,202,'sea0Office01','Maelstrom Command','127.0.0.1',1989,'/Area/Zone/ZoneMasterOfficeSeaS0',3,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (233,205,'wil0Office01','Hall of Flames','127.0.0.1',1989,'/Area/Zone/ZoneMasterOfficeWilW0',4,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (234,204,'fst0Office01','Adders\' Nest','127.0.0.1',1989,'/Area/Zone/ZoneMasterOfficeFstF0',2,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (235,101,NULL,'Shposhae','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (236,101,'sea1Field01','Locke\'s Lie','127.0.0.1',1989,'/Area/Zone/ZoneMasterSeaS1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (237,101,NULL,'Turtleback Island','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (238,103,'fst0Field04','Thornmarch','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (239,102,'roc0Field02a','The Howling Eye','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (240,104,'wil0Field05a','The Bowl of Embers','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (244,209,'prv0Inn01','Inn Room','127.0.0.1',1989,'/Area/Zone/ZoneMasterPrvI0',61,61,0,0,1,0,0,0,0);
INSERT INTO `server_zones` VALUES (245,102,'roc0Dungeon04','The Aurum Vale','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (246,104,NULL,'Cutter\'s Cry','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (247,103,NULL,'North Shroud','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (248,101,NULL,'Western La Noscea','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (249,104,NULL,'Eastern Thanalan','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (250,102,'roc0Field02a','The Howling Eye','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (251,105,NULL,'Transmission Tower','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (252,102,'roc0Dungeon04','The Aurum Vale','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (253,102,'roc0Dungeon04','The Aurum Vale','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (254,104,NULL,'Cutter\'s Cry','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (255,104,NULL,'Cutter\'s Cry','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (256,102,'roc0Field02a','The Howling Eye','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR0',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (257,109,'roc1Field01','Rivenroad','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (258,103,NULL,'North Shroud','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (259,103,NULL,'North Shroud','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (260,101,NULL,'Western La Noscea','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (261,101,NULL,'Western La Noscea','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (262,104,NULL,'Eastern Thanalan','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (263,104,NULL,'Eastern Thanalan','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (264,105,'lak0Field01','Transmission Tower','127.0.0.1',1989,'',0,0,0,0,0,1,0,0,0);
INSERT INTO `server_zones` VALUES (265,104,NULL,'The Bowl of Embers','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (266,105,'lak0Field01a','Mor Dhona','127.0.0.1',1989,'/Area/Zone/ZoneMasterLakL0',49,49,11,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (267,109,'roc1Field02','Rivenroad','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (268,109,'roc1Field03','Rivenroad','127.0.0.1',1989,'/Area/Zone/ZoneMasterRocR1',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (269,101,NULL,'Locke\'s Lie','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
INSERT INTO `server_zones` VALUES (270,101,NULL,'Turtleback Island','127.0.0.1',1989,'',0,0,0,0,0,0,0,0,0);
/*!40000 ALTER TABLE `server_zones` ENABLE KEYS */;
UNLOCK TABLES;
commit;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017-06-29 18:47:53

View file

@ -0,0 +1,36 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 9/9/2017 4:27:43 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_zones_privateareas
-- ----------------------------
CREATE TABLE `server_zones_privateareas` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parentZoneId` int(10) unsigned NOT NULL,
`className` varchar(64) NOT NULL,
`privateAreaName` varchar(32) NOT NULL,
`privateAreaType` int(10) unsigned NOT NULL,
`dayMusic` smallint(6) unsigned DEFAULT '0',
`nightMusic` smallint(6) unsigned DEFAULT '0',
`battleMusic` smallint(6) unsigned DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `server_zones_privateareas` VALUES ('1', '184', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '1', '66', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('2', '230', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '1', '59', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('4', '133', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '2', '40', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('5', '155', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '1', '51', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('6', '155', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '2', '40', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('8', '175', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '3', '66', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('9', '175', '/Area/PrivateArea/PrivateAreaMasterPast', 'PrivateAreaMasterPast', '4', '40', '0', '0');
INSERT INTO `server_zones_privateareas` VALUES ('10', '180', '/Area/PrivateArea/PrivateAreaMasterBranch', 'PrivateAreaMasterMarket', '102', '48', '48', '48');

View file

@ -0,0 +1,47 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 3/7/2017 8:30:07 AM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for server_zones_spawnlocations
-- ----------------------------
CREATE TABLE `server_zones_spawnlocations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`zoneId` int(10) unsigned NOT NULL,
`privateAreaName` varchar(32) DEFAULT NULL,
`spawnType` tinyint(3) unsigned DEFAULT '0',
`spawnX` float NOT NULL,
`spawnY` float NOT NULL,
`spawnZ` float NOT NULL,
`spawnRotation` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `server_zones_spawnlocations` VALUES ('1', '155', null, '15', '58.92', '4', '-1219.07', '0.52');
INSERT INTO `server_zones_spawnlocations` VALUES ('2', '133', null, '15', '-444.266', '39.518', '191', '1.9');
INSERT INTO `server_zones_spawnlocations` VALUES ('3', '175', null, '15', '-110.157', '202', '171.345', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('4', '193', null, '15', '0.016', '10.35', '-36.91', '0.025');
INSERT INTO `server_zones_spawnlocations` VALUES ('5', '166', null, '15', '356.09', '3.74', '-701.62', '-1.4');
INSERT INTO `server_zones_spawnlocations` VALUES ('6', '184', null, '15', '5.36433', '196', '133.656', '-2.84938');
INSERT INTO `server_zones_spawnlocations` VALUES ('7', '128', null, '15', '-8.48', '45.36', '139.5', '2.02');
INSERT INTO `server_zones_spawnlocations` VALUES ('8', '230', 'PrivateAreaMasterPast', '15', '-838.1', '6', '231.94', '1.1');
INSERT INTO `server_zones_spawnlocations` VALUES ('9', '193', null, '16', '-5', '16.35', '6', '0.5');
INSERT INTO `server_zones_spawnlocations` VALUES ('10', '166', null, '16', '356.09', '3.74', '-701.62', '-1.4');
INSERT INTO `server_zones_spawnlocations` VALUES ('11', '244', null, '15', '0.048', '0', '-5.737', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('12', '244', null, '15', '-160.048', '0', '-165.737', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('13', '244', null, '15', '160.048', '0', '154.263', '0');
INSERT INTO `server_zones_spawnlocations` VALUES ('14', '150', null, '15', '333.271', '5.889', '-943.275', '0.794');
INSERT INTO `server_zones_spawnlocations` VALUES ('15', '133', null, '15', '-8.062', '45.429', '139.364', '2.955');
INSERT INTO `server_zones_spawnlocations` VALUES ('16', '170', null, '15', '-27.015', '181.798', '-79.72', '2.513');
INSERT INTO `server_zones_spawnlocations` VALUES ('17', '184', null, '16', '-24.34', '192', '34.22', '0.78');
INSERT INTO `server_zones_spawnlocations` VALUES ('18', '184', null, '15', '-24.34', '192', '34.22', '0.78');
INSERT INTO `server_zones_spawnlocations` VALUES ('19', '184', null, '15', '-22', '196', '87', '1.8');

57
data/sql/servers.sql Normal file
View file

@ -0,0 +1,57 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `servers`
--
DROP TABLE IF EXISTS `servers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `servers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`address` varchar(255) NOT NULL,
`port` smallint(6) unsigned NOT NULL,
`listPosition` smallint(6) NOT NULL,
`numchars` int(10) unsigned NOT NULL DEFAULT '0',
`maxchars` int(10) unsigned NOT NULL DEFAULT '5000',
`isActive` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `servers`
--
LOCK TABLES `servers` WRITE;
/*!40000 ALTER TABLE `servers` DISABLE KEYS */;
INSERT INTO `servers` VALUES (1,'Fernehalwes','127.0.0.1',54992,1,1,5000,1);
/*!40000 ALTER TABLE `servers` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:55

52
data/sql/sessions.sql Normal file
View file

@ -0,0 +1,52 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
`id` char(56) NOT NULL,
`userid` int(11) NOT NULL,
`expiration` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `userid_UNIQUE` (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sessions`
--
LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:55

View file

@ -0,0 +1,25 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 8/20/2016 7:15:35 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for supportdesk_faqs
-- ----------------------------
CREATE TABLE `supportdesk_faqs` (
`slot` tinyint(4) NOT NULL,
`languageCode` tinyint(4) NOT NULL,
`title` varchar(128) NOT NULL,
`body` text NOT NULL,
PRIMARY KEY (`slot`,`languageCode`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `supportdesk_faqs` VALUES ('0', '1', 'Welcome to FFXIV Classic', 'Welcome to the FFXIV 1.0 server emulator FFXIVClassic!\r\n\r\nThis is still currently a work in progress, and you may find bugs or issues as you play with this server. Keep in mind that this is not even remotely close to being finished, and that it is a work in progress.\r\n\r\nCheck out the blog at: \r\nhttp://ffxivclassic.fragmenterworks.com/ \r\nCheck out videos at: \r\nhttps://www.youtube.com/channel/UCr2703_er1Dj7Lx5pzpQpfg');

View file

@ -0,0 +1,26 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 8/20/2016 7:15:41 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for supportdesk_issues
-- ----------------------------
CREATE TABLE `supportdesk_issues` (
`slot` smallint(4) unsigned NOT NULL,
`title` varchar(50) NOT NULL,
PRIMARY KEY (`slot`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `supportdesk_issues` VALUES ('0', 'Report Harassment');
INSERT INTO `supportdesk_issues` VALUES ('1', 'Report Cheating');
INSERT INTO `supportdesk_issues` VALUES ('2', 'Report a Bug or Glitch');
INSERT INTO `supportdesk_issues` VALUES ('3', 'Leave Suggestion');

View file

@ -0,0 +1,26 @@
/*
MySQL Data Transfer
Source Host: localhost
Source Database: ffxiv_server
Target Host: localhost
Target Database: ffxiv_server
Date: 8/21/2016 6:17:47 PM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for supportdesk_tickets
-- ----------------------------
CREATE TABLE `supportdesk_tickets` (
`id` int(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL,
`title` varchar(128) NOT NULL,
`body` text NOT NULL,
`langCode` smallint(4) unsigned NOT NULL,
`isOpen` tinyint(1) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------

54
data/sql/users.sql Normal file
View file

@ -0,0 +1,54 @@
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
--
-- Host: localhost Database: ffxiv_database
-- ------------------------------------------------------
-- Server version 5.7.10-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
`passhash` char(56) NOT NULL,
`salt` char(56) NOT NULL,
`email` varchar(256) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-06-07 22:54:55

15
data/www/login/config.php Normal file
View file

@ -0,0 +1,15 @@
<?php
$server_name = "Magis' Funhouse";
$db_server = "localhost";
$db_username = "root";
$db_password = "";
$db_database = "ffxiv_server";
$recaptcha_publickey = "";
$recaptcha_privatekey = "";
if(!defined('FFXIV_SESSION_LENGTH')) define('FFXIV_SESSION_LENGTH', 24); //Session length in hours
?>

View file

@ -0,0 +1,3 @@
.loginBody {
background-color: #EFEFEF;
}

388
data/www/login/database.php Normal file
View file

@ -0,0 +1,388 @@
<?php
include("config.php");
mysqli_report(MYSQLI_REPORT_STRICT);
function CreateDatabaseConnection($server, $username, $password, $database)
{
try
{
$dataConnection = new mysqli($server, $username, $password);
}
catch(Exception $e)
{
die("Error while connecting to the database");
}
$dataConnection->select_db($database);
$dataConnection->query("SET NAMES 'utf8'");
return $dataConnection;
}
$g_databaseConnection = CreateDatabaseConnection($db_server, $db_username, $db_password, $db_database);
function GenerateRandomSha224()
{
mt_srand(microtime(true) * 100000 + memory_get_usage(true));
return hash("sha224", uniqid(mt_rand(), true));
}
function VerifyUser($dataConnection, $username, $password)
{
$statement = $dataConnection->prepare("SELECT id, passhash, salt FROM users WHERE name = ?");
if(!$statement)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
try
{
$statement->bind_param('s', $username);
if(!$statement->execute())
{
throw new Exception(__FUNCTION__ . " failed.");
}
$statement->bind_result($id, $storedPasshash, $salt);
if(!$statement->fetch())
{
throw new Exception("Incorrect username.");
}
$saltedPassword = $password . $salt;
$hashedPassword = hash("sha224", $saltedPassword);
if($hashedPassword !== $storedPasshash)
{
throw new Exception("Incorrect password.");
}
return $id;
}
finally
{
$statement->close();
}
}
function InsertUser($dataConnection, $username, $passhash, $salt, $email)
{
{
$statement = $dataConnection->prepare("INSERT INTO users (name, passhash, salt, email) VALUES (?, ?, ?, ?)");
if(!$statement)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
try
{
$statement->bind_param('ssss', $username, $passhash, $salt, $email);
if(!$statement->execute())
{
throw new Exception(__FUNCTION__ . " failed.");
}
}
finally
{
$statement->close();
}
}
}
function RefreshOrCreateSession($dataConnection, $userId)
{
try
{
$sessionId = GetSessionFromUserId($dataConnection, $userId);
RefreshSession($dataConnection, $sessionId);
}
catch(Exception $e)
{
$sessionId = CreateSession($dataConnection, $userId);
}
return $sessionId;
}
function CreateSession($dataConnection, $userId)
{
//Delete any session that might be active
{
$statement = $dataConnection->prepare("DELETE FROM sessions WHERE userId = ?");
if(!$statement)
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
}
//Create new session
{
$sessionId = GenerateRandomSha224();
$statement = $dataConnection->prepare("INSERT INTO sessions (id, userid, expiration) VALUES (?, ?, NOW() + INTERVAL " . FFXIV_SESSION_LENGTH . " HOUR)");
if(!$statement)
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
try
{
$statement->bind_param('si', $sessionId, $userId);
if(!$statement->execute())
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
return $sessionId;
}
}
function GetSessionFromUserId($dataConnection, $userId)
{
$statement = $dataConnection->prepare("SELECT id FROM sessions WHERE userId = ? AND expiration > NOW()");
if(!$statement)
{
throw new Exception("Failed to get session id: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception("Failed to get session id: " . $dataConnection->error);
}
$statement->bind_result($sessionId);
if(!$statement->fetch())
{
throw new Exception("Failed to get session id: " . $dataConnection->error);
}
return $sessionId;
}
finally
{
$statement->close();
}
}
function RefreshSession($dataConnection, $sessionId)
{
$statement = $dataConnection->prepare("UPDATE sessions SET expiration = NOW() + INTERVAL " . FFXIV_SESSION_LENGTH . " HOUR WHERE id = ?");
if(!$statement)
{
throw new Exception("Failed to refresh session: " . $dataConnection->error);
}
try
{
$statement->bind_param('s', $sessionId);
if(!$statement->execute())
{
throw new Exception("Failed to refresh session: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
}
function GetUserIdFromSession($dataConnection, $sessionId)
{
$statement = $dataConnection->prepare("SELECT userId FROM sessions WHERE id = ? AND expiration > NOW()");
if(!$statement)
{
throw new Exception("Could not get user id.");
}
try
{
$statement->bind_param('s', $sessionId);
if(!$statement->execute())
{
throw new Exception("Could not get user id.");
}
$statement->bind_result($userId);
if(!$statement->fetch())
{
throw new Exception("Could not get user id.");
}
return $userId;
}
finally
{
$statement->close();
}
}
function GetUserInfo($dataConnection, $userId)
{
$statement = $dataConnection->prepare("SELECT name FROM users WHERE id = ?");
if(!$statement)
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
$result = $statement->get_result();
if(!$result)
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
return $row;
}
finally
{
$statement->close();
}
}
function GetUserCharacters($dataConnection, $userId)
{
$statement = $dataConnection->prepare("SELECT id, name FROM characters WHERE userId = ?");
if(!$statement)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$result = $statement->get_result();
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$characters = array();
while(1)
{
$row = $result->fetch_assoc();
if(!$row)
{
break;
}
array_push($characters, $row);
}
return $characters;
}
finally
{
$statement->close();
}
}
function GetCharacterInfo($dataConnection, $userId, $characterId)
{
$query = sprintf("SELECT * FROM characters WHERE userId = '%d' AND id = '%d'",
$userId, $characterId);
$result = $dataConnection->query($query);
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
return $row;
}
function UpdateCharacterInfo($dataConnection, $characterId, $characterInfo)
{
$statement = $dataConnection->prepare("UPDATE ffxiv_characters SET
name = ?, tribe = ?, size = ?, voice = ?, skinColor = ?, hairStyle = ?, hairColor = ?, hairOption = ?,
eyeColor = ?, faceType = ?, faceBrow = ?, faceEye = ?, faceIris = ?, faceNose = ?, faceMouth = ?, faceJaw = ?,
faceCheek = ?, faceOption1 = ?, faceOption2 = ?, guardian = ?, birthMonth = ?, birthDay = ?, allegiance = ?,
weapon1 = ?, weapon2 = ?, headGear = ?, bodyGear = ?, legsGear = ?, handsGear = ?, feetGear = ?,
waistGear = ?, rightEarGear = ?, leftEarGear = ?, rightFingerGear = ?, leftFingerGear = ?
WHERE id = ?");
if(!$statement)
{
throw new Exception("Failed to update character information: " . $dataConnection->error);
}
try
{
if(!$statement->bind_param("siiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
$characterInfo["name"], $characterInfo["tribe"], $characterInfo["size"], $characterInfo["voice"],
$characterInfo["skinColor"], $characterInfo["hairStyle"], $characterInfo["hairColor"],
$characterInfo["hairOption"], $characterInfo["eyeColor"], $characterInfo["faceType"],
$characterInfo["faceBrow"], $characterInfo["faceEye"], $characterInfo["faceIris"],
$characterInfo["faceNose"], $characterInfo["faceMouth"], $characterInfo["faceJaw"],
$characterInfo["faceCheek"], $characterInfo["faceOption1"], $characterInfo["faceOption2"],
$characterInfo["guardian"], $characterInfo["birthMonth"], $characterInfo["birthDay"], $characterInfo["allegiance"],
$characterInfo["weapon1"], $characterInfo["weapon2"], $characterInfo["headGear"], $characterInfo["bodyGear"],
$characterInfo["legsGear"], $characterInfo["handsGear"], $characterInfo["feetGear"],
$characterInfo["waistGear"], $characterInfo["rightEarGear"], $characterInfo["leftEarGear"],
$characterInfo["rightFingerGear"], $characterInfo["leftFingerGear"],
$characterId))
{
throw new Exception("Failed to update character information: " . $dataConnection->error);
}
if(!$statement->execute())
{
throw new Exception("Failed to update character information: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
}
?>

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
data/www/login/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

151
data/www/login/index.php Normal file
View file

@ -0,0 +1,151 @@
<?php
error_reporting(E_ALL | E_STRICT);
include("config.php");
include("database.php");
$loginError = "";
function doLogin($dataConnection)
{
$username = trim($_POST["username"]);
$password = trim($_POST["password"]);
if(empty($username))
{
throw new Exception("You must enter an username.");
}
if(empty($password))
{
throw new Exception("You must enter a password.");
}
$userId = VerifyUser($dataConnection, $username, $password);
return RefreshOrCreateSession($dataConnection, $userId);
}
$loginError = "";
$currentTimeUTC = time();
if(isset($_POST["login"]))
{
try
{
$sessionId = doLogin($g_databaseConnection);
}
catch(Exception $e)
{
$loginError = $e->getMessage();
}
}
?>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<style>
html, body {
font-family: Arial;
font-size: 14px;
margin:0;
padding: 0;
width: 600px;
}
html {
padding: 10px;
}
form {
background-color: #eee;
border: solid 1px #666;
border-radius: 3px;
margin-bottom: 0;
}
table {
justify-content: center;
width: 100%;
height: 100%;
padding: 20px;
}
form input {
width: 100%;
border: solid 1px #222;
padding: 3px;
outline: none;
}
form button {
background-image: url(img/btLogin.gif);
background-position: 0 0;
background-repeat: no-repeat;
border: none;
width: 200px;
height: 40px;
}
form button:hover {
background-position: 0 -40px;
cursor: pointer;
}
.errorText{
color: red;
}
.banner {
margin-top: 10px;
}
</style>
</head>
<body>
<?php if (isset($sessionId)) echo("<x-sqexauth sid=\"$sessionId\" lang=\"en-us\" region=\"2\" utc=\"$currentTimeUTC\" />"); ?>
<table border="0" cellpadding="0" cellspacing="0">
<tbody><tr>
<td width="50%">
<img src="img/logo.png" class="logo" width="300px">
</td>
<td width="50%">
<form method="post">
<table border="0" cellpadding="5px" cellspacing="0">
<tbody><tr>
<td width="5%"><img src="img/lbSQEXId_mem.gif"></td>
<td width="40%"><label for="username">Username</label></td>
<td width="50%"><input id="username" name="username" autocomplete="off" type="text"></td>
</tr>
<tr>
<td><img src="img/lbSQEXPass_mem.gif" <="" td="">
</td><td><label for="password">Password</label></td>
<td><input id="password" name="password" autocomplete="off" type="password"></td>
</tr>
<tr>
<td colspan="3" align="center">
<p class=errorText><?php echo($loginError) ?></p>
</td>
</tr>
<tr>
<td colspan="3" align="center">
<button type="submit" name="login">&nbsp;</button>
</td>
</tr>
<tr>
<td colspan="3" align="center">
<a href="..\login_su\create_user.php">Don't have a awesome account?</a>
</td>
</tr>
</tbody></table>
</form></td>
</tr>
<tr>
<td colspan="2" align="center">
<img src="img/banner.png" class="banner" width="720px">
</td>
</tr>
</tbody></table>
</body></html>

View file

@ -0,0 +1,13 @@
<?php
$db_server = "localhost";
$db_username = "root";
$db_password = "";
$db_database = "ffxiv_server";
$recaptcha_publickey = "";
$recaptcha_privatekey = "";
if(!defined('FFXIV_SESSION_LENGTH')) define('FFXIV_SESSION_LENGTH', 24); //Session length in hours
?>

View file

@ -0,0 +1,50 @@
<?php
error_reporting(E_ALL | E_STRICT);
include("config.php");
include("database.php");
include("control_panel_common.php");
$g_userCharacters = GetUserCharacters($g_databaseConnection, $g_userId);
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Seventh Umbral Server</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<?php include("control_panel_header.php"); ?>
<p>
<div class="edit">
<h2>Characters</h2>
<br />
<table class="editForm">
<tr>
<th>Name</th>
<th>Action</th>
</tr>
<?php
foreach($g_userCharacters as $character)
{
?>
<tr>
<td><?php echo $character["name"]; ?></td>
<td>
<a href="control_panel_edit_character.php?id=<?php echo $character["id"]; ?>">
Edit
</a>
</td>
</tr>
<?php
}
?>
</table>
</p>
</body>
</html>

View file

@ -0,0 +1,20 @@
<?php
if(!isset($_COOKIE["sessionId"]))
{
header("Location: control_panel_login.php");
exit;
}
$g_sessionId = $_COOKIE["sessionId"];
try
{
$g_userId = GetUserIdFromSession($g_databaseConnection, $g_sessionId);
}
catch(Exception $e)
{
header("Location: control_panel_login.php");
exit;
}
?>

View file

@ -0,0 +1,754 @@
<?php
error_reporting(E_ALL | E_STRICT);
include("config.php");
include("database.php");
include("control_panel_common.php");
if(!isset($_GET["id"]))
{
header("Location: control_panel.php");
exit;
}
$g_characterId = $_GET["id"];
$g_tribes = array(
1 => "Hyur Midlander Male",
2 => "Hyur Midlander Female",
3 => "Hyur Highlander Male",
4 => "Elezen Wildwood Male",
5 => "Elezen Wildwood Female",
6 => "Elezen Duskwight Male",
7 => "Elezen Duskwight Female",
8 => "Lalafell Plainsfolk Male",
9 => "Lalafell Plainsfolk Female",
10 => "Lalafell Dunesfolk Male",
11 => "Lalafell Dunesfolk Female",
12 => "Miqo'te Seeker of the Sun Female",
13 => "Miqo'te Keeper of the Moon Female",
14 => "Roegadyn Sea Wolf Male",
15 => "Roegadyn Hellsguard Male"
);
$g_guardians = array(
1 => "Halone, the Fury",
2 => "Menphina, the Lover",
3 => "Thaliak, the Scholar",
4 => "Nymeia, the Spinner",
5 => "Llymlaen, the Navigator",
6 => "Oschon, the Wanderer",
7 => "Byregot, the Builder",
8 => "Rhalgr, the Destroyer",
9 => "Azeyma, the Warden",
10 => "Nald'thal, the Traders",
11 => "Nophica, the Matron",
12 => "Althyk, the Keeper"
);
$g_allegiances = array(
1 => "Limsa Lominsa",
2 => "Gridania",
3 => "Ul'dah",
);
/*
$g_htmlToDbFieldMapping = array(
"characterName" => "name",
"characterTribe" => "tribe",
"characterSize" => "size",
"characterVoice" => "voice",
"characterSkinColor" => "skinColor",
"characterHairStyle" => "hairStyle",
"characterHairColor" => "hairColor",
"characterHairOption" => "hairVariation",
"characterEyeColor" => "eyeColor",
"characterFaceType" => "faceType",
"characterFaceBrow" => "faceEyebrows",
"characterFaceEye" => "faceEyeShape",
"characterFaceIris" => "faceIrisSize",
"characterFaceNose" => "faceNose",
"characterFaceMouth" => "faceMouth",
"characterFaceJaw" => "faceJaw",
"characterFaceCheek" => "faceCheek",
"characterFaceOption1" => "faceOption1",
"characterFaceOption2" => "faceOption2",
"characterGuardian" => "guardian",
"characterBirthMonth" => "birthMonth",
"characterBirthDay" => "birthDay",
"characterAllegiance" => "initialTown",
"characterWeapon1" => "weapon1",
"characterWeapon2" => "weapon2",
"characterHeadGear" => "headGear",
"characterBodyGear" => "bodyGear",
"characterLegsGear" => "legsGear",
"characterHandsGear" => "handsGear",
"characterFeetGear" => "feetGear",
"characterWaistGear" => "waistGear",
"characterRightEarGear" => "rightEarGear",
"characterLeftEarGear" => "leftEarGear",
"characterRightFingerGear" => "rightFingerGear",
"characterLeftFingerGear" => "leftFingerGear"
);
*/
$g_height = array(
0 => "Shortest",
1 => "Short",
2 => "Average",
3 => "Tall",
4 => "Tallest"
);
$g_yesno = array(
0 => "No",
1 => "Yes"
);
$g_grandcompany = array(
0 => "None",
/* TODO: Find correct order for 1+ */
1 => "Maelstrom",
2 => "Order of the Twin Adder ",
3 => "Immortal Flames"
);
$g_profileMapping = array(
"characterName" => "name",
"characterCreationDate" => "creationDate",
"characterIsLegacy" => "isLegacy",
"characterPlayTime" => "playTime",
/*
"characterPositionX" => "positionX",
"characterPositionY" => "positionY",
"characterPositionZ" => "positionZ",
"characterPositionR" => "rotation",
"characterCurrentZoneId" => "currentZoneId",
*/
"characterGuardian" => "guardian",
"characterBirthDay" => "birthDay",
"characterBirthMonth" => "birthMonth",
"characterAllegiance" => "initialTown",
"characterTribe" => "tribe",
"characterGcCurrent" => "gcCurrent",
"characterGcLimsaRank" => "gcLimsaRank",
"characterGcGridaniaRank" => "gcGridaniaRank",
"characterGcUldahRank" => "gcUldahRank",
/*
"characterCurrentTitle" => "currentTitle",
"characterRestBonus" => "restBonus",
*/
"characterAchievementPoints" => "achievementPoints",
);
$g_appearanceMapping = array(
/*
"characterBaseId" => "baseId", // Basic appearance?
*/
"characterSize" => "size",
"characterVoice" => "voice",
"characterSkinColor" => "skinColor",
"characterHairStyle" => "hairStyle",
"characterHairColor" => "hairColor",
"characterHairHighlightColor" => "hairHighlightColor",
"characterHairVariation" => "hairVariation",
"characterEyeColor" => "eyeColor",
"characterFaceType" => "faceType",
"characterFaceBrow" => "faceEyebrows",
"characterFaceEye" => "faceEyeShape",
"characterFaceIris" => "faceIrisSize",
"characterFaceNose" => "faceNose",
"characterFaceMouth" => "faceMouth",
"characterFaceFeatures" => "faceFeatures",
"characterFaceEars" => "ears",
"characterFaceCharacteristics" => "characteristics",
"characterFaceCharacteristicsColor" => "characteristicsColor"
);
$g_chocoboMapping = array(
"characterHasChocobo" => "hasChocobo",
"characterHasGoobbue" => "hasGoobbue",
"characterChocoboAppearance" => "chocoboAppearance",
"characterChocoboName" => "chocoboName"
);
$g_classLevels = array(
"characterGla" => "gla",
"characterPug" => "pug",
"characterMrd" => "mrd",
"characterLnc" => "lnc",
"characterArc" => "arc",
"characterCnj" => "cnj",
"characterThm" => "thm",
"characterCrp" => "crp",
"characterBsm" => "bsm",
"characterArm" => "arm",
"characterGsm" => "gsm",
"characterLtw" => "ltw",
"characterWvr" => "wvr",
"characterAlc" => "alc",
"characterCul" => "cul",
"characterMin" => "min",
"characterBtn" => "btn",
"characterFsh" => "fsh"
);
function SaveCharacter($databaseConnection, $htmlFieldMapping, $characterId)
{
$characterInfo = array();
foreach($htmlFieldMapping as $htmlFieldName => $dbFieldName)
{
$characterInfo[$dbFieldName] = $_POST[$htmlFieldName];
}
UpdateCharacterInfo($databaseConnection, $characterId, $characterInfo);
}
function GenerateTextField($characterInfo, $htmlFieldMapping, $htmlFieldName, $fieldMaxLength = null)
{
$inputMaxLength = ($fieldMaxLength === null) ? "" : sprintf("maxlength=\"%d\"", $fieldMaxLength);
return sprintf("<input id=\"%s\" name=\"%s\" type=\"text\" value=\"%s\" %s readonly=\"readonly\" />",
$htmlFieldName, $htmlFieldName, $characterInfo[$htmlFieldMapping[$htmlFieldName]], $inputMaxLength);
}
function GenerateSelectField($characterInfo, $htmlFieldMapping, $htmlFieldOptions, $htmlFieldName)
{
$dbFieldName = $htmlFieldMapping[$htmlFieldName];
$htmlText = sprintf("<select id=\"%s\" name=\"%s\">\n",
$htmlFieldName, $htmlFieldName);
foreach($htmlFieldOptions as $optionId => $optionName)
{
$htmlText .= sprintf("<option value=\"%d\" %s>%s</option>\n",
$optionId,
($optionId === (int)$characterInfo[$dbFieldName]) ? "selected" : "",
$optionName);
}
$htmlText .= "</select>\n";
return $htmlText;
}
if(isset($_POST["cancel"]))
{
header("Location: control_panel.php");
exit;
}
if(isset($_POST["save"]))
{
SaveCharacter($g_databaseConnection, $g_htmlToDbFieldMapping, $g_characterId);
header("Location: control_panel.php");
exit;
}
try
{
$g_characterInfo = GetCharacterInfo($g_databaseConnection, $g_userId, $g_characterId);
$g_characterAppearance = GetCharacterAppearance($g_databaseConnection, $g_userId, $g_characterId);
/* $g_characterChocobo = GetCharacterChocobo($g_databaseConnection, $g_userId, $g_characterId); */
$g_characterClassLevels = GetCharacterClassLevels($g_databaseConnection, $g_userId, $g_characterId);
}
catch(Exception $e)
{
header("Location: control_panel.php");
exit;
}
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Character Info</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
<script type="application/ecmascript">
var weaponPresets = <?php echo require_once("presets_weapon.json"); ?>;
var armorPresets = <?php echo require_once("presets_armor.json"); ?>;
function loadPresetsInSelect(presets, selectName)
{
var select = document.getElementById(selectName);
for(var presetId in presets)
{
var el = document.createElement("option");
var preset = presets[presetId];
el.textContent = preset.name;
el.value = presetId;
select.appendChild(el);
}
}
window.onload = function()
{
loadPresetsInSelect(weaponPresets, "weaponPresets");
loadPresetsInSelect(armorPresets, "armorPresets");
}
function byteArrayToString(byteArray)
{
var i, str = '';
for(i = 0; i < byteArray.length; i++)
{
str += String.fromCharCode(byteArray[i]);
}
return str;
}
function decodeCharacterFile(inputArrayBuffer)
{
var outputArrayBuffer = new ArrayBuffer(inputArrayBuffer.byteLength);
var inputDataView = new DataView(inputArrayBuffer);
var outputDataView = new DataView(outputArrayBuffer);
for(var i = 0; i < inputDataView.byteLength; i++)
{
outputDataView.setUint8(i, inputDataView.getUint8(i) ^ 0x73);
}
return outputArrayBuffer;
}
function getCharacterAttributesFromString(characterFileString)
{
var lineArray = characterFileString.split('\n');
lineArray = lineArray.filter(function(str) { return str != ''; });
var characterAttributes = [];
for(var i = 0; i < lineArray.length; i++)
{
var attributeLine = lineArray[i];
attributeItems = attributeLine.split(',');
characterAttributes.push(
{
"name" : attributeItems[0].trim(),
"value" : attributeItems[3].trim()
}
);
}
return characterAttributes;
}
function getCharacterAttributeValue(attributes, attributeName)
{
for(var i = 0; i < attributes.length; i++)
{
var attribute = attributes[i];
if(attribute.name === attributeName)
{
return attribute.value;
}
}
return undefined;
}
function onImportAppearanceFileReaderLoad(evt)
{
var decodedCharacterFileArray = decodeCharacterFile(evt.target.result);
var decodedCharacterFileString = byteArrayToString(new Uint8Array(decodedCharacterFileArray));
var characterAttributes = getCharacterAttributesFromString(decodedCharacterFileString);
var fieldAssociations =
[
[ 'characterSize', 'appearancetype_size' ],
[ 'characterVoice', 'appearancetype_voice' ],
[ 'characterSkinColor', 'appearancetype_skin' ],
[ 'characterHairStyle', 'appearancetype_hairstyle' ],
[ 'characterHairColor', 'appearancetype_haircolor' ],
[ 'characterHairOption', 'appearancetype_hairoption2' ],
[ 'characterEyeColor', 'appearancetype_eyecolor' ],
[ 'characterFaceType', 'appearancetype_facetype' ],
[ 'characterFaceBrow', 'appearancetype_facebrow' ],
[ 'characterFaceEye', 'appearancetype_faceeye' ],
[ 'characterFaceIris', 'appearancetype_faceiris' ],
[ 'characterFaceNose', 'appearancetype_facenose' ],
[ 'characterFaceMouth', 'appearancetype_facemouth' ],
[ 'characterFaceJaw', 'appearancetype_facejaw_special' ],
[ 'characterFaceCheek', 'appearancetype_facecheek' ],
[ 'characterFaceOption1', 'appearancetype_faceoption1' ],
[ 'characterFaceOption2', 'appearancetype_faceoption2' ],
];
var characterTribe = getCharacterAttributeValue(characterAttributes, "rsc_tribe");
var characterTribeSelect = document.getElementById('characterTribe');
for(var i = 0; i < characterTribeSelect.length; i++)
{
var characterTribeSelectItem = characterTribeSelect[i];
characterTribeSelectItem.selected = characterTribeSelectItem.value === characterTribe;
}
for(var i = 0; i < fieldAssociations.length; i++)
{
var fieldAssociation = fieldAssociations[i];
var attributeValue = getCharacterAttributeValue(characterAttributes, fieldAssociation[1]);
document.getElementById(fieldAssociation[0]).value = attributeValue;
}
}
function importAppearanceFromFile(evt)
{
var file = evt.target.files[0];
var fileReader = new FileReader();
fileReader.readAsArrayBuffer(file);
fileReader.onload = onImportAppearanceFileReaderLoad;
}
function onEquipWeaponPreset()
{
var select = document.getElementById("weaponPresets");
var weapon1Field = document.getElementById("characterWeapon1");
var weapon2Field = document.getElementById("characterWeapon2");
var preset = weaponPresets[select.value];
weapon1Field.value = preset.weapon1;
weapon2Field.value = preset.weapon2;
}
function onEquipArmorPreset()
{
var select = document.getElementById("armorPresets");
var headGearField = document.getElementById("characterHeadGear");
var bodyGearField = document.getElementById("characterBodyGear");
var legsGearField = document.getElementById("characterLegsGear");
var handsGearField = document.getElementById("characterHandsGear");
var feetGearField = document.getElementById("characterFeetGear");
var waistGearField = document.getElementById("characterWaistGear");
var preset = armorPresets[select.value];
headGearField.value = preset.headGear;
bodyGearField.value = preset.bodyGear;
legsGearField.value = preset.legsGear;
handsGearField.value = preset.handsGear;
feetGearField.value = preset.feetGear;
waistGearField.value = preset.waistGear;
}
function toggleDisplay(elementName)
{
var element = document.getElementById(elementName);
if(element.style.display === 'none')
{
element.style.display = '';
}
else
{
element.style.display = 'none';
}
}
</script>
</head>
<body>
<?php include("header.php"); ?>
<?php include("control_panel_header.php"); ?>
<div class="edit">
<h2>Character Info (<a href="#" onclick="toggleDisplay('guideDiv');">Help</a>)</h2>
<div id="guideDiv" style="background-color: white; display: none;">
<h3>Character Appearance Notes:</h3>
<p style="text-align: left">
Any value that is a bare number without any other description before or after it does
not correlate to the values selected in the ingame character creator.
</p>
<!--
<p style="text-align: left">
All values here are editable, so change them at your own risk. Just keep in mind that
you can always import an appearance from a character creation data file and equip presetted
equipment to reset your character.
</p>
<h3>Import Appearance</h3>
<p style="text-align: left">
Use this to import a character creation data file. Those files
are created by the client when saving character creation data in the character creation
mode, just before selecting the server on which the character will be created. They are usually
located in the "C:\Users\{Username}\Documents\My Games\FINAL FANTASY XIV\user\00000000" folder
and have a '.CMB' extension.
</p>
-->
</div>
<br />
<form method="post" autocomplete="off">
<table class="editForm">
<tr>
<th colspan="4">Profile</th>
</tr>
<tr>
<td>Name:</td>
<td>Legacy Character:</td>
<td>Creation Date:</td>
<td>Play Time:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterName", 20); ?></td>
<td><?php echo GenerateSelectField($g_characterInfo, $g_profileMapping, $g_yesno, "characterIsLegacy"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterCreationDate", 20); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterPlayTime"); ?></td>
</tr>
<tr>
<td>Guardian:</td>
<td>Birth Month:</td>
<td>Birth Day:</td>
<td>Allegiance:</td>
</tr>
<tr>
<td><?php echo GenerateSelectField($g_characterInfo, $g_profileMapping, $g_guardians, "characterGuardian"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterBirthMonth"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterBirthDay"); ?></td>
<td><?php echo GenerateSelectField($g_characterInfo, $g_profileMapping, $g_allegiances, "characterAllegiance"); ?></td>
</tr>
<tr>
<td>Current GC:</td>
<td>Maelstrom Rank:</td>
<td>Twin Adder Rank:</td>
<td>Immortal Flame Rank:</td>
</tr>
<tr>
<td><?php echo GenerateSelectField($g_characterInfo, $g_profileMapping, $g_grandcompany, "characterGcCurrent"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterGcLimsaRank"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterGcGridaniaRank"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_profileMapping, "characterGcUldahRank"); ?></td>
</tr>
<!--
<tr>
<td>Chocobo Unlocked:</td>
<td>Goobbue Unlocked:</td>
<td>Chocobo Appearance:</td>
<td>Chocobo Name:</td>
</tr>
<tr>
<td><?php echo GenerateSelectField($g_characterChocobo, $g_chocoboMapping, $g_yesno, "characterHasChocobo"); ?></td>
<td><?php echo GenerateSelectField($g_characterChocobo, $g_chocoboMapping, $g_yesno, "characterHasGoobbue"); ?></td>
<td><?php echo GenerateTextField($g_characterChocobo, $g_chocoboMapping, "characterChocoboAppearance"); ?></td>
<td><?php echo GenerateTextField($g_characterChocobo, $g_chocoboMapping, "characterChocoboName"); ?></td>
</tr>
-->
<tr>
<td>GLA:</td>
<td>PUG:</td>
<td>MRD:</td>
<td>LNC:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterGla"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterPug"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterMrd"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterLnc"); ?></td>
</tr>
<tr>
<td>ARC:</td>
<td>CNJ:</td>
<td>THM:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterArc"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterCnj"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterThm"); ?></td>
</tr>
<tr>
<td>CRP:</td>
<td>BSM:</td>
<td>ARM:</td>
<td>GSM:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterCrp"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterBsm"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterArm"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterGsm"); ?></td>
</tr>
<tr>
<td>LTW:</td>
<td>WVR:</td>
<td>ALC:</td>
<td>CUL:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterLtw"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterWvr"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterAlc"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterCul"); ?></td>
</tr>
<tr>
<td>MIN:</td>
<td>BTN:</td>
<td>FSH:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterMin"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterBtn"); ?></td>
<td><?php echo GenerateTextField($g_characterClassLevels, $g_classLevels, "characterFsh"); ?></td>
</tr>
</table>
<br />
<hr />
<table class="editForm">
<tr>
<th colspan="5">Appearance</th>
</tr>
<tr>
<td colspan="2">Race/Tribe:</td>
<td>Height:</td>
<td>Voice:</td>
<td>Skin Tone:</td>
</tr>
<tr>
<td colspan="2"><?php echo GenerateSelectField($g_characterInfo, $g_profileMapping, $g_tribes, "characterTribe"); ?></td>
<td><?php echo GenerateSelectField($g_characterAppearance, $g_appearanceMapping, $g_height, "characterSize"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterVoice"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterSkinColor"); ?></td>
</tr>
<tr>
<td>Hairstyle:</td>
<td>Variation:</td>
<td>Hair Color:</td>
<td>Highlights:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterHairStyle"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterHairVariation"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterHairColor"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterHairHighlightColor"); ?></td>
</tr>
<tr>
<td>Face Type:</td>
<td>Eyebrows:</td>
<td>Eye Shape:</td>
<td>Iris Size:</td>
</tr>
<tr>
<td>Eye Color:</td>
<td>Nose:</td>
<td>Face Mouth:</td>
<td>Features:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceType"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceBrow"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceEye"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceIris"); ?></td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterEyeColor"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceNose"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceMouth"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceFeatures"); ?></td>
</tr>
<tr>
<td>Characteristic:</td>
<td>Color:</td>
<td>Ears:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceCharacteristics"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceCharacteristicsColor"); ?></td>
<td><?php echo GenerateTextField($g_characterAppearance, $g_appearanceMapping, "characterFaceEars"); ?></td>
</tr>
<!--
<tr>
<td></td>
</tr>
<tr>
<td>
<script>
function onImportAppearanceButtonClick()
{
document.getElementById('importAppearance').click();
}
</script>
<input type="file" id="importAppearance" style="display: none;">
<button onclick="onImportAppearanceButtonClick(); return false;">Import Appearance</button>
<script>
document.getElementById('importAppearance').addEventListener('change', importAppearanceFromFile, false);
</script>
</td>
</tr>
-->
</table>
<br />
<hr />
<!--
<table class="editForm">
<tr>
<th colspan="4">Gear</th>
</tr>
<tr>
<td>Weapon 1:</td>
<td>Weapon 2:</td>
<td></td>
<td></td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterWeapon1"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterWeapon2"); ?></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Head Gear:</td>
<td>Body Gear:</td>
<td>Legs Gear:</td>
<td>Hands Gear:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterHeadGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterBodyGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterLegsGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterHandsGear"); ?></td>
</tr>
<tr>
<td>Feet Gear:</td>
<td>Waist Gear:</td>
<td></td>
<td></td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterFeetGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterWaistGear"); ?></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Right Ear Gear:</td>
<td>Left Ear Gear:</td>
<td>Right Finger Gear:</td>
<td>Left Finger Gear:</td>
</tr>
<tr>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterRightEarGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterLeftEarGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterRightFingerGear"); ?></td>
<td><?php echo GenerateTextField($g_characterInfo, $g_htmlToDbFieldMapping, "characterLeftFingerGear"); ?></td>
</tr>
<tr>
<td colspan="2">Weapon Presets:</td>
<td colspan="2">Armor Presets:</td>
</tr>
<tr>
<td colspan="2">
<select id="weaponPresets"></select>
<button onclick="onEquipWeaponPreset(); return false;">Equip</button>
</td>
<td colspan="2">
<select id="armorPresets"></select>
<button onclick="onEquipArmorPreset(); return false;">Equip</button>
</td>
</tr>
</table>
<br />
<hr />
-->
<!--
<table class="infoForm">
<tr>
<td>
<input type="submit" name="save" value="Save" />
<input type="submit" name="cancel" value="Cancel" />
</td>
</tr>
</table>
-->
</form>
</div>
<div>
</div>
</body>
</html>

View file

@ -0,0 +1,8 @@
<?php
$g_userInfo = GetUserInfo($g_databaseConnection, $g_userId);
?>
<p>
Welcome, <?php echo($g_userInfo["name"]); ?>. <a href="control_panel_logout.php">(Logout)</a>
</p>

View file

@ -0,0 +1,81 @@
<?php
error_reporting(E_ALL | E_STRICT);
include("config.php");
include("database.php");
function LoginPage_Login($dataConnection)
{
$username = trim($_POST["username"]);
$password = trim($_POST["password"]);
if(empty($username))
{
throw new Exception("You must enter an username.");
}
if(empty($password))
{
throw new Exception("You must enter a password.");
}
$userId = VerifyUser($dataConnection, $username, $password);
return RefreshOrCreateSession($dataConnection, $userId);
}
$loginError = "";
$sessionId = "";
if(isset($_POST["login"]))
{
try
{
$sessionId = LoginPage_Login($g_databaseConnection);
setcookie("sessionId", $sessionId);
header("Location: control_panel.php");
}
catch(Exception $e)
{
$loginError = $e->getMessage();
}
}
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Seventh Umbral Server</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<?php include("header.php"); ?>
<div class="info">
<h2>Login</h2>
<br />
<form method="post" autocomplete="off">
<table class="infoForm">
<tr>
<td>Username:</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="login" value="Login" />
</td>
</tr>
</table>
</form>
<p class="errorMessage"><?php echo($loginError); ?></p>
</div>
<div class="infoFooter">
<a href="create_user.php">Create User</a>
</div>
</body>
</html>

View file

@ -0,0 +1,6 @@
<?php
setcookie("sessionId", "");
header("Location: control_panel_login.php");
?>

View file

@ -0,0 +1,109 @@
<?php
include("config.php");
include("database.php");
//require_once("recaptchalib.php");
function IsUsingSSL()
{
return ($_SERVER['SERVER_PORT'] == 443);
}
function CreateUserPage_CreateUser($databaseConnection)
{
$username = trim($_POST["username"]);
$password = trim($_POST["password"]);
$repeatPassword = trim($_POST["repeatPassword"]);
$email = trim($_POST["email"]);
if(empty($username))
{
throw new Exception("You must enter an username.");
}
if(empty($password))
{
throw new Exception("You must enter a password.");
}
if($password !== $repeatPassword)
{
throw new Exception("Repeated password doesn't match with entered password.");
}
if(empty($email) || !filter_var($email, FILTER_VALIDATE_EMAIL))
{
throw new Exception("You must enter a valid e-mail address.");
}
$salt = GenerateRandomSha224();
$saltedPassword = $password . $salt;
$hashedPassword = hash("sha224", $saltedPassword);
InsertUser($databaseConnection, $username, $hashedPassword, $salt, $email);
}
$createUserError = "";
$enteredUserName = "";
$enteredEmail = "";
if(isset($_POST["createUser"]))
{
$enteredUserName = $_POST["username"];
$enteredEmail = $_POST["email"];
try
{
CreateUserPage_CreateUser($g_databaseConnection);
header("Location: create_user_success.php");
die();
}
catch(Exception $e)
{
$createUserError = $e->getMessage();
}
}
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Seventh Umbral Server</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<?php include("header.php"); ?>
<div class="info">
<h2>Create New User</h2>
<br />
<form method="post" autocomplete="off">
<table class="infoForm">
<tr>
<td>Username:</td>
<td><input type="text" name="username" value="<?php echo $enteredUserName; ?>" /></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td>Repeat Password:</td>
<td><input type="password" name="repeatPassword" /></td>
</tr>
<tr>
<td>E-mail Address:</td>
<td><input type="text" name="email" value="<?php echo $enteredEmail; ?>" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="createUser" value="Create User" />
</td>
</tr>
</table>
</form>
<p class="errorMessage"><?php echo($createUserError); ?></p>
</div>
</body>
</html>

View file

@ -0,0 +1,25 @@
<?php
include("config.php");
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Seventh Umbral Server</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<?php include("header.php"); ?>
<div class="info">
<p>
User created successfully.
</p>
<p>
You may now use the Seventh Umbral Launcher to login and connect to this server.
</p>
<p>
<a href="control_panel_login.php">Login to the User Control Panel</a>
</p>
</div>
</body>
</html>

View file

@ -0,0 +1,158 @@
body
{
font-family: Verdana;
font-size: 10pt;
line-height: 14pt;
height: 100%;
}
div.contentContainer {
width: 50%;
float: left;
}
div.info
{
width: 320px;
height: 100%;
margin-left: auto;
margin-right: auto;
text-align: center;
padding: 20px;
background-color: lightgrey;
}
div.infoFooter
{
width: 400px;
margin-left: auto;
margin-right: auto;
text-align: right;
padding: 5px;
}
div.edit
{
width: 50%;
min-width: 600px;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
text-align: center;
padding: 20px;
background-color: lightgrey;
}
div.inner
{
position: relative;
max-width: 1250px;
margin: 0px auto;
}
h1
{
line-height: 23px;
font-size: 23px;
padding: 5px 0px;
}
h2
{
line-height: 17px;
font-size: 14px;
font-weight: bold;
padding: 5px;
}
h3
{
line-height: 14px;
font-size: 12px;
font-weight: bold;
padding: 5px;
}
header.top
{
padding: 20px 0px;
background: none repeat scroll 0% 0% lavender;
position: relative;
z-index: 999;
}
table.center
{
margin-left: auto;
margin-right: auto;
}
table.infoForm
{
width: 100%;
}
table.editForm
{
width: 100%;
}
table.editForm input
{
width: 100%;
}
table.editForm select
{
width: 100%;
}
td
{
padding: 3px;
}
th
{
padding: 3px;
text-decoration: underline;
}
p
{
padding: 2px;
}
p.errorMessage
{
color: darkred;
font-weight: bold;
}
p.pageTitle
{
font-weight: bold;
font-size: 28px;
line-height: 20px;
padding: 0px 0px;
}
p.pageTitle a
{
text-decoration: none;
color: black;
}
p.pageSubTitle
{
font-size: 10px;
line-height: 18px;
padding: 0px 0px;
}
#recaptcha_area
{
margin: 0 auto;
}

View file

@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

View file

@ -0,0 +1,445 @@
<?php
include("config.php");
mysqli_report(MYSQLI_REPORT_STRICT);
function CreateDatabaseConnection($server, $username, $password, $database)
{
try
{
$dataConnection = new mysqli($server, $username, $password);
}
catch(Exception $e)
{
die("Error while connecting to the database");
}
$dataConnection->select_db($database);
$dataConnection->query("SET NAMES 'utf8'");
return $dataConnection;
}
$g_databaseConnection = CreateDatabaseConnection($db_server, $db_username, $db_password, $db_database);
function GenerateRandomSha224()
{
mt_srand(microtime(true) * 100000 + memory_get_usage(true));
return hash("sha224", uniqid(mt_rand(), true));
}
function VerifyUser($dataConnection, $username, $password)
{
$statement = $dataConnection->prepare("SELECT id, passhash, salt FROM users WHERE name = ?");
if(!$statement)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
try
{
$statement->bind_param('s', $username);
if(!$statement->execute())
{
throw new Exception(__FUNCTION__ . " failed.");
}
$statement->bind_result($id, $storedPasshash, $salt);
if(!$statement->fetch())
{
throw new Exception("Incorrect username.");
}
$saltedPassword = $password . $salt;
$hashedPassword = hash("sha224", $saltedPassword);
if($hashedPassword !== $storedPasshash)
{
throw new Exception("Incorrect password.");
}
return $id;
}
finally
{
$statement->close();
}
}
function InsertUser($dataConnection, $username, $passhash, $salt, $email)
{
{
$statement = $dataConnection->prepare("INSERT INTO users (name, passhash, salt, email) VALUES (?, ?, ?, ?)");
if(!$statement)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
try
{
$statement->bind_param('ssss', $username, $passhash, $salt, $email);
if(!$statement->execute())
{
throw new Exception(__FUNCTION__ . " failed.");
}
}
finally
{
$statement->close();
}
}
}
function RefreshOrCreateSession($dataConnection, $userId)
{
try
{
$sessionId = GetSessionFromUserId($dataConnection, $userId);
RefreshSession($dataConnection, $sessionId);
}
catch(Exception $e)
{
$sessionId = CreateSession($dataConnection, $userId);
}
return $sessionId;
}
function CreateSession($dataConnection, $userId)
{
//Delete any session that might be active
{
$statement = $dataConnection->prepare("DELETE FROM sessions WHERE userId = ?");
if(!$statement)
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
}
//Create new session
{
$sessionId = GenerateRandomSha224();
$statement = $dataConnection->prepare("INSERT INTO sessions (id, userid, expiration) VALUES (?, ?, NOW() + INTERVAL " . FFXIV_SESSION_LENGTH . " HOUR)");
if(!$statement)
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
try
{
$statement->bind_param('si', $sessionId, $userId);
if(!$statement->execute())
{
throw new Exception("Failed to create session: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
return $sessionId;
}
}
function GetSessionFromUserId($dataConnection, $userId)
{
$statement = $dataConnection->prepare("SELECT id FROM sessions WHERE userId = ? AND expiration > NOW()");
if(!$statement)
{
throw new Exception("Failed to get session id: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception("Failed to get session id: " . $dataConnection->error);
}
$statement->bind_result($sessionId);
if(!$statement->fetch())
{
throw new Exception("Failed to get session id: " . $dataConnection->error);
}
return $sessionId;
}
finally
{
$statement->close();
}
}
function RefreshSession($dataConnection, $sessionId)
{
$statement = $dataConnection->prepare("UPDATE sessions SET expiration = NOW() + INTERVAL " . FFXIV_SESSION_LENGTH . " HOUR WHERE id = ?");
if(!$statement)
{
throw new Exception("Failed to refresh session: " . $dataConnection->error);
}
try
{
$statement->bind_param('s', $sessionId);
if(!$statement->execute())
{
throw new Exception("Failed to refresh session: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
}
function GetUserIdFromSession($dataConnection, $sessionId)
{
$statement = $dataConnection->prepare("SELECT userId FROM sessions WHERE id = ? AND expiration > NOW()");
if(!$statement)
{
throw new Exception("Could not get user id.");
}
try
{
$statement->bind_param('s', $sessionId);
if(!$statement->execute())
{
throw new Exception("Could not get user id.");
}
$statement->bind_result($userId);
if(!$statement->fetch())
{
throw new Exception("Could not get user id.");
}
return $userId;
}
finally
{
$statement->close();
}
}
function GetUserInfo($dataConnection, $userId)
{
$statement = $dataConnection->prepare("SELECT name FROM users WHERE id = ?");
if(!$statement)
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
$result = $statement->get_result();
if(!$result)
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception("Failed to get user information: " . $dataConnection->error);
}
return $row;
}
finally
{
$statement->close();
}
}
function GetUserCharacters($dataConnection, $userId)
{
$statement = $dataConnection->prepare("SELECT id, name FROM characters WHERE userId = ?");
if(!$statement)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
try
{
$statement->bind_param('i', $userId);
if(!$statement->execute())
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$result = $statement->get_result();
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$characters = array();
while(1)
{
$row = $result->fetch_assoc();
if(!$row)
{
break;
}
array_push($characters, $row);
}
return $characters;
}
finally
{
$statement->close();
}
}
function GetCharacterInfo($dataConnection, $userId, $characterId)
{
$query = sprintf("SELECT * FROM characters WHERE userId = '%d' AND id = '%d'",
$userId, $characterId);
$result = $dataConnection->query($query);
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
return $row;
}
function GetCharacterAppearance($dataConnection, $userId, $characterId)
{
$query = sprintf("SELECT * FROM characters_appearance INNER JOIN characters ON characters_appearance.characterId = characters.id WHERE characters.userId = '%d' AND characters.Id='%d'",
$userId, $characterId);
$result = $dataConnection->query($query);
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
return $row;
}
function GetCharacterChocobo($dataConnection, $userId, $characterId)
{
$query = sprintf("SELECT * FROM characters_chocobo INNER JOIN characters ON characters_chocobo.characterId = characters.id WHERE characters.userId = '%d' AND characters.Id='%d'",
$userId, $characterId);
$result = $dataConnection->query($query);
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
return $row;
}
function GetCharacterClassLevels($dataConnection, $userId, $characterId)
{
$query = sprintf("SELECT * FROM characters_class_levels INNER JOIN characters ON characters_class_levels.characterId = characters.id WHERE characters.userId = '%d' AND characters.Id='%d'",
$userId, $characterId);
$result = $dataConnection->query($query);
if(!$result)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
$row = $result->fetch_assoc();
if(!$row)
{
throw new Exception(__FUNCTION__ . " failed: " . $dataConnection->error);
}
return $row;
}
function UpdateCharacterInfo($dataConnection, $characterId, $characterInfo)
{
$statement = $dataConnection->prepare("UPDATE ffxiv_characters SET
name = ?, tribe = ?, size = ?, voice = ?, skinColor = ?, hairStyle = ?, hairColor = ?, hairOption = ?,
eyeColor = ?, faceType = ?, faceBrow = ?, faceEye = ?, faceIris = ?, faceNose = ?, faceMouth = ?, faceJaw = ?,
faceCheek = ?, faceOption1 = ?, faceOption2 = ?, guardian = ?, birthMonth = ?, birthDay = ?, allegiance = ?,
weapon1 = ?, weapon2 = ?, headGear = ?, bodyGear = ?, legsGear = ?, handsGear = ?, feetGear = ?,
waistGear = ?, rightEarGear = ?, leftEarGear = ?, rightFingerGear = ?, leftFingerGear = ?
WHERE id = ?");
if(!$statement)
{
throw new Exception("Failed to update character information: " . $dataConnection->error);
}
try
{
if(!$statement->bind_param("siiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
$characterInfo["name"], $characterInfo["tribe"], $characterInfo["size"], $characterInfo["voice"],
$characterInfo["skinColor"], $characterInfo["hairStyle"], $characterInfo["hairColor"],
$characterInfo["hairOption"], $characterInfo["eyeColor"], $characterInfo["faceType"],
$characterInfo["faceBrow"], $characterInfo["faceEye"], $characterInfo["faceIris"],
$characterInfo["faceNose"], $characterInfo["faceMouth"], $characterInfo["faceJaw"],
$characterInfo["faceCheek"], $characterInfo["faceOption1"], $characterInfo["faceOption2"],
$characterInfo["guardian"], $characterInfo["birthMonth"], $characterInfo["birthDay"], $characterInfo["allegiance"],
$characterInfo["weapon1"], $characterInfo["weapon2"], $characterInfo["headGear"], $characterInfo["bodyGear"],
$characterInfo["legsGear"], $characterInfo["handsGear"], $characterInfo["feetGear"],
$characterInfo["waistGear"], $characterInfo["rightEarGear"], $characterInfo["leftEarGear"],
$characterInfo["rightFingerGear"], $characterInfo["leftFingerGear"],
$characterId))
{
throw new Exception("Failed to update character information: " . $dataConnection->error);
}
if(!$statement->execute())
{
throw new Exception("Failed to update character information: " . $dataConnection->error);
}
}
finally
{
$statement->close();
}
}
?>

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

View file

@ -0,0 +1,3 @@
<header class="top">
</header>

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

View file

@ -0,0 +1,89 @@
<?php
error_reporting(E_ALL | E_STRICT);
include("config.php");
include("database.php");
function LoginPage_Login($dataConnection)
{
$username = trim($_POST["username"]);
$password = trim($_POST["password"]);
if(empty($username))
{
throw new Exception("You must enter an username.");
}
if(empty($password))
{
throw new Exception("You must enter a password.");
}
$userId = VerifyUser($dataConnection, $username, $password);
return RefreshOrCreateSession($dataConnection, $userId);
}
$loginError = "";
$sessionId = "";
if(isset($_POST["login"]))
{
try
{
$sessionId = LoginPage_Login($g_databaseConnection);
}
catch(Exception $e)
{
$loginError = $e->getMessage();
}
}
?>
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>FFXIV 1.0 Login</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<?php
if(!empty($sessionId))
{
echo "<script>window.location=\"ffxiv://login_success?sessionId=" . $sessionId . "\";</script>";
}
?>
<div style="width: 80%; height: 300px; margin-left: auto; margin-right: auto; margin-top: 20%">
<div class="contentContainer" >
<img style="width: 100%;" src="./img/logo.png" />
</div>
<div class="contentContainer">
<div class="info">
<br />
<form method="post" autocomplete="off">
<table class="infoForm">
<tr>
<td>Username:</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="login" value="Login" />
</td>
</tr>
</table>
</form>
<p class="errorMessage"><?php echo($loginError); ?></p>
</div>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,146 @@
{
0: {
"name": "Bard Artifact Equipment",
"headGear": 41984,
"bodyGear": 41984,
"legsGear": 41984,
"handsGear": 41984,
"feetGear": 41984,
"waistGear": 0
},
1: {
"name": "Black Mage Artifact Equipment",
"headGear": 40960,
"bodyGear": 40960,
"legsGear": 40960,
"handsGear": 40960,
"feetGear": 40960,
"waistGear": 0
},
2: {
"name": "Dragoon Artifact Equipment",
"headGear": 36864,
"bodyGear": 36864,
"legsGear": 36864,
"handsGear": 36864,
"feetGear": 36864,
"waistGear": 0
},
3: {
"name": "Monk Artifact Equipment",
"headGear": 45056,
"bodyGear": 45056,
"legsGear": 45056,
"handsGear": 45056,
"feetGear": 45056,
"waistGear": 0
},
4: {
"name": "Paladin Artifact Equipment",
"headGear": 43008,
"bodyGear": 43008,
"legsGear": 43008,
"handsGear": 43008,
"feetGear": 43008,
"waistGear": 0
},
5: {
"name": "Warrior Artifact Equipment",
"headGear": 37888,
"bodyGear": 37888,
"legsGear": 37888,
"handsGear": 37888,
"feetGear": 37888,
"waistGear": 0
},
6: {
"name": "White Mage Artifact Equipment",
"headGear": 39936,
"bodyGear": 39936,
"legsGear": 39936,
"handsGear": 39936,
"feetGear": 39936,
"waistGear": 0
},
7: {
"name": "The Maelstrom Uniform",
"headGear": 46080,
"bodyGear": 46080,
"legsGear": 1024,
"handsGear": 46080,
"feetGear": 46080,
"waistGear": 0
},
8: {
"name": "The Order of the Twin Adder Uniform",
"headGear": 46112,
"bodyGear": 46081,
"legsGear": 1024,
"handsGear": 46081,
"feetGear": 46081,
"waistGear": 0
},
9: {
"name": "The Immortal Flames Uniform",
"headGear": 46144,
"bodyGear": 46082,
"legsGear": 1024,
"handsGear": 46082,
"feetGear": 46082,
"waistGear": 0
},
10: {
"name": "Alberic",
"headGear": 0,
"bodyGear": 15744,
"legsGear": 7238,
"handsGear": 11584,
"feetGear": 15744,
"waistGear": 0
},
11: {
"name": "Jehantel",
"headGear": 9604,
"bodyGear": 28742,
"legsGear": 28928,
"handsGear": 1024,
"feetGear": 9412,
"waistGear": 0
},
12: {
"name": "Miraudont",
"headGear": 19503,
"bodyGear": 14598,
"legsGear": 3268,
"handsGear": 14560,
"feetGear": 13475,
"waistGear": 248832
},
13: {
"name": "Nael van Darnus (Elezen Male Only)",
"headGear": 0,
"bodyGear": 933888,
"legsGear": 1024,
"handsGear": 1024,
"feetGear": 1024,
"waistGear": 0
},
14: {
"name": "Papalymo",
"headGear": 20507,
"bodyGear": 7589,
"legsGear": 16641,
"handsGear": 3265,
"feetGear": 9504,
"waistGear": 168960
},
15: {
"name": "Rubh Epocan",
"headGear": 20576,
"bodyGear": 7232,
"legsGear": 5198,
"handsGear": 6209,
"feetGear": 6209,
"waistGear": 248832
},
};

View file

@ -0,0 +1,107 @@
{
0: {
"name": "Axe",
"weapon1": 147850240,
"weapon2": 0,
},
1: {
"name": "Bow & Arrow",
"weapon1": 210766878,
"weapon2": 236979210,
},
2: {
"name": "Fists",
"weapon1": 58723358,
"weapon2": 59771934,
},
3: {
"name": "Lance",
"weapon1": 168826880,
"weapon2": 0,
},
4: {
"name": "Sword & Shield",
"weapon1": 79692880,
"weapon2": 32513024,
},
5: {
"name": "Wand (Conjurer)",
"weapon1": 331351052,
"weapon2": 0,
},
6: {
"name": "Wand (Thaumaturge)",
"weapon1": 294652958,
"weapon2": 0,
},
7: {
"name": "Ifrit's Battleaxe",
"weapon1": 147857408,
"weapon2": 0,
},
8: {
"name": "Ifrit's Bow",
"weapon1": 210768896,
"weapon2": 0,
},
9: {
"name": "Ifrit's Claws",
"weapon1": 62915584,
"weapon2": 63964160,
},
10: {
"name": "Ifrit's Harpoon",
"weapon1": 175113216,
"weapon2": 0,
},
11: {
"name": "Ifrit's Blade",
"weapon1": 81789952,
"weapon2": 0,
},
12: {
"name": "Ifrit's Cane",
"weapon1": 347086848,
"weapon2": 0,
},
13: {
"name": "Ifrit's Cudgel",
"weapon1": 294653952,
"weapon2": 0,
},
14: {
"name": "Bravura",
"weapon1": 147856384,
"weapon2": 0,
},
15: {
"name": "Artemis Bow",
"weapon1": 212861952,
"weapon2": 0,
},
16: {
"name": "Sphairai",
"weapon1": 65012736,
"weapon2": 66061312,
},
17: {
"name": "Gae Bolg",
"weapon1": 173016064,
"weapon2": 0,
},
18: {
"name": "Curtana & Holy Shield",
"weapon1": 79702016,
"weapon2": 32517120,
},
19: {
"name": "Thyrus",
"weapon1": 347084800,
"weapon2": 0,
},
20: {
"name": "Stardust Rod",
"weapon1": 310380544,
"weapon2": 0,
},
};

View file

@ -0,0 +1,3 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]

123
data/www/vercheck/index.php Normal file
View file

@ -0,0 +1,123 @@
<?php
require 'patches.php';
function getCurrentUri()
{
$basepath = implode('/', array_slice(explode('/', $_SERVER['SCRIPT_NAME']), 0, -1)) . '/';
$uri = substr($_SERVER['REQUEST_URI'], strlen($basepath));
if (strstr($uri, '?')) $uri = substr($uri, 0, strpos($uri, '?'));
$uri = '/' . trim($uri, '/');
return $uri;
}
function checkBootVersion($version)
{
global $LATEST_BOOT_VERSION, $BOOT_PATCHES;
if ($version != $LATEST_BOOT_VERSION)
{
if (!isset($BOOT_PATCHES[$version]))
{
header("HTTP/1.0 404 NOT FOUND");
return;
}
header("HTTP/1.0 200 OK");
header("Content-Location: ffxiv/2d2a390f/vercheck.dat");
header("Content-Type: multipart/mixed; boundary=477D80B1_38BC_41d4_8B48_5273ADB89CAC");
header("X-Repository: ffxiv/win32/release/boot");
header("X-Patch-Module: ZiPatch");
header("X-Protocol: torrent");
header("X-Info-Url: http://example.com");
header("X-Latest-Version: $LATEST_BOOT_VERSION");
header("Connection: keep-alive");
echo "--477D80B1_38BC_41d4_8B48_5273ADB89CAC\r\n";
echo "Content-Type: application/octet-stream\r\n";
echo "Content-Location: ffxiv/2d2a390f/metainfo/D$BOOT_PATCHES[$version].torrent\r\n";
echo "X-Patch-Length: " . filesize("./ffxiv/2d2a390f/patch/D$BOOT_PATCHES[$version].patch") . "\r\n";
echo "X-Signature: jqxmt9WQH1aXptNju6CmCdztFdaKbyOAVjdGw_DJvRiBJhnQL6UlDUcqxg2DeiIKhVzkjUm3hFXOVUFjygxCoPUmCwnbCaryNqVk_oTk_aZE4HGWNOEcAdBwf0Gb2SzwAtk69zs_5dLAtZ0mPpMuxWJiaNSvWjEmQ925BFwd7Vk=\r\n";
echo "test: $version";
echo "\r\n";
readfile("./ffxiv/2d2a390f/metainfo/D$BOOT_PATCHES[$version].torrent");
echo "\r\n";
echo "--477D80B1_38BC_41d4_8B48_5273ADB89CAC--\r\n\r\n";
}
else
{
header("HTTP/1.0 204 No Content");
header("Content-Location: ffxiv/48eca647/vercheck.dat");
header("X-Repository: ffxiv/win32/release/boot");
header("X-Patch-Module: ZiPatch");
header("X-Protocol: torrent");
header("X-Info-Url: http://www.example.com");
header("X-Latest-Version: $LATEST_BOOT_VERSION");
}
}
function checkGameVersion($version)
{
global $LATEST_GAME_VERSION, $GAME_PATCHES;
if ($version != $LATEST_GAME_VERSION)
{
if (!isset($GAME_PATCHES[$version]))
{
header("HTTP/1.0 404 NOT FOUND");
return;
}
header("HTTP/1.0 200 OK");
header("Content-Location: ffxiv/48eca647/vercheck.dat");
header("Content-Type: multipart/mixed; boundary=477D80B1_38BC_41d4_8B48_5273ADB89CAC");
header("X-Repository: ffxiv/win32/release/game");
header("X-Patch-Module: ZiPatch");
header("X-Protocol: torrent");
header("X-Info-Url: http://example.com");
header("X-Latest-Version: $LATEST_GAME_VERSION");
header("Connection: keep-alive");
echo "--477D80B1_38BC_41d4_8B48_5273ADB89CAC\r\n";
echo "Content-Type: application/octet-stream\r\n";
echo "Content-Location: ffxiv/48eca647/metainfo/D$GAME_PATCHES[$version].torrent\r\n";
echo "X-Patch-Length: " . filesize("./ffxiv/48eca647/patch/D$GAME_PATCHES[$version].patch") . "\r\n";
echo "X-Signature: jqxmt9WQH1aXptNju6CmCdztFdaKbyOAVjdGw_DJvRiBJhnQL6UlDUcqxg2DeiIKhVzkjUm3hFXOVUFjygxCoPUmCwnbCaryNqVk_oTk_aZE4HGWNOEcAdBwf0Gb2SzwAtk69zs_5dLAtZ0mPpMuxWJiaNSvWjEmQ925BFwd7Vk=\r\n";
echo "\r\n";
readfile("./ffxiv/48eca647/metainfo/D$GAME_PATCHES[$version].torrent");
echo "\r\n";
echo "--477D80B1_38BC_41d4_8B48_5273ADB89CAC--\r\n\r\n";
}
else
{
header("HTTP/1.0 204 No Content");
header("Content-Location: ffxiv/48eca647/vercheck.dat");
header("X-Repository: ffxiv/win32/release/game");
header("X-Patch-Module: ZiPatch");
header("X-Protocol: torrent");
header("X-Info-Url: http://www.example.com");
header("X-Latest-Version: $LATEST_GAME_VERSION");
}
}
//Find the version request
$base_url = getCurrentUri();
$routes = array();
$routes = explode('/', $base_url);
//Are we even updating FFXIV?
if ($routes[1] == "ffxiv" &&
$routes[2] == "win32" &&
$routes[3] == "release"){
//Updating Launcher
if ($routes[4] == "boot")
checkBootVersion($routes[5]);
//Updating Game
else if ($routes[4] == "game")
checkGameVersion($routes[5]);
}
?>

View file

@ -0,0 +1,64 @@
<?php
$LATEST_BOOT_VERSION = "2010.09.18.0000";
$LATEST_GAME_VERSION = "2012.09.19.0001";
$BOOT_PATCHES = array(
"2010.07.10.0000" => "2010.09.18.0000",
);
$GAME_PATCHES = array(
"2010.07.10.0000" => "2010.09.19.0000",
"2010.09.19.0000" => "2010.09.23.0000",
"2010.09.23.0000" => "2010.09.28.0000",
"2010.09.28.0000" => "2010.10.07.0001",
"2010.10.07.0001" => "2010.10.14.0000",
"2010.10.14.0000" => "2010.10.22.0000",
"2010.10.22.0000" => "2010.10.26.0000",
"2010.10.26.0000" => "2010.11.25.0002",
"2010.11.25.0002" => "2010.11.30.0000",
"2010.11.30.0000" => "2010.12.06.0000",
"2010.12.06.0000" => "2010.12.13.0000",
"2010.12.13.0000" => "2010.12.21.0000",
"2010.12.21.0000" => "2011.01.18.0000",
"2011.01.18.0000" => "2011.02.01.0000",
"2011.02.01.0000" => "2011.02.10.0000",
"2011.02.10.0000" => "2011.03.01.0000",
"2011.03.01.0000" => "2011.03.24.0000",
"2011.03.24.0000" => "2011.03.30.0000",
"2011.03.30.0000" => "2011.04.13.0000",
"2011.04.13.0000" => "2011.04.21.0000",
"2011.04.21.0000" => "2011.05.19.0000",
"2011.05.19.0000" => "2011.06.10.0000",
"2011.06.10.0000" => "2011.07.20.0000",
"2011.07.20.0000" => "2011.07.26.0000",
"2011.07.26.0000" => "2011.08.05.0000",
"2011.08.05.0000" => "2011.08.09.0000",
"2011.08.09.0000" => "2011.08.16.0000",
"2011.08.16.0000" => "2011.10.04.0000",
"2011.10.04.0000" => "2011.10.12.0001",
"2011.10.12.0001" => "2011.10.27.0000",
"2011.10.27.0000" => "2011.12.14.0000",
"2011.12.14.0000" => "2011.12.23.0000",
"2011.12.23.0000" => "2012.01.18.0000",
"2012.01.18.0000" => "2012.01.24.0000",
"2012.01.24.0000" => "2012.01.31.0000",
"2012.01.31.0000" => "2012.03.07.0000",
"2012.03.07.0000" => "2012.03.09.0000",
"2012.03.09.0000" => "2012.03.22.0000",
"2012.03.22.0000" => "2012.03.29.0000",
"2012.03.29.0000" => "2012.04.04.0000",
"2012.04.04.0000" => "2012.04.23.0001",
"2012.04.23.0001" => "2012.05.08.0000",
"2012.05.08.0000" => "2012.05.15.0000",
"2012.05.15.0000" => "2012.05.22.0000",
"2012.05.22.0000" => "2012.06.06.0000",
"2012.06.06.0000" => "2012.06.19.0000",
"2012.06.19.0000" => "2012.06.26.0000",
"2012.06.26.0000" => "2012.07.21.0000",
"2012.07.21.0000" => "2012.08.10.0000",
"2012.08.10.0000" => "2012.09.06.0000",
"2012.09.06.0000" => "2012.09.19.0001",
);
?>