port over some changes from Trinity version including one possible memory leak fix
[AHbot.git] / sql / mangos.sql
blob5381bda911706817b1b6363c9813bbca35bf6dc4
1 -- MySQL dump 10.11
2 --
3 -- Host: localhost    Database: mangos
4 -- ------------------------------------------------------
5 -- Server version       5.0.56-nt
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40101 SET NAMES utf8 */;
11 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12 /*!40103 SET TIME_ZONE='+00:00' */;
13 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
19 -- Table structure for table `db_version`
22 DROP TABLE IF EXISTS `db_version`;
23 CREATE TABLE `db_version` (
24   `version` varchar(120) default NULL,
25   `creature_ai_version` varchar(120) default NULL,
26   `required_7796_02_mangos_mangos_string` bit(1) default NULL
27 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
30 -- Dumping data for table `db_version`
33 LOCK TABLES `db_version` WRITE;
34 /*!40000 ALTER TABLE `db_version` DISABLE KEYS */;
35 INSERT INTO `db_version` VALUES
36 ('Mangos default database.','Creature EventAI not provided.',NULL);
37 /*!40000 ALTER TABLE `db_version` ENABLE KEYS */;
38 UNLOCK TABLES;
41 -- Table structure for table `achievement_criteria_data`
44 DROP TABLE IF EXISTS `achievement_criteria_data`;
45 CREATE TABLE `achievement_criteria_data` (
46   `criteria_id` mediumint(8) NOT NULL,
47   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
48   `value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
49   `value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
50   PRIMARY KEY (`criteria_id`,`type`)
51 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
54 -- Dumping data for table `achievement_criteria_data`
57 LOCK TABLES `achievement_criteria_data` WRITE;
58 /*!40000 ALTER TABLE `achievement_criteria_data` DISABLE KEYS */;
59 /*!40000 ALTER TABLE `achievement_criteria_data` ENABLE KEYS */;
60 UNLOCK TABLES;
63 -- Table structure for table `achievement_reward`
66 DROP TABLE IF EXISTS `achievement_reward`;
67 CREATE TABLE `achievement_reward` (
68   `entry` mediumint(8) unsigned NOT NULL default '0',
69   `title_A` mediumint(8) unsigned NOT NULL default '0',
70   `title_H` mediumint(8) unsigned NOT NULL default '0',
71   `item` mediumint(8) unsigned NOT NULL default '0',
72   `sender` mediumint(8) unsigned NOT NULL default '0',
73   `subject` varchar(255) default NULL,
74   `text` text,
75   PRIMARY KEY  (`entry`)
76 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
79 -- Dumping data for table `achievement_reward`
82 LOCK TABLES `achievement_reward` WRITE;
83 /*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
84 /*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
85 UNLOCK TABLES;
88 -- Table structure for table `areatrigger_involvedrelation`
91 DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
92 CREATE TABLE `areatrigger_involvedrelation` (
93   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
94   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
95   PRIMARY KEY  (`id`)
96 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
99 -- Dumping data for table `areatrigger_involvedrelation`
102 LOCK TABLES `areatrigger_involvedrelation` WRITE;
103 /*!40000 ALTER TABLE `areatrigger_involvedrelation` DISABLE KEYS */;
104 /*!40000 ALTER TABLE `areatrigger_involvedrelation` ENABLE KEYS */;
105 UNLOCK TABLES;
108 -- Table structure for table `areatrigger_scripts`
111 DROP TABLE IF EXISTS `areatrigger_scripts`;
112 CREATE TABLE `areatrigger_scripts` (
113     `entry` MEDIUMINT( 8 ) NOT NULL ,
114     `ScriptName` CHAR( 64 ) NOT NULL ,
115     PRIMARY KEY ( `entry` )
116 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
119 -- Dumping data for table `areatrigger_scripts`
122 LOCK TABLES `areatrigger_scripts` WRITE;
123 /*!40000 ALTER TABLE `areatrigger_scripts` DISABLE KEYS */;
124 /*!40000 ALTER TABLE `areatrigger_scripts` ENABLE KEYS */;
125 UNLOCK TABLES;
128 -- Table structure for table `areatrigger_tavern`
131 DROP TABLE IF EXISTS `areatrigger_tavern`;
132 CREATE TABLE `areatrigger_tavern` (
133   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
134   `name` text,
135   PRIMARY KEY  (`id`)
136 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
139 -- Dumping data for table `areatrigger_tavern`
142 LOCK TABLES `areatrigger_tavern` WRITE;
143 /*!40000 ALTER TABLE `areatrigger_tavern` DISABLE KEYS */;
144 /*!40000 ALTER TABLE `areatrigger_tavern` ENABLE KEYS */;
145 UNLOCK TABLES;
148 -- Table structure for table `areatrigger_teleport`
151 DROP TABLE IF EXISTS `areatrigger_teleport`;
152 CREATE TABLE `areatrigger_teleport` (
153   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
154   `name` text,
155   `required_level` tinyint(3) unsigned NOT NULL default '0',
156   `required_item` mediumint(8) unsigned NOT NULL default '0',
157   `required_item2` mediumint(8) unsigned NOT NULL default '0',
158   `heroic_key` mediumint(8) unsigned NOT NULL default '0',
159   `heroic_key2` mediumint(8) unsigned NOT NULL default '0',
160   `required_quest_done` int(11) unsigned NOT NULL default '0',
161   `required_quest_done_heroic` int(11) unsigned NOT NULL default '0',
162   `required_failed_text` text,
163   `target_map` smallint(5) unsigned NOT NULL default '0',
164   `target_position_x` float NOT NULL default '0',
165   `target_position_y` float NOT NULL default '0',
166   `target_position_z` float NOT NULL default '0',
167   `target_orientation` float NOT NULL default '0',
168   PRIMARY KEY  (`id`)
169 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
172 -- Dumping data for table `areatrigger_teleport`
175 LOCK TABLES `areatrigger_teleport` WRITE;
176 /*!40000 ALTER TABLE `areatrigger_teleport` DISABLE KEYS */;
177 /*!40000 ALTER TABLE `areatrigger_teleport` ENABLE KEYS */;
178 UNLOCK TABLES;
181 -- Table structure for table `battleground_template`
184 DROP TABLE IF EXISTS `battleground_template`;
185 CREATE TABLE `battleground_template` (
186   `id` mediumint(8) unsigned NOT NULL,
187   `MinPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
188   `MaxPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
189   `MinLvl` tinyint(3) unsigned NOT NULL default '0',
190   `MaxLvl` tinyint(3) unsigned NOT NULL default '0',
191   `AllianceStartLoc` mediumint(8) unsigned NOT NULL,
192   `AllianceStartO` float NOT NULL,
193   `HordeStartLoc` mediumint(8) unsigned NOT NULL,
194   `HordeStartO` float NOT NULL,
195   PRIMARY KEY  (`id`)
196 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
199 -- Dumping data for table `battleground_template`
202 LOCK TABLES `battleground_template` WRITE;
203 /*!40000 ALTER TABLE `battleground_template` DISABLE KEYS */;
204 INSERT INTO `battleground_template` VALUES
205 (1,0,0,0,0,611,2.72532,610,2.27452),
206 (2,0,0,0,0,769,3.14159,770,3.14159),
207 (4,0,2,10,70,929,0,936,3.14159),
208 (3,0,0,0,0,890,3.40156,889,0.263892),
209 (5,0,2,10,70,939,0,940,3.14159),
210 (6,0,2,10,70,0,0,0,0),
211 (7,0,0,0,0,1103,3.40156,1104,0.263892),
212 (8,0,2,10,70,1258,0,1259,3.14159),
213 (9,0,0,0,0,1367,0,1368,0),
214 (10,5,5,10,80,1362,0,1363,0),
215 (11,5,5,10,80,1364,0,1365,0);
216 /*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
217 UNLOCK TABLES;
220 -- Table structure for table `battlemaster_entry`
223 DROP TABLE IF EXISTS `battlemaster_entry`;
224 CREATE TABLE `battlemaster_entry` (
225   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Entry of a creature',
226   `bg_template` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Battleground template id',
227   PRIMARY KEY  (`entry`)
228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
231 -- Dumping data for table `battlemaster_entry`
234 LOCK TABLES `battlemaster_entry` WRITE;
235 /*!40000 ALTER TABLE `battlemaster_entry` DISABLE KEYS */;
236 /*!40000 ALTER TABLE `battlemaster_entry` ENABLE KEYS */;
237 UNLOCK TABLES;
240 -- Table structure for table `command`
243 DROP TABLE IF EXISTS `command`;
244 CREATE TABLE `command` (
245   `name` varchar(50) NOT NULL default '',
246   `security` tinyint(3) unsigned NOT NULL default '0',
247   `help` longtext,
248   PRIMARY KEY  (`name`)
249 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Chat System';
252 -- Dumping data for table `command`
255 LOCK TABLES `command` WRITE;
256 /*!40000 ALTER TABLE `command` DISABLE KEYS */;
257 INSERT INTO `command` VALUES
258 ('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
259 ('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
260 ('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
261 ('account lock',0,'Syntax: .account lock [on|off]\r\n\r\nAllow login from account only from current used IP or remove this requirement.'),
262 ('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
263 ('account password',0,'Syntax: .account password $old_password $new_password $new_password\r\n\r\nChange your account password.'),
264 ('account set addon',3,'Syntax: .account set addon [$account] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
265 ('account set gmlevel',4,'Syntax: .account set gmlevel [$account] #level\r\n\r\nSet the security level for targeted player (can''t be used at self) or for account $name to a level of #level.\r\n\r\n#level may range from 0 to 3.'),
266 ('account set password',4,'Syntax: .account set password $account $password $password\r\n\r\nSet password for account.'),
267 ('additem',3,'Syntax: .additem #itemid/[#itemname]/#shift-click-item-link #itemcount\r\n\r\nAdds the specified number of items of id #itemid (or exact (!) name $itemname in brackets, or link created by shift-click at item in inventory or recipe) to your or selected character inventory. If #itemcount is omitted, only one item will be added.\r\n.'),
268 ('additemset',3,'Syntax: .additemset #itemsetid\r\n\r\nAdd items from itemset of id #itemsetid to your or selected character inventory. Will add by one example each item from itemset.'),
269 ('announce',1,'Syntax: .announce $MessageToBroadcast\r\n\r\nSend a global message to all players online in chat log.'),
270 ('aura',3,'Syntax: .aura #spellid\r\n\r\nAdd the aura from spell #spellid to the selected Unit.'),
271 ('ban account',3,'Syntax: .ban account $Name $bantime $reason\r\nBan account kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
272 ('ban character',3,'Syntax: .ban character $Name $bantime $reason\r\nBan account and kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
273 ('ban ip',3,'Syntax: .ban ip $Ip $bantime $reason\r\nBan IP.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
274 ('baninfo account',3,'Syntax: .baninfo account\r\nWatch full information about a specific ban.'),
275 ('baninfo character',3,'Syntax: .baninfo character\r\nWatch full information about a specific ban.'),
276 ('baninfo ip',3,'Syntax: .baninfo ip\r\nWatch full information about a specific ban.'),
277 ('bank',3,'Syntax: .bank\r\n\r\nShow your bank inventory.'),
278 ('banlist account',3,'Syntax: .banlist account [$Name]\r\nSearches the banlist for a account name pattern or show full list account bans.'),
279 ('banlist character',3,'Syntax: .banlist character $Name\r\nSearches the banlist for a character name pattern. Pattern required.'),
280 ('banlist ip',3,'Syntax: .banlist ip [$Ip]\r\nSearches the banlist for a IP pattern or show full list of IP bans.'),
281 ('cast',3,'Syntax: .cast #spellid [triggered]\r\n  Cast #spellid to selected target. If no target selected cast to self. If \'trigered\' or part provided then spell casted with triggered flag.'),
282 ('cast back',3,'Syntax: .cast back #spellid [triggered]\r\n  Selected target will cast #spellid to your character. If \'trigered\' or part provided then spell casted with triggered flag.'),
283 ('cast dist',3,'Syntax: .cast dist #spellid [#dist [triggered]]\r\n  You will cast spell to pint at distance #dist. If \'trigered\' or part provided then spell casted with triggered flag. Not all spells can be casted as area spells.'),
284 ('cast self',3,'Syntax: .cast self #spellid [triggered]\r\nCast #spellid by target at target itself. If \'trigered\' or part provided then spell casted with triggered flag.'),
285 ('cast target',3,'Syntax: .cast target #spellid [triggered]\r\n  Selected target will cast #spellid to his victim. If \'trigered\' or part provided then spell casted with triggered flag.'),
286 ('character customize',2,'Syntax: .character customize [$name]\r\n\r\nMark selected in game or by $name in command character for customize at next login.'),
287 ('character delete',4,'Syntax: .character delete $name\r\n\r\nDelete character $name.'),
288 ('character level',3,'Syntax: .character level [$playername] [#level]\r\n\r\nSet the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent values recalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
289 ('character rename',2,'Syntax: .character rename [$name]\r\n\r\nMark selected in game or by $name in command character for rename at next login.'),
290 ('combatstop',2,'Syntax: .combatstop [$playername]\r\nStop combat for selected character. If selected non-player then command applied to self. If $playername provided then attempt applied to online player $playername.'),
291 ('commands',0,'Syntax: .commands\r\n\r\nDisplay a list of available commands for your account level.'),
292 ('cooldown',3,'Syntax: .cooldown [#spell_id]\r\n\r\nRemove all (if spell_id not provided) or #spel_id spell cooldown from selected character or you (if no selection).'),
293 ('damage',3,'Syntax: .damage $damage_amount [$school [$spellid]]\r\n\r\nApply $damage to target. If not $school and $spellid provided then this flat clean melee damage without any modifiers. If $school provided then damage modified by armor reduction (if school physical), and target absorbing modifiers and result applied as melee damage to target. If spell provided then damage modified and applied as spell damage. $spellid can be shift-link.'),
294 ('debug anim',2,'Syntax: .debug anim #emoteid\r\n\r\nPlay emote #emoteid for your character.'),
295 ('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
296 ('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
297 ('debug getvalue',3,'Syntax: .debug getvalue #field #isInt\r\n\r\nGet the field #field of the selected creature. If no creature is selected, get the content of your field.\r\n\r\nUse a #isInt of value 1 if the expected field content is an integer.'),
298 ('debug play cinematic',1,'Syntax: .debug play cinematic #cinematicid\r\n\r\nPlay cinematic #cinematicid for you. You stay at place while your mind fly.\r\n'),
299 ('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
300 ('debug play sound',1,'Syntax: .debug play sound #soundid\r\n\r\nPlay sound with #soundid.\r\nSound will be play only for you. Other players do not hear this.\r\nWarning: client may have more 5000 sounds...'),
301 ('debug setvalue',3,'Syntax: .debug setvalue #field #value #isInt\r\n\r\nSet the field #field of the selected creature with value #value. If no creature is selected, set the content of your field.\r\n\r\nUse a #isInt of value 1 if #value is an integer.'),
302 ('debug update',3,'Syntax: .debug update #field #value\r\n\r\nUpdate the field #field of the selected character or creature with value #value.\r\n\r\nIf no #value is provided, display the content of field #field.'),
303 ('debug Mod32Value',3,'Syntax: .debug Mod32Value #field #value\r\n\r\nAdd #value to field #field of your character.'),
304 ('delticket',2,'Syntax: .delticket all\r\n        .delticket #num\r\n        .delticket $character_name\r\n\rall to dalete all tickets at server, $character_name to delete ticket of this character, #num to delete ticket #num.'),
305 ('demorph',2,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
306 ('die',3,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
307 ('dismount',0,'Syntax: .dismount\r\n\r\nDismount you, if you are mounted.'),
308 ('distance',3,'Syntax: .distance [$name/$link]\r\n\r\nDisplay the distance from your character to the selected creature/player, or player with name $name, or player/creature/gameobject pointed to shift-link with guid.'),
309 ('event',2,'Syntax: .event #event_id\r\nShow details about event with #event_id.'),
310 ('event activelist',2,'Syntax: .event activelist\r\nShow list of currently active events.'),
311 ('event start',2,'Syntax: .event start #event_id\r\nStart event #event_id. Set start time for event to current moment (change not saved in DB).'),
312 ('event stop',2,'Syntax: .event stop #event_id\r\nStop event #event_id. Set start time for event to time in past that make current moment is event stop time (change not saved in DB).'),
313 ('explorecheat',3,'Syntax: .explorecheat #flag\r\n\r\nReveal  or hide all maps for the selected player. If no player is selected, hide or reveal maps to you.\r\n\r\nUse a #flag of value 1 to reveal, use a #flag value of 0 to hide all maps.'),
314 ('flusharenapoints','3','Syntax: .flusharenapoints\r\n\r\nUse it to distribute arena points based on arena team ratings, and start a new week.'),
315 ('gm',1,'Syntax: .gm [on/off]\r\n\r\nEnable or Disable in game GM MODE or show current state of on/off not provided.'),
316 ('gm chat',1,'Syntax: .gm chat [on/off]\r\n\r\nEnable or disable chat GM MODE (show gm badge in messages) or show current state of on/off not provided.'),
317 ('gm fly',3,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
318 ('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
319 ('gm list',3,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
320 ('gm online',0,'Syntax: .gm online\r\n\r\nDisplay a list of available Game Masters.'),
321 ('gm visible',1,'Syntax: .gm visible on/off\r\n\r\nOutput current visibility state or make GM visible(on) and invisible(off) for other players.'),
322 ('go creature',1,'Syntax: .go creature #creature_guid\r\nTeleport your character to creature with guid #creature_guid.\r\n.gocreature #creature_name\r\nTeleport your character to creature with this name.\r\n.gocreature id #creature_id\r\nTeleport your character to a creature that was spawned from the template with this entry.\r\n*If* more than one creature is found, then you are teleported to the first that is found inside the database.'),
323 ('go graveyard',1,'Syntax: .go graveyard #graveyardId\r\n Teleport to graveyard with the graveyardId specified.'),
324 ('go grid',1,'Syntax: .go grid #gridX #gridY [#mapId]\r\n\r\nTeleport the gm to center of grid with provided indexes at map #mapId (or current map if it not provided).'),
325 ('go object',1,'Syntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'),
326 ('go taxinode',1,'Syntax: .go taxinode #taxinode\r\n\r\nTeleport player to taxinode coordinates. You can look up zone using .lookup taxinode $namepart'),
327 ('go trigger',1,'Syntax: .go trigger #trigger_id\r\n\r\nTeleport your character to areatrigger with id #trigger_id. Character will be teleported to trigger target if selected areatrigger is telporting trigger.'),
328 ('go xy',1,'Syntax: .go xy #x #y [#mapid]\r\n\r\nTeleport player to point with (#x,#y) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
329 ('go xyz',1,'Syntax: .go xyz #x #y #z [#mapid]\r\n\r\nTeleport player to point with (#x,#y,#z) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
330 ('go zonexy',1,'Syntax: .go zonexy #x #y [#zone]\r\n\r\nTeleport player to point with (#x,#y) client coordinates at ground(water) level in zone #zoneid or current zone if #zoneid not provided. You can look up zone using .lookup area $namepart'),
331 ('gobject add',2,'Syntax: .gobject add #id <spawntimeSecs>\r\n\r\nAdd a game object from game object templates to the world at your current location using the #id.\r\nspawntimesecs sets the spawntime, it is optional.\r\n\r\nNote: this is a copy of .gameobject.'),
332 ('gobject delete',2,'Syntax: .gobject delete #go_guid\r\nDelete gameobject with guid #go_guid.'),
333 ('gobject move',2,'Syntax: .gobject move #goguid [#x #y #z]\r\n\r\nMove gameobject #goguid to character coordinates (or to (#x,#y,#z) coordinates if its provide).'),
334 ('gobject near',2,'Syntax: .gobject near  [#distance]\r\n\r\nOutput gameobjects at distance #distance from player. Output gameobject guids and coordinates sorted by distance from character. If #distance not provided use 10 as default value.'),
335 ('gobject setphase',2,'Syntax: .gobject setphase #guid #phasemask\r\n\r\nGameobject with DB guid #guid phasemask changed to #phasemask with related world vision update for players. Gameobject state saved to DB and persistent.'),
336 ('gobject turn',2,'Syntax: .gobject turn #goguid \r\n\r\nSet for gameobject #goguid orientation same as current character orientation.'),
337 ('gobject target',2,'Syntax: .gobject target [#go_id|#go_name_part]\r\n\r\nLocate and show position nearest gameobject. If #go_id or #go_name_part provide then locate and show position of nearest gameobject with gameobject template id #go_id or name included #go_name_part as part.'),
338 ('goname',1,'Syntax: .goname $charactername\r\n\r\nTeleport to the given character. Either specify the character name or click on the character\'s portrait, e.g. when you are in a group.'),
339 ('gps',1,'Syntax: .gps [$name|$shift-link]\r\n\r\nDisplay the position information for a selected character or creature (also if player name $name provided then for named player, or if creature/gameobject shift-link provided then pointed creature/gameobject if it loaded). Position information includes X, Y, Z, and orientation, map Id and zone Id'),
340 ('groupgo',1,'Syntax: .groupgo $charactername\r\n\r\nTeleport the given character and his group to you.'),
341 ('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'),
342 ('guild create',2,'Syntax: .guild create $GuildLeaderName $GuildName\r\n\r\nCreate a guild named $GuildName with the player $GuildLeaderName as leader.'),
343 ('guild delete',2,'Syntax: .guild delete $GuildName\r\n\r\nDelete guild $GuildName.'),
344 ('guild invite',2,'Syntax: .guild invite $CharacterName $GuildName\r\n\r\nAdd $CharacterName into a guild $GuildName.'),
345 ('guild rank',2,'Syntax: .guild rank $CharacterName #Rank\r\n\r\nSet for $CharacterName rank #Rank in a guild.'),
346 ('guild uninvite',2,'Syntax: .guild uninvite $CharacterName\r\n\r\nRemove $CharacterName from a guild.'),
347 ('help',0,'Syntax: .help [$command]\r\n\r\nDisplay usage instructions for the given $command. If no $command provided show list available commands.'),
348 ('hidearea',3,'Syntax: .hidearea #areaid\r\n\r\nHide the area of #areaid to the selected character. If no character is selected, hide this area to you.'),
349 ('honor add',2,'Syntax: .honor add $amount\r\n\r\nAdd a certain amount of honor (gained today) to the selected player.'),
350 ('honor addkill',2,'Syntax: .honor addkikll\r\n\r\nAdd the targeted unit as one of your pvp kills today (you only get honor if it\'s a racial leader or a player)'),
351 ('honor update',2,'Syntax: .honor update\r\n\r\nForce the yesterday\'s honor fields to be updated with today\'s data, which will get reset for the selected player.'),
352 ('hover',3,'Syntax: .hover #flag\r\n\r\nEnable or disable hover mode for your character.\r\n\r\nUse a #flag of value 1 to enable, use a #flag value of 0 to disable hover.'),
353 ('instance unbind',3,'Syntax: .instance unbind all\r\n  All of the selected player\'s binds will be cleared.'),
354 ('instance listbinds',3,'Syntax: .instance listbinds\r\n  Lists the binds of the selected player.'),
355 ('instance stats',3,'Syntax: .instance stats\r\n  Shows statistics about instances.'),
356 ('instance savedata',3,'Syntax: .instance savedata\r\n  Save the InstanceData for the current player\'s map to the DB.'),
357 ('itemmove',2,'Syntax: .itemmove #sourceslotid #destinationslotid\r\n\r\nMove an item from slots #sourceslotid to #destinationslotid in your inventory\r\n\r\nNot yet implemented'),
358 ('kick',2,'Syntax: .kick [$charactername]\r\n\r\nKick the given character name from the world. If no character name is provided then the selected player (except for yourself) will be kicked.'),
359 ('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If \'all\' provided then all ranks learned.'),
360 ('learn all',3,'Syntax: .learn all\r\n\r\nLearn all big set different spell maybe useful for Administaror.'),
361 ('learn all_crafts',2,'Syntax: .learn crafts\r\n\r\nLearn all professions and recipes.'),
362 ('learn all_default',1,'Syntax: .learn all_default [$playername]\r\n\r\nLearn for selected/$playername player all default spells for his race/class and spells rewarded by completed quests.'),
363 ('learn all_gm',2,'Syntax: .learn all_gm\r\n\r\nLearn all default spells for Game Masters.'),
364 ('learn all_lang',1,'Syntax: .learn all_lang\r\n\r\nLearn all languages'),
365 ('learn all_myclass',3,'Syntax: .learn all_myclass\r\n\r\nLearn all spells and talents available for his class.'),
366 ('learn all_mypettalents',3,'Syntax: .learn all_mypettalents\r\n\r\nLearn all talents for your pet available for his creature type (only for hunter pets).'),
367 ('learn all_myspells',3,'Syntax: .learn all_myspells\r\n\r\nLearn all spells (except talents and spells with first rank learned as talent) available for his class.'),
368 ('learn all_mytalents',3,'Syntax: .learn all_mytalents\r\n\r\nLearn all talents (and spells with first rank learned as talent) available for his class.'),
369 ('learn all_recipes',2,'Syntax: .learn all_recipes [$profession]\r\rLearns all recipes of specified profession and sets skill level to max.\rExample: .learn all_recipes enchanting'),
370 ('levelup',3,'Syntax: .levelup [$playername] [#numberoflevels]\r\n\r\nIncrease/decrease the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent VALUESrecalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
371 ('linkgrave',3,'Syntax: .linkgrave #graveyard_id [alliance|horde]\r\n\r\nLink current zone to graveyard for any (or alliance/horde faction ghosts). This let character ghost from zone teleport to graveyard after die if graveyard is nearest from linked to zone and accept ghost of this faction. Add only single graveyard at another map and only if no graveyards linked (or planned linked at same map).'),
372 ('list creature',3,'Syntax: .list creature #creature_id [#max_count]\r\n\r\nOutput creatures with creature id #creature_id found in world. Output creature guids and coordinates sorted by distance from character. Will be output maximum #max_count creatures. If #max_count not provided use 10 as default value.'),
373 ('list item',3,'Syntax: .list item #item_id [#max_count]\r\n\r\nOutput items with item id #item_id found in all character inventories, mails, auctions, and guild banks. Output item guids, item owner guid, owner account and owner name (guild name and guid in case guild bank). Will be output maximum #max_count items. If #max_count not provided use 10 as default value.'),
374 ('list object',3,'Syntax: .list object #gameobject_id [#max_count]\r\n\r\nOutput gameobjects with gameobject id #gameobject_id found in world. Output gameobject guids and coordinates sorted by distance from character. Will be output maximum #max_count gameobject. If #max_count not provided use 10 as default value.'),
375 ('loadscripts',3,'Syntax: .loadscripts $scriptlibraryname\r\n\r\nUnload current and load the script library $scriptlibraryname or reload current if $scriptlibraryname omitted, in case you changed it while the server was running.'),
376 ('lookup area',1,'Syntax: .lookup area $namepart\r\n\r\nLooks up an area by $namepart, and returns all matches with their area ID\'s.'),
377 ('lookup creature',3,'Syntax: .lookup creature $namepart\r\n\r\nLooks up a creature by $namepart, and returns all matches with their creature ID\'s.'),
378 ('lookup event',2,'Syntax: .lookup event $name\r\nAttempts to find the ID of the event with the provided $name.'),
379 ('lookup faction',3,'Syntax: .lookup faction $name\r\nAttempts to find the ID of the faction with the provided $name.'),
380 ('lookup item',3,'Syntax: .lookup item $itemname\r\n\r\nLooks up an item by $itemname, and returns all matches with their Item ID\'s.'),
381 ('lookup itemset',3,'Syntax: .lookup itemset $itemname\r\n\r\nLooks up an item set by $itemname, and returns all matches with their Item set ID\'s.'),
382 ('lookup object',3,'Syntax: .lookup object $objname\r\n\r\nLooks up an gameobject by $objname, and returns all matches with their Gameobject ID\'s.'),
383 ('lookup player account',2,'Syntax: .lookup player account $account ($limit) \r\n\r\n Searchs players, which account username is $account with optional parametr $limit of results.'),
384 ('lookup player ip',2,'Syntax: .lookup player ip $ip ($limit) \r\n\r\n Searchs players, which account ast_ip is $ip with optional parametr $limit of results.'),
385 ('lookup player email',2,'Syntax: .lookup player email $email ($limit) \r\n\r\n Searchs players, which account email is $email with optional parametr $limit of results.'),
386 ('lookup quest',3,'Syntax: .lookup quest $namepart\r\n\r\nLooks up a quest by $namepart, and returns all matches with their quest ID\'s.'),
387 ('lookup skill',3,'Syntax: .lookup skill $$namepart\r\n\r\nLooks up a skill by $namepart, and returns all matches with their skill ID\'s.'),
388 ('lookup spell',3,'Syntax: .lookup spell $namepart\r\n\r\nLooks up a spell by $namepart, and returns all matches with their spell ID\'s.'),
389 ('lookup taxinode',3,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
390 ('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
391 ('maxskill',3,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum VALUESfor its current level.'),
392 ('modify arena',1,'Syntax: .modify arena #value\r\nAdd $amount arena points to the selected player.'),
393 ('modify aspeed',1,'Syntax: .modify aspeed #rate\r\n\r\nModify all speeds -run,swim,run back,swim back- of the selected player to \"normalbase speed for this move type\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
394 ('modify bit',1,'Syntax: .modify bit #field #bit\r\n\r\nToggle the #bit bit of the #field field for the selected player. If no player is selected, modify your character.'),
395 ('modify bwalk',1,'Syntax: .modify bwalk #rate\r\n\r\nModify the speed of the selected player while running backwards to \"normal walk back speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
396 ('modify drunk',1,'Syntax: .modify drunk #value\r\n Set drunk level to #value (0..100). Value 0 remove drunk state, 100 is max drunked state.'),
397 ('modify energy',1,'Syntax: .modify energy #energy\r\n\r\nModify the energy of the selected player. If no player is selected, modify your energy.'),
398 ('modify faction',1,'Syntax: .modify faction #factionid #flagid #npcflagid #dynamicflagid\r\n\r\nModify the faction and flags of the selected creature. Without arguments, display the faction and flags of the selected creature.'),
399 ('modify gender',2,'Syntax: .modify gender male/female\r\n\r\nChange gender of selected player.'),
400 ('modify honor',1,'Syntax: .modify honor $amount\r\n\r\nAdd $amount honor points to the selected player.'),
401 ('modify hp',1,'Syntax: .modify hp #newhp\r\n\r\nModify the hp of the selected player. If no player is selected, modify your hp.'),
402 ('modify mana',1,'Syntax: .modify mana #newmana\r\n\r\nModify the mana of the selected player. If no player is selected, modify your mana.'),
403 ('modify money',1,'Syntax: .modify money #money\r\n.money #money\r\n\r\nAdd or remove money to the selected player. If no player is selected, modify your money.\r\n\r\n #gold can be negative to remove money.'),
404 ('modify morph',2,'Syntax: .modify morph #displayid\r\n\r\nChange your current model id to #displayid.'),
405 ('modify mount',1,'Syntax: .modify mount #id #speed\r\nDisplay selected player as mounted at #id creature and set speed to #speed value.'),
406 ('modify phase',3,'Syntax: .modify phase #phasemask\r\n\r\nSelected character phasemask changed to #phasemask with related world vision update. Change active until in game phase changed, or GM-mode enable/disable, or re-login. Character pts pasemask update to same value.'),
407 ('modify rage',1,'Syntax: .modify rage #newrage\r\n\r\nModify the rage of the selected player. If no player is selected, modify your rage.'),
408 ('modify rep',2,'Syntax: .modify rep #repId (#repvalue | $rankname [#delta])\r\nSets the selected players reputation with faction #repId to #repvalue or to $reprank.\r\nIf the reputation rank name is provided, the resulting reputation will be the lowest reputation for that rank plus the delta amount, if specified.\r\nYou can use \'.pinfo rep\' to list all known reputation ids, or use \'.lookup faction $name\' to locate a specific faction id.'),
409 ('modify runicpower',1,'Syntax: .modify runicpower #newrunicpower\r\n\r\nModify the runic power of the selected player. If no player is selected, modify your runic power.'),
410 ('modify scale',1,''),
411 ('modify speed',1,'Syntax: .modify speed #rate\r\n.speed #rate\r\n\r\nModify the running speed of the selected player to \"normal base run speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
412 ('modify spell',1,''),
413 ('modify standstate',2,'Syntax: .modify standstate #emoteid\r\n\r\nChange the emote of your character while standing to #emoteid.'),
414 ('modify swim',1,'Syntax: .modify swim #rate\r\n\r\nModify the swim speed of the selected player to \"normal swim speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
415 ('modify titles',1,'Syntax: .modify titles #mask\r\n\r\nAllows user to use all titles from #mask.\r\n\r\n #mask=0 disables the title-choose-field'),
416 ('movegens',3,'Syntax: .movegens\r\n  Show movement generators stack for selected creature or player.'),
417 ('mute',1,'Syntax: .mute $playerName $timeInMinutes\r\n\r\nDisible chat messaging for any character from account of character $playerName at $timeInMinutes minutes.'),
418 ('namego',1,'Syntax: .namego $charactername\r\n\r\nTeleport the given character to you.'),
419 ('neargrave',3,'Syntax: .neargrave [alliance|horde]\r\n\r\nFind nearest graveyard linked to zone (or only nearest from accepts alliance or horde faction ghosts).'),
420 ('notify',1,'Syntax: .notify $MessageToBroadcast\r\n\r\nSend a global message to all players online in screen.'),
421 ('npc add',2,'Syntax: .npc add #creatureid\r\n\r\nSpawn a creature by the given template id of #creatureid.'),
422 ('npc additem',2,'Syntax: .npc additem #itemId <#maxcount><#incrtime><#extendedcost>r\r\n\r\nAdd item #itemid to item list of selected vendor. Also optionally set max count item in vendor item list and time to item count restoring and items ExtendedCost.'),
423 ('npc addmove',2,'Syntax: .npc addmove #creature_guid [#waittime]\r\n\r\nAdd your current location as a waypoint for creature with guid #creature_guid. And optional add wait time.'),
424 ('npc addweapon',3,'Not yet implemented.'),
425 ('npc allowmove',3,'Syntax: .npc allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
426 ('npc changelevel',2,'Syntax: .npc changelevel #level\r\n\r\nChange the level of the selected creature to #level.\r\n\r\n#level may range from 1 to 63.'),
427 ('npc delete',2,'Syntax: .npc delete [#guid]\r\n\r\nDelete creature with guid #guid (or the selected if no guid is provided)'),
428 ('npc delitem',2,'Syntax: .npc delitem #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'),
429 ('npc factionid',2,'Syntax: .npc factionid #factionid\r\n\r\nSet the faction of the selected creature to #factionid.'),
430 ('npc flag',2,'Syntax: .npc flag #npcflag\r\n\r\nSet the NPC flags of creature template of the selected creature and selected creature to #npcflag. NPC flags will applied to all creatures of selected creature template after server restart or grid unload/load.'),
431 ('npc follow',2,'Syntax: .npc follow\r\n\r\nSelected creature start follow you until death/fight/etc.'),
432 ('npc info',3,'Syntax: .npc info\r\n\r\nDisplay a list of details for the selected creature.\r\n\r\nThe list includes:\r\n- GUID, Faction, NPC flags, Entry ID, Model ID,\r\n- Level,\r\n- Health (current/maximum),\r\n\r\n- Field flags, dynamic flags, faction template, \r\n- Position information,\r\n- and the creature type, e.g. if the creature is a vendor.'),
433 ('npc move',2,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
434 ('npc name',2,'Syntax: .npc name $name\r\n\r\nChange the name of the selected creature or character to $name.\r\n\r\nCommand disabled.'),
435 ('npc setphase',3,'Syntax: .npc setphase #phasemask\r\n\r\nSelected unit or pet phasemask changed to #phasemask with related world vision update for players. In creature case state saved to DB and persistent. In pet case change active until in game phase changed for owner, owner re-login, or GM-mode enable/disable..'),
436 ('npc playemote',3,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
437 ('npc setdeathstate',2,'Syntax: .npc setdeathstate on/off\r\n\r\nSet default death state (dead/alive) for npc at spawn.'),
438 ('npc setmodel',2,'Syntax: .npc setmodel #displayid\r\n\r\nChange the model id of the selected creature to #displayid.'),
439 ('npc setmovetype',2,'Syntax: .npc setmovetype [#creature_guid] stay/random/way [NODEL]\r\n\r\nSet for creature pointed by #creature_guid (or selected if #creature_guid not provided) movement type and move it to respawn position (if creature alive). Any existing waypoints for creature will be removed from the database if you do not use NODEL. If the creature is dead then movement type will applied at creature respawn.\r\nMake sure you use NODEL, if you want to keep the waypoints.'),
440 ('npc spawndist',2,'Syntax: .npc spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
441 ('npc spawntime',2,'Syntax: .npc spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
442 ('npc subname',2,'Syntax: .npc subname $Name\r\n\r\nChange the subname of the selected creature or player to $Name.\r\n\r\nCommand disabled.'),
443 ('npc tame',2,'Syntax: .npc tame\r\n\r\nTame selected creature (tameable non pet creature). You don''t must have pet.'),
444 ('npc textemote',1,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
445 ('npc whisper',1,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to  #playerguid.'),
446 ('npc unfollow',2,'Syntax: .npc unfollow\r\n\r\nSelected creature (non pet) stop follow you.'),
447 ('pdump write',3,'Syntax: .pdump write $filename $playerNameOrGUID\r\nWrite character dump with name/guid $playerNameOrGUID to file $filename.'),
448 ('pdump load',3,'Syntax: .pdump load $filename $account [$newname] [$newguid]\r\nLoad character dump from dump file into character list of $account with saved or $newname, with saved (or first free) or $newguid guid.'),
449 ('pinfo',2,'Syntax: .pinfo [$player_name] [rep]\r\n\r\nOutput account information for selected player or player find by $player_name. If \"rep\" parameter provided show reputation information for player.'),
450 ('quest add',3,'Syntax: .quest add #quest_id\r\n\r\nAdd to character quest log quest #quest_id. Quest started from item can\'t be added by this command but correct .additem call provided in command output.'),
451 ('quest complete',3,'Syntax: .quest complete #questid\r\nMark all quest objectives as completed for target character active quest. After this target character can go and get quest reward.'),
452 ('quest remove',3,'Syntax: .quest remove #quest_id\r\n\r\nSet quest #quest_id state to not completed and not active (and remove from active quest list) for selected player.'),
453 ('recall',1,'Syntax: .recall [$playername]\r\n\r\nTeleport $playername or selected player to the place where he has been before last use of a teleportation command. If no $playername is entered and no player is selected, it will teleport you.'),
454 ('reload all',3,'Syntax: .reload all\r\n\r\nReload all tables with reload support added and that can be _safe_ reloaded.'),
455 ('reload all_area',3,'Syntax: .reload all_area\r\n\r\nReload all `areatrigger_*` tables if reload support added for this table and this table can be _safe_ reloaded.'),
456 ('reload all_loot',3,'Syntax: .reload all_loot\r\n\r\nReload all `*_loot_template` tables. This can be slow operation with lags for server run.'),
457 ('reload all_quest',3,'Syntax: .reload all_quest\r\n\r\nReload all quest related tables if reload support added for this table and this table can be _safe_ reloaded.'),
458 ('reload all_spell',3,'Syntax: .reload all_spell\r\n\r\nReload all `spell_*` tables with reload support added and that can be _safe_ reloaded.'),
459 ('reload all_locales',3,'Syntax: .reload all_locales\r\n\r\nReload all `locales_*` tables with reload support added and that can be _safe_ reloaded.'),
460 ('reload config',3,'Syntax: .reload config\r\n\r\nReload config settings (by default stored in mangosd.conf). Not all settings can be change at reload: some new setting values will be ignored until restart, some values will applied with delay or only to new objects/maps, some values will explicitly rejected to change at reload.'),
461 ('repairitems',2,'Syntax: .repairitems\r\n\r\nRepair all selected player''s items.'),
462 ('reset achievements',3,'Syntax: .reset achievements [$playername]\r\n\r\nReset achievements data for selected or named (online or offline) character. Achievements for persistance progress data like completed quests/etc re-filled at reset. Achievements for events like kills/casts/etc will lost.'),
463 ('reset all',3,'Syntax: .reset all spells\r\n\r\nSyntax: .reset all talents\r\n\r\nRequest reset spells or talents at next login each existed character.'),
464 ('reset honor',3,'Syntax: .reset honor [Playername]\r\n  Reset all honor data for targeted character.'),
465 ('reset level',3,'Syntax: .reset level [Playername]\r\n  Reset level to 1 including reset stats and talents.  Equipped items with greater level requirement can be lost.'),
466 ('reset spells',3,'Syntax: .reset spells [Playername]\r\n  Removes all non-original spells from spellbook.\r\n. Playername can be name of offline character.'),
467 ('reset stats',3,'Syntax: .reset stats [Playername]\r\n  Resets(recalculate) all stats of the targeted player to their original VALUESat current level.'),
468 ('reset talents',3,'Syntax: .reset talents [Playername]\r\n  Removes all talents of the targeted player. Playername can be name of offline character.'),
469 ('respawn',3,'Syntax: .respawn\r\n\r\nRespawn selected creature or respawn all nearest creatures (if none selected) and GO without waiting respawn time expiration.'),
470 ('revive',3,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
471 ('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
472 ('saveall',1,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
473 ('send items',3,'Syntax: .send items #playername "#subject" "#text" itemid1[:count1] itemid2[:count2] ... itemidN[:countN]\r\n\r\nSend a mail to a player. Subject and mail text must be in "". If for itemid not provided related count values then expected 1, if count > max items in stack then items will be send in required amount stacks. All stacks amount in mail limited to 12.'),
474 ('send mail',1,'Syntax: .send mail #playername "#subject" "#text"\r\n\r\nSend a mail to a player. Subject and mail text must be in "".'),
475 ('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
476 ('send money','3','Syntax: .send money #playername "#subject" "#text" #money\r\n\r\nSend mail with money to a player. Subject and mail text must be in "".'),
477 ('server corpses',2,'Syntax: .server corpses\r\n\r\nTriggering corpses expire check in world.'),
478 ('server exit',4,'Syntax: .server exit\r\n\r\nTerminate mangosd NOW. Exit code 0.'),
479 ('server info',0,'Syntax: .server info\r\n\r\nDisplay server version and the number of connected players.'),
480 ('server idleshutdown',3,'Syntax: .server idleshutdown #delay [#exist_code]\r\n\r\nShut the server down after #delay seconds if no active connections are present (no players). Use #exist_code or 0 as program exist code.'),
481 ('server idleshutdown cancel',3,'Syntax: .server idleshutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
482 ('server idlerestart',3,'Syntax: .server idlerestart #delay\r\n\r\nRestart the server after #delay seconds if no active connections are present (no players). Use #exist_code or 2 as program exist code.'),
483 ('server idlerestart cancel',3,'Syntax: .server idlerestart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
484 ('server motd',0,'Syntax: .server motd\r\n\r\nShow server Message of the day.'),
485 ('server plimit',3,'Syntax: .server plimit [#num|-1|-2|-3|reset|player|moderator|gamemaster|administrator]\r\n\r\nWithout arg show current player amount and security level limitations for login to server, with arg set player linit ($num > 0) or securiti limitation ($num < 0 or security leme name. With `reset` sets player limit to the one in the config file'),
486 ('server restart',3,'Syntax: .server restart #delay\r\n\r\nRestart the server after #delay seconds. Use #exist_code or 2 as program exist code.'),
487 ('server restart cancel',3,'Syntax: .server restart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
488 ('server set loglevel',4,'Syntax: .server set loglevel #level\r\n\r\nSet server log level (0 - errors only, 1 - basic, 2 - detail, 3 - debug).'),
489 ('server set motd',3,'Syntax: .server set motd $MOTD\r\n\r\nSet server Message of the day.'),
490 ('server shutdown',3,'Syntax: .server shutdown #delay [#exist_code]\r\n\r\nShut the server down after #delay seconds. Use #exist_code or 0 as program exist code.'),
491 ('server shutdown cancel',3,'Syntax: .server shutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
492 ('setskill',3,'Syntax: .setskill #skill #level [#max]\r\n\r\nSet a skill of id #skill with a current skill value of #level and a maximum value of #max (or equal current maximum if not provide) for the selected character. If no character is selected, you learn the skill.'),
493 ('showarea',3,'Syntax: .showarea #areaid\r\n\r\nReveal the area of #areaid to the selected character. If no character is selected, reveal this area to you.'),
494 ('start',0,'Syntax: .start\r\n\r\nTeleport you to the starting area of your character.'),
495 ('taxicheat',1,'Syntax: .taxicheat on/off\r\n\r\nTemporary grant access or remove to all taxi routes for the selected character. If no character is selected, hide or reveal all routes to you.\r\n\r\nVisited taxi nodes sill accessible after removing access.'),
496 ('tele',1,'Syntax: .tele #location\r\n\r\nTeleport player to a given location.'),
497 ('tele add',3,'Syntax: .tele add $name\r\n\r\nAdd current your position to .tele command target locations list with name $name.'),
498 ('tele del',3,'Syntax: .tele del $name\r\n\r\nRemove location with name $name for .tele command locations list.'),
499 ('tele group',1,'Syntax: .tele group#location\r\n\r\nTeleport a selected player and his group members to a given location.'),
500 ('tele name',1,'Syntax: .tele name #playername #location\r\n\r\nTeleport a player to a given location.'),
501 ('ticket',2,'Syntax: .ticket on\r\n        .ticket off\r\n        .ticket #num\r\n        .ticket $character_name\r\n\r\non/off for GMs to show or not a new ticket directly, $character_name to show ticket of this character, #num to show ticket #num.'),
502 ('unaura',3,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
503 ('unban account',3,'Syntax: .unban account $Name\r\nUnban accounts for account name pattern.'),
504 ('unban character',3,'Syntax: .unban character $Name\r\nUnban accounts for character name pattern.'),
505 ('unban ip',3,'Syntax : .unban ip $Ip\r\nUnban accounts for IP pattern.'),
506 ('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell.  If \'all\' provided then all ranks unlearned.'),
507 ('unmute',1,'Syntax: .unmute $playerName\r\n\r\nRestore chat messaging for any character from account of character $playerName.'),
508 ('waterwalk',2,'Syntax: .waterwalk on/off\r\n\r\nSet on/off waterwalk state for selected player.'),
509 ('wchange',3,'Syntax: .wchange #weathertype #status\r\n\r\nSet current weather to #weathertype with an intensity of #status.\r\n\r\n#weathertype can be 1 for rain, 2 for snow, and 3 for sand. #status can be 0 for disabled, and 1 for enabled.'),
510 ('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use mangosd.conf setting.'),
511 ('wp',2,'Using WP Command:\r\nEach Waypoint Command has it\'s own description!'),
512 ('wp add',2,'Syntax: .wp add [#creature_guid or Select a Creature]'),
513 ('wp export',3,'Syntax: .wp export [#creature_guid or Select a Creature] $filename'),
514 ('wp import',3,'Syntax: .wp import $filename'),
515 ('wp modify',2,'Syntax: .wp modify [#creature_guid or Select a Creature]\r\nadd - Add a waypoint after the selected visual\r\nwaittime $time\r\nemote ID\r\nspell ID\r\ntext1| text2| text3| text4| text5 <text>\r\nmodel1 ID\r\nmodel2 ID\r\nmove(moves wp to player pos)\r\ndel (deletes the wp)\r\n\r\nOnly one parameter per time!'),
516 ('wp show',2,'Syntax: .wp show [#creature_guid or Select a Creature]\r\non\r\nfirst\r\nlast\r\noff\r\ninfo\r\n\r\nFor using info you have to do first show on and than select a Visual-Waypoint and do the show info!');
517 /*!40000 ALTER TABLE `command` ENABLE KEYS */;
518 UNLOCK TABLES;
521 -- Table structure for table `creature`
524 DROP TABLE IF EXISTS `creature`;
525 CREATE TABLE `creature` (
526   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
527   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
528   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
529   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
530   `phaseMask` smallint(5) unsigned NOT NULL default '1',
531   `modelid` mediumint(8) unsigned NOT NULL default '0',
532   `equipment_id` mediumint(9) NOT NULL default '0',
533   `position_x` float NOT NULL default '0',
534   `position_y` float NOT NULL default '0',
535   `position_z` float NOT NULL default '0',
536   `orientation` float NOT NULL default '0',
537   `spawntimesecs` int(10) unsigned NOT NULL default '120',
538   `spawndist` float NOT NULL default '5',
539   `currentwaypoint` mediumint(8) unsigned NOT NULL default '0',
540   `curhealth` int(10) unsigned NOT NULL default '1',
541   `curmana` int(10) unsigned NOT NULL default '0',
542   `DeathState` tinyint(3) unsigned NOT NULL default '0',
543   `MovementType` tinyint(3) unsigned NOT NULL default '0',
544   PRIMARY KEY  (`guid`),
545   KEY `idx_map` (`map`),
546   KEY `index_id` (`id`)
547 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature System';
550 -- Dumping data for table `creature`
553 LOCK TABLES `creature` WRITE;
554 /*!40000 ALTER TABLE `creature` DISABLE KEYS */;
555 /*!40000 ALTER TABLE `creature` ENABLE KEYS */;
556 UNLOCK TABLES;
559 -- Table structure for table `creature_addon`
562 DROP TABLE IF EXISTS `creature_addon`;
563 CREATE TABLE `creature_addon` (
564   `guid` int(11) NOT NULL default '0',
565   `mount` mediumint(8) unsigned NOT NULL default '0',
566   `bytes0` int(10) unsigned NOT NULL default '0',
567   `bytes1` int(10) unsigned NOT NULL default '0',
568   `bytes2` int(10) unsigned NOT NULL default '0',
569   `emote` int(10) unsigned NOT NULL default '0',
570   `moveflags` int(10) unsigned NOT NULL default '0',
571   `auras` text,
572   PRIMARY KEY  (`guid`)
573 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
576 -- Dumping data for table `creature_addon`
579 LOCK TABLES `creature_addon` WRITE;
580 /*!40000 ALTER TABLE `creature_addon` DISABLE KEYS */;
581 /*!40000 ALTER TABLE `creature_addon` ENABLE KEYS */;
582 UNLOCK TABLES;
585 -- Table structure for table `creature_equip_template`
588 DROP TABLE IF EXISTS `creature_equip_template`;
589 CREATE TABLE `creature_equip_template` (
590   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Unique entry',
591   `equipentry1` mediumint(8) unsigned NOT NULL default '0',
592   `equipentry2` mediumint(8) unsigned NOT NULL default '0',
593   `equipentry3` mediumint(8) unsigned NOT NULL default '0',
594   PRIMARY KEY  (`entry`)
595 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)';
598 -- Dumping data for table `creature_equip_template`
601 LOCK TABLES `creature_equip_template` WRITE;
602 /*!40000 ALTER TABLE `creature_equip_template` DISABLE KEYS */;
603 /*!40000 ALTER TABLE `creature_equip_template` ENABLE KEYS */;
604 UNLOCK TABLES;
607 -- Table structure for table `creature_involvedrelation`
610 DROP TABLE IF EXISTS `creature_involvedrelation`;
611 CREATE TABLE `creature_involvedrelation` (
612   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
613   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
614   PRIMARY KEY  (`id`,`quest`)
615 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
618 -- Dumping data for table `creature_involvedrelation`
621 LOCK TABLES `creature_involvedrelation` WRITE;
622 /*!40000 ALTER TABLE `creature_involvedrelation` DISABLE KEYS */;
623 /*!40000 ALTER TABLE `creature_involvedrelation` ENABLE KEYS */;
624 UNLOCK TABLES;
627 -- Table structure for table `creature_loot_template`
630 DROP TABLE IF EXISTS `creature_loot_template`;
631 CREATE TABLE `creature_loot_template` (
632   `entry` mediumint(8) unsigned NOT NULL default '0',
633   `item` mediumint(8) unsigned NOT NULL default '0',
634   `ChanceOrQuestChance` float NOT NULL default '100',
635   `groupid` tinyint(3) unsigned NOT NULL default '0',
636   `mincountOrRef` mediumint(9) NOT NULL default '1',
637   `maxcount` tinyint(3) unsigned NOT NULL default '1',
638   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
639   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
640   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
641   PRIMARY KEY  (`entry`,`item`)
642 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
645 -- Dumping data for table `creature_loot_template`
648 LOCK TABLES `creature_loot_template` WRITE;
649 /*!40000 ALTER TABLE `creature_loot_template` DISABLE KEYS */;
650 /*!40000 ALTER TABLE `creature_loot_template` ENABLE KEYS */;
651 UNLOCK TABLES;
654 -- Table structure for table `creature_model_info`
657 DROP TABLE IF EXISTS `creature_model_info`;
658 CREATE TABLE `creature_model_info` (
659   `modelid` mediumint(8) unsigned NOT NULL default '0',
660   `bounding_radius` float NOT NULL default '0',
661   `combat_reach` float NOT NULL default '0',
662   `gender` tinyint(3) unsigned NOT NULL default '2',
663   `modelid_other_gender` mediumint(8) unsigned NOT NULL default '0',
664   PRIMARY KEY  (`modelid`)
665 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
668 -- Dumping data for table `creature_model_info`
671 LOCK TABLES `creature_model_info` WRITE;
672 /*!40000 ALTER TABLE `creature_model_info` DISABLE KEYS */;
673 INSERT INTO `creature_model_info` VALUES
674 (10045, 1, 1.5, 2, 0);
675 /*!40000 ALTER TABLE `creature_model_info` ENABLE KEYS */;
676 UNLOCK TABLES;
679 -- Table structure for table `creature_movement`
682 DROP TABLE IF EXISTS `creature_movement`;
683 CREATE TABLE `creature_movement` (
684   `id` int(10) unsigned NOT NULL COMMENT 'Creature GUID',
685   `point` mediumint(8) unsigned NOT NULL default '0',
686   `position_x` float NOT NULL default '0',
687   `position_y` float NOT NULL default '0',
688   `position_z` float NOT NULL default '0',
689   `waittime` int(10) unsigned NOT NULL default '0',
690   `textid1` int(11) NOT NULL default '0',
691   `textid2` int(11) NOT NULL default '0',
692   `textid3` int(11) NOT NULL default '0',
693   `textid4` int(11) NOT NULL default '0',
694   `textid5` int(11) NOT NULL default '0',
695   `emote` mediumint(8) unsigned NOT NULL default '0',
696   `spell` mediumint(8) unsigned NOT NULL default '0',
697   `wpguid` int(11) NOT NULL default '0',
698   `orientation` float NOT NULL default '0',
699   `model1` mediumint(9) NOT NULL default '0',
700   `model2` mediumint(9) NOT NULL default '0',
701   PRIMARY KEY  (`id`,`point`)
702 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
705 -- Dumping data for table `creature_movement`
708 LOCK TABLES `creature_movement` WRITE;
709 /*!40000 ALTER TABLE `creature_movement` DISABLE KEYS */;
710 /*!40000 ALTER TABLE `creature_movement` ENABLE KEYS */;
711 UNLOCK TABLES;
714 -- Table structure for table `creature_onkill_reputation`
717 DROP TABLE IF EXISTS `creature_onkill_reputation`;
718 CREATE TABLE `creature_onkill_reputation` (
719   `creature_id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
720   `RewOnKillRepFaction1` smallint(6) NOT NULL default '0',
721   `RewOnKillRepFaction2` smallint(6) NOT NULL default '0',
722   `MaxStanding1` tinyint(4) NOT NULL default '0',
723   `IsTeamAward1` tinyint(4) NOT NULL default '0',
724   `RewOnKillRepValue1` mediumint(9) NOT NULL default '0',
725   `MaxStanding2` tinyint(4) NOT NULL default '0',
726   `IsTeamAward2` tinyint(4) NOT NULL default '0',
727   `RewOnKillRepValue2` mediumint(9) NOT NULL default '0',
728   `TeamDependent` tinyint(3) unsigned NOT NULL default '0',
729   PRIMARY KEY  (`creature_id`)
730 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain';
733 -- Dumping data for table `creature_onkill_reputation`
736 LOCK TABLES `creature_onkill_reputation` WRITE;
737 /*!40000 ALTER TABLE `creature_onkill_reputation` DISABLE KEYS */;
738 /*!40000 ALTER TABLE `creature_onkill_reputation` ENABLE KEYS */;
739 UNLOCK TABLES;
742 -- Table structure for table `creature_questrelation`
745 DROP TABLE IF EXISTS `creature_questrelation`;
746 CREATE TABLE `creature_questrelation` (
747   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
748   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
749   PRIMARY KEY  (`id`,`quest`)
750 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
753 -- Dumping data for table `creature_questrelation`
756 LOCK TABLES `creature_questrelation` WRITE;
757 /*!40000 ALTER TABLE `creature_questrelation` DISABLE KEYS */;
758 /*!40000 ALTER TABLE `creature_questrelation` ENABLE KEYS */;
759 UNLOCK TABLES;
762 -- Table structure for table `creature_respawn`
765 DROP TABLE IF EXISTS `creature_respawn`;
766 CREATE TABLE `creature_respawn` (
767   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
768   `respawntime` bigint(20) NOT NULL default '0',
769   `instance` mediumint(8) unsigned NOT NULL default '0',
770   PRIMARY KEY  (`guid`,`instance`),
771   KEY `instance` (`instance`)
772 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
775 -- Dumping data for table `creature_respawn`
778 LOCK TABLES `creature_respawn` WRITE;
779 /*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
780 /*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
781 UNLOCK TABLES;
784 -- Table structure for table `creature_template`
787 DROP TABLE IF EXISTS `creature_template`;
788 CREATE TABLE `creature_template` (
789   `entry` mediumint(8) unsigned NOT NULL default '0',
790   `heroic_entry` mediumint(8) unsigned NOT NULL default '0',
791   `modelid_A` mediumint(8) unsigned NOT NULL default '0',
792   `modelid_A2` mediumint(8) unsigned NOT NULL default '0',
793   `modelid_H` mediumint(8) unsigned NOT NULL default '0',
794   `modelid_H2` mediumint(8) unsigned NOT NULL default '0',
795   `name` char(100) NOT NULL default '0',
796   `subname` char(100) default NULL,
797   `IconName` char(100) default NULL,
798   `minlevel` tinyint(3) unsigned NOT NULL default '1',
799   `maxlevel` tinyint(3) unsigned NOT NULL default '1',
800   `minhealth` int(10) unsigned NOT NULL default '0',
801   `maxhealth` int(10) unsigned NOT NULL default '0',
802   `minmana` int(10) unsigned NOT NULL default '0',
803   `maxmana` int(10) unsigned NOT NULL default '0',
804   `armor` mediumint(8) unsigned NOT NULL default '0',
805   `faction_A` smallint(5) unsigned NOT NULL default '0',
806   `faction_H` smallint(5) unsigned NOT NULL default '0',
807   `npcflag` int(10) unsigned NOT NULL default '0',
808   `speed` float NOT NULL default '1',
809   `scale` float NOT NULL default '1',
810   `rank` tinyint(3) unsigned NOT NULL default '0',
811   `mindmg` float NOT NULL default '0',
812   `maxdmg` float NOT NULL default '0',
813   `dmgschool` tinyint(4) NOT NULL default '0',
814   `attackpower` int(10) unsigned NOT NULL default '0',
815   `baseattacktime` int(10) unsigned NOT NULL default '0',
816   `rangeattacktime` int(10) unsigned NOT NULL default '0',
817   `unit_flags` int(10) unsigned NOT NULL default '0',
818   `dynamicflags` int(10) unsigned NOT NULL default '0',
819   `family` tinyint(4) NOT NULL default '0',
820   `trainer_type` tinyint(4) NOT NULL default '0',
821   `trainer_spell` mediumint(8) unsigned NOT NULL default '0',
822   `class` tinyint(3) unsigned NOT NULL default '0',
823   `race` tinyint(3) unsigned NOT NULL default '0',
824   `minrangedmg` float NOT NULL default '0',
825   `maxrangedmg` float NOT NULL default '0',
826   `rangedattackpower` smallint(5) unsigned NOT NULL default '0',
827   `type` tinyint(3) unsigned NOT NULL default '0',
828   `type_flags` int(10) unsigned NOT NULL default '0',
829   `lootid` mediumint(8) unsigned NOT NULL default '0',
830   `pickpocketloot` mediumint(8) unsigned NOT NULL default '0',
831   `skinloot` mediumint(8) unsigned NOT NULL default '0',
832   `resistance1` smallint(5) NOT NULL default '0',
833   `resistance2` smallint(5) NOT NULL default '0',
834   `resistance3` smallint(5) NOT NULL default '0',
835   `resistance4` smallint(5) NOT NULL default '0',
836   `resistance5` smallint(5) NOT NULL default '0',
837   `resistance6` smallint(5) NOT NULL default '0',
838   `spell1` mediumint(8) unsigned NOT NULL default '0',
839   `spell2` mediumint(8) unsigned NOT NULL default '0',
840   `spell3` mediumint(8) unsigned NOT NULL default '0',
841   `spell4` mediumint(8) unsigned NOT NULL default '0',
842   `PetSpellDataId` mediumint(8) unsigned NOT NULL default '0',
843   `mingold` mediumint(8) unsigned NOT NULL default '0',
844   `maxgold` mediumint(8) unsigned NOT NULL default '0',
845   `AIName` char(64) NOT NULL default '',
846   `MovementType` tinyint(3) unsigned NOT NULL default '0',
847   `InhabitType` tinyint(3) unsigned NOT NULL default '3',
848   `unk16` float NOT NULL default '1',
849   `unk17` float NOT NULL default '1',
850   `RacialLeader` tinyint(3) unsigned NOT NULL default '0',
851   `RegenHealth` tinyint(3) unsigned NOT NULL default '1',
852   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
853   `mechanic_immune_mask` int(10) unsigned NOT NULL default '0',
854   `flags_extra` int(10) unsigned NOT NULL default '0',
855   `ScriptName` char(64) NOT NULL default '',
856   PRIMARY KEY  (`entry`)
857 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
860 -- Dumping data for table `creature_template`
863 LOCK TABLES `creature_template` WRITE;
864 /*!40000 ALTER TABLE `creature_template` DISABLE KEYS */;
865 INSERT INTO `creature_template` VALUES
866 (1,0,10045,0,10045,0,'Waypoint(Only GM can see it)','Visual',NULL,1,1,64,64,0,0,0,35,35,0,0.91,1,0,14,15,0,100,2000,2200,4096,0,0,0,0,0,0,1.76,2.42,100,8,5242886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1.0,1.0,0,1,0,0,0x82,'');
867 /*!40000 ALTER TABLE `creature_template` ENABLE KEYS */;
868 UNLOCK TABLES;
871 -- Table structure for table `creature_template_addon`
874 DROP TABLE IF EXISTS `creature_template_addon`;
875 CREATE TABLE `creature_template_addon` (
876   `entry` mediumint(8) unsigned NOT NULL default '0',
877   `mount` mediumint(8) unsigned NOT NULL default '0',
878   `bytes0` int(10) unsigned NOT NULL default '0',
879   `bytes1` int(10) unsigned NOT NULL default '0',
880   `bytes2` int(10) unsigned NOT NULL default '0',
881   `emote` mediumint(8) unsigned NOT NULL default '0',
882   `moveflags` int(10) unsigned NOT NULL default '0',
883   `auras` text,
884   PRIMARY KEY  (`entry`)
885 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
888 -- Dumping data for table `creature_template_addon`
891 LOCK TABLES `creature_template_addon` WRITE;
892 /*!40000 ALTER TABLE `creature_template_addon` DISABLE KEYS */;
893 /*!40000 ALTER TABLE `creature_template_addon` ENABLE KEYS */;
894 UNLOCK TABLES;
897 -- Table structure for table `db_script_string`
900 DROP TABLE IF EXISTS `db_script_string`;
901 CREATE TABLE `db_script_string` (
902   `entry` mediumint(8) unsigned NOT NULL default '0',
903   `content_default` text NOT NULL,
904   `content_loc1` text,
905   `content_loc2` text,
906   `content_loc3` text,
907   `content_loc4` text,
908   `content_loc5` text,
909   `content_loc6` text,
910   `content_loc7` text,
911   `content_loc8` text,
912   PRIMARY KEY  (`entry`)
913 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
916 -- Dumping data for table `db_script_string`
919 LOCK TABLES `db_script_string` WRITE;
920 /*!40000 ALTER TABLE `db_script_string` DISABLE KEYS */;
921 /*!40000 ALTER TABLE `db_script_string` ENABLE KEYS */;
922 UNLOCK TABLES;
925 -- Table structure for table `disenchant_loot_template`
928 DROP TABLE IF EXISTS `disenchant_loot_template`;
929 CREATE TABLE `disenchant_loot_template` (
930   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Recommended id selection: item_level*100 + item_quality',
931   `item` mediumint(8) unsigned NOT NULL default '0',
932   `ChanceOrQuestChance` float NOT NULL default '100',
933   `groupid` tinyint(3) unsigned NOT NULL default '0',
934   `mincountOrRef` mediumint(9) NOT NULL default '1',
935   `maxcount` tinyint(3) unsigned NOT NULL default '1',
936   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
937   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
938   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
939   PRIMARY KEY  (`entry`,`item`)
940 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
943 -- Dumping data for table `disenchant_loot_template`
946 LOCK TABLES `disenchant_loot_template` WRITE;
947 /*!40000 ALTER TABLE `disenchant_loot_template` DISABLE KEYS */;
948 /*!40000 ALTER TABLE `disenchant_loot_template` ENABLE KEYS */;
949 UNLOCK TABLES;
952 -- Table structure for table `creature_ai_scripts`
955 DROP TABLE IF EXISTS `creature_ai_scripts`;
956 CREATE TABLE `creature_ai_scripts` (
957   `id` int(11) unsigned NOT NULL COMMENT 'Identifier' AUTO_INCREMENT,
958   `creature_id` int(11) unsigned NOT NULL default '0' COMMENT 'Creature Template Identifier',
959   `event_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Event Type',
960   `event_inverse_phase_mask` int(11) signed NOT NULL default '0' COMMENT 'Mask which phases this event will not trigger in',
961   `event_chance` int(3) unsigned NOT NULL default '100',
962   `event_flags` int(3) unsigned NOT NULL default '0',
963   `event_param1` int(11) signed NOT NULL default '0',
964   `event_param2` int(11) signed NOT NULL default '0',
965   `event_param3` int(11) signed NOT NULL default '0',
966   `event_param4` int(11) signed NOT NULL default '0',
967   `action1_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
968   `action1_param1` int(11) signed NOT NULL default '0',
969   `action1_param2` int(11) signed NOT NULL default '0',
970   `action1_param3` int(11) signed NOT NULL default '0',
971   `action2_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
972   `action2_param1` int(11) signed NOT NULL default '0',
973   `action2_param2` int(11) signed NOT NULL default '0',
974   `action2_param3` int(11) signed NOT NULL default '0',
975   `action3_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
976   `action3_param1` int(11) signed NOT NULL default '0',
977   `action3_param2` int(11) signed NOT NULL default '0',
978   `action3_param3` int(11) signed NOT NULL default '0',
979   `comment` varchar(255) NOT NULL default '' COMMENT 'Event Comment',
980   PRIMARY KEY (`id`)
981 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts';
984 -- Dumping data for table `creature_ai_scripts`
987 LOCK TABLES `creature_ai_scripts` WRITE;
988 /*!40000 ALTER TABLE `creature_ai_scripts` DISABLE KEYS */;
989 /*!40000 ALTER TABLE `creature_ai_scripts` ENABLE KEYS */;
990 UNLOCK TABLES;
993 -- Table structure for table `creature_ai_summons`
996 DROP TABLE IF EXISTS `creature_ai_summons`;
997 CREATE TABLE `creature_ai_summons` (
998   `id` int(11) unsigned NOT NULL COMMENT 'Location Identifier' AUTO_INCREMENT,
999   `position_x` float NOT NULL default '0',
1000   `position_y` float NOT NULL default '0',
1001   `position_z` float NOT NULL default '0',
1002   `orientation` float NOT NULL default '0',
1003   `spawntimesecs` int(11) unsigned NOT NULL default '120',
1004   `comment` varchar(255) NOT NULL default '' COMMENT 'Summon Comment',
1005   PRIMARY KEY (`id`)
1006 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations';
1009 -- Dumping data for table `creature_ai_summons`
1012 LOCK TABLES `creature_ai_summons` WRITE;
1013 /*!40000 ALTER TABLE `creature_ai_summons` DISABLE KEYS */;
1014 /*!40000 ALTER TABLE `creature_ai_summons` ENABLE KEYS */;
1015 UNLOCK TABLES;
1018 -- Table structure for table `creature_ai_texts`
1021 DROP TABLE IF EXISTS `creature_ai_texts`;
1022 CREATE TABLE `creature_ai_texts` (
1023   `entry` mediumint(8) NOT NULL,
1024   `content_default` text NOT NULL,
1025   `content_loc1` text,
1026   `content_loc2` text,
1027   `content_loc3` text,
1028   `content_loc4` text,
1029   `content_loc5` text,
1030   `content_loc6` text,
1031   `content_loc7` text,
1032   `content_loc8` text,
1033   `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
1034   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
1035   `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
1036   `emote` tinyint(3) unsigned NOT NULL DEFAULT '0',
1037   `comment` text,
1038   PRIMARY KEY (`entry`)
1039 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
1042 -- Dumping data for table `creature_ai_texts`
1045 LOCK TABLES `creature_ai_texts` WRITE;
1046 /*!40000 ALTER TABLE `creature_ai_texts` DISABLE KEYS */;
1047 /*!40000 ALTER TABLE `creature_ai_texts` ENABLE KEYS */;
1048 UNLOCK TABLES;
1051 -- Table structure for table `event_scripts`
1054 DROP TABLE IF EXISTS `event_scripts`;
1055 CREATE TABLE `event_scripts` (
1056   `id` mediumint(8) unsigned NOT NULL default '0',
1057   `delay` int(10) unsigned NOT NULL default '0',
1058   `command` mediumint(8) unsigned NOT NULL default '0',
1059   `datalong` mediumint(8) unsigned NOT NULL default '0',
1060   `datalong2` int(10) unsigned NOT NULL default '0',
1061   `dataint` int(11) NOT NULL default '0',
1062   `x` float NOT NULL default '0',
1063   `y` float NOT NULL default '0',
1064   `z` float NOT NULL default '0',
1065   `o` float NOT NULL default '0'
1066 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1069 -- Dumping data for table `event_scripts`
1072 LOCK TABLES `event_scripts` WRITE;
1073 /*!40000 ALTER TABLE `event_scripts` DISABLE KEYS */;
1074 /*!40000 ALTER TABLE `event_scripts` ENABLE KEYS */;
1075 UNLOCK TABLES;
1078 -- Table structure for table `exploration_basexp`
1081 DROP TABLE IF EXISTS `exploration_basexp`;
1082 CREATE TABLE `exploration_basexp` (
1083   `level` tinyint(4) NOT NULL default '0',
1084   `basexp` mediumint(9) NOT NULL default '0',
1085   PRIMARY KEY  (`level`)
1086 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Exploration System';
1089 -- Dumping data for table `exploration_basexp`
1092 LOCK TABLES `exploration_basexp` WRITE;
1093 /*!40000 ALTER TABLE `exploration_basexp` DISABLE KEYS */;
1094 INSERT INTO `exploration_basexp` VALUES
1095 (0,0),
1096 (1,5),
1097 (2,15),
1098 (3,25),
1099 (4,35),
1100 (5,45),
1101 (6,55),
1102 (7,65),
1103 (8,70),
1104 (9,80),
1105 (10,85),
1106 (11,90),
1107 (12,90),
1108 (13,90),
1109 (14,100),
1110 (15,105),
1111 (16,115),
1112 (17,125),
1113 (18,135),
1114 (19,145),
1115 (20,155),
1116 (21,165),
1117 (22,175),
1118 (23,185),
1119 (24,195),
1120 (25,200),
1121 (26,210),
1122 (27,220),
1123 (28,230),
1124 (29,240),
1125 (30,245),
1126 (31,250),
1127 (32,255),
1128 (33,265),
1129 (34,270),
1130 (35,275),
1131 (36,280),
1132 (37,285),
1133 (38,285),
1134 (39,300),
1135 (40,315),
1136 (41,330),
1137 (42,345),
1138 (43,360),
1139 (44,375),
1140 (45,390),
1141 (46,405),
1142 (47,420),
1143 (48,440),
1144 (49,455),
1145 (50,470),
1146 (51,490),
1147 (52,510),
1148 (53,530),
1149 (54,540),
1150 (55,560),
1151 (56,580),
1152 (57,600),
1153 (58,620),
1154 (59,640),
1155 (60,660),
1156 (61,970),
1157 (62,1000),
1158 (63,1050),
1159 (64,1080),
1160 (65,1100),
1161 (66,1130),
1162 (67,1160),
1163 (68,1200),
1164 (69,1230),
1165 (70,1250);
1166 /*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */;
1167 UNLOCK TABLES;
1170 -- Table structure for table `fishing_loot_template`
1173 DROP TABLE IF EXISTS `fishing_loot_template`;
1174 CREATE TABLE `fishing_loot_template` (
1175   `entry` mediumint(8) unsigned NOT NULL default '0',
1176   `item` mediumint(8) unsigned NOT NULL default '0',
1177   `ChanceOrQuestChance` float NOT NULL default '100',
1178   `groupid` tinyint(3) unsigned NOT NULL default '0',
1179   `mincountOrRef` mediumint(9) NOT NULL default '1',
1180   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1181   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1182   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1183   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1184   PRIMARY KEY  (`entry`,`item`)
1185 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1188 -- Dumping data for table `fishing_loot_template`
1191 LOCK TABLES `fishing_loot_template` WRITE;
1192 /*!40000 ALTER TABLE `fishing_loot_template` DISABLE KEYS */;
1193 /*!40000 ALTER TABLE `fishing_loot_template` ENABLE KEYS */;
1194 UNLOCK TABLES;
1197 -- Table structure for table `game_event`
1200 DROP TABLE IF EXISTS `game_event`;
1201 CREATE TABLE `game_event` (
1202   `entry` mediumint(8) unsigned NOT NULL COMMENT 'Entry of the game event',
1203   `start_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute start date, the event will never start before',
1204   `end_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute end date, the event will never start afler',
1205   `occurence` bigint(20) unsigned NOT NULL default '86400' COMMENT 'Delay in hours between occurences of the event',
1206   `length` bigint(20) unsigned NOT NULL default '43200' COMMENT 'Length in hours of the event',
1207   `holiday` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Client side holiday id',
1208   `description` varchar(255) default NULL COMMENT 'Description of the event displayed in console',
1209   PRIMARY KEY  (`entry`)
1210 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1213 -- Dumping data for table `game_event`
1216 LOCK TABLES `game_event` WRITE;
1217 /*!40000 ALTER TABLE `game_event` DISABLE KEYS */;
1218 /*!40000 ALTER TABLE `game_event` ENABLE KEYS */;
1219 UNLOCK TABLES;
1222 -- Table structure for table `game_event_creature`
1225 DROP TABLE IF EXISTS `game_event_creature`;
1226 CREATE TABLE `game_event_creature` (
1227   `guid` int(10) unsigned NOT NULL,
1228   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1229   PRIMARY KEY  (`guid`)
1230 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1233 -- Dumping data for table `game_event_creature`
1236 LOCK TABLES `game_event_creature` WRITE;
1237 /*!40000 ALTER TABLE `game_event_creature` DISABLE KEYS */;
1238 /*!40000 ALTER TABLE `game_event_creature` ENABLE KEYS */;
1239 UNLOCK TABLES;
1242 -- Table structure for table `game_event_creature_quest`
1245 DROP TABLE IF EXISTS `game_event_creature_quest`;
1246 CREATE TABLE `game_event_creature_quest` (
1247   `id` mediumint(8) unsigned NOT NULL default '0',
1248   `quest` mediumint(8) unsigned NOT NULL default '0',
1249   `event` smallint(5) unsigned NOT NULL default '0',
1250   PRIMARY KEY  (`id`,`quest`)
1251 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1254 -- Dumping data for table `game_event_creature_quest`
1257 LOCK TABLES `game_event_creature_quest` WRITE;
1258 /*!40000 ALTER TABLE `game_event_creature_quest` DISABLE KEYS */;
1259 /*!40000 ALTER TABLE `game_event_creature_quest` ENABLE KEYS */;
1260 UNLOCK TABLES;
1263 -- Table structure for table `game_event_gameobject`
1266 DROP TABLE IF EXISTS `game_event_gameobject`;
1267 CREATE TABLE `game_event_gameobject` (
1268   `guid` int(10) unsigned NOT NULL,
1269   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1270   PRIMARY KEY  (`guid`)
1271 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1274 -- Dumping data for table `game_event_gameobject`
1277 LOCK TABLES `game_event_gameobject` WRITE;
1278 /*!40000 ALTER TABLE `game_event_gameobject` DISABLE KEYS */;
1279 /*!40000 ALTER TABLE `game_event_gameobject` ENABLE KEYS */;
1280 UNLOCK TABLES;
1283 -- Table structure for table `game_event_model_equip`
1286 DROP TABLE IF EXISTS `game_event_model_equip`;
1287 CREATE TABLE `game_event_model_equip` (
1288   `guid` int(10) unsigned NOT NULL default '0',
1289   `modelid` mediumint(8) unsigned NOT NULL default '0',
1290   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
1291   `event` smallint(5) unsigned NOT NULL default '0',
1292   PRIMARY KEY  (`guid`)
1293 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1296 -- Dumping data for table `game_event_model_equip`
1299 LOCK TABLES `game_event_model_equip` WRITE;
1300 /*!40000 ALTER TABLE `game_event_model_equip` DISABLE KEYS */;
1301 /*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
1302 UNLOCK TABLES;
1305 -- Table structure for table `game_graveyard_zone`
1308 DROP TABLE IF EXISTS `game_graveyard_zone`;
1309 CREATE TABLE `game_graveyard_zone` (
1310   `id` mediumint(8) unsigned NOT NULL default '0',
1311   `ghost_zone` mediumint(8) unsigned NOT NULL default '0',
1312   `faction` smallint(5) unsigned NOT NULL default '0',
1313   PRIMARY KEY  (`id`,`ghost_zone`)
1314 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
1317 -- Dumping data for table `game_graveyard_zone`
1320 LOCK TABLES `game_graveyard_zone` WRITE;
1321 /*!40000 ALTER TABLE `game_graveyard_zone` DISABLE KEYS */;
1322 /*!40000 ALTER TABLE `game_graveyard_zone` ENABLE KEYS */;
1323 UNLOCK TABLES;
1326 -- Table structure for table `game_tele`
1329 DROP TABLE IF EXISTS `game_tele`;
1330 CREATE TABLE `game_tele` (
1331   `id` mediumint(8) unsigned NOT NULL auto_increment,
1332   `position_x` float NOT NULL default '0',
1333   `position_y` float NOT NULL default '0',
1334   `position_z` float NOT NULL default '0',
1335   `orientation` float NOT NULL default '0',
1336   `map` smallint(5) unsigned NOT NULL default '0',
1337   `name` varchar(100) NOT NULL default '',
1338   PRIMARY KEY  (`id`)
1339 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tele Command';
1342 -- Dumping data for table `game_tele`
1345 LOCK TABLES `game_tele` WRITE;
1346 /*!40000 ALTER TABLE `game_tele` DISABLE KEYS */;
1347 /*!40000 ALTER TABLE `game_tele` ENABLE KEYS */;
1348 UNLOCK TABLES;
1351 -- Table structure for table `game_weather`
1354 DROP TABLE IF EXISTS `game_weather`;
1355 CREATE TABLE `game_weather` (
1356   `zone` mediumint(8) unsigned NOT NULL default '0',
1357   `spring_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1358   `spring_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1359   `spring_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1360   `summer_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1361   `summer_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1362   `summer_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1363   `fall_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1364   `fall_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1365   `fall_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1366   `winter_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1367   `winter_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1368   `winter_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1369   PRIMARY KEY  (`zone`)
1370 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Weather System';
1373 -- Dumping data for table `game_weather`
1376 LOCK TABLES `game_weather` WRITE;
1377 /*!40000 ALTER TABLE `game_weather` DISABLE KEYS */;
1378 /*!40000 ALTER TABLE `game_weather` ENABLE KEYS */;
1379 UNLOCK TABLES;
1382 -- Table structure for table `gameobject`
1385 DROP TABLE IF EXISTS `gameobject`;
1386 CREATE TABLE `gameobject` (
1387   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
1388   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Gameobject Identifier',
1389   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
1390   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
1391   `phaseMask` smallint(5) unsigned NOT NULL default '1',
1392   `position_x` float NOT NULL default '0',
1393   `position_y` float NOT NULL default '0',
1394   `position_z` float NOT NULL default '0',
1395   `orientation` float NOT NULL default '0',
1396   `rotation0` float NOT NULL default '0',
1397   `rotation1` float NOT NULL default '0',
1398   `rotation2` float NOT NULL default '0',
1399   `rotation3` float NOT NULL default '0',
1400   `spawntimesecs` int(11) NOT NULL default '0',
1401   `animprogress` tinyint(3) unsigned NOT NULL default '0',
1402   `state` tinyint(3) unsigned NOT NULL default '0',
1403   PRIMARY KEY  (`guid`)
1404 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1407 -- Dumping data for table `gameobject`
1410 LOCK TABLES `gameobject` WRITE;
1411 /*!40000 ALTER TABLE `gameobject` DISABLE KEYS */;
1412 /*!40000 ALTER TABLE `gameobject` ENABLE KEYS */;
1413 UNLOCK TABLES;
1416 -- Table structure for table `gameobject_involvedrelation`
1419 DROP TABLE IF EXISTS `gameobject_involvedrelation`;
1420 CREATE TABLE `gameobject_involvedrelation` (
1421   `id` mediumint(8) unsigned NOT NULL default '0',
1422   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1423   PRIMARY KEY  (`id`,`quest`)
1424 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1427 -- Dumping data for table `gameobject_involvedrelation`
1430 LOCK TABLES `gameobject_involvedrelation` WRITE;
1431 /*!40000 ALTER TABLE `gameobject_involvedrelation` DISABLE KEYS */;
1432 /*!40000 ALTER TABLE `gameobject_involvedrelation` ENABLE KEYS */;
1433 UNLOCK TABLES;
1436 -- Table structure for table `gameobject_loot_template`
1439 DROP TABLE IF EXISTS `gameobject_loot_template`;
1440 CREATE TABLE `gameobject_loot_template` (
1441   `entry` mediumint(8) unsigned NOT NULL default '0',
1442   `item` mediumint(8) unsigned NOT NULL default '0',
1443   `ChanceOrQuestChance` float NOT NULL default '100',
1444   `groupid` tinyint(3) unsigned NOT NULL default '0',
1445   `mincountOrRef` mediumint(9) NOT NULL default '1',
1446   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1447   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1448   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1449   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1450   PRIMARY KEY  (`entry`,`item`)
1451 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1454 -- Dumping data for table `gameobject_loot_template`
1457 LOCK TABLES `gameobject_loot_template` WRITE;
1458 /*!40000 ALTER TABLE `gameobject_loot_template` DISABLE KEYS */;
1459 /*!40000 ALTER TABLE `gameobject_loot_template` ENABLE KEYS */;
1460 UNLOCK TABLES;
1463 -- Table structure for table `gameobject_questrelation`
1466 DROP TABLE IF EXISTS `gameobject_questrelation`;
1467 CREATE TABLE `gameobject_questrelation` (
1468   `id` mediumint(8) unsigned NOT NULL default '0',
1469   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1470   PRIMARY KEY  (`id`,`quest`)
1471 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1474 -- Dumping data for table `gameobject_questrelation`
1477 LOCK TABLES `gameobject_questrelation` WRITE;
1478 /*!40000 ALTER TABLE `gameobject_questrelation` DISABLE KEYS */;
1479 /*!40000 ALTER TABLE `gameobject_questrelation` ENABLE KEYS */;
1480 UNLOCK TABLES;
1483 -- Table structure for table `gameobject_respawn`
1486 DROP TABLE IF EXISTS `gameobject_respawn`;
1487 CREATE TABLE `gameobject_respawn` (
1488   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
1489   `respawntime` bigint(20) NOT NULL default '0',
1490   `instance` mediumint(8) unsigned NOT NULL default '0',
1491   PRIMARY KEY  (`guid`,`instance`),
1492   KEY `instance` (`instance`)
1493 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
1496 -- Dumping data for table `gameobject_respawn`
1499 LOCK TABLES `gameobject_respawn` WRITE;
1500 /*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
1501 /*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
1502 UNLOCK TABLES;
1505 -- Table structure for table `gameobject_scripts`
1508 DROP TABLE IF EXISTS `gameobject_scripts`;
1509 CREATE TABLE `gameobject_scripts` (
1510   `id` mediumint(8) unsigned NOT NULL default '0',
1511   `delay` int(10) unsigned NOT NULL default '0',
1512   `command` mediumint(8) unsigned NOT NULL default '0',
1513   `datalong` mediumint(8) unsigned NOT NULL default '0',
1514   `datalong2` int(10) unsigned NOT NULL default '0',
1515   `dataint` int(11) NOT NULL default '0',
1516   `x` float NOT NULL default '0',
1517   `y` float NOT NULL default '0',
1518   `z` float NOT NULL default '0',
1519   `o` float NOT NULL default '0'
1520 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1523 -- Dumping data for table `gameobject_scripts`
1526 LOCK TABLES `gameobject_scripts` WRITE;
1527 /*!40000 ALTER TABLE `gameobject_scripts` DISABLE KEYS */;
1528 /*!40000 ALTER TABLE `gameobject_scripts` ENABLE KEYS */;
1529 UNLOCK TABLES;
1532 -- Table structure for table `gameobject_template`
1535 DROP TABLE IF EXISTS `gameobject_template`;
1536 CREATE TABLE `gameobject_template` (
1537   `entry` mediumint(8) unsigned NOT NULL default '0',
1538   `type` tinyint(3) unsigned NOT NULL default '0',
1539   `displayId` mediumint(8) unsigned NOT NULL default '0',
1540   `name` varchar(100) NOT NULL default '',
1541   `IconName` varchar(100) NOT NULL default '',
1542   `castBarCaption` varchar(100) NOT NULL default '',
1543   `faction` smallint(5) unsigned NOT NULL default '0',
1544   `flags` int(10) unsigned NOT NULL default '0',
1545   `size` float NOT NULL default '1',
1546   `data0` int(10) unsigned NOT NULL default '0',
1547   `data1` int(10) unsigned NOT NULL default '0',
1548   `data2` int(10) unsigned NOT NULL default '0',
1549   `data3` int(10) unsigned NOT NULL default '0',
1550   `data4` int(10) unsigned NOT NULL default '0',
1551   `data5` int(10) unsigned NOT NULL default '0',
1552   `data6` int(10) unsigned NOT NULL default '0',
1553   `data7` int(10) unsigned NOT NULL default '0',
1554   `data8` int(10) unsigned NOT NULL default '0',
1555   `data9` int(10) unsigned NOT NULL default '0',
1556   `data10` int(10) unsigned NOT NULL default '0',
1557   `data11` int(10) unsigned NOT NULL default '0',
1558   `data12` int(10) unsigned NOT NULL default '0',
1559   `data13` int(10) unsigned NOT NULL default '0',
1560   `data14` int(10) unsigned NOT NULL default '0',
1561   `data15` int(10) unsigned NOT NULL default '0',
1562   `data16` int(10) unsigned NOT NULL default '0',
1563   `data17` int(10) unsigned NOT NULL default '0',
1564   `data18` int(10) unsigned NOT NULL default '0',
1565   `data19` int(10) unsigned NOT NULL default '0',
1566   `data20` int(10) unsigned NOT NULL default '0',
1567   `data21` int(10) unsigned NOT NULL default '0',
1568   `data22` int(10) unsigned NOT NULL default '0',
1569   `data23` int(10) unsigned NOT NULL default '0',
1570   `ScriptName` varchar(64) NOT NULL default '',
1571   PRIMARY KEY  (`entry`)
1572 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1575 -- Dumping data for table `gameobject_template`
1578 LOCK TABLES `gameobject_template` WRITE;
1579 /*!40000 ALTER TABLE `gameobject_template` DISABLE KEYS */;
1580 /*!40000 ALTER TABLE `gameobject_template` ENABLE KEYS */;
1581 UNLOCK TABLES;
1584 -- Table structure for table `instance_template`
1587 DROP TABLE IF EXISTS `instance_template`;
1588 CREATE TABLE `instance_template` (
1589   `map` smallint(5) unsigned NOT NULL,
1590   `parent` int(10) unsigned NOT NULL,
1591   `levelMin` tinyint(3) unsigned NOT NULL default '0',
1592   `levelMax` tinyint(3) unsigned NOT NULL default '0',
1593   `maxPlayers` tinyint(3) unsigned NOT NULL default '0',
1594   `maxPlayersHeroic` tinyint(3) unsigned NOT NULL default '0',
1595   `reset_delay` int(10) unsigned NOT NULL default '0',
1596   `startLocX` float default NULL,
1597   `startLocY` float default NULL,
1598   `startLocZ` float default NULL,
1599   `startLocO` float default NULL,
1600   `script` varchar(128) NOT NULL default '',
1601   PRIMARY KEY  (`map`)
1602 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1605 -- Dumping data for table `instance_template`
1608 LOCK TABLES `instance_template` WRITE;
1609 /*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
1610 /*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
1611 UNLOCK TABLES;
1614 -- Table structure for table `item_enchantment_template`
1617 DROP TABLE IF EXISTS `item_enchantment_template`;
1618 CREATE TABLE `item_enchantment_template` (
1619   `entry` mediumint(8) unsigned NOT NULL default '0',
1620   `ench` mediumint(8) unsigned NOT NULL default '0',
1621   `chance` float unsigned NOT NULL default '0',
1622   PRIMARY KEY  (`entry`,`ench`)
1623 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
1626 -- Dumping data for table `item_enchantment_template`
1629 LOCK TABLES `item_enchantment_template` WRITE;
1630 /*!40000 ALTER TABLE `item_enchantment_template` DISABLE KEYS */;
1631 /*!40000 ALTER TABLE `item_enchantment_template` ENABLE KEYS */;
1632 UNLOCK TABLES;
1635 -- Table structure for table `item_loot_template`
1638 DROP TABLE IF EXISTS `item_loot_template`;
1639 CREATE TABLE `item_loot_template` (
1640   `entry` mediumint(8) unsigned NOT NULL default '0',
1641   `item` mediumint(8) unsigned NOT NULL default '0',
1642   `ChanceOrQuestChance` float NOT NULL default '100',
1643   `groupid` tinyint(3) unsigned NOT NULL default '0',
1644   `mincountOrRef` mediumint(9) NOT NULL default '1',
1645   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1646   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1647   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1648   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1649   PRIMARY KEY  (`entry`,`item`)
1650 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1653 -- Dumping data for table `item_loot_template`
1656 LOCK TABLES `item_loot_template` WRITE;
1657 /*!40000 ALTER TABLE `item_loot_template` DISABLE KEYS */;
1658 /*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
1659 UNLOCK TABLES;
1662 -- Table structure for table `item_template`
1665 DROP TABLE IF EXISTS `item_template`;
1666 CREATE TABLE `item_template` (
1667   `entry` mediumint(8) unsigned NOT NULL default '0',
1668   `class` tinyint(3) unsigned NOT NULL default '0',
1669   `subclass` tinyint(3) unsigned NOT NULL default '0',
1670   `unk0` int(11) NOT NULL default '-1',
1671   `name` varchar(255) NOT NULL default '',
1672   `displayid` mediumint(8) unsigned NOT NULL default '0',
1673   `Quality` tinyint(3) unsigned NOT NULL default '0',
1674   `Flags` int(10) unsigned NOT NULL default '0',
1675   `BuyCount` tinyint(3) unsigned NOT NULL default '1',
1676   `BuyPrice` int(10) unsigned NOT NULL default '0',
1677   `SellPrice` int(10) unsigned NOT NULL default '0',
1678   `InventoryType` tinyint(3) unsigned NOT NULL default '0',
1679   `AllowableClass` mediumint(9) NOT NULL default '-1',
1680   `AllowableRace` mediumint(9) NOT NULL default '-1',
1681   `ItemLevel` tinyint(3) unsigned NOT NULL default '0',
1682   `RequiredLevel` tinyint(3) unsigned NOT NULL default '0',
1683   `RequiredSkill` smallint(5) unsigned NOT NULL default '0',
1684   `RequiredSkillRank` smallint(5) unsigned NOT NULL default '0',
1685   `requiredspell` mediumint(8) unsigned NOT NULL default '0',
1686   `requiredhonorrank` mediumint(8) unsigned NOT NULL default '0',
1687   `RequiredCityRank` mediumint(8) unsigned NOT NULL default '0',
1688   `RequiredReputationFaction` smallint(5) unsigned NOT NULL default '0',
1689   `RequiredReputationRank` smallint(5) unsigned NOT NULL default '0',
1690   `maxcount` smallint(5) NOT NULL default '-1',
1691   `stackable` smallint(5) NOT NULL default '1',
1692   `ContainerSlots` tinyint(3) unsigned NOT NULL default '0',
1693   `StatsCount` tinyint(3) unsigned NOT NULL default '0',
1694   `stat_type1` tinyint(3) unsigned NOT NULL default '0',
1695   `stat_value1` smallint(6) NOT NULL default '0',
1696   `stat_type2` tinyint(3) unsigned NOT NULL default '0',
1697   `stat_value2` smallint(6) NOT NULL default '0',
1698   `stat_type3` tinyint(3) unsigned NOT NULL default '0',
1699   `stat_value3` smallint(6) NOT NULL default '0',
1700   `stat_type4` tinyint(3) unsigned NOT NULL default '0',
1701   `stat_value4` smallint(6) NOT NULL default '0',
1702   `stat_type5` tinyint(3) unsigned NOT NULL default '0',
1703   `stat_value5` smallint(6) NOT NULL default '0',
1704   `stat_type6` tinyint(3) unsigned NOT NULL default '0',
1705   `stat_value6` smallint(6) NOT NULL default '0',
1706   `stat_type7` tinyint(3) unsigned NOT NULL default '0',
1707   `stat_value7` smallint(6) NOT NULL default '0',
1708   `stat_type8` tinyint(3) unsigned NOT NULL default '0',
1709   `stat_value8` smallint(6) NOT NULL default '0',
1710   `stat_type9` tinyint(3) unsigned NOT NULL default '0',
1711   `stat_value9` smallint(6) NOT NULL default '0',
1712   `stat_type10` tinyint(3) unsigned NOT NULL default '0',
1713   `stat_value10` smallint(6) NOT NULL default '0',
1714   `ScalingStatDistribution` smallint(6) NOT NULL default '0',
1715   `ScalingStatValue` smallint(6) NOT NULL default '0',
1716   `dmg_min1` float NOT NULL default '0',
1717   `dmg_max1` float NOT NULL default '0',
1718   `dmg_type1` tinyint(3) unsigned NOT NULL default '0',
1719   `dmg_min2` float NOT NULL default '0',
1720   `dmg_max2` float NOT NULL default '0',
1721   `dmg_type2` tinyint(3) unsigned NOT NULL default '0',
1722   `dmg_min3` float NOT NULL default '0',
1723   `dmg_max3` float NOT NULL default '0',
1724   `dmg_type3` tinyint(3) unsigned NOT NULL default '0',
1725   `dmg_min4` float NOT NULL default '0',
1726   `dmg_max4` float NOT NULL default '0',
1727   `dmg_type4` tinyint(3) unsigned NOT NULL default '0',
1728   `dmg_min5` float NOT NULL default '0',
1729   `dmg_max5` float NOT NULL default '0',
1730   `dmg_type5` tinyint(3) unsigned NOT NULL default '0',
1731   `armor` smallint(5) unsigned NOT NULL default '0',
1732   `holy_res` tinyint(3) unsigned NOT NULL default '0',
1733   `fire_res` tinyint(3) unsigned NOT NULL default '0',
1734   `nature_res` tinyint(3) unsigned NOT NULL default '0',
1735   `frost_res` tinyint(3) unsigned NOT NULL default '0',
1736   `shadow_res` tinyint(3) unsigned NOT NULL default '0',
1737   `arcane_res` tinyint(3) unsigned NOT NULL default '0',
1738   `delay` smallint(5) unsigned NOT NULL default '1000',
1739   `ammo_type` tinyint(3) unsigned NOT NULL default '0',
1740   `RangedModRange` float NOT NULL default '0',
1741   `spellid_1` mediumint(8) unsigned NOT NULL default '0',
1742   `spelltrigger_1` tinyint(3) unsigned NOT NULL default '0',
1743   `spellcharges_1` tinyint(4) NOT NULL default '0',
1744   `spellppmRate_1` float NOT NULL default '0',
1745   `spellcooldown_1` int(11) NOT NULL default '-1',
1746   `spellcategory_1` smallint(5) unsigned NOT NULL default '0',
1747   `spellcategorycooldown_1` int(11) NOT NULL default '-1',
1748   `spellid_2` mediumint(8) unsigned NOT NULL default '0',
1749   `spelltrigger_2` tinyint(3) unsigned NOT NULL default '0',
1750   `spellcharges_2` tinyint(4) NOT NULL default '0',
1751   `spellppmRate_2` float NOT NULL default '0',
1752   `spellcooldown_2` int(11) NOT NULL default '-1',
1753   `spellcategory_2` smallint(5) unsigned NOT NULL default '0',
1754   `spellcategorycooldown_2` int(11) NOT NULL default '-1',
1755   `spellid_3` mediumint(8) unsigned NOT NULL default '0',
1756   `spelltrigger_3` tinyint(3) unsigned NOT NULL default '0',
1757   `spellcharges_3` tinyint(4) NOT NULL default '0',
1758   `spellppmRate_3` float NOT NULL default '0',
1759   `spellcooldown_3` int(11) NOT NULL default '-1',
1760   `spellcategory_3` smallint(5) unsigned NOT NULL default '0',
1761   `spellcategorycooldown_3` int(11) NOT NULL default '-1',
1762   `spellid_4` mediumint(8) unsigned NOT NULL default '0',
1763   `spelltrigger_4` tinyint(3) unsigned NOT NULL default '0',
1764   `spellcharges_4` tinyint(4) NOT NULL default '0',
1765   `spellppmRate_4` float NOT NULL default '0',
1766   `spellcooldown_4` int(11) NOT NULL default '-1',
1767   `spellcategory_4` smallint(5) unsigned NOT NULL default '0',
1768   `spellcategorycooldown_4` int(11) NOT NULL default '-1',
1769   `spellid_5` mediumint(8) unsigned NOT NULL default '0',
1770   `spelltrigger_5` tinyint(3) unsigned NOT NULL default '0',
1771   `spellcharges_5` tinyint(4) NOT NULL default '0',
1772   `spellppmRate_5` float NOT NULL default '0',
1773   `spellcooldown_5` int(11) NOT NULL default '-1',
1774   `spellcategory_5` smallint(5) unsigned NOT NULL default '0',
1775   `spellcategorycooldown_5` int(11) NOT NULL default '-1',
1776   `bonding` tinyint(3) unsigned NOT NULL default '0',
1777   `description` varchar(255) NOT NULL default '',
1778   `PageText` mediumint(8) unsigned NOT NULL default '0',
1779   `LanguageID` tinyint(3) unsigned NOT NULL default '0',
1780   `PageMaterial` tinyint(3) unsigned NOT NULL default '0',
1781   `startquest` mediumint(8) unsigned NOT NULL default '0',
1782   `lockid` mediumint(8) unsigned NOT NULL default '0',
1783   `Material` tinyint(4) NOT NULL default '0',
1784   `sheath` tinyint(3) unsigned NOT NULL default '0',
1785   `RandomProperty` mediumint(8) unsigned NOT NULL default '0',
1786   `RandomSuffix` mediumint(8) unsigned NOT NULL default '0',
1787   `block` mediumint(8) unsigned NOT NULL default '0',
1788   `itemset` mediumint(8) unsigned NOT NULL default '0',
1789   `MaxDurability` smallint(5) unsigned NOT NULL default '0',
1790   `area` mediumint(8) unsigned NOT NULL default '0',
1791   `Map` smallint(6) NOT NULL default '0',
1792   `BagFamily` mediumint(9) NOT NULL default '0',
1793   `TotemCategory` mediumint(9) NOT NULL default '0',
1794   `socketColor_1` tinyint(4) NOT NULL default '0',
1795   `socketContent_1` mediumint(9) NOT NULL default '0',
1796   `socketColor_2` tinyint(4) NOT NULL default '0',
1797   `socketContent_2` mediumint(9) NOT NULL default '0',
1798   `socketColor_3` tinyint(4) NOT NULL default '0',
1799   `socketContent_3` mediumint(9) NOT NULL default '0',
1800   `socketBonus` mediumint(9) NOT NULL default '0',
1801   `GemProperties` mediumint(9) NOT NULL default '0',
1802   `RequiredDisenchantSkill` smallint(6) NOT NULL default '-1',
1803   `ArmorDamageModifier` float NOT NULL default '0',
1804   `Duration` int(11) NOT NULL default '0' COMMENT 'Duration in seconds. Negative value means realtime, postive value ingame time',
1805   `ItemLimitCategory` smallint(6) NOT NULL default '0',
1806   `ScriptName` varchar(64) NOT NULL default '',
1807   `DisenchantID` mediumint(8) unsigned NOT NULL default '0',
1808   `FoodType` tinyint(3) unsigned NOT NULL default '0',
1809   `minMoneyLoot` int(10) unsigned NOT NULL default '0',
1810   `maxMoneyLoot` int(10) unsigned NOT NULL default '0',
1811   PRIMARY KEY  (`entry`),
1812   KEY `items_index` (`class`)
1813 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
1816 -- Dumping data for table `item_template`
1819 LOCK TABLES `item_template` WRITE;
1820 /*!40000 ALTER TABLE `item_template` DISABLE KEYS */;
1821 INSERT INTO `item_template` VALUES
1822 (25,2,7,-1,'Worn Shortsword',1542,1,0,1,35,7,21,32767,511,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,1,0,0,0,1,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1823 (35,2,10,-1,'Bent Staff',472,1,0,1,47,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1824 (36,2,4,-1,'Worn Mace',5194,1,0,1,38,7,21,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1825 (37,2,0,-1,'Worn Axe',14029,1,0,1,38,7,21,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1826 (38,4,0,-1,'Recruit\'s Shirt',9891,1,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1827 (39,4,1,-1,'Recruit\'s Pants',9892,0,0,1,5,1,7,32767,511,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1828 (40,4,0,-1,'Recruit\'s Boots',10141,1,0,1,4,1,8,32767,511,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1829 (43,4,0,-1,'Squire\'s Boots',9938,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1830 (44,4,1,-1,'Squire\'s Pants',9937,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1831 (45,4,0,-1,'Squire\'s Shirt',3265,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1832 (47,4,0,-1,'Footpad\'s Shoes',9915,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1833 (48,4,1,-1,'Footpad\'s Pants',9913,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1834 (49,4,0,-1,'Footpad\'s Shirt',9906,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1835 (51,4,0,-1,'Neophyte\'s Boots',9946,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1836 (52,4,1,-1,'Neophyte\'s Pants',9945,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1837 (53,4,0,-1,'Neophyte\'s Shirt',9944,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1838 (55,4,0,-1,'Apprentice\'s Boots',9929,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1839 (56,4,1,-1,'Apprentice\'s Robe',12647,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1840 (57,4,1,-1,'Acolyte\'s Robe',12645,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1841 (59,4,0,-1,'Acolyte\'s Shoes',3261,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1842 (117,0,0,-1,'Tough Jerky',2473,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1843 (120,4,1,-1,'Thug Pants',10006,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1844 (121,4,0,-1,'Thug Boots',10008,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1845 (127,4,0,-1,'Trapper\'s Shirt',9996,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1846 (139,4,1,-1,'Brawler\'s Pants',9988,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1847 (140,4,0,-1,'Brawler\'s Boots',9992,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1848 (147,4,1,-1,'Rugged Trapper\'s Pants',9975,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1849 (148,4,0,-1,'Rugged Trapper\'s Shirt',9976,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1850 (153,4,2,-1,'Primitive Kilt',10050,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1851 (154,4,0,-1,'Primitive Mantle',10058,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1852 (159,0,0,-1,'Refreshing Spring Water',18084,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,430,0,-1,0,-1,59,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1853 (1395,4,1,-1,'Apprentice\'s Pants',9924,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1854 (1396,4,1,-1,'Acolyte\'s Pants',3260,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1855 (2070,0,0,-1,'Darnassian Bleu',6353,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1856 (2092,2,15,-1,'Worn Dagger',6442,1,0,1,35,7,13,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1600,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,3,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1857 (2101,11,2,-1,'Light Quiver',21328,1,0,1,4,1,18,2047,255,1,1,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,14824,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1858 (2102,11,3,-1,'Small Ammo Pouch',1816,1,0,1,4,1,18,2047,255,1,1,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,14824,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1859 (2105,4,0,-1,'Thug Shirt',10005,1,0,1,5,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1860 (2361,2,5,-1,'Battleworn Hammer',8690,1,0,1,45,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,1,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1861 (2362,4,6,-1,'Worn Wooden Shield',18730,0,0,1,7,1,14,32767,511,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,4,0,0,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1862 (2504,2,2,-1,'Worn Shortbow',8106,1,0,1,29,5,15,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1863 (2508,2,3,-1,'Old Blunderbuss',6606,1,0,1,27,5,26,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,3,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1864 (2512,6,2,-1,'Rough Arrow',5996,1,0,1,10,0,24,2047,255,5,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1865 (2516,6,3,-1,'Light Shot',5998,1,0,1,10,0,24,2047,255,5,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1866 (2947,15,0,-1,'Small Throwing Knife',16754,1,0,1,15,0,0,2047,255,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,4,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1867 (3661,2,10,-1,'Handcrafted Staff',18530,1,0,1,45,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1868 (4536,0,0,-1,'Shiny Red Apple',6410,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1869 (4540,0,0,-1,'Tough Hunk of Bread',6399,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1870 (4604,0,0,-1,'Forest Mushroom Cap',15852,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1871 (6096,4,0,-1,'Apprentice\'s Shirt',2163,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1872 (6097,4,0,-1,'Acolyte\'s Shirt',2470,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1873 (6098,4,1,-1,'Neophyte\'s Robe',12679,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1874 (6119,4,1,-1,'Neophyte\'s Robe',12681,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1875 (6123,4,1,-1,'Novice\'s Robe',12683,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1876 (6124,4,1,-1,'Novice\'s Pants',9987,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1877 (6125,4,0,-1,'Brawler\'s Harness',9995,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1878 (6126,4,1,-1,'Trapper\'s Pants',10002,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1879 (6127,4,0,-1,'Trapper\'s Boots',10003,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1880 (6129,4,1,-1,'Acolyte\'s Robe',12646,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1881 (6134,4,0,-1,'Primitive Mantle',10108,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1882 (6135,4,2,-1,'Primitive Kilt',10109,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1883 (6139,4,1,-1,'Novice\'s Robe',12684,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1884 (6140,4,1,-1,'Apprentice\'s Robe',12649,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1885 (6144,4,1,-1,'Neophyte\'s Robe',12680,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1886 (6948,15,0,-1,'Hearthstone',6418,1,64,1,0,0,0,32767,511,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8690,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1887 (12282,2,1,-1,'Worn Battleaxe',22291,1,0,1,43,8,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,1,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1888 (14646,12,0,-1,'Northshire Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5805,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1889 (14647,12,0,-1,'Coldridge Valley Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5841,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1890 (14648,12,0,-1,'Shadowglen Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5842,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1891 (14649,12,0,-1,'Valley of Trials Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5843,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1892 (14650,12,0,-1,'Camp Narache Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5844,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1893 (14651,12,0,-1,'Deathknell Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5847,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1894 (25861,2,16,-1,'Crude Throwing Axe',20777,1,0,1,15,0,25,2047,255,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,4,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,'internalItemHandler',0,0,0,0,0),
1895 (34648,4,4,-1,'Acherus Knight\'s Greaves',51496,2,32768,1,51,10,8,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,10,7,12,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1896 (34649,4,4,-1,'Acherus Knight\'s Gauntlets',51498,2,32768,1,34,6,10,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,15,7,6,32,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1897 (34650,4,4,-1,'Acherus Knight\'s Tunic',51494,2,32768,1,69,13,5,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,20,7,11,32,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1898 (34651,4,4,-1,'Acherus Knight\'s Girdle',51497,2,32768,1,35,7,6,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,2,4,10,32,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1899 (34652,4,4,-1,'Acherus Knight\'s Hood',51495,2,32768,1,52,10,1,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,15,7,15,32,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1900 (34653,4,4,-1,'Acherus Knight\'s Wristguard',51500,2,32768,1,36,7,9,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,7,31,7,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1901 (34655,4,4,-1,'Acherus Knight\'s Pauldrons',51501,2,32768,1,54,10,3,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,9,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1902 (34656,4,4,-1,'Acherus Knight\'s Cover',51499,2,32768,1,73,14,7,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,13,3,10,7,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1903 (34657,4,0,-1,'Choker of Damnation',6539,2,32768,1,2303,575,2,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,9,7,8,31,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1904 (34658,4,0,-1,'Plague Band',963,2,32768,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,6,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1905 (34659,4,1,-1,'Acherus Knight\'s Shroud',49738,2,32768,1,31,6,16,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,2,4,12,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1906 (38145,1,0,-1,'Deathweave Bag',1282,1,32768,1,0,0,18,-1,-1,35,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1907 (38147,4,0,-1,'Corrupted Band',963,2,32768,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,6,32,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0),
1908 (41751,0,5,-1,'Black Mushroom',36728,1,0,1,100,5,0,-1,-1,65,55,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27094,0,-1,0,0,11,1000,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0);
1909 /*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
1910 UNLOCK TABLES;
1913 -- Table structure for table `locales_achievement_reward`
1916 DROP TABLE IF EXISTS `locales_achievement_reward`;
1917 CREATE TABLE `locales_achievement_reward` (
1918   `entry` mediumint(8) unsigned NOT NULL default '0',
1919   `subject_loc1` varchar(100) NOT NULL default '',
1920   `subject_loc2` varchar(100) NOT NULL default '',
1921   `subject_loc3` varchar(100) NOT NULL default '',
1922   `subject_loc4` varchar(100) NOT NULL default '',
1923   `subject_loc5` varchar(100) NOT NULL default '',
1924   `subject_loc6` varchar(100) NOT NULL default '',
1925   `subject_loc7` varchar(100) NOT NULL default '',
1926   `subject_loc8` varchar(100) NOT NULL default '',
1927   `text_loc1` text default NULL,
1928   `text_loc2` text default NULL,
1929   `text_loc3` text default NULL,
1930   `text_loc4` text default NULL,
1931   `text_loc5` text default NULL,
1932   `text_loc6` text default NULL,
1933   `text_loc7` text default NULL,
1934   `text_loc8` text default NULL,
1935   PRIMARY KEY  (`entry`)
1936 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1939 -- Dumping data for table `locales_achievement_reward`
1942 LOCK TABLES `locales_achievement_reward` WRITE;
1943 /*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
1944 /*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
1945 UNLOCK TABLES;
1948 -- Table structure for table `locales_creature`
1951 DROP TABLE IF EXISTS `locales_creature`;
1952 CREATE TABLE `locales_creature` (
1953   `entry` mediumint(8) unsigned NOT NULL default '0',
1954   `name_loc1` varchar(100) NOT NULL default '',
1955   `name_loc2` varchar(100) NOT NULL default '',
1956   `name_loc3` varchar(100) NOT NULL default '',
1957   `name_loc4` varchar(100) NOT NULL default '',
1958   `name_loc5` varchar(100) NOT NULL default '',
1959   `name_loc6` varchar(100) NOT NULL default '',
1960   `name_loc7` varchar(100) NOT NULL default '',
1961   `name_loc8` varchar(100) NOT NULL default '',
1962   `subname_loc1` varchar(100) default NULL,
1963   `subname_loc2` varchar(100) default NULL,
1964   `subname_loc3` varchar(100) default NULL,
1965   `subname_loc4` varchar(100) default NULL,
1966   `subname_loc5` varchar(100) default NULL,
1967   `subname_loc6` varchar(100) default NULL,
1968   `subname_loc7` varchar(100) default NULL,
1969   `subname_loc8` varchar(100) default NULL,
1970   PRIMARY KEY  (`entry`)
1971 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1974 -- Dumping data for table `locales_creature`
1977 LOCK TABLES `locales_creature` WRITE;
1978 /*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
1979 /*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
1980 UNLOCK TABLES;
1983 -- Table structure for table `locales_gameobject`
1986 DROP TABLE IF EXISTS `locales_gameobject`;
1987 CREATE TABLE `locales_gameobject` (
1988   `entry` mediumint(8) unsigned NOT NULL default '0',
1989   `name_loc1` varchar(100) NOT NULL default '',
1990   `name_loc2` varchar(100) NOT NULL default '',
1991   `name_loc3` varchar(100) NOT NULL default '',
1992   `name_loc4` varchar(100) NOT NULL default '',
1993   `name_loc5` varchar(100) NOT NULL default '',
1994   `name_loc6` varchar(100) NOT NULL default '',
1995   `name_loc7` varchar(100) NOT NULL default '',
1996   `name_loc8` varchar(100) NOT NULL default '',
1997   `castbarcaption_loc1` varchar(100) NOT NULL default '',
1998   `castbarcaption_loc2` varchar(100) NOT NULL default '',
1999   `castbarcaption_loc3` varchar(100) NOT NULL default '',
2000   `castbarcaption_loc4` varchar(100) NOT NULL default '',
2001   `castbarcaption_loc5` varchar(100) NOT NULL default '',
2002   `castbarcaption_loc6` varchar(100) NOT NULL default '',
2003   `castbarcaption_loc7` varchar(100) NOT NULL default '',
2004   `castbarcaption_loc8` varchar(100) NOT NULL default '',
2005   PRIMARY KEY  (`entry`)
2006 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2009 -- Dumping data for table `locales_gameobject`
2012 LOCK TABLES `locales_gameobject` WRITE;
2013 /*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
2014 /*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
2015 UNLOCK TABLES;
2018 -- Table structure for table `locales_item`
2021 DROP TABLE IF EXISTS `locales_item`;
2022 CREATE TABLE `locales_item` (
2023   `entry` mediumint(8) unsigned NOT NULL default '0',
2024   `name_loc1` varchar(100) NOT NULL default '',
2025   `name_loc2` varchar(100) NOT NULL default '',
2026   `name_loc3` varchar(100) NOT NULL default '',
2027   `name_loc4` varchar(100) NOT NULL default '',
2028   `name_loc5` varchar(100) NOT NULL default '',
2029   `name_loc6` varchar(100) NOT NULL default '',
2030   `name_loc7` varchar(100) NOT NULL default '',
2031   `name_loc8` varchar(100) NOT NULL default '',
2032   `description_loc1` varchar(255) default NULL,
2033   `description_loc2` varchar(255) default NULL,
2034   `description_loc3` varchar(255) default NULL,
2035   `description_loc4` varchar(255) default NULL,
2036   `description_loc5` varchar(255) default NULL,
2037   `description_loc6` varchar(255) default NULL,
2038   `description_loc7` varchar(255) default NULL,
2039   `description_loc8` varchar(255) default NULL,
2040   PRIMARY KEY  (`entry`)
2041 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2044 -- Dumping data for table `locales_item`
2047 LOCK TABLES `locales_item` WRITE;
2048 /*!40000 ALTER TABLE `locales_item` DISABLE KEYS */;
2049 /*!40000 ALTER TABLE `locales_item` ENABLE KEYS */;
2050 UNLOCK TABLES;
2054 -- Table structure for table `locales_npc_option`
2057 DROP TABLE IF EXISTS `locales_npc_option`;
2058 CREATE TABLE `locales_npc_option` (
2059   `entry` mediumint(8) unsigned NOT NULL default '0',
2060   `option_text_loc1` text,
2061   `option_text_loc2` text,
2062   `option_text_loc3` text,
2063   `option_text_loc4` text,
2064   `option_text_loc5` text,
2065   `option_text_loc6` text,
2066   `option_text_loc7` text,
2067   `option_text_loc8` text,
2068   `box_text_loc1` text,
2069   `box_text_loc2` text,
2070   `box_text_loc3` text,
2071   `box_text_loc4` text,
2072   `box_text_loc5` text,
2073   `box_text_loc6` text,
2074   `box_text_loc7` text,
2075   `box_text_loc8` text,
2076   PRIMARY KEY  (`entry`)
2077 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2080 -- Dumping data for table `locales_npc_option`
2083 LOCK TABLES `locales_npc_option` WRITE;
2084 /*!40000 ALTER TABLE `locales_npc_option` DISABLE KEYS */;
2085 /*!40000 ALTER TABLE `locales_npc_option` ENABLE KEYS */;
2086 UNLOCK TABLES;
2089 -- Table structure for table `locales_npc_text`
2092 DROP TABLE IF EXISTS `locales_npc_text`;
2093 CREATE TABLE `locales_npc_text` (
2094   `entry` mediumint(8) unsigned NOT NULL default '0',
2095   `Text0_0_loc1` longtext,
2096   `Text0_0_loc2` longtext,
2097   `Text0_0_loc3` longtext,
2098   `Text0_0_loc4` longtext,
2099   `Text0_0_loc5` longtext,
2100   `Text0_0_loc6` longtext,
2101   `Text0_0_loc7` longtext,
2102   `Text0_0_loc8` longtext,
2103   `Text0_1_loc1` longtext,
2104   `Text0_1_loc2` longtext,
2105   `Text0_1_loc3` longtext,
2106   `Text0_1_loc4` longtext,
2107   `Text0_1_loc5` longtext,
2108   `Text0_1_loc6` longtext,
2109   `Text0_1_loc7` longtext,
2110   `Text0_1_loc8` longtext,
2111   `Text1_0_loc1` longtext,
2112   `Text1_0_loc2` longtext,
2113   `Text1_0_loc3` longtext,
2114   `Text1_0_loc4` longtext,
2115   `Text1_0_loc5` longtext,
2116   `Text1_0_loc6` longtext,
2117   `Text1_0_loc7` longtext,
2118   `Text1_0_loc8` longtext,
2119   `Text1_1_loc1` longtext,
2120   `Text1_1_loc2` longtext,
2121   `Text1_1_loc3` longtext,
2122   `Text1_1_loc4` longtext,
2123   `Text1_1_loc5` longtext,
2124   `Text1_1_loc6` longtext,
2125   `Text1_1_loc7` longtext,
2126   `Text1_1_loc8` longtext,
2127   `Text2_0_loc1` longtext,
2128   `Text2_0_loc2` longtext,
2129   `Text2_0_loc3` longtext,
2130   `Text2_0_loc4` longtext,
2131   `Text2_0_loc5` longtext,
2132   `Text2_0_loc6` longtext,
2133   `Text2_0_loc7` longtext,
2134   `Text2_0_loc8` longtext,
2135   `Text2_1_loc1` longtext,
2136   `Text2_1_loc2` longtext,
2137   `Text2_1_loc3` longtext,
2138   `Text2_1_loc4` longtext,
2139   `Text2_1_loc5` longtext,
2140   `Text2_1_loc6` longtext,
2141   `Text2_1_loc7` longtext,
2142   `Text2_1_loc8` longtext,
2143   `Text3_0_loc1` longtext,
2144   `Text3_0_loc2` longtext,
2145   `Text3_0_loc3` longtext,
2146   `Text3_0_loc4` longtext,
2147   `Text3_0_loc5` longtext,
2148   `Text3_0_loc6` longtext,
2149   `Text3_0_loc7` longtext,
2150   `Text3_0_loc8` longtext,
2151   `Text3_1_loc1` longtext,
2152   `Text3_1_loc2` longtext,
2153   `Text3_1_loc3` longtext,
2154   `Text3_1_loc4` longtext,
2155   `Text3_1_loc5` longtext,
2156   `Text3_1_loc6` longtext,
2157   `Text3_1_loc7` longtext,
2158   `Text3_1_loc8` longtext,
2159   `Text4_0_loc1` longtext,
2160   `Text4_0_loc2` longtext,
2161   `Text4_0_loc3` longtext,
2162   `Text4_0_loc4` longtext,
2163   `Text4_0_loc5` longtext,
2164   `Text4_0_loc6` longtext,
2165   `Text4_0_loc7` longtext,
2166   `Text4_0_loc8` longtext,
2167   `Text4_1_loc1` longtext,
2168   `Text4_1_loc2` longtext,
2169   `Text4_1_loc3` longtext,
2170   `Text4_1_loc4` longtext,
2171   `Text4_1_loc5` longtext,
2172   `Text4_1_loc6` longtext,
2173   `Text4_1_loc7` longtext,
2174   `Text4_1_loc8` longtext,
2175   `Text5_0_loc1` longtext,
2176   `Text5_0_loc2` longtext,
2177   `Text5_0_loc3` longtext,
2178   `Text5_0_loc4` longtext,
2179   `Text5_0_loc5` longtext,
2180   `Text5_0_loc6` longtext,
2181   `Text5_0_loc7` longtext,
2182   `Text5_0_loc8` longtext,
2183   `Text5_1_loc1` longtext,
2184   `Text5_1_loc2` longtext,
2185   `Text5_1_loc3` longtext,
2186   `Text5_1_loc4` longtext,
2187   `Text5_1_loc5` longtext,
2188   `Text5_1_loc6` longtext,
2189   `Text5_1_loc7` longtext,
2190   `Text5_1_loc8` longtext,
2191   `Text6_0_loc1` longtext,
2192   `Text6_0_loc2` longtext,
2193   `Text6_0_loc3` longtext,
2194   `Text6_0_loc4` longtext,
2195   `Text6_0_loc5` longtext,
2196   `Text6_0_loc6` longtext,
2197   `Text6_0_loc7` longtext,
2198   `Text6_0_loc8` longtext,
2199   `Text6_1_loc1` longtext,
2200   `Text6_1_loc2` longtext,
2201   `Text6_1_loc3` longtext,
2202   `Text6_1_loc4` longtext,
2203   `Text6_1_loc5` longtext,
2204   `Text6_1_loc6` longtext,
2205   `Text6_1_loc7` longtext,
2206   `Text6_1_loc8` longtext,
2207   `Text7_0_loc1` longtext,
2208   `Text7_0_loc2` longtext,
2209   `Text7_0_loc3` longtext,
2210   `Text7_0_loc4` longtext,
2211   `Text7_0_loc5` longtext,
2212   `Text7_0_loc6` longtext,
2213   `Text7_0_loc7` longtext,
2214   `Text7_0_loc8` longtext,
2215   `Text7_1_loc1` longtext,
2216   `Text7_1_loc2` longtext,
2217   `Text7_1_loc3` longtext,
2218   `Text7_1_loc4` longtext,
2219   `Text7_1_loc5` longtext,
2220   `Text7_1_loc6` longtext,
2221   `Text7_1_loc7` longtext,
2222   `Text7_1_loc8` longtext,
2223   PRIMARY KEY  (`entry`)
2224 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2227 -- Dumping data for table `locales_npc_text`
2230 LOCK TABLES `locales_npc_text` WRITE;
2231 /*!40000 ALTER TABLE `locales_npc_text` DISABLE KEYS */;
2232 /*!40000 ALTER TABLE `locales_npc_text` ENABLE KEYS */;
2233 UNLOCK TABLES;
2236 -- Table structure for table `locales_page_text`
2239 DROP TABLE IF EXISTS `locales_page_text`;
2240 CREATE TABLE `locales_page_text` (
2241   `entry` mediumint(8) unsigned NOT NULL default '0',
2242   `Text_loc1` longtext,
2243   `Text_loc2` longtext,
2244   `Text_loc3` longtext,
2245   `Text_loc4` longtext,
2246   `Text_loc5` longtext,
2247   `Text_loc6` longtext,
2248   `Text_loc7` longtext,
2249   `Text_loc8` longtext,
2250   PRIMARY KEY  (`entry`)
2251 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2254 -- Dumping data for table `locales_page_text`
2257 LOCK TABLES `locales_page_text` WRITE;
2258 /*!40000 ALTER TABLE `locales_page_text` DISABLE KEYS */;
2259 /*!40000 ALTER TABLE `locales_page_text` ENABLE KEYS */;
2260 UNLOCK TABLES;
2263 -- Table structure for table `locales_points_of_interest`
2266 DROP TABLE IF EXISTS `locales_points_of_interest`;
2267 CREATE TABLE `locales_points_of_interest` (
2268   `entry` mediumint(8) unsigned NOT NULL default '0',
2269   `icon_name_loc1` text,
2270   `icon_name_loc2` text,
2271   `icon_name_loc3` text,
2272   `icon_name_loc4` text,
2273   `icon_name_loc5` text,
2274   `icon_name_loc6` text,
2275   `icon_name_loc7` text,
2276   `icon_name_loc8` text,
2277   PRIMARY KEY  (`entry`)
2278 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2281 -- Dumping data for table `locales_points_of_interest`
2284 LOCK TABLES `locales_points_of_interest` WRITE;
2285 /*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
2286 /*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
2287 UNLOCK TABLES;
2290 -- Table structure for table `locales_quest`
2293 DROP TABLE IF EXISTS `locales_quest`;
2294 CREATE TABLE `locales_quest` (
2295   `entry` mediumint(8) unsigned NOT NULL default '0',
2296   `Title_loc1` text,
2297   `Title_loc2` text,
2298   `Title_loc3` text,
2299   `Title_loc4` text,
2300   `Title_loc5` text,
2301   `Title_loc6` text,
2302   `Title_loc7` text,
2303   `Title_loc8` text,
2304   `Details_loc1` text,
2305   `Details_loc2` text,
2306   `Details_loc3` text,
2307   `Details_loc4` text,
2308   `Details_loc5` text,
2309   `Details_loc6` text,
2310   `Details_loc7` text,
2311   `Details_loc8` text,
2312   `Objectives_loc1` text,
2313   `Objectives_loc2` text,
2314   `Objectives_loc3` text,
2315   `Objectives_loc4` text,
2316   `Objectives_loc5` text,
2317   `Objectives_loc6` text,
2318   `Objectives_loc7` text,
2319   `Objectives_loc8` text,
2320   `OfferRewardText_loc1` text,
2321   `OfferRewardText_loc2` text,
2322   `OfferRewardText_loc3` text,
2323   `OfferRewardText_loc4` text,
2324   `OfferRewardText_loc5` text,
2325   `OfferRewardText_loc6` text,
2326   `OfferRewardText_loc7` text,
2327   `OfferRewardText_loc8` text,
2328   `RequestItemsText_loc1` text,
2329   `RequestItemsText_loc2` text,
2330   `RequestItemsText_loc3` text,
2331   `RequestItemsText_loc4` text,
2332   `RequestItemsText_loc5` text,
2333   `RequestItemsText_loc6` text,
2334   `RequestItemsText_loc7` text,
2335   `RequestItemsText_loc8` text,
2336   `EndText_loc1` text,
2337   `EndText_loc2` text,
2338   `EndText_loc3` text,
2339   `EndText_loc4` text,
2340   `EndText_loc5` text,
2341   `EndText_loc6` text,
2342   `EndText_loc7` text,
2343   `EndText_loc8` text,
2344   `ObjectiveText1_loc1` text,
2345   `ObjectiveText1_loc2` text,
2346   `ObjectiveText1_loc3` text,
2347   `ObjectiveText1_loc4` text,
2348   `ObjectiveText1_loc5` text,
2349   `ObjectiveText1_loc6` text,
2350   `ObjectiveText1_loc7` text,
2351   `ObjectiveText1_loc8` text,
2352   `ObjectiveText2_loc1` text,
2353   `ObjectiveText2_loc2` text,
2354   `ObjectiveText2_loc3` text,
2355   `ObjectiveText2_loc4` text,
2356   `ObjectiveText2_loc5` text,
2357   `ObjectiveText2_loc6` text,
2358   `ObjectiveText2_loc7` text,
2359   `ObjectiveText2_loc8` text,
2360   `ObjectiveText3_loc1` text,
2361   `ObjectiveText3_loc2` text,
2362   `ObjectiveText3_loc3` text,
2363   `ObjectiveText3_loc4` text,
2364   `ObjectiveText3_loc5` text,
2365   `ObjectiveText3_loc6` text,
2366   `ObjectiveText3_loc7` text,
2367   `ObjectiveText3_loc8` text,
2368   `ObjectiveText4_loc1` text,
2369   `ObjectiveText4_loc2` text,
2370   `ObjectiveText4_loc3` text,
2371   `ObjectiveText4_loc4` text,
2372   `ObjectiveText4_loc5` text,
2373   `ObjectiveText4_loc6` text,
2374   `ObjectiveText4_loc7` text,
2375   `ObjectiveText4_loc8` text,
2376   PRIMARY KEY  (`entry`)
2377 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2380 -- Dumping data for table `locales_quest`
2383 LOCK TABLES `locales_quest` WRITE;
2384 /*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
2385 /*!40000 ALTER TABLE `locales_quest` ENABLE KEYS */;
2386 UNLOCK TABLES;
2389 -- Table structure for table `mangos_string`
2392 DROP TABLE IF EXISTS `mangos_string`;
2393 CREATE TABLE `mangos_string` (
2394   `entry` mediumint(8) unsigned NOT NULL default '0',
2395   `content_default` text NOT NULL,
2396   `content_loc1` text,
2397   `content_loc2` text,
2398   `content_loc3` text,
2399   `content_loc4` text,
2400   `content_loc5` text,
2401   `content_loc6` text,
2402   `content_loc7` text,
2403   `content_loc8` text,
2404   PRIMARY KEY  (`entry`)
2405 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2408 -- Dumping data for table `mangos_string`
2411 LOCK TABLES `mangos_string` WRITE;
2412 /*!40000 ALTER TABLE `mangos_string` DISABLE KEYS */;
2413 INSERT INTO `mangos_string` VALUES
2414 (1,'You should select a character or a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2415 (2,'You should select a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2416 (3,'|cffff0000[System Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2417 (4,'|cffff0000[Event Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2418 (5,'There is no help for that command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2419 (6,'There is no such command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2420 (7,'There is no such subcommand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2421 (8,'Command %s have subcommands:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2422 (9,'Commands available to you:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2423 (10,'Incorrect syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2424 (11,'Your account level is: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2425 (12,'Online players: %u (max: %u) Queued players: %u (max: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2426 (13,'Server uptime: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2427 (14,'Player saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2428 (15,'All players saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2429 (16,'There are the following active GMs on this server:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2430 (17,'There are no GMs currently logged in on this server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2431 (18,'Cannot do that while flying.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2432 (19,'Cannot do that in Battlegrounds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2433 (20,'Target is flying you can\'t do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2434 (21,'%s is flying command failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2435 (22,'You are not mounted so you can\'t dismount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2436 (23,'Cannot do that while fighting.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2437 (24,'You used it recently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2438 (25,'Password not changed (unknown error)!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2439 (26,'The password was changed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2440 (27,'The new passwords do not match or the old password is wrong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2441 (28,'Your account is now locked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2442 (29,'Your account is now unlocked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2443 (30,', rank ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2444 (31,' [known]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2445 (32,' [learn]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2446 (33,' [passive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2447 (34,' [talent]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2448 (35,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2449 (36,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2450 (37,' (offline)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2451 (38,'on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2452 (39,'off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2453 (40,'You are: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2454 (41,'visible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2455 (42,'invisible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2456 (43,'done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2457 (44,'You',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2458 (45,' <unknown> ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2459 (46,'<error>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2460 (47,'<non-existing character>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2461 (48,'UNKNOWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2462 (49,'You must be at least level %u to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2463 (50,'You must be at least level %u and have item %s to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2464 (51,'Hello! Ready for some training?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2465 (52,'Invaid item count (%u) for item %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2466 (53,'Mail can\'t have more %u item stacks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2467 (54,'The new passwords do not match',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2468 (55,'Your password can\'t be longer than 16 characters (client limit), password not changed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2469 (56,'Current Message of the day: \r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2470 (57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2471 (58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2472 (59,'Using creature EventAI: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2473 (100,'Global notify: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2474 (101,'Map: %u (%s) Zone: %u (%s) Area: %u (%s) Phase: %u\nX: %f Y: %f Z: %f Orientation: %f\ngrid[%u,%u]cell[%u,%u] InstanceID: %u\n ZoneX: %f ZoneY: %f\nGroundZ: %f FloorZ: %f Have height data (Map: %u VMap: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2475 (102,'%s is already being teleported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2476 (103,'You can summon a player to your instance only if he is in your party with you as leader.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2477 (104,'You cannot go to the player\'s instance because you are in a party now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2478 (105,'You can go to the player\'s instance while not being in his party only if your GM mode is on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2479 (106,'You can not go to player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2480 (107,'You can not summon player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2481 (108,'You are summoning %s%s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2482 (109,'You are being summoned by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2483 (110,'You are teleporting %s%s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2484 (111,'You are being teleported by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2485 (112,'Player (%s) does not exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2486 (113,'Appearing at %s\'s location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2487 (114,'%s is appearing to your location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2488 (115,'Incorrect values.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2489 (116,'No character selected.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2490 (117,'%s is not in a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2491 (118,'You changed HP of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2492 (119,'%s changed your HP to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2493 (120,'You changed MANA of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2494 (121,'%s changed your MANA to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2495 (122,'You changed ENERGY of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2496 (123,'%s changed your ENERGY to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2497 (124,'Current energy: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2498 (125,'You changed rage of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2499 (126,'%s changed your rage to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2500 (127,'You changed level of %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2501 (128,'GUID %i, faction is %i, flags is %i, npcflag is %i, DY flag is %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2502 (129,'Wrong faction: %u (not found in factiontemplate.dbc).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2503 (130,'You changed GUID=%i \'s Faction to %i, flags to %i, npcflag to %i, dyflag to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2504 (131,'You changed the spellflatid=%i, val= %i, mark =%i to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2505 (132,'%s changed your spellflatid=%i, val= %i, mark =%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2506 (133,'%s has access to all taxi nodes now (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2507 (134,'%s has no more access to all taxi nodes now (only visited accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2508 (135,'%s has given you access to all taxi nodes (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2509 (136,'%s has removed access to all taxi nodes (only visited still accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2510 (137,'You set all speeds to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2511 (138,'%s set all your speeds to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2512 (139,'You set the speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2513 (140,'%s set your speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2514 (141,'You set the swim speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2515 (142,'%s set your swim speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2516 (143,'You set the backwards run speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2517 (144,'%s set your backwards run speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2518 (145,'You set the fly speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2519 (146,'%s set your fly speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2520 (147,'You set the size %2.2f of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2521 (148,'%s set your size to %2.2f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2522 (149,'There is no such mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2523 (150,'You give a mount to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2524 (151,'%s gave you a mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2525 (152,'USER1: %i, ADD: %i, DIF: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2526 (153,'You take all copper of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2527 (154,'%s took you all of your copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2528 (155,'You take %i copper from %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2529 (156,'%s took %i copper from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2530 (157,'You give %i copper to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2531 (158,'%s gave you %i copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2532 (159,'You hear sound %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2533 (160,'USER2: %i, ADD: %i, RESULT: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2534 (161,'Removed bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2535 (162,'Set bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2536 (163,'Teleport location table is empty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2537 (164,'Teleport location not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2538 (165,'Requires search parameter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2539 (166,'There are no teleport locations matching your request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2540 (168,'Locations found are:\n %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2541 (169,'Mail sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2542 (170,'You try to hear sound %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2543 (172,'server console command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2544 (173,'You changed runic power of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2545 (174,'%s changed your runic power to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2546 (175,'Liquid level: %f, ground: %f, type: %d, status: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2547 (200,'No selection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2548 (201,'Object GUID is: lowpart %u highpart %X',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2549 (202,'The name was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2550 (203,'Error, name can only contain characters A-Z and a-z.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2551 (204,'The subname was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2552 (205,'Not yet implemented',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2553 (206,'Item \'%i\' \'%s\' added to list with maxcount \'%i\' and incrtime \'%i\' and extendedcost \'%i\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2554 (207,'Item \'%i\' not found in database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2555 (208,'Item \'%i\' \'%s\' deleted from vendor list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2556 (209,'Item \'%i\' not found in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2557 (210,'Item \'%i\' already in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2558 (211,'Spells of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2559 (212,'Spells of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2560 (213,'Talents of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2561 (214,'Talents of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2562 (215,'Your spells have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2563 (216,'Your talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2564 (217,'Unknown case \'%s\' for .resetall command. Type full correct case name.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2565 (218,'Spells will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2566 (219,'Talents will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2567 (220,'Creature (GUID: %u) No waypoint found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2568 (221,'Creature (GUID: %u) Last waypoint not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2569 (222,'Creature (GUID: %u) No waypoint found - used \'wpguid\'. Now trying to find it by its position...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2570 (223,'Creature (GUID: %u) No waypoints found - This is a MaNGOS db problem (single float).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2571 (224,'Selected creature is ignored - provided GUID is used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2572 (225,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2573 (226,'You must select a visual waypoint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2574 (227,'No visual waypoints found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2575 (228,'Could not create visual waypoint with creatureID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2576 (229,'All visual waypoints removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2577 (230,'Could not create waypoint-creature with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2578 (231,'No GUID provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2579 (232,'No waypoint number provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2580 (233,'Argument required for \'%s\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2581 (234,'Waypoint %i added to GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2582 (235,'Waypoint %d added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2583 (236,'Waypoint changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2584 (237,'Waypoint %s modified.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2585 (238,'WP export successfull.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2586 (239,'No waypoints found inside the database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2587 (240,'File imported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2588 (241,'Waypoint removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2589 (242,'Warning: Could not delete WP from the world with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2590 (243,'This happens if the waypoint is too far away from your char.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2591 (244,'The WP is deleted from the database, but not from the world here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2592 (245,'They will disappear after a server restart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2593 (246,'Waypoint %d: Info for creature: %s, GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2594 (247,'Waittime: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2595 (248,'Model %d: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2596 (249,'Emote: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2597 (250,'Spell: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2598 (251,'Text%d (ID: %i): %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2599 (252,'AIScript: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2600 (253,'Forced rename for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2601 (254,'Forced rename for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2602 (255,'Waypoint-Creature (GUID: %u) Not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2603 (256,'Could not find NPC...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2604 (257,'Creature movement type set to \'%s\', waypoints removed (if any).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2605 (258,'Creature movement type set to \'%s\', waypoints were not removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2606 (259,'Incorrect value, use on or off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2607 (260,'Value saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2608 (261,'Value saved, you may need to rejoin or clean your client cache.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2609 (262,'Areatrigger ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2610 (263,'Target map or coordinates is invalid (X: %f Y: %f MapId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2611 (264,'Zone coordinates is invalid (X: %f Y: %f AreaId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2612 (265,'Zone %u (%s) is part of instanceable map %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2613 (266,'Nothing found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2614 (267,'Object not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2615 (268,'Creature not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2616 (269,'Warning: Mob found more than once - you will be teleported to the first one found in DB.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2617 (270,'Creature Removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2618 (271,'Creature moved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2619 (272,'Creature (GUID:%u) must be on the same map as player!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2620 (273,'Game Object (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2621 (274,'Game Object (GUID: %u) has references in not found creature %u GO list, can\'t be deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2622 (275,'Game Object (GUID: %u) removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2623 (276,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) turned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2624 (277,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) moved',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2625 (278,'You must select a vendor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2626 (279,'You must send id for item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2627 (280,'Vendor has too many items (max 128)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2628 (281,'You can\'t kick self, logout instead',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2629 (282,'Player %s kicked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2630 (283,'Player %s not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2631 (284,'Accepting Whisper: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2632 (285,'Accepting Whisper: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2633 (286,'Accepting Whisper: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2634 (287,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2635 (288,'Tickets count: %i show new tickets: %s\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2636 (289,'New ticket from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2637 (290,'Ticket of %s (Last updated: %s):\n%s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2638 (291,'New ticket show: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2639 (292,'New ticket show: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2640 (293,'Ticket %i doesn\'t exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2641 (294,'All tickets deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2642 (295,'Character %s ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2643 (296,'Ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2644 (297,'Spawn distance changed to: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2645 (298,'Spawn time changed to: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2646 (299,'The honor of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2647 (300,'Your chat has been disabled for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2648 (301,'You have disabled %s\'s chat for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2649 (302,'Player\'s chat is already enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2650 (303,'Your chat has been enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2651 (304,'You have enabled %s\'s chat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2652 (305, 'Faction %s (%u) reputation of %s was set to %5d!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2653 (306, 'The arena points of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2654 (307, 'No faction found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2655 (308, 'Faction %i unknown!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2656 (309, 'Invalid parameter %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2657 (310, 'delta must be between 0 and %d (inclusive)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2658 (311, '%d - |cffffffff|Hfaction:%d|h[%s]|h|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2659 (312, ' [visible]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2660 (313, ' [at war]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2661 (314, ' [peace forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2662 (315, ' [hidden]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2663 (316, ' [invisible forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2664 (317, ' [inactive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2665 (318, 'Hated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2666 (319, 'Hostile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2667 (320, 'Unfriendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2668 (321, 'Neutral',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2669 (322, 'Friendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2670 (323, 'Honored',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2671 (324, 'Revered',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2672 (325, 'Exalted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2673 (326, 'Faction %s (%u) can\'not have reputation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2674 (327, ' [no reputation]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2675 (328,'Characters at account %s (Id: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2676 (329,'  %s (GUID %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2677 (330,'No players found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2678 (331,'Extended item cost %u not exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2679 (332,'GM mode is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2680 (333,'GM mode is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2681 (334,'GM Chat Badge is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2682 (335,'GM Chat Badge is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2683 (336,'You repair all %s''s items.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2684 (337,'All your items repaired by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2685 (338,'You set waterwalk mode %s for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2686 (339,'Your waterwalk mode %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2687 (340,'%s is now following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2688 (341,'%s is not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2689 (342,'%s is now not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2690 (343,'Creature (Entry: %u) cannot be tamed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2691 (344,'You already have pet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2692 (345,'Forced customize for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2693 (346,'Forced customize for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2694 (347,'TaxiNode ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2695 (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2696 (401,'You change security level of account %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2697 (402,'%s changed your security level to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2698 (403,'You have low security level for this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2699 (404,'Creature movement disabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2700 (405,'Creature movement enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2701 (406,'Weather can\'t be changed for this zone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2702 (407,'Weather system disabled at server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2703 (408,'%s is banned for %s. Reason: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2704 (409,'%s is banned permanently for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2705 (410,'%s %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2706 (411,'%s unbanned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2707 (412,'There was an error removing the ban on %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2708 (413,'Account not exist: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2709 (414,'There is no such character.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2710 (415,'There is no such IP in banlist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2711 (416,'Account %s has never been banned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2712 (417,'Ban history for account %s:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2713 (418,'Ban Date: %s Bantime: %s Still active: %s  Reason: %s Set by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2714 (419,'Inf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2715 (420,'Never',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2716 (421,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2717 (422,'No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2718 (423,'IP: %s\nBan Date: %s\nUnban Date: %s\nRemaining: %s\nReason: %s\nSet by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2719 (424,'There is no matching IPban.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2720 (425,'There is no matching account.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2721 (426,'There is no banned account owning a character matching this part.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2722 (427,'The following IPs match your pattern:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2723 (428,'The following accounts match your query:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2724 (429,'You learned many spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2725 (430,'You learned all spells for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2726 (431,'You learned all talents for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2727 (432,'You learned all languages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2728 (433,'You learned all craft skills and recipes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2729 (434,'Could not find \'%s\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2730 (435,'Invalid item id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2731 (436,'No items found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2732 (437,'Invalid gameobject id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2733 (438,'Found items %u: %u ( inventory %u mail %u auction %u guild %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2734 (439,'Found gameobjects %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2735 (440,'Invalid creature id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2736 (441,'Found creatures %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2737 (442,'No area found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2738 (443,'No item sets found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2739 (444,'No skills found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2740 (445,'No spells found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2741 (446,'No quests found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2742 (447,'No creatures found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2743 (448,'No gameobjects found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2744 (449,'Graveyard #%u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2745 (450,'Graveyard #%u already linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2746 (451,'Graveyard #%u linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2747 (452,'Graveyard #%u can\'t be linked to subzone or not existed zone #%u (internal error).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2748 (454,'No faction in Graveyard with id= #%u , fix your DB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2749 (455,'invalid team, please fix database',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2750 (456,'any',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2751 (457,'alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2752 (458,'horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2753 (459,'Graveyard #%u (faction: %s) is nearest from linked to zone #%u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2754 (460,'Zone #%u doesn\'t have linked graveyards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2755 (461,'Zone #%u doesn\'t have linked graveyards for faction: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2756 (462,'Teleport location already exists!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2757 (463,'Teleport location added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2758 (464,'Teleport location NOT added: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2759 (465,'Teleport location deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2760 (466,'No taxinodes found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2761 (467,'Target unit has %d auras:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2762 (468,'id: %d eff: %d type: %d duration: %d maxduration: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2763 (469,'Target unit has %d auras of type %d:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2764 (470,'id: %d eff: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2765 (471,'Quest %u not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2766 (472,'Quest %u started from item. For correct work, please, add item to inventory and start quest in normal way: .additem %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2767 (473,'Quest removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2768 (474,' [rewarded]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2769 (475,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2770 (476,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2771 (477,'%s\'s Fly Mode %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2772 (478,'Opcode %u sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2773 (479,'Character loaded successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2774 (480,'Failed to load the character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2775 (481,'Character dumped successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2776 (482,'Character dump failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2777 (483,'Spell %u broken and not allowed to cast or learn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2778 (484,'Skill %u (%s) for player %s set to %u and current maximum set to %u (without permanent (talent) bonuses).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2779 (485,'Player %s must have skill %u (%s) before using this command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2780 (486,'Invalid skill id (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2781 (487,'You learned default GM spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2782 (488,'You already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2783 (489,'Target(%s) already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2784 (490,'%s doesn\'t know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2785 (491,'You already forgot that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2786 (492,'All spell cooldowns removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2787 (493,'Spell %u cooldown removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2788 (494,'Command : Additem, itemId = %i, amount = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2789 (495,'Command : Additemset, itemsetId = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2790 (496,'Removed itemID = %i, amount = %i from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2791 (497,'Cannot create item \'%i\' (amount: %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2792 (498,'You need to provide a guild name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2793 (499,'Player not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2794 (500,'Player already has a guild!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2795 (501,'Guild not created! (already exists?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2796 (502,'No items from itemset \'%u\' found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2797 (503,'The distance is: (3D) %f (2D) %f yards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2798 (504,'Item \'%i\' \'%s\' Item Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2799 (505,'Item \'%i\' doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2800 (506,'Item \'%i\' \'%s\' Added to Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2801 (507,'Item save failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2802 (508,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2803 (509,'%d - sender: %s (guid: %u account: %u ) receiver: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2804 (510,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2805 (511,'Wrong link type!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2806 (512,'%d - |cffffffff|Hitem:%d:0:0:0:0:0:0:0|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2807 (513,'%d - |cffffffff|Hquest:%d|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2808 (514,'%d - |cffffffff|Hcreature_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2809 (515,'%d - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2810 (516,'%d - |cffffffff|Hgameobject_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2811 (517,'%d - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2812 (518,'%d - |cffffffff|Hitemset:%d|h[%s %s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2813 (519,'|cffffffff|Htele:%s|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2814 (520,'%d - |cffffffff|Hspell:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2815 (521,'%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2816 (522,'Game Object (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2817 (523,'>> Game Object %s (GUID: %u) at %f %f %f. Orientation %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2818 (524,'Selected object:\n|cffffffff|Hgameobject:%d|h[%s]|h|r GUID: %u ID: %u\nX: %f Y: %f Z: %f MapId: %u\nOrientation: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2819 (525,'>> Add Game Object \'%i\' (%s) (GUID: %i) added at \'%f %f %f\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2820 (526,'%s (lowguid: %u) movement generators stack:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2821 (527,'   Idle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2822 (528,'   Random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2823 (529,'   Waypoint',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2824 (530,'   Animal random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2825 (531,'   Confused',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2826 (532,'   Targeted to player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2827 (533,'   Targeted to creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2828 (534,'   Targeted to <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2829 (535,'   Home movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2830 (536,'   Home movement used for player?!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2831 (537,'   Taxi flight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2832 (538,'   Unknown movement generator (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2833 (539,'Player selected NPC\nGUID: %u.\nFaction: %u.\nnpcFlags: %u.\nEntry: %u.\nDisplayID: %u (Native: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2834 (540,'Level: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2835 (541,'Health (base): %u. (max): %u. (current): %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2836 (542,'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2837 (543,'Loot: %u Pickpocket: %u Skinning: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2838 (544,'Position: %f %f %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2839 (545,'*** Is a vendor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2840 (546,'*** Is a trainer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2841 (547,'InstanceID: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2842 (548,'Player%s %s (guid: %u) Account: %s (id: %u) GMLevel: %u Last IP: %s Last login: %s Latency: %ums',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2843 (549,'Played time: %s Level: %u Money: %ug%us%uc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2844 (550,'Command .pinfo doesn\'t support \'rep\' option for offline players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2845 (551,'%s has explored all zones now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2846 (552,'%s has no more explored zones.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2847 (553,'%s has explored all zones for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2848 (554,'%s has hidden all zones from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2849 (555,'Hover enabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2850 (556,'Hover disabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2851 (557,'%s level up you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2852 (558,'%s level down you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2853 (559,'%s reset your level progress.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2854 (560,'The area has been set as explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2855 (561,'The area has been set as not explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2856 (562,'GUID=%i \'s updateIndex: %i, value:  %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2857 (563,'You change GUID=%i \'s UpdateIndex: %i value to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2858 (564,'The value index %u is too big to %u(count: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2859 (565,'Set %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2860 (566,'You Set %u Field:%u to uint32 Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2861 (567,'Set %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2862 (568,'You Set %u Field:%i to float Value: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2863 (569,'Get %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2864 (570,'The uint32 value of %u in %u is: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2865 (571,'Get %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2866 (572,'The float of %u value in %u is: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2867 (573,'.Set32Bit:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2868 (574,'You set Bit of Field:%u to Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2869 (575,'.Mod32Value:[OPCODE]:%u [VALUE]:%i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2870 (576,'You modified the value of Field:%u to Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2871 (577,'You are now invisible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2872 (578,'You are now visible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2873 (579,'Selected player or creature not have victim.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2874 (580,'You learned all default spells for race/class and completed quests rewarded spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2875 (581,'Found near gameobjects (distance %f): %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2876 (582,'SpawnTime: Full:%s Remain:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2877 (583,'%d - |cffffffff|Hgameevent:%d|h[%s]|h|r%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2878 (584,'No event found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2879 (585,'Event not exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2880 (586,'Event %u: %s%s\nStart: %s End: %s Occurence: %s Length: %s\nNext state change: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2881 (587,'Event %u already active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2882 (588,'Event %u not active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2883 (589,'   Point movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2884 (590,'   Fear movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2885 (591,'   Distract movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2886 (592,'You have learned all spells in craft: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2887 (593,'Currently Banned Accounts:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2888 (594,'|    Account    |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2889 (595,'Currently Banned IPs:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2890 (596,'|      IP       |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2891 (597,'Current gamemasters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2892 (598,'|    Account    |  GM  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2893 (599,'No gamemasters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2894 (600,'The Alliance wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2895 (601,'The Horde wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2896 (602,'The battle for Warsong Gulch begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2897 (603,'The battle for Warsong Gulch begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2898 (604,'Let the battle for Warsong Gulch begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2899 (605,'$n captured the Horde flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2900 (606,'$n captured the Alliance flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2901 (607,'The Horde flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2902 (608,'The Alliance Flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2903 (609,'The Alliance Flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2904 (610,'The Horde flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2905 (611,'The Horde flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2906 (612,'The Alliance Flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2907 (613,'The flags are now placed at their bases.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2908 (614,'The Alliance flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2909 (615,'The Horde flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2910 (636,'The battle begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2911 (637,'The battle begins in 30 seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2912 (638,'The battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2913 (650,'Alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2914 (651,'Horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2915 (652,'stables',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2916 (653,'blacksmith',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2917 (654,'farm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2918 (655,'lumber mill',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2919 (656,'mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2920 (657,'The %s has taken the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2921 (658,'$n has defended the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2922 (659,'$n has assaulted the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2923 (660,'$n claims the %s! If left unchallenged, the %s will control it in 1 minute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2924 (661,'The battle for Arathi Basin begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2925 (662,'The battle for Arathi Basin begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2926 (663,'The battle for Arathi Basin has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2927 (664,'The Alliance has gathered $1776W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2928 (665,'The Horde has gathered $1777W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2929 (666,'After your recent battle in %s our best attempts to award you a Mark of Honor failed. Enclosed you will find the Mark of Honor we were not able to deliver to you at the time. Thanks for fighting in %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2930 (667,'The Alliance has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2931 (668,'The Horde has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2932 (669,'The Alliance has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2933 (670,'The Horde has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2934 (671,'The Alliance has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2935 (672,'The Horde has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2936 (673,'The Alliance has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2937 (674,'The Horde has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2938 (675,'The Alliance has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2939 (676,'The Horde has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2940 (677,'The Alliance has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2941 (678,'The Horde has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2942 (679,'The Alliance has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2943 (680,'The Horde has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2944 (681,'The Alliance has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2945 (682,'The Horde has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2946 (683,'%s has taken the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2947 (684,'The Alliance have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2948 (685,'The Horde have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2949 (686,'The flag has been dropped.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2950 (687,'The flag has been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2951 (700,'You must be level %u to form an arena team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2952 (701,'One minute until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2953 (702,'Thirty seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2954 (703,'Fifteen seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2955 (704,'The Arena battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2956 (705,'You must wait %s before speaking again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2957 (706,'This item(s) have problems with equipping/storing in inventory.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2958 (707,'%s wishes to not be disturbed and cannot receive whisper messages: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2959 (708,'%s is Away from Keyboard: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2960 (709,'Do not Disturb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2961 (710,'Away from Keyboard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2962 (711,'Queue status for %s (Lvl: %u to %u)\nQueued alliances: %u (Need at least %u more)\nQueued hordes: %u (Need at least %u more)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2963 (712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2964 (713,'You must be level %u to join an arena team!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2965 (714,'%s is not high enough level to join your team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2966 (715,'You don\'t meet Battleground level requirements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2967 (716,'Your arena team is full, %s cannot join it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2968 (717,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] Started!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2969 (718,'|cffff0000[Arena Queue Announcer]:|r %s -- Joined : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2970 (719,'|cffff0000[Arena Queue Announcer]:|r %s -- Exited : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2971 (720,'Your group is too large for this battleground. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2972 (721,'Your group is too large for this arena. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2973 (722,'Your group has members not in your arena team. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2974 (723,'Your group does not have enough players to join this match.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2975 (724,'The Gold Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2976 (725,'The Green Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2977 (727,'Your group has an offline member. Please remove him before joining.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2978 (728,'Your group has players from the opposing faction. You can\'t join the battleground as a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2979 (729,'Your group has players from different battleground brakets. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2980 (730,'Someone in your party is already in this battleground queue. (S)he must leave it before joining as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2981 (731,'Someone in your party is Deserter. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2982 (732,'Someone in your party is already in three battleground queues. You cannot join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2983 (733,'You cannot teleport to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2984 (734,'You cannot summon players to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2985 (735,'You must be in GM mode to teleport to a player in a battleground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2986 (736,'You cannot teleport to a battleground from another battleground. Please leave the current battleground first.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2987 (737,'Arenas are set to 1v1 for debugging. So, don\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2988 (738,'Arenas are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2989 (739,'Battlegrounds are set to 1v0 for debugging.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2990 (740,'Battlegrounds are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2991 (741,'Flushing Arena points based on team ratings, this may take a few minutes. Please stand by...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2992 (742,'Distributing arena points to players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2993 (743,'Finished setting arena points for online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2994 (744,'Modifying played count, arena points etc. for loaded arena teams, sending updated stats to online players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2995 (745,'Modification done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2996 (746,'Done flushing Arena points.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2997 (750,'Not enough players. This game will close in %u mins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2998 (751,'Not enough players. This game will close in %u seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2999 (753,'The battle for Warsong Gulch begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3000 (754,'The battle for Arathi Basin begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3001 (755,'The battle begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3002 (801,'You do not have enough gold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3003 (802,'You do not have enough free slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3004 (803,'Your partner does not have enough free bag slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3005 (804,'You do not have permission to perform that function',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3006 (805,'Unknown language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3007 (806,'You don\'t know that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3008 (807,'Please provide character name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3009 (808,'Player %s not found or offline',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3010 (809,'Account for character %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3011 (810,'|Hplayer:$N|h[$N]|h has earned the achievement $a!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3012 (811,'Guild Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3013 (812,'Officer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3014 (813,'Veteran',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3015 (814,'Member',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3016 (815,'Initiate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3017 (1000,'Exiting daemon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3018 (1001,'Account deleted: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3019 (1002,'Account %s NOT deleted (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3020 (1003,'Account %s NOT deleted (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3021 (1004,'Account created: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3022 (1005,'Account name can\'t be longer than 16 characters (client limit), account not created!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3023 (1006,'Account with this name already exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3024 (1007,'Account %s NOT created (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3025 (1008,'Account %s NOT created (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3026 (1009,'Player %s (Guid: %u) Account %s (Id: %u) deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3027 (1010,'|    Account    |       Character      |       IP        | GM | Expansion |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3028 (1011,'|<Error>        | %20s |<Error>          |<Er>| <Error>   |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3029 (1012,'===========================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3030 (1013,'|%15s| %20s | %15s |%4d| %9d |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3031 (1014,'No online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3032 (1100,'Account %s (Id: %u) have up to %u expansion allowed now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3033 (1101,'Message of the day changed to:\r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3034 (1102,'Message sent to %s: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3035 (1103,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3036 (1104,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3037 (1105,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3038 (1106,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3039 (1107,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3040 (1108,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3041 (1109,'%d - %s %s %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3042 (1110,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3043 (1111,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3044 (1112,'Failed to open file: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3045 (1113,'Account %s (%u) have max amount allowed characters (client limit)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3046 (1114,'Dump file have broken data!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3047 (1115,'Invalid character name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3048 (1116,'Invalid character guid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3049 (1117,'Character guid %u in use!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3050 (1118,'%d - guild: %s (guid: %u) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3051 (1119,'You must use male or female as gender.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3052 (1120,'You change gender of %s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3053 (1121,'Your gender changed to %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3054 (1122,'(%u/%u +perm %u +temp %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3055 (1123,'Not pet found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3056 (1124,'Wrong pet type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3057 (1125,'Your pet learned all talents',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3058 (1126,'Your pet talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3059 (1127,'Talents of %s\'s pet reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3060 (1128,'%d - |cffffffff|Htaxinode:%u|h[%s %s]|h|r (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3061 (1129,'%d - %s %s (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3062 (1200,'You try to view cinemitic %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3063 (1201,'You try to view movie %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3064 /*!40000 ALTER TABLE `mangos_string` ENABLE KEYS */;
3065 UNLOCK TABLES;
3068 -- Table structure for table `milling_loot_template`
3071 DROP TABLE IF EXISTS `milling_loot_template`;
3072 CREATE TABLE `milling_loot_template` (
3073   `entry` mediumint(8) unsigned NOT NULL default '0',
3074   `item` mediumint(8) unsigned NOT NULL default '0',
3075   `ChanceOrQuestChance` float NOT NULL default '100',
3076   `groupid` tinyint(3) unsigned NOT NULL default '0',
3077   `mincountOrRef` mediumint(9) NOT NULL default '1',
3078   `maxcount` tinyint(3) unsigned NOT NULL default '1',
3079   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
3080   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
3081   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
3082   PRIMARY KEY  (`entry`,`item`)
3083 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3086 -- Dumping data for table `milling_loot_template`
3089 LOCK TABLES `milling_loot_template` WRITE;
3090 /*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
3091 /*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */;
3092 UNLOCK TABLES;
3095 -- Table structure for table `npc_gossip`
3098 DROP TABLE IF EXISTS `npc_gossip`;
3099 CREATE TABLE `npc_gossip` (
3100   `npc_guid` int(10) unsigned NOT NULL default '0',
3101   `textid` mediumint(8) unsigned NOT NULL default '0',
3102   PRIMARY KEY  (`npc_guid`)
3103 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3106 -- Dumping data for table `npc_gossip`
3109 LOCK TABLES `npc_gossip` WRITE;
3110 /*!40000 ALTER TABLE `npc_gossip` DISABLE KEYS */;
3111 /*!40000 ALTER TABLE `npc_gossip` ENABLE KEYS */;
3112 UNLOCK TABLES;
3115 -- Table structure for table `npc_gossip_textid`
3118 DROP TABLE IF EXISTS `npc_gossip_textid`;
3119 CREATE TABLE `npc_gossip_textid` (
3120   `zoneid` smallint(5) unsigned NOT NULL default '0',
3121   `action` smallint(5) unsigned NOT NULL default '0',
3122   `textid` mediumint(8) unsigned NOT NULL default '0',
3123   KEY `zoneid` (`zoneid`)
3124 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3127 -- Dumping data for table `npc_gossip_textid`
3130 LOCK TABLES `npc_gossip_textid` WRITE;
3131 /*!40000 ALTER TABLE `npc_gossip_textid` DISABLE KEYS */;
3132 /*!40000 ALTER TABLE `npc_gossip_textid` ENABLE KEYS */;
3133 UNLOCK TABLES;
3136 -- Table structure for table `npc_option`
3139 DROP TABLE IF EXISTS `npc_option`;
3140 CREATE TABLE `npc_option` (
3141   `id` mediumint(8) unsigned NOT NULL default '0',
3142   `gossip_id` mediumint(8) unsigned NOT NULL default '0',
3143   `npcflag` int(10) unsigned NOT NULL default '0',
3144   `icon` tinyint(3) unsigned NOT NULL default '0',
3145   `action` mediumint(8) unsigned NOT NULL default '0',
3146   `box_money` int(10) unsigned NOT NULL default '0',
3147   `coded` tinyint(3) unsigned NOT NULL default '0',
3148   `option_text` text,
3149   `box_text` text,
3150   PRIMARY KEY  (`id`)
3151 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3154 -- Dumping data for table `npc_option`
3157 LOCK TABLES `npc_option` WRITE;
3158 /*!40000 ALTER TABLE `npc_option` DISABLE KEYS */;
3159 /*!40000 ALTER TABLE `npc_option` ENABLE KEYS */;
3160 UNLOCK TABLES;
3163 -- Table structure for table `npc_text`
3166 DROP TABLE IF EXISTS `npc_text`;
3167 CREATE TABLE `npc_text` (
3168   `ID` mediumint(8) unsigned NOT NULL default '0',
3169   `text0_0` longtext,
3170   `text0_1` longtext,
3171   `lang0` tinyint(3) unsigned NOT NULL default '0',
3172   `prob0` float NOT NULL default '0',
3173   `em0_0` smallint(5) unsigned NOT NULL default '0',
3174   `em0_1` smallint(5) unsigned NOT NULL default '0',
3175   `em0_2` smallint(5) unsigned NOT NULL default '0',
3176   `em0_3` smallint(5) unsigned NOT NULL default '0',
3177   `em0_4` smallint(5) unsigned NOT NULL default '0',
3178   `em0_5` smallint(5) unsigned NOT NULL default '0',
3179   `text1_0` longtext,
3180   `text1_1` longtext,
3181   `lang1` tinyint(3) unsigned NOT NULL default '0',
3182   `prob1` float NOT NULL default '0',
3183   `em1_0` smallint(5) unsigned NOT NULL default '0',
3184   `em1_1` smallint(5) unsigned NOT NULL default '0',
3185   `em1_2` smallint(5) unsigned NOT NULL default '0',
3186   `em1_3` smallint(5) unsigned NOT NULL default '0',
3187   `em1_4` smallint(5) unsigned NOT NULL default '0',
3188   `em1_5` smallint(5) unsigned NOT NULL default '0',
3189   `text2_0` longtext,
3190   `text2_1` longtext,
3191   `lang2` tinyint(3) unsigned NOT NULL default '0',
3192   `prob2` float NOT NULL default '0',
3193   `em2_0` smallint(5) unsigned NOT NULL default '0',
3194   `em2_1` smallint(5) unsigned NOT NULL default '0',
3195   `em2_2` smallint(5) unsigned NOT NULL default '0',
3196   `em2_3` smallint(5) unsigned NOT NULL default '0',
3197   `em2_4` smallint(5) unsigned NOT NULL default '0',
3198   `em2_5` smallint(5) unsigned NOT NULL default '0',
3199   `text3_0` longtext,
3200   `text3_1` longtext,
3201   `lang3` tinyint(3) unsigned NOT NULL default '0',
3202   `prob3` float NOT NULL default '0',
3203   `em3_0` smallint(5) unsigned NOT NULL default '0',
3204   `em3_1` smallint(5) unsigned NOT NULL default '0',
3205   `em3_2` smallint(5) unsigned NOT NULL default '0',
3206   `em3_3` smallint(5) unsigned NOT NULL default '0',
3207   `em3_4` smallint(5) unsigned NOT NULL default '0',
3208   `em3_5` smallint(5) unsigned NOT NULL default '0',
3209   `text4_0` longtext,
3210   `text4_1` longtext,
3211   `lang4` tinyint(3) unsigned NOT NULL default '0',
3212   `prob4` float NOT NULL default '0',
3213   `em4_0` smallint(5) unsigned NOT NULL default '0',
3214   `em4_1` smallint(5) unsigned NOT NULL default '0',
3215   `em4_2` smallint(5) unsigned NOT NULL default '0',
3216   `em4_3` smallint(5) unsigned NOT NULL default '0',
3217   `em4_4` smallint(5) unsigned NOT NULL default '0',
3218   `em4_5` smallint(5) unsigned NOT NULL default '0',
3219   `text5_0` longtext,
3220   `text5_1` longtext,
3221   `lang5` tinyint(3) unsigned NOT NULL default '0',
3222   `prob5` float NOT NULL default '0',
3223   `em5_0` smallint(5) unsigned NOT NULL default '0',
3224   `em5_1` smallint(5) unsigned NOT NULL default '0',
3225   `em5_2` smallint(5) unsigned NOT NULL default '0',
3226   `em5_3` smallint(5) unsigned NOT NULL default '0',
3227   `em5_4` smallint(5) unsigned NOT NULL default '0',
3228   `em5_5` smallint(5) unsigned NOT NULL default '0',
3229   `text6_0` longtext,
3230   `text6_1` longtext,
3231   `lang6` tinyint(3) unsigned NOT NULL default '0',
3232   `prob6` float NOT NULL default '0',
3233   `em6_0` smallint(5) unsigned NOT NULL default '0',
3234   `em6_1` smallint(5) unsigned NOT NULL default '0',
3235   `em6_2` smallint(5) unsigned NOT NULL default '0',
3236   `em6_3` smallint(5) unsigned NOT NULL default '0',
3237   `em6_4` smallint(5) unsigned NOT NULL default '0',
3238   `em6_5` smallint(5) unsigned NOT NULL default '0',
3239   `text7_0` longtext,
3240   `text7_1` longtext,
3241   `lang7` tinyint(3) unsigned NOT NULL default '0',
3242   `prob7` float NOT NULL default '0',
3243   `em7_0` smallint(5) unsigned NOT NULL default '0',
3244   `em7_1` smallint(5) unsigned NOT NULL default '0',
3245   `em7_2` smallint(5) unsigned NOT NULL default '0',
3246   `em7_3` smallint(5) unsigned NOT NULL default '0',
3247   `em7_4` smallint(5) unsigned NOT NULL default '0',
3248   `em7_5` smallint(5) unsigned NOT NULL default '0',
3249   PRIMARY KEY  (`ID`)
3250 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3253 -- Dumping data for table `npc_text`
3256 LOCK TABLES `npc_text` WRITE;
3257 /*!40000 ALTER TABLE `npc_text` DISABLE KEYS */;
3258 /*!40000 ALTER TABLE `npc_text` ENABLE KEYS */;
3259 UNLOCK TABLES;
3262 -- Table structure for table `npc_trainer`
3265 DROP TABLE IF EXISTS `npc_trainer`;
3266 CREATE TABLE `npc_trainer` (
3267   `entry` mediumint(8) unsigned NOT NULL default '0',
3268   `spell` mediumint(8) unsigned NOT NULL default '0',
3269   `spellcost` int(10) unsigned NOT NULL default '0',
3270   `reqskill` smallint(5) unsigned NOT NULL default '0',
3271   `reqskillvalue` smallint(5) unsigned NOT NULL default '0',
3272   `reqlevel` tinyint(3) unsigned NOT NULL default '0',
3273   UNIQUE KEY `entry_spell` (`entry`,`spell`)
3274 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3277 -- Dumping data for table `npc_trainer`
3280 LOCK TABLES `npc_trainer` WRITE;
3281 /*!40000 ALTER TABLE `npc_trainer` DISABLE KEYS */;
3282 /*!40000 ALTER TABLE `npc_trainer` ENABLE KEYS */;
3283 UNLOCK TABLES;
3286 -- Table structure for table `npc_vendor`
3289 DROP TABLE IF EXISTS `npc_vendor`;
3290 CREATE TABLE `npc_vendor` (
3291   `entry` mediumint(8) unsigned NOT NULL default '0',
3292   `item` mediumint(8) unsigned NOT NULL default '0',
3293   `maxcount` tinyint(3) unsigned NOT NULL default '0',
3294   `incrtime` int(10) unsigned NOT NULL default '0',
3295   `ExtendedCost` mediumint(8) unsigned NOT NULL default '0',
3296   PRIMARY KEY  (`entry`,`item`)
3297 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
3300 -- Dumping data for table `npc_vendor`
3303 LOCK TABLES `npc_vendor` WRITE;
3304 /*!40000 ALTER TABLE `npc_vendor` DISABLE KEYS */;
3305 /*!40000 ALTER TABLE `npc_vendor` ENABLE KEYS */;
3306 UNLOCK TABLES;
3309 -- Table structure for table `page_text`
3312 DROP TABLE IF EXISTS `page_text`;
3313 CREATE TABLE `page_text` (
3314   `entry` mediumint(8) unsigned NOT NULL default '0',
3315   `text` longtext NOT NULL,
3316   `next_page` mediumint(8) unsigned NOT NULL default '0',
3317   PRIMARY KEY  (`entry`)
3318 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
3321 -- Dumping data for table `page_text`
3324 LOCK TABLES `page_text` WRITE;
3325 /*!40000 ALTER TABLE `page_text` DISABLE KEYS */;
3326 /*!40000 ALTER TABLE `page_text` ENABLE KEYS */;
3327 UNLOCK TABLES;
3330 -- Table structure for table `pet_levelstats`
3333 DROP TABLE IF EXISTS `pet_levelstats`;
3334 CREATE TABLE `pet_levelstats` (
3335   `creature_entry` mediumint(8) unsigned NOT NULL,
3336   `level` tinyint(3) unsigned NOT NULL,
3337   `hp` smallint(5) unsigned NOT NULL,
3338   `mana` smallint(5) unsigned NOT NULL,
3339   `armor` int(10) unsigned NOT NULL default '0',
3340   `str` smallint(5) unsigned NOT NULL,
3341   `agi` smallint(5) unsigned NOT NULL,
3342   `sta` smallint(5) unsigned NOT NULL,
3343   `inte` smallint(5) unsigned NOT NULL,
3344   `spi` smallint(5) unsigned NOT NULL,
3345   PRIMARY KEY  (`creature_entry`,`level`)
3346 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores pet levels stats.';
3349 -- Dumping data for table `pet_levelstats`
3352 LOCK TABLES `pet_levelstats` WRITE;
3353 /*!40000 ALTER TABLE `pet_levelstats` DISABLE KEYS */;
3354 /*!40000 ALTER TABLE `pet_levelstats` ENABLE KEYS */;
3355 UNLOCK TABLES;
3358 -- Table structure for table `pet_name_generation`
3361 DROP TABLE IF EXISTS `pet_name_generation`;
3362 CREATE TABLE `pet_name_generation` (
3363   `id` mediumint(8) unsigned NOT NULL auto_increment,
3364   `word` tinytext NOT NULL,
3365   `entry` mediumint(8) unsigned NOT NULL default '0',
3366   `half` tinyint(4) NOT NULL default '0',
3367   PRIMARY KEY  (`id`)
3368 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3371 -- Dumping data for table `pet_name_generation`
3374 LOCK TABLES `pet_name_generation` WRITE;
3375 /*!40000 ALTER TABLE `pet_name_generation` DISABLE KEYS */;
3376 INSERT INTO `pet_name_generation` (`word`,`entry`,`half`) VALUES
3377 ('Aba',416,0),
3378 ('Az',416,0),
3379 ('Bel',416,0),
3380 ('Biz',416,0),
3381 ('Cho',416,0),
3382 ('Dag',416,0),
3383 ('Gak',416,0),
3384 ('Gar',416,0),
3385 ('Gel',416,0),
3386 ('Gho',416,0),
3387 ('Gob',416,0),
3388 ('Gra',416,0),
3389 ('Jak',416,0),
3390 ('Jub',416,0),
3391 ('Kar',416,0),
3392 ('Kup',416,0),
3393 ('Laz',416,0),
3394 ('Nal',416,0),
3395 ('Nok',416,0),
3396 ('Pag',416,0),
3397 ('Pig',416,0),
3398 ('Pip',416,0),
3399 ('Piz',416,0),
3400 ('Quz',416,0),
3401 ('Rui',416,0),
3402 ('Rul',416,0),
3403 ('Rup',416,0),
3404 ('Tar',416,0),
3405 ('Vol',416,0),
3406 ('Yaz',416,0),
3407 ('Zep',416,0),
3408 ('Zig',416,0),
3409 ('Zil',416,0),
3410 ('Zor',416,0),
3411 ('bis',416,1),
3412 ('fip',416,1),
3413 ('gup',416,1),
3414 ('ham',416,1),
3415 ('jub',416,1),
3416 ('kin',416,1),
3417 ('kol',416,1),
3418 ('lop',416,1),
3419 ('loz',416,1),
3420 ('mat',416,1),
3421 ('mir',416,1),
3422 ('nam',416,1),
3423 ('nar',416,1),
3424 ('nik',416,1),
3425 ('nip',416,1),
3426 ('pad',416,1),
3427 ('pep',416,1),
3428 ('pit',416,1),
3429 ('qua',416,1),
3430 ('rai',416,1),
3431 ('rin',416,1),
3432 ('rot',416,1),
3433 ('tai',416,1),
3434 ('tal',416,1),
3435 ('tik',416,1),
3436 ('tip',416,1),
3437 ('tog',416,1),
3438 ('tuk',416,1),
3439 ('uri',416,1),
3440 ('yal',416,1),
3441 ('yap',416,1),
3442 ('Bhee',417,0),
3443 ('Bruu',417,0),
3444 ('Czaa',417,0),
3445 ('Droo',417,0),
3446 ('Flaa',417,0),
3447 ('Fzuu',417,0),
3448 ('Ghaa',417,0),
3449 ('Gree',417,0),
3450 ('Gzaa',417,0),
3451 ('Haa',417,0),
3452 ('Haad',417,0),
3453 ('Haag',417,0),
3454 ('Haap',417,0),
3455 ('Jhaa',417,0),
3456 ('Jhuu',417,0),
3457 ('Khaa',417,0),
3458 ('Khii',417,0),
3459 ('Khuu',417,0),
3460 ('Kree',417,0),
3461 ('Luu',417,0),
3462 ('Maa',417,0),
3463 ('Nhee',417,0),
3464 ('Phuu',417,0),
3465 ('Pryy',417,0),
3466 ('Rhuu',417,0),
3467 ('Shaa',417,0),
3468 ('Sloo',417,0),
3469 ('Sruu',417,0),
3470 ('Thoo',417,0),
3471 ('Traa',417,0),
3472 ('Wraa',417,0),
3473 ('Zhaa',417,0),
3474 ('dhon',417,1),
3475 ('dhum',417,1),
3476 ('dhun',417,1),
3477 ('dom',417,1),
3478 ('don',417,1),
3479 ('drom',417,1),
3480 ('dym',417,1),
3481 ('fenn',417,1),
3482 ('fum',417,1),
3483 ('fun',417,1),
3484 ('ghon',417,1),
3485 ('ghun',417,1),
3486 ('grom',417,1),
3487 ('grym',417,1),
3488 ('hom',417,1),
3489 ('hon',417,1),
3490 ('hun',417,1),
3491 ('jhom',417,1),
3492 ('kun',417,1),
3493 ('lum',417,1),
3494 ('mmon',417,1),
3495 ('mon',417,1),
3496 ('myn',417,1),
3497 ('nam',417,1),
3498 ('nem',417,1),
3499 ('nhym',417,1),
3500 ('nom',417,1),
3501 ('num',417,1),
3502 ('phom',417,1),
3503 ('roon',417,1),
3504 ('rym',417,1),
3505 ('shon',417,1),
3506 ('thun',417,1),
3507 ('tom',417,1),
3508 ('zhem',417,1),
3509 ('zhum',417,1),
3510 ('zun',417,1),
3511 ('Bar',1860,0),
3512 ('Bel',1860,0),
3513 ('Char',1860,0),
3514 ('Grak\'',1860,0),
3515 ('Graz\'',1860,0),
3516 ('Grim',1860,0),
3517 ('Hath',1860,0),
3518 ('Hel',1860,0),
3519 ('Hok',1860,0),
3520 ('Huk',1860,0),
3521 ('Jhaz',1860,0),
3522 ('Jhom',1860,0),
3523 ('Juk\'',1860,0),
3524 ('Kal\'',1860,0),
3525 ('Klath',1860,0),
3526 ('Kon',1860,0),
3527 ('Krag',1860,0),
3528 ('Krak',1860,0),
3529 ('Mak',1860,0),
3530 ('Mezz',1860,0),
3531 ('Orm',1860,0),
3532 ('Phan',1860,0),
3533 ('Sar',1860,0),
3534 ('Tang',1860,0),
3535 ('Than',1860,0),
3536 ('Thog',1860,0),
3537 ('Thok',1860,0),
3538 ('Thul',1860,0),
3539 ('Zag\'',1860,0),
3540 ('Zang',1860,0),
3541 ('Zhar\'',1860,0),
3542 ('kath',1860,1),
3543 ('doc',1860,1),
3544 ('dok',1860,1),
3545 ('gak',1860,1),
3546 ('garth',1860,1),
3547 ('gore',1860,1),
3548 ('gorg',1860,1),
3549 ('grave',1860,1),
3550 ('gron',1860,1),
3551 ('juk',1860,1),
3552 ('krast',1860,1),
3553 ('kresh',1860,1),
3554 ('krit',1860,1),
3555 ('los',1860,1),
3556 ('mon',1860,1),
3557 ('mos',1860,1),
3558 ('moth',1860,1),
3559 ('nagma',1860,1),
3560 ('nak',1860,1),
3561 ('nar',1860,1),
3562 ('nos',1860,1),
3563 ('nuz',1860,1),
3564 ('phog',1860,1),
3565 ('rath',1860,1),
3566 ('tast',1860,1),
3567 ('taz',1860,1),
3568 ('thak',1860,1),
3569 ('thang',1860,1),
3570 ('thyk',1860,1),
3571 ('vhug',1860,1),
3572 ('zazt',1860,1),
3573 ('Ael',1863,0),
3574 ('Aez',1863,0),
3575 ('Ang',1863,0),
3576 ('Ban',1863,0),
3577 ('Bet',1863,0),
3578 ('Bro',1863,0),
3579 ('Bry',1863,0),
3580 ('Cat',1863,0),
3581 ('Dir',1863,0),
3582 ('Dis',1863,0),
3583 ('Dom',1863,0),
3584 ('Drus',1863,0),
3585 ('Fie',1863,0),
3586 ('Fier',1863,0),
3587 ('Gly',1863,0),
3588 ('Hel',1863,0),
3589 ('Hes',1863,0),
3590 ('Kal',1863,0),
3591 ('Lyn',1863,0),
3592 ('Mir',1863,0),
3593 ('Nim',1863,0),
3594 ('Sar',1863,0),
3595 ('Sel',1863,0),
3596 ('Vil',1863,0),
3597 ('Zah',1863,0),
3598 ('aith',1863,1),
3599 ('anda',1863,1),
3600 ('antia',1863,1),
3601 ('evere',1863,1),
3602 ('lia',1863,1),
3603 ('lissa',1863,1),
3604 ('neri',1863,1),
3605 ('neth',1863,1),
3606 ('nia',1863,1),
3607 ('nlissa',1863,1),
3608 ('nora',1863,1),
3609 ('nva',1863,1),
3610 ('nys',1863,1),
3611 ('ola',1863,1),
3612 ('ona',1863,1),
3613 ('ora',1863,1),
3614 ('rah',1863,1),
3615 ('riana',1863,1),
3616 ('riel',1863,1),
3617 ('rona',1863,1),
3618 ('tai',1863,1),
3619 ('tevere',1863,1),
3620 ('thea',1863,1),
3621 ('vina',1863,1),
3622 ('wena',1863,1),
3623 ('wyn',1863,1),
3624 ('xia',1863,1),
3625 ('yla',1863,1),
3626 ('yssa',1863,1),
3627 ('Flaa',17252,0),
3628 ('Haa',17252,0),
3629 ('Jhuu',17252,0),
3630 ('Shaa',17252,0),
3631 ('Thoo',17252,0),
3632 ('dhun',17252,1),
3633 ('ghun',17252,1),
3634 ('roon',17252,1),
3635 ('thun',17252,1),
3636 ('tom',17252,1);
3638 /*!40000 ALTER TABLE `pet_name_generation` ENABLE KEYS */;
3639 UNLOCK TABLES;
3642 -- Table structure for table `petcreateinfo_spell`
3645 DROP TABLE IF EXISTS `petcreateinfo_spell`;
3646 CREATE TABLE `petcreateinfo_spell` (
3647   `entry` mediumint(8) unsigned NOT NULL default '0',
3648   `Spell1` mediumint(8) unsigned NOT NULL default '0',
3649   `Spell2` mediumint(8) unsigned NOT NULL default '0',
3650   `Spell3` mediumint(8) unsigned NOT NULL default '0',
3651   `Spell4` mediumint(8) unsigned NOT NULL default '0',
3652   PRIMARY KEY  (`entry`)
3653 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Pet Create Spells';
3656 -- Dumping data for table `petcreateinfo_spell`
3659 LOCK TABLES `petcreateinfo_spell` WRITE;
3660 /*!40000 ALTER TABLE `petcreateinfo_spell` DISABLE KEYS */;
3661 /*!40000 ALTER TABLE `petcreateinfo_spell` ENABLE KEYS */;
3662 UNLOCK TABLES;
3665 -- Table structure for table `pickpocketing_loot_template`
3668 DROP TABLE IF EXISTS `pickpocketing_loot_template`;
3669 CREATE TABLE `pickpocketing_loot_template` (
3670   `entry` mediumint(8) unsigned NOT NULL default '0',
3671   `item` mediumint(8) unsigned NOT NULL default '0',
3672   `ChanceOrQuestChance` float NOT NULL default '100',
3673   `groupid` tinyint(3) unsigned NOT NULL default '0',
3674   `mincountOrRef` mediumint(9) NOT NULL default '1',
3675   `maxcount` tinyint(3) unsigned NOT NULL default '1',
3676   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
3677   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
3678   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
3679   PRIMARY KEY  (`entry`,`item`)
3680 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3683 -- Dumping data for table `pickpocketing_loot_template`
3686 LOCK TABLES `pickpocketing_loot_template` WRITE;
3687 /*!40000 ALTER TABLE `pickpocketing_loot_template` DISABLE KEYS */;
3688 /*!40000 ALTER TABLE `pickpocketing_loot_template` ENABLE KEYS */;
3689 UNLOCK TABLES;
3692 -- Table structure for table `player_classlevelstats`
3695 DROP TABLE IF EXISTS `player_classlevelstats`;
3696 CREATE TABLE `player_classlevelstats` (
3697   `class` tinyint(3) unsigned NOT NULL,
3698   `level` tinyint(3) unsigned NOT NULL,
3699   `basehp` smallint(5) unsigned NOT NULL,
3700   `basemana` smallint(5) unsigned NOT NULL,
3701   PRIMARY KEY  (`class`,`level`)
3702 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
3705 -- Dumping data for table `player_classlevelstats`
3708 LOCK TABLES `player_classlevelstats` WRITE;
3709 /*!40000 ALTER TABLE `player_classlevelstats` DISABLE KEYS */;
3710 INSERT INTO `player_classlevelstats` VALUES
3711 (1,1,20,0),
3712 (1,2,29,0),
3713 (1,3,38,0),
3714 (1,4,47,0),
3715 (1,5,56,0),
3716 (1,6,65,0),
3717 (1,7,74,0),
3718 (1,8,83,0),
3719 (1,9,92,0),
3720 (1,10,101,0),
3721 (1,11,100,0),
3722 (1,12,109,0),
3723 (1,13,118,0),
3724 (1,14,128,0),
3725 (1,15,139,0),
3726 (1,16,151,0),
3727 (1,17,154,0),
3728 (1,18,168,0),
3729 (1,19,183,0),
3730 (1,20,199,0),
3731 (1,21,206,0),
3732 (1,22,224,0),
3733 (1,23,243,0),
3734 (1,24,253,0),
3735 (1,25,274,0),
3736 (1,26,296,0),
3737 (1,27,309,0),
3738 (1,28,333,0),
3739 (1,29,348,0),
3740 (1,30,374,0),
3741 (1,31,401,0),
3742 (1,32,419,0),
3743 (1,33,448,0),
3744 (1,34,468,0),
3745 (1,35,499,0),
3746 (1,36,521,0),
3747 (1,37,545,0),
3748 (1,38,581,0),
3749 (1,39,609,0),
3750 (1,40,649,0),
3751 (1,41,681,0),
3752 (1,42,715,0),
3753 (1,43,761,0),
3754 (1,44,799,0),
3755 (1,45,839,0),
3756 (1,46,881,0),
3757 (1,47,935,0),
3758 (1,48,981,0),
3759 (1,49,1029,0),
3760 (1,50,1079,0),
3761 (1,51,1131,0),
3762 (1,52,1185,0),
3763 (1,53,1241,0),
3764 (1,54,1299,0),
3765 (1,55,1359,0),
3766 (1,56,1421,0),
3767 (1,57,1485,0),
3768 (1,58,1551,0),
3769 (1,59,1619,0),
3770 (1,60,1689,0),
3771 (1,61,1902,0),
3772 (1,62,2129,0),
3773 (1,63,2357,0),
3774 (1,64,2612,0),
3775 (1,65,2883,0),
3776 (1,66,3169,0),
3777 (1,67,3455,0),
3778 (1,68,3774,0),
3779 (1,69,4109,0),
3780 (1,70,4444,0),
3781 (1,71,4720,0),
3782 (1,72,5013,0),
3783 (1,73,5325,0),
3784 (1,74,5656,0),
3785 (1,75,6008,0),
3786 (1,76,6381,0),
3787 (1,77,6778,0),
3788 (1,78,7198,0),
3789 (1,79,7646,0),
3790 (1,80,8121,0),
3791 (2,1,28,60),
3792 (2,2,36,78),
3793 (2,3,44,98),
3794 (2,4,52,104),
3795 (2,5,60,111),
3796 (2,6,68,134),
3797 (2,7,76,143),
3798 (2,8,84,153),
3799 (2,9,92,179),
3800 (2,10,100,192),
3801 (2,11,108,205),
3802 (2,12,116,219),
3803 (2,13,124,249),
3804 (2,14,132,265),
3805 (2,15,131,282),
3806 (2,16,141,315),
3807 (2,17,152,334),
3808 (2,18,164,354),
3809 (2,19,177,390),
3810 (2,20,191,412),
3811 (2,21,206,435),
3812 (2,22,222,459),
3813 (2,23,239,499),
3814 (2,24,247,525),
3815 (2,25,266,552),
3816 (2,26,286,579),
3817 (2,27,307,621),
3818 (2,28,329,648),
3819 (2,29,342,675),
3820 (2,30,366,702),
3821 (2,31,391,729),
3822 (2,32,407,756),
3823 (2,33,434,798),
3824 (2,34,462,825),
3825 (2,35,481,852),
3826 (2,36,511,879),
3827 (2,37,542,906),
3828 (2,38,564,933),
3829 (2,39,597,960),
3830 (2,40,621,987),
3831 (2,41,656,1014),
3832 (2,42,682,1041),
3833 (2,43,719,1068),
3834 (2,44,747,1110),
3835 (2,45,786,1137),
3836 (2,46,816,1164),
3837 (2,47,857,1176),
3838 (2,48,889,1203),
3839 (2,49,922,1230),
3840 (2,50,966,1257),
3841 (2,51,1001,1284),
3842 (2,52,1037,1311),
3843 (2,53,1084,1338),
3844 (2,54,1122,1365),
3845 (2,55,1161,1392),
3846 (2,56,1201,1419),
3847 (2,57,1252,1446),
3848 (2,58,1294,1458),
3849 (2,59,1337,1485),
3850 (2,60,1381,1512),
3851 (2,61,1540,1656),
3852 (2,62,1708,1800),
3853 (2,63,1884,1944),
3854 (2,64,2068,2088),
3855 (2,65,2262,2232),
3856 (2,66,2466,2377),
3857 (2,67,2679,2521),
3858 (2,68,2901,2665),
3859 (2,69,3134,2809),
3860 (2,70,3377,2953),
3861 (2,71,3629,3097),
3862 (2,72,3900,3241),
3863 (2,73,4191,3385),
3864 (2,74,4503,3529),
3865 (2,75,4839,3673),
3866 (2,76,5200,3817),
3867 (2,77,5588,3962),
3868 (2,78,6005,4106),
3869 (2,79,6453,4250),
3870 (2,80,6934,4394),
3871 (3,1,46,65),
3872 (3,2,53,70),
3873 (3,3,60,76),
3874 (3,4,67,98),
3875 (3,5,74,106),
3876 (3,6,81,130),
3877 (3,7,88,140),
3878 (3,8,95,166),
3879 (3,9,102,193),
3880 (3,10,109,206),
3881 (3,11,116,235),
3882 (3,12,123,250),
3883 (3,13,130,266),
3884 (3,14,138,298),
3885 (3,15,147,316),
3886 (3,16,157,350),
3887 (3,17,168,370),
3888 (3,18,180,391),
3889 (3,19,193,428),
3890 (3,20,207,451),
3891 (3,21,222,475),
3892 (3,22,238,515),
3893 (3,23,255,541),
3894 (3,24,273,568),
3895 (3,25,292,611),
3896 (3,26,312,640),
3897 (3,27,333,670),
3898 (3,28,355,715),
3899 (3,29,378,745),
3900 (3,30,402,775),
3901 (3,31,417,805),
3902 (3,32,443,850),
3903 (3,33,470,880),
3904 (3,34,498,910),
3905 (3,35,527,940),
3906 (3,36,547,970),
3907 (3,37,578,1015),
3908 (3,38,610,1045),
3909 (3,39,643,1075),
3910 (3,40,667,1105),
3911 (3,41,702,1135),
3912 (3,42,738,1180),
3913 (3,43,775,1210),
3914 (3,44,803,1240),
3915 (3,45,842,1270),
3916 (3,46,872,1300),
3917 (3,47,913,1330),
3918 (3,48,955,1360),
3919 (3,49,994,1390),
3920 (3,50,1047,1420),
3921 (3,51,1067,1450),
3922 (3,52,1113,1480),
3923 (3,53,1150,1510),
3924 (3,54,1198,1540),
3925 (3,55,1237,1570),
3926 (3,56,1287,1600),
3927 (3,57,1328,1630),
3928 (3,58,1370,1660),
3929 (3,59,1423,1690),
3930 (3,60,1467,1720),
3931 (3,61,1633,1886),
3932 (3,62,1819,2053),
3933 (3,63,2003,2219),
3934 (3,64,2195,2385),
3935 (3,65,2397,2552),
3936 (3,66,2623,2718),
3937 (3,67,2844,2884),
3938 (3,68,3075,3050),
3939 (3,69,3316,3217),
3940 (3,70,3568,3383),
3941 (3,71,3834,3549),
3942 (3,72,4120,3716),
3943 (3,73,4427,3882),
3944 (3,74,4757,4048),
3945 (3,75,5112,4215),
3946 (3,76,5493,4381),
3947 (3,77,5903,4547),
3948 (3,78,6343,4713),
3949 (3,79,6816,4880),
3950 (3,80,7324,5046),
3951 (4,1,25,0),
3952 (4,2,32,0),
3953 (4,3,49,0),
3954 (4,4,56,0),
3955 (4,5,63,0),
3956 (4,6,70,0),
3957 (4,7,87,0),
3958 (4,8,94,0),
3959 (4,9,101,0),
3960 (4,10,118,0),
3961 (4,11,125,0),
3962 (4,12,142,0),
3963 (4,13,149,0),
3964 (4,14,156,0),
3965 (4,15,173,0),
3966 (4,16,181,0),
3967 (4,17,190,0),
3968 (4,18,200,0),
3969 (4,19,221,0),
3970 (4,20,233,0),
3971 (4,21,246,0),
3972 (4,22,260,0),
3973 (4,23,275,0),
3974 (4,24,301,0),
3975 (4,25,318,0),
3976 (4,26,336,0),
3977 (4,27,355,0),
3978 (4,28,375,0),
3979 (4,29,396,0),
3980 (4,30,428,0),
3981 (4,31,451,0),
3982 (4,32,475,0),
3983 (4,33,500,0),
3984 (4,34,526,0),
3985 (4,35,553,0),
3986 (4,36,581,0),
3987 (4,37,610,0),
3988 (4,38,640,0),
3989 (4,39,671,0),
3990 (4,40,703,0),
3991 (4,41,736,0),
3992 (4,42,770,0),
3993 (4,43,805,0),
3994 (4,44,841,0),
3995 (4,45,878,0),
3996 (4,46,916,0),
3997 (4,47,955,0),
3998 (4,48,995,0),
3999 (4,49,1026,0),
4000 (4,50,1068,0),
4001 (4,51,1111,0),
4002 (4,52,1155,0),
4003 (4,53,1200,0),
4004 (4,54,1246,0),
4005 (4,55,1283,0),
4006 (4,56,1331,0),
4007 (4,57,1380,0),
4008 (4,58,1430,0),
4009 (4,59,1471,0),
4010 (4,60,1523,0),
4011 (4,61,1702,0),
4012 (4,62,1879,0),
4013 (4,63,2077,0),
4014 (4,64,2285,0),
4015 (4,65,2489,0),
4016 (4,66,2717,0),
4017 (4,67,2941,0),
4018 (4,68,3190,0),
4019 (4,69,3450,0),
4020 (4,70,3704,0),
4021 (4,71,3980,0),
4022 (4,72,4277,0),
4023 (4,73,4596,0),
4024 (4,74,4939,0),
4025 (4,75,5307,0),
4026 (4,76,5703,0),
4027 (4,77,6128,0),
4028 (4,78,6585,0),
4029 (4,79,7076,0),
4030 (4,80,7604,0),
4031 (5,1,52,73),
4032 (5,2,57,76),
4033 (5,3,72,95),
4034 (5,4,77,114),
4035 (5,5,92,133),
4036 (5,6,97,152),
4037 (5,7,112,171),
4038 (5,8,117,190),
4039 (5,9,132,209),
4040 (5,10,137,212),
4041 (5,11,142,215),
4042 (5,12,157,234),
4043 (5,13,172,254),
4044 (5,14,177,260),
4045 (5,15,192,282),
4046 (5,16,197,305),
4047 (5,17,212,329),
4048 (5,18,227,339),
4049 (5,19,232,365),
4050 (5,20,247,377),
4051 (5,21,252,405),
4052 (5,22,268,434),
4053 (5,23,275,449),
4054 (5,24,293,480),
4055 (5,25,302,497),
4056 (5,26,322,530),
4057 (5,27,343,549),
4058 (5,28,355,584),
4059 (5,29,378,605),
4060 (5,30,392,627),
4061 (5,31,417,665),
4062 (5,32,433,689),
4063 (5,33,460,728),
4064 (5,34,478,752),
4065 (5,35,507,776),
4066 (5,36,527,800),
4067 (5,37,548,839),
4068 (5,38,580,863),
4069 (5,39,603,887),
4070 (5,40,637,911),
4071 (5,41,662,950),
4072 (5,42,698,974),
4073 (5,43,725,998),
4074 (5,44,763,1022),
4075 (5,45,792,1046),
4076 (5,46,822,1070),
4077 (5,47,863,1094),
4078 (5,48,895,1118),
4079 (5,49,928,1142),
4080 (5,50,972,1166),
4081 (5,51,1007,1190),
4082 (5,52,1053,1214),
4083 (5,53,1090,1238),
4084 (5,54,1128,1262),
4085 (5,55,1177,1271),
4086 (5,56,1217,1295),
4087 (5,57,1258,1319),
4088 (5,58,1300,1343),
4089 (5,59,1353,1352),
4090 (5,60,1397,1376),
4091 (5,61,1557,1500),
4092 (5,62,1738,1625),
4093 (5,63,1916,1749),
4094 (5,64,2101,1873),
4095 (5,65,2295,1998),
4096 (5,66,2495,2122),
4097 (5,67,2719,2247),
4098 (5,68,2936,2371),
4099 (5,69,3160,2495),
4100 (5,70,3391,2620),
4101 (5,71,3644,2744),
4102 (5,72,3916,2868),
4103 (5,73,4208,2993),
4104 (5,74,4522,3117),
4105 (5,75,4859,3242),
4106 (5,76,5221,3366),
4107 (5,77,5610,3490),
4108 (5,78,6028,3615),
4109 (5,79,6477,3739),
4110 (5,80,6960,3863),
4111 (6,1,22,0),
4112 (6,2,27,0),
4113 (6,3,32,0),
4114 (6,4,37,0),
4115 (6,5,42,0),
4116 (6,6,47,0),
4117 (6,7,52,0),
4118 (6,8,58,0),
4119 (6,9,64,0),
4120 (6,10,70,0),
4121 (6,11,77,0),
4122 (6,12,84,0),
4123 (6,13,92,0),
4124 (6,14,100,0),
4125 (6,15,117,0),
4126 (6,16,127,0),
4127 (6,17,138,0),
4128 (6,18,150,0),
4129 (6,19,163,0),
4130 (6,20,177,0),
4131 (6,21,192,0),
4132 (6,22,208,0),
4133 (6,23,225,0),
4134 (6,24,239,0),
4135 (6,25,258,0),
4136 (6,26,278,0),
4137 (6,27,299,0),
4138 (6,28,321,0),
4139 (6,29,344,0),
4140 (6,30,368,0),
4141 (6,31,393,0),
4142 (6,32,419,0),
4143 (6,33,446,0),
4144 (6,34,474,0),
4145 (6,35,503,0),
4146 (6,36,533,0),
4147 (6,37,564,0),
4148 (6,38,596,0),
4149 (6,39,629,0),
4150 (6,40,698,0),
4151 (6,41,698,0),
4152 (6,42,734,0),
4153 (6,43,771,0),
4154 (6,44,809,0),
4155 (6,45,849,0),
4156 (6,46,891,0),
4157 (6,47,935,0),
4158 (6,48,981,0),
4159 (6,49,1029,0),
4160 (6,50,1079,0),
4161 (6,51,1131,0),
4162 (6,52,1185,0),
4163 (6,53,1241,0),
4164 (6,54,1299,0),
4165 (6,55,1359,0),
4166 (6,56,1421,0),
4167 (6,57,1485,0),
4168 (6,58,1551,0),
4169 (6,59,1619,0),
4170 (6,60,1689,0),
4171 (6,61,1902,0),
4172 (6,62,2129,0),
4173 (6,63,2357,0),
4174 (6,64,2612,0),
4175 (6,65,2883,0),
4176 (6,66,3169,0),
4177 (6,67,3455,0),
4178 (6,68,3774,0),
4179 (6,69,4109,0),
4180 (6,70,4444,0),
4181 (6,71,4720,0),
4182 (6,72,5013,0),
4183 (6,73,5325,0),
4184 (6,74,5656,0),
4185 (6,75,6008,0),
4186 (6,76,6381,0),
4187 (6,77,6778,0),
4188 (6,78,7199,0),
4189 (6,79,7646,0),
4190 (6,80,8121,0),
4191 (7,1,37,85),
4192 (7,2,44,91),
4193 (7,3,51,98),
4194 (7,4,58,106),
4195 (7,5,65,115),
4196 (7,6,72,125),
4197 (7,7,79,136),
4198 (7,8,86,148),
4199 (7,9,93,161),
4200 (7,10,100,175),
4201 (7,11,107,190),
4202 (7,12,114,206),
4203 (7,13,121,223),
4204 (7,14,128,241),
4205 (7,15,135,260),
4206 (7,16,142,280),
4207 (7,17,150,301),
4208 (7,18,159,323),
4209 (7,19,169,346),
4210 (7,20,180,370),
4211 (7,21,192,395),
4212 (7,22,205,421),
4213 (7,23,219,448),
4214 (7,24,234,476),
4215 (7,25,240,505),
4216 (7,26,257,535),
4217 (7,27,275,566),
4218 (7,28,294,598),
4219 (7,29,314,631),
4220 (7,30,335,665),
4221 (7,31,347,699),
4222 (7,32,370,733),
4223 (7,33,394,767),
4224 (7,34,419,786),
4225 (7,35,435,820),
4226 (7,36,462,854),
4227 (7,37,490,888),
4228 (7,38,509,922),
4229 (7,39,539,941),
4230 (7,40,570,975),
4231 (7,41,592,1009),
4232 (7,42,625,1028),
4233 (7,43,649,1062),
4234 (7,44,684,1096),
4235 (7,45,710,1115),
4236 (7,46,747,1149),
4237 (7,47,775,1183),
4238 (7,48,814,1202),
4239 (7,49,844,1236),
4240 (7,50,885,1255),
4241 (7,51,917,1289),
4242 (7,52,960,1323),
4243 (7,53,994,1342),
4244 (7,54,1029,1376),
4245 (7,55,1075,1395),
4246 (7,56,1112,1414),
4247 (7,57,1150,1448),
4248 (7,58,1199,1467),
4249 (7,59,1239,1501),
4250 (7,60,1330,1520),
4251 (7,61,1428,1664),
4252 (7,62,1583,1808),
4253 (7,63,1760,1951),
4254 (7,64,1932,2095),
4255 (7,65,2114,2239),
4256 (7,66,2304,2383),
4257 (7,67,2504,2527),
4258 (7,68,2713,2670),
4259 (7,69,2931,2814),
4260 (7,70,3159,2958),
4261 (7,71,3395,3102),
4262 (7,72,3648,3246),
4263 (7,73,3920,3389),
4264 (7,74,4212,3533),
4265 (7,75,4526,3677),
4266 (7,76,4863,3821),
4267 (7,77,5226,3965),
4268 (7,78,5616,4108),
4269 (7,79,6035,4252),
4270 (7,80,6485,4396),
4271 (8,1,32,100),
4272 (8,2,47,110),
4273 (8,3,52,106),
4274 (8,4,67,118),
4275 (8,5,82,131),
4276 (8,6,97,130),
4277 (8,7,102,145),
4278 (8,8,117,146),
4279 (8,9,132,163),
4280 (8,10,137,196),
4281 (8,11,152,215),
4282 (8,12,167,220),
4283 (8,13,172,241),
4284 (8,14,187,263),
4285 (8,15,202,271),
4286 (8,16,207,295),
4287 (8,17,222,305),
4288 (8,18,237,331),
4289 (8,19,242,343),
4290 (8,20,257,371),
4291 (8,21,272,385),
4292 (8,22,277,415),
4293 (8,23,292,431),
4294 (8,24,298,463),
4295 (8,25,315,481),
4296 (8,26,333,515),
4297 (8,27,342,535),
4298 (8,28,362,556),
4299 (8,29,373,592),
4300 (8,30,395,613),
4301 (8,31,418,634),
4302 (8,32,432,670),
4303 (8,33,457,691),
4304 (8,34,473,712),
4305 (8,35,500,733),
4306 (8,36,518,754),
4307 (8,37,547,790),
4308 (8,38,577,811),
4309 (8,39,598,832),
4310 (8,40,630,853),
4311 (8,41,653,874),
4312 (8,42,687,895),
4313 (8,43,712,916),
4314 (8,44,748,937),
4315 (8,45,775,958),
4316 (8,46,813,979),
4317 (8,47,842,1000),
4318 (8,48,882,1021),
4319 (8,49,913,1042),
4320 (8,50,955,1048),
4321 (8,51,988,1069),
4322 (8,52,1032,1090),
4323 (8,53,1067,1111),
4324 (8,54,1103,1117),
4325 (8,55,1150,1138),
4326 (8,56,1188,1159),
4327 (8,57,1237,1165),
4328 (8,58,1277,1186),
4329 (8,59,1328,1192),
4330 (8,60,1370,1213),
4331 (8,61,1526,1316),
4332 (8,62,1702,1419),
4333 (8,63,1875,1521),
4334 (8,64,2070,1624),
4335 (8,65,2261,1727),
4336 (8,66,2461,1830),
4337 (8,67,2686,1932),
4338 (8,68,2906,2035),
4339 (8,69,3136,2138),
4340 (8,70,3393,2241),
4341 (8,71,3646,2343),
4342 (8,72,3918,2446),
4343 (8,73,4210,2549),
4344 (8,74,4524,2652),
4345 (8,75,4861,2754),
4346 (8,76,5223,2857),
4347 (8,77,5612,2960),
4348 (8,78,6030,3063),
4349 (8,79,6480,3165),
4350 (8,80,6963,3268),
4351 (9,1,23,90),
4352 (9,2,28,98),
4353 (9,3,43,107),
4354 (9,4,48,102),
4355 (9,5,63,113),
4356 (9,6,68,126),
4357 (9,7,83,144),
4358 (9,8,88,162),
4359 (9,9,93,180),
4360 (9,10,108,198),
4361 (9,11,123,200),
4362 (9,12,128,218),
4363 (9,13,143,237),
4364 (9,14,148,257),
4365 (9,15,153,278),
4366 (9,16,168,300),
4367 (9,17,173,308),
4368 (9,18,189,332),
4369 (9,19,196,357),
4370 (9,20,204,383),
4371 (9,21,223,395),
4372 (9,22,233,423),
4373 (9,23,244,452),
4374 (9,24,266,467),
4375 (9,25,279,498),
4376 (9,26,293,530),
4377 (9,27,318,548),
4378 (9,28,334,582),
4379 (9,29,351,602),
4380 (9,30,379,638),
4381 (9,31,398,674),
4382 (9,32,418,695),
4383 (9,33,439,731),
4384 (9,34,471,752),
4385 (9,35,494,788),
4386 (9,36,518,809),
4387 (9,37,543,830),
4388 (9,38,569,866),
4389 (9,39,606,887),
4390 (9,40,634,923),
4391 (9,41,663,944),
4392 (9,42,693,965),
4393 (9,43,724,1001),
4394 (9,44,756,1022),
4395 (9,45,799,1043),
4396 (9,46,832,1064),
4397 (9,47,868,1100),
4398 (9,48,904,1121),
4399 (9,49,941,1142),
4400 (9,50,979,1163),
4401 (9,51,1018,1184),
4402 (9,52,1058,1205),
4403 (9,53,1099,1226),
4404 (9,54,1141,1247),
4405 (9,55,1184,1268),
4406 (9,56,1228,1289),
4407 (9,57,1273,1310),
4408 (9,58,1319,1331),
4409 (9,59,1366,1352),
4410 (9,60,1414,1373),
4411 (9,61,1580,1497),
4412 (9,62,1755,1621),
4413 (9,63,1939,1745),
4414 (9,64,2133,1870),
4415 (9,65,2323,1994),
4416 (9,66,2535,2118),
4417 (9,67,2758,2242),
4418 (9,68,2991,2366),
4419 (9,69,3235,2490),
4420 (9,70,3490,2615),
4421 (9,71,3750,2739),
4422 (9,72,4025,2863),
4423 (9,73,4330,2987),
4424 (9,74,4646,3111),
4425 (9,75,4997,3235),
4426 (9,76,5373,3360),
4427 (9,77,5774,3483),
4428 (9,78,6207,3608),
4429 (9,79,6667,3732),
4430 (9,80,7136,3856),
4431 (11,1,44,60),
4432 (11,2,51,66),
4433 (11,3,58,73),
4434 (11,4,75,81),
4435 (11,5,82,90),
4436 (11,6,89,100),
4437 (11,7,106,111),
4438 (11,8,113,123),
4439 (11,9,120,136),
4440 (11,10,137,150),
4441 (11,11,144,165),
4442 (11,12,151,182),
4443 (11,13,168,200),
4444 (11,14,175,219),
4445 (11,15,182,239),
4446 (11,16,199,260),
4447 (11,17,206,282),
4448 (11,18,214,305),
4449 (11,19,233,329),
4450 (11,20,243,354),
4451 (11,21,254,380),
4452 (11,22,266,392),
4453 (11,23,289,420),
4454 (11,24,303,449),
4455 (11,25,318,479),
4456 (11,26,334,509),
4457 (11,27,361,524),
4458 (11,28,379,554),
4459 (11,29,398,584),
4460 (11,30,418,614),
4461 (11,31,439,629),
4462 (11,32,461,659),
4463 (11,33,494,689),
4464 (11,34,518,704),
4465 (11,35,543,734),
4466 (11,36,569,749),
4467 (11,37,596,779),
4468 (11,38,624,809),
4469 (11,39,653,824),
4470 (11,40,683,854),
4471 (11,41,714,869),
4472 (11,42,746,899),
4473 (11,43,779,914),
4474 (11,44,823,944),
4475 (11,45,858,959),
4476 (11,46,894,989),
4477 (11,47,921,1004),
4478 (11,48,959,1019),
4479 (11,49,998,1049),
4480 (11,50,1038,1064),
4481 (11,51,1079,1079),
4482 (11,52,1121,1109),
4483 (11,53,1164,1124),
4484 (11,54,1208,1139),
4485 (11,55,1253,1154),
4486 (11,56,1299,1169),
4487 (11,57,1346,1199),
4488 (11,58,1384,1214),
4489 (11,59,1433,1229),
4490 (11,60,1483,1244),
4491 (11,61,1657,1357),
4492 (11,62,1840,1469),
4493 (11,63,2020,1582),
4494 (11,64,2222,1694),
4495 (11,65,2433,1807),
4496 (11,66,2640,1919),
4497 (11,67,2872,2032),
4498 (11,68,3114,2145),
4499 (11,69,3351,2257),
4500 (11,70,3614,2370),
4501 (11,71,3883,2482),
4502 (11,72,4172,2595),
4503 (11,73,4483,2708),
4504 (11,74,4817,2820),
4505 (11,75,5176,2933),
4506 (11,76,5562,3045),
4507 (11,77,5977,3158),
4508 (11,78,6423,3270),
4509 (11,79,6902,3383),
4510 (11,80,7417,3496);
4511 /*!40000 ALTER TABLE `player_classlevelstats` ENABLE KEYS */;
4512 UNLOCK TABLES;
4515 -- Table structure for table `player_levelstats`
4518 DROP TABLE IF EXISTS `player_levelstats`;
4519 CREATE TABLE `player_levelstats` (
4520   `race` tinyint(3) unsigned NOT NULL,
4521   `class` tinyint(3) unsigned NOT NULL,
4522   `level` tinyint(3) unsigned NOT NULL,
4523   `str` tinyint(3) unsigned NOT NULL,
4524   `agi` tinyint(3) unsigned NOT NULL,
4525   `sta` tinyint(3) unsigned NOT NULL,
4526   `inte` tinyint(3) unsigned NOT NULL,
4527   `spi` tinyint(3) unsigned NOT NULL,
4528   PRIMARY KEY  (`race`,`class`,`level`)
4529 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
4532 -- Dumping data for table `player_levelstats`
4535 LOCK TABLES `player_levelstats` WRITE;
4536 /*!40000 ALTER TABLE `player_levelstats` DISABLE KEYS */;
4537 INSERT INTO `player_levelstats` VALUES
4538 (1,1,1,23,20,22,20,20),
4539 (1,1,2,24,21,23,20,20),
4540 (1,1,3,26,22,24,20,21),
4541 (1,1,4,27,22,26,20,21),
4542 (1,1,5,28,23,27,20,21),
4543 (1,1,6,30,24,28,20,21),
4544 (1,1,7,31,25,29,21,22),
4545 (1,1,8,32,26,30,21,22),
4546 (1,1,9,34,26,32,21,22),
4547 (1,1,10,35,27,33,21,23),
4548 (1,1,11,36,28,34,21,23),
4549 (1,1,12,38,29,35,21,23),
4550 (1,1,13,39,30,37,21,24),
4551 (1,1,14,41,31,38,21,24),
4552 (1,1,15,42,32,39,21,24),
4553 (1,1,16,44,33,41,21,25),
4554 (1,1,17,45,34,42,22,25),
4555 (1,1,18,47,34,43,22,25),
4556 (1,1,19,48,35,45,22,26),
4557 (1,1,20,50,36,46,22,26),
4558 (1,1,21,51,37,48,22,26),
4559 (1,1,22,53,38,49,22,27),
4560 (1,1,23,54,39,51,22,27),
4561 (1,1,24,56,40,52,23,28),
4562 (1,1,25,58,41,53,23,28),
4563 (1,1,26,59,42,55,23,28),
4564 (1,1,27,61,43,56,23,29),
4565 (1,1,28,63,44,58,23,29),
4566 (1,1,29,64,45,59,23,30),
4567 (1,1,30,66,46,61,24,30),
4568 (1,1,31,68,47,62,24,30),
4569 (1,1,32,69,48,64,24,31),
4570 (1,1,33,71,50,66,24,31),
4571 (1,1,34,73,51,67,24,32),
4572 (1,1,35,74,52,69,24,32),
4573 (1,1,36,76,53,70,25,33),
4574 (1,1,37,78,54,72,25,33),
4575 (1,1,38,80,55,74,25,34),
4576 (1,1,39,82,56,75,25,34),
4577 (1,1,40,83,57,77,25,35),
4578 (1,1,41,85,58,79,26,35),
4579 (1,1,42,87,60,80,26,35),
4580 (1,1,43,89,61,82,26,36),
4581 (1,1,44,91,62,84,26,36),
4582 (1,1,45,93,63,85,26,37),
4583 (1,1,46,95,64,87,27,37),
4584 (1,1,47,97,66,89,27,38),
4585 (1,1,48,99,67,91,27,38),
4586 (1,1,49,101,68,93,27,39),
4587 (1,1,50,103,69,94,28,40),
4588 (1,1,51,105,71,96,28,40),
4589 (1,1,52,107,72,98,28,41),
4590 (1,1,53,109,73,100,28,41),
4591 (1,1,54,111,74,102,29,42),
4592 (1,1,55,113,76,103,29,42),
4593 (1,1,56,115,77,105,29,43),
4594 (1,1,57,117,78,107,29,43),
4595 (1,1,58,119,79,109,30,44),
4596 (1,1,59,121,81,111,30,44),
4597 (1,1,60,123,82,113,30,45),
4598 (1,1,61,125,83,115,30,46),
4599 (1,1,62,127,85,117,31,46),
4600 (1,1,63,129,86,119,31,47),
4601 (1,1,64,132,88,121,31,47),
4602 (1,1,65,134,89,123,32,48),
4603 (1,1,66,136,90,125,32,49),
4604 (1,1,67,138,92,127,32,49),
4605 (1,1,68,140,93,129,32,50),
4606 (1,1,69,143,95,131,33,50),
4607 (1,1,70,145,96,133,33,51),
4608 (1,1,71,148,97,140,33,53),
4609 (1,1,72,156,99,143,33,54),
4610 (1,1,73,162,101,148,33,55),
4611 (1,1,74,162,102,148,34,55),
4612 (1,1,75,165,104,150,34,56),
4613 (1,1,76,171,106,156,34,57),
4614 (1,1,77,171,108,157,35,58),
4615 (1,1,78,174,109,159,35,58),
4616 (1,1,79,181,111,165,35,59),
4617 (1,1,80,184,113,168,36,60),
4618 (1,2,1,22,20,22,20,21),
4619 (1,2,2,23,21,23,21,22),
4620 (1,2,3,24,21,24,21,22),
4621 (1,2,4,25,22,25,22,23),
4622 (1,2,5,26,22,26,23,24),
4623 (1,2,6,28,23,27,23,25),
4624 (1,2,7,29,24,28,24,25),
4625 (1,2,8,30,24,29,25,26),
4626 (1,2,9,31,25,30,25,27),
4627 (1,2,10,32,25,32,26,27),
4628 (1,2,11,33,26,33,27,28),
4629 (1,2,12,35,27,34,27,29),
4630 (1,2,13,36,27,35,28,30),
4631 (1,2,14,37,28,36,29,31),
4632 (1,2,15,38,29,37,30,31),
4633 (1,2,16,40,29,38,30,32),
4634 (1,2,17,41,30,40,31,33),
4635 (1,2,18,42,31,41,32,34),
4636 (1,2,19,43,31,42,33,35),
4637 (1,2,20,45,32,43,33,35),
4638 (1,2,21,46,33,45,34,36),
4639 (1,2,22,47,33,46,35,37),
4640 (1,2,23,49,34,47,36,38),
4641 (1,2,24,50,35,48,37,39),
4642 (1,2,25,51,36,50,37,40),
4643 (1,2,26,53,36,51,38,41),
4644 (1,2,27,54,37,52,39,42),
4645 (1,2,28,56,38,54,40,43),
4646 (1,2,29,57,39,55,41,43),
4647 (1,2,30,58,39,56,42,44),
4648 (1,2,31,60,40,58,43,45),
4649 (1,2,32,61,41,59,43,46),
4650 (1,2,33,63,42,60,44,47),
4651 (1,2,34,64,43,62,45,48),
4652 (1,2,35,66,44,63,46,49),
4653 (1,2,36,67,44,65,47,50),
4654 (1,2,37,69,45,66,48,51),
4655 (1,2,38,70,46,67,49,52),
4656 (1,2,39,72,47,69,50,53),
4657 (1,2,40,73,48,70,51,54),
4658 (1,2,41,75,49,72,52,55),
4659 (1,2,42,77,49,73,53,56),
4660 (1,2,43,78,50,75,54,57),
4661 (1,2,44,80,51,76,55,58),
4662 (1,2,45,81,52,78,56,59),
4663 (1,2,46,83,53,79,57,61),
4664 (1,2,47,85,54,81,58,62),
4665 (1,2,48,86,55,83,59,63),
4666 (1,2,49,88,56,84,60,64),
4667 (1,2,50,90,57,86,61,65),
4668 (1,2,51,91,58,87,62,66),
4669 (1,2,52,93,59,89,63,67),
4670 (1,2,53,95,60,91,64,68),
4671 (1,2,54,97,61,92,65,69),
4672 (1,2,55,98,61,94,66,71),
4673 (1,2,56,100,62,95,67,72),
4674 (1,2,57,102,63,97,68,73),
4675 (1,2,58,104,64,99,69,74),
4676 (1,2,59,105,65,101,70,75),
4677 (1,2,60,107,66,102,71,77),
4678 (1,2,61,109,67,104,73,78),
4679 (1,2,62,111,69,106,74,79),
4680 (1,2,63,113,70,107,75,80),
4681 (1,2,64,115,71,109,76,81),
4682 (1,2,65,116,72,111,77,83),
4683 (1,2,66,118,73,113,78,84),
4684 (1,2,67,120,74,115,79,85),
4685 (1,2,68,122,75,116,81,86),
4686 (1,2,69,124,76,118,82,88),
4687 (1,2,70,126,77,120,83,89),
4688 (1,2,71,148,78,122,84,92),
4689 (1,2,72,150,79,125,86,94),
4690 (1,2,73,152,80,127,87,96),
4691 (1,2,74,156,82,129,89,97),
4692 (1,2,75,158,83,131,90,99),
4693 (1,2,76,162,84,134,92,100),
4694 (1,2,77,164,86,136,93,103),
4695 (1,2,78,167,87,138,95,105),
4696 (1,2,79,170,88,153,96,106),
4697 (1,2,80,173,90,160,98,108),
4698 (1,4,1,21,23,21,20,20),
4699 (1,4,2,22,24,22,20,20),
4700 (1,4,3,23,26,22,20,21),
4701 (1,4,4,23,27,23,20,21),
4702 (1,4,5,24,29,24,21,21),
4703 (1,4,6,25,30,25,21,22),
4704 (1,4,7,26,32,25,21,22),
4705 (1,4,8,26,33,26,21,23),
4706 (1,4,9,27,35,27,21,23),
4707 (1,4,10,28,36,27,21,23),
4708 (1,4,11,29,38,28,22,24),
4709 (1,4,12,30,39,29,22,24),
4710 (1,4,13,31,41,30,22,25),
4711 (1,4,14,31,43,31,22,25),
4712 (1,4,15,32,44,31,22,25),
4713 (1,4,16,33,46,32,23,26),
4714 (1,4,17,34,48,33,23,26),
4715 (1,4,18,35,49,34,23,27),
4716 (1,4,19,36,51,35,23,27),
4717 (1,4,20,37,53,35,23,28),
4718 (1,4,21,38,54,36,24,28),
4719 (1,4,22,39,56,37,24,29),
4720 (1,4,23,40,58,38,24,29),
4721 (1,4,24,41,60,39,24,30),
4722 (1,4,25,42,61,40,25,30),
4723 (1,4,26,43,63,41,25,31),
4724 (1,4,27,44,65,42,25,31),
4725 (1,4,28,45,67,43,25,32),
4726 (1,4,29,46,69,43,25,32),
4727 (1,4,30,47,71,44,26,33),
4728 (1,4,31,48,72,45,26,33),
4729 (1,4,32,49,74,46,26,34),
4730 (1,4,33,50,76,47,27,34),
4731 (1,4,34,51,78,48,27,35),
4732 (1,4,35,52,80,49,27,35),
4733 (1,4,36,53,82,50,27,36),
4734 (1,4,37,54,84,51,28,36),
4735 (1,4,38,55,86,52,28,37),
4736 (1,4,39,56,88,53,28,38),
4737 (1,4,40,57,90,54,28,38),
4738 (1,4,41,58,92,55,29,39),
4739 (1,4,42,60,94,56,29,39),
4740 (1,4,43,61,96,57,29,40),
4741 (1,4,44,62,98,58,30,40),
4742 (1,4,45,63,100,59,30,41),
4743 (1,4,46,64,103,61,30,42),
4744 (1,4,47,65,105,62,31,42),
4745 (1,4,48,66,107,63,31,43),
4746 (1,4,49,68,109,64,31,44),
4747 (1,4,50,69,111,65,32,44),
4748 (1,4,51,70,113,66,32,45),
4749 (1,4,52,71,116,67,32,45),
4750 (1,4,53,73,118,68,33,46),
4751 (1,4,54,74,120,69,33,47),
4752 (1,4,55,75,122,71,33,47),
4753 (1,4,56,76,125,72,34,48),
4754 (1,4,57,78,127,73,34,49),
4755 (1,4,58,79,129,74,34,49),
4756 (1,4,59,80,131,75,35,50),
4757 (1,4,60,81,134,77,35,51),
4758 (1,4,61,83,136,78,35,51),
4759 (1,4,62,84,138,79,36,52),
4760 (1,4,63,85,141,80,36,53),
4761 (1,4,64,87,143,81,37,54),
4762 (1,4,65,88,146,83,37,54),
4763 (1,4,66,89,148,84,37,55),
4764 (1,4,67,91,151,85,38,56),
4765 (1,4,68,92,153,86,38,57),
4766 (1,4,69,94,156,88,39,57),
4767 (1,4,70,95,158,89,39,58),
4768 (1,4,71,97,161,90,39,60),
4769 (1,4,72,99,164,92,40,60),
4770 (1,4,73,100,167,94,40,61),
4771 (1,4,74,102,170,95,41,62),
4772 (1,4,75,104,173,97,41,63),
4773 (1,4,76,105,176,98,41,64),
4774 (1,4,77,107,179,100,42,65),
4775 (1,4,78,109,183,106,42,66),
4776 (1,4,79,111,186,107,43,67),
4777 (1,4,80,113,189,109,43,69),
4778 (1,5,1,20,20,20,22,23),
4779 (1,5,2,20,20,20,23,24),
4780 (1,5,3,20,20,21,25,26),
4781 (1,5,4,20,21,21,26,27),
4782 (1,5,5,21,21,21,27,28),
4783 (1,5,6,21,21,22,29,30),
4784 (1,5,7,21,21,22,30,31),
4785 (1,5,8,21,22,23,31,33),
4786 (1,5,9,21,22,23,33,34),
4787 (1,5,10,21,22,23,34,36),
4788 (1,5,11,22,22,24,36,37),
4789 (1,5,12,22,23,24,37,39),
4790 (1,5,13,22,23,25,38,40),
4791 (1,5,14,22,23,25,40,42),
4792 (1,5,15,22,23,25,41,43),
4793 (1,5,16,23,24,26,43,45),
4794 (1,5,17,23,24,26,44,46),
4795 (1,5,18,23,24,27,46,48),
4796 (1,5,19,23,24,27,47,49),
4797 (1,5,20,23,25,28,49,51),
4798 (1,5,21,24,25,28,51,53),
4799 (1,5,22,24,25,29,52,54),
4800 (1,5,23,24,26,29,54,56),
4801 (1,5,24,24,26,30,55,58),
4802 (1,5,25,25,26,30,57,59),
4803 (1,5,26,25,27,31,59,61),
4804 (1,5,27,25,27,31,60,63),
4805 (1,5,28,25,27,32,62,65),
4806 (1,5,29,25,28,32,64,66),
4807 (1,5,30,26,28,33,65,68),
4808 (1,5,31,26,28,33,67,70),
4809 (1,5,32,26,29,34,69,72),
4810 (1,5,33,27,29,34,70,73),
4811 (1,5,34,27,29,35,72,75),
4812 (1,5,35,27,30,35,74,77),
4813 (1,5,36,27,30,36,76,79),
4814 (1,5,37,28,30,36,78,81),
4815 (1,5,38,28,31,37,79,83),
4816 (1,5,39,28,31,38,81,85),
4817 (1,5,40,28,31,38,83,87),
4818 (1,5,41,29,32,39,85,88),
4819 (1,5,42,29,32,39,87,90),
4820 (1,5,43,29,33,40,89,92),
4821 (1,5,44,30,33,40,91,94),
4822 (1,5,45,30,33,41,92,96),
4823 (1,5,46,30,34,42,94,98),
4824 (1,5,47,31,34,42,96,100),
4825 (1,5,48,31,35,43,98,102),
4826 (1,5,49,31,35,44,100,104),
4827 (1,5,50,32,36,44,102,106),
4828 (1,5,51,32,36,45,104,109),
4829 (1,5,52,32,36,45,106,111),
4830 (1,5,53,33,37,46,108,113),
4831 (1,5,54,33,37,47,110,115),
4832 (1,5,55,33,38,47,112,117),
4833 (1,5,56,34,38,48,114,119),
4834 (1,5,57,34,39,49,117,121),
4835 (1,5,58,34,39,49,119,124),
4836 (1,5,59,35,40,50,121,126),
4837 (1,5,60,35,40,51,123,128),
4838 (1,5,61,35,41,51,125,130),
4839 (1,5,62,36,41,52,127,132),
4840 (1,5,63,36,41,53,129,135),
4841 (1,5,64,37,42,54,132,137),
4842 (1,5,65,37,42,54,134,139),
4843 (1,5,66,37,43,55,136,142),
4844 (1,5,67,38,43,56,138,144),
4845 (1,5,68,38,44,57,140,146),
4846 (1,5,69,39,44,57,143,149),
4847 (1,5,70,39,45,58,145,151),
4848 (1,5,71,39,46,59,148,158),
4849 (1,5,72,40,46,59,151,161),
4850 (1,5,73,40,47,60,154,164),
4851 (1,5,74,41,47,61,156,167),
4852 (1,5,75,41,48,62,159,170),
4853 (1,5,76,41,49,63,162,174),
4854 (1,5,77,42,49,64,165,177),
4855 (1,5,78,42,50,65,168,180),
4856 (1,5,79,43,50,66,171,183),
4857 (1,5,80,43,51,67,174,186),
4858 (1,6,1,23,20,22,20,20),
4859 (1,6,2,24,21,23,20,20),
4860 (1,6,3,26,22,24,20,21),
4861 (1,6,4,27,22,26,20,21),
4862 (1,6,5,28,23,27,20,21),
4863 (1,6,6,30,24,28,20,21),
4864 (1,6,7,31,25,29,21,22),
4865 (1,6,8,32,26,30,21,22),
4866 (1,6,9,34,26,32,21,22),
4867 (1,6,10,35,27,33,21,23),
4868 (1,6,11,36,28,34,21,23),
4869 (1,6,12,38,29,35,21,23),
4870 (1,6,13,39,30,37,21,24),
4871 (1,6,14,41,31,38,21,24),
4872 (1,6,15,42,32,39,21,24),
4873 (1,6,16,44,33,41,21,25),
4874 (1,6,17,45,34,42,22,25),
4875 (1,6,18,47,34,43,22,25),
4876 (1,6,19,48,35,45,22,26),
4877 (1,6,20,50,36,46,22,26),
4878 (1,6,21,51,37,48,22,26),
4879 (1,6,22,53,38,49,22,27),
4880 (1,6,23,54,39,51,22,27),
4881 (1,6,24,56,40,52,23,28),
4882 (1,6,25,58,41,53,23,28),
4883 (1,6,26,59,42,55,23,28),
4884 (1,6,27,61,43,56,23,29),
4885 (1,6,28,63,44,58,23,29),
4886 (1,6,29,64,45,59,23,30),
4887 (1,6,30,66,46,61,24,30),
4888 (1,6,31,68,47,62,24,30),
4889 (1,6,32,69,48,64,24,31),
4890 (1,6,33,71,50,66,24,31),
4891 (1,6,34,73,51,67,24,32),
4892 (1,6,35,74,52,69,24,32),
4893 (1,6,36,76,53,70,25,33),
4894 (1,6,37,78,54,72,25,33),
4895 (1,6,38,80,55,74,25,34),
4896 (1,6,39,82,56,75,25,34),
4897 (1,6,40,83,57,77,25,35),
4898 (1,6,41,85,58,79,26,35),
4899 (1,6,42,87,60,80,26,35),
4900 (1,6,43,89,61,82,26,36),
4901 (1,6,44,91,62,84,26,36),
4902 (1,6,45,93,63,85,26,37),
4903 (1,6,46,95,64,87,27,37),
4904 (1,6,47,97,66,89,27,38),
4905 (1,6,48,99,67,91,27,38),
4906 (1,6,49,101,68,93,27,39),
4907 (1,6,50,103,69,94,28,40),
4908 (1,6,51,105,71,96,28,40),
4909 (1,6,52,106,72,97,28,41),
4910 (1,6,53,107,72,98,28,41),
4911 (1,6,54,107,73,98,29,42),
4912 (1,6,55,108,73,99,29,43),
4913 (1,6,56,111,75,102,29,44),
4914 (1,6,57,113,76,104,29,44),
4915 (1,6,58,118,77,106,30,45),
4916 (1,6,59,118,79,108,30,45),
4917 (1,6,60,123,80,110,30,46),
4918 (1,6,61,125,81,112,30,47),
4919 (1,6,62,128,83,114,30,47),
4920 (1,6,63,130,84,117,31,48),
4921 (1,6,64,130,86,119,31,48),
4922 (1,6,65,140,87,128,31,49),
4923 (1,6,66,143,89,131,31,50),
4924 (1,6,67,146,90,133,32,50),
4925 (1,6,68,148,92,135,32,51),
4926 (1,6,69,151,93,138,32,52),
4927 (1,6,70,154,95,140,32,52),
4928 (1,6,71,162,97,144,33,53),
4929 (1,6,72,164,98,146,33,54),
4930 (1,6,73,165,100,148,33,55),
4931 (1,6,74,166,102,151,33,55),
4932 (1,6,75,169,103,154,34,56),
4933 (1,6,76,172,105,157,34,57),
4934 (1,6,77,175,107,157,34,58),
4935 (1,6,78,176,108,157,34,58),
4936 (1,6,79,177,110,157,35,59),
4937 (1,6,80,180,112,160,35,60),
4938 (1,8,1,20,20,20,23,22),
4939 (1,8,2,20,20,20,24,23),
4940 (1,8,3,20,20,21,26,25),
4941 (1,8,4,20,20,21,27,26),
4942 (1,8,5,20,21,21,28,27),
4943 (1,8,6,20,21,21,30,29),
4944 (1,8,7,21,21,22,31,30),
4945 (1,8,8,21,21,22,33,31),
4946 (1,8,9,21,21,22,34,33),
4947 (1,8,10,21,21,23,36,34),
4948 (1,8,11,21,22,23,37,36),
4949 (1,8,12,21,22,23,39,37),
4950 (1,8,13,21,22,24,40,38),
4951 (1,8,14,21,22,24,42,40),
4952 (1,8,15,21,22,24,43,41),
4953 (1,8,16,21,23,25,45,43),
4954 (1,8,17,22,23,25,46,44),
4955 (1,8,18,22,23,25,48,46),
4956 (1,8,19,22,23,26,49,47),
4957 (1,8,20,22,23,26,51,49),
4958 (1,8,21,22,24,26,53,51),
4959 (1,8,22,22,24,27,54,52),
4960 (1,8,23,22,24,27,56,54),
4961 (1,8,24,23,24,28,58,55),
4962 (1,8,25,23,25,28,59,57),
4963 (1,8,26,23,25,28,61,59),
4964 (1,8,27,23,25,29,63,60),
4965 (1,8,28,23,25,29,65,62),
4966 (1,8,29,23,25,30,66,64),
4967 (1,8,30,24,26,30,68,65),
4968 (1,8,31,24,26,30,70,67),
4969 (1,8,32,24,26,31,72,69),
4970 (1,8,33,24,27,31,73,70),
4971 (1,8,34,24,27,32,75,72),
4972 (1,8,35,24,27,32,77,74),
4973 (1,8,36,25,27,33,79,76),
4974 (1,8,37,25,28,33,81,78),
4975 (1,8,38,25,28,34,83,79),
4976 (1,8,39,25,28,34,85,81),
4977 (1,8,40,25,28,35,87,83),
4978 (1,8,41,26,29,35,88,85),
4979 (1,8,42,26,29,35,90,87),
4980 (1,8,43,26,29,36,92,89),
4981 (1,8,44,26,30,36,94,91),
4982 (1,8,45,26,30,37,96,92),
4983 (1,8,46,27,30,37,98,94),
4984 (1,8,47,27,31,38,100,96),
4985 (1,8,48,27,31,38,102,98),
4986 (1,8,49,27,31,39,104,100),
4987 (1,8,50,28,32,40,106,102),
4988 (1,8,51,28,32,40,109,104),
4989 (1,8,52,28,32,41,111,106),
4990 (1,8,53,28,33,41,113,108),
4991 (1,8,54,29,33,42,115,110),
4992 (1,8,55,29,33,42,117,112),
4993 (1,8,56,29,34,43,119,114),
4994 (1,8,57,29,34,43,121,117),
4995 (1,8,58,30,34,44,124,119),
4996 (1,8,59,30,35,44,126,121),
4997 (1,8,60,30,35,45,128,123),
4998 (1,8,61,30,35,46,130,125),
4999 (1,8,62,31,36,46,132,127),
5000 (1,8,63,31,36,47,135,129),
5001 (1,8,64,31,37,47,137,132),
5002 (1,8,65,32,37,48,139,134),
5003 (1,8,66,32,37,49,142,136),
5004 (1,8,67,32,38,49,144,138),
5005 (1,8,68,32,38,50,146,140),
5006 (1,8,69,33,39,50,149,143),
5007 (1,8,70,33,39,51,151,145),
5008 (1,8,71,33,39,52,154,152),
5009 (1,8,72,33,40,53,160,155),
5010 (1,8,73,33,40,54,160,158),
5011 (1,8,74,34,41,54,163,160),
5012 (1,8,75,34,41,55,166,163),
5013 (1,8,76,34,41,56,169,166),
5014 (1,8,77,35,42,57,172,169),
5015 (1,8,78,35,42,57,175,173),
5016 (1,8,79,35,43,58,178,176),
5017 (1,8,80,36,43,59,181,179),
5018 (1,9,1,20,20,21,22,22),
5019 (1,9,2,20,20,22,23,23),
5020 (1,9,3,21,21,22,24,24),
5021 (1,9,4,21,21,23,26,25),
5022 (1,9,5,21,21,23,27,27),
5023 (1,9,6,21,22,24,28,28),
5024 (1,9,7,22,22,24,29,29),
5025 (1,9,8,22,23,25,30,30),
5026 (1,9,9,22,23,26,32,31),
5027 (1,9,10,23,23,26,33,33),
5028 (1,9,11,23,24,27,34,34),
5029 (1,9,12,23,24,27,35,35),
5030 (1,9,13,24,25,28,37,36),
5031 (1,9,14,24,25,29,38,38),
5032 (1,9,15,24,25,29,39,39),
5033 (1,9,16,25,26,30,41,40),
5034 (1,9,17,25,26,31,42,42),
5035 (1,9,18,25,27,31,43,43),
5036 (1,9,19,26,27,32,45,44),
5037 (1,9,20,26,28,33,46,46),
5038 (1,9,21,26,28,33,48,47),
5039 (1,9,22,27,29,34,49,49),
5040 (1,9,23,27,29,35,51,50),
5041 (1,9,24,28,30,35,52,51),
5042 (1,9,25,28,30,36,53,53),
5043 (1,9,26,28,31,37,55,54),
5044 (1,9,27,29,31,37,56,56),
5045 (1,9,28,29,32,38,58,57),
5046 (1,9,29,30,32,39,59,59),
5047 (1,9,30,30,33,40,61,60),
5048 (1,9,31,30,33,40,62,62),
5049 (1,9,32,31,34,41,64,63),
5050 (1,9,33,31,34,42,66,65),
5051 (1,9,34,32,35,43,67,66),
5052 (1,9,35,32,35,44,69,68),
5053 (1,9,36,33,36,44,70,69),
5054 (1,9,37,33,36,45,72,71),
5055 (1,9,38,34,37,46,74,73),
5056 (1,9,39,34,38,47,75,74),
5057 (1,9,40,35,38,48,77,76),
5058 (1,9,41,35,39,48,79,78),
5059 (1,9,42,35,39,49,80,79),
5060 (1,9,43,36,40,50,82,81),
5061 (1,9,44,36,40,51,84,83),
5062 (1,9,45,37,41,52,85,84),
5063 (1,9,46,37,42,53,87,86),
5064 (1,9,47,38,42,54,89,88),
5065 (1,9,48,38,43,55,91,89),
5066 (1,9,49,39,44,55,93,91),
5067 (1,9,50,40,44,56,94,93),
5068 (1,9,51,40,45,57,96,95),
5069 (1,9,52,41,45,58,98,97),
5070 (1,9,53,41,46,59,100,98),
5071 (1,9,54,42,47,60,102,100),
5072 (1,9,55,42,47,61,103,102),
5073 (1,9,56,43,48,62,105,104),
5074 (1,9,57,43,49,63,107,106),
5075 (1,9,58,44,49,64,109,108),
5076 (1,9,59,44,50,65,111,109),
5077 (1,9,60,45,51,66,113,111),
5078 (1,9,61,46,51,67,115,113),
5079 (1,9,62,46,52,68,117,115),
5080 (1,9,63,47,53,69,119,117),
5081 (1,9,64,47,54,70,121,119),
5082 (1,9,65,48,54,71,123,121),
5083 (1,9,66,49,55,72,125,123),
5084 (1,9,67,49,56,73,127,125),
5085 (1,9,68,50,57,74,129,127),
5086 (1,9,69,50,57,75,131,129),
5087 (1,9,70,51,58,76,133,131),
5088 (1,9,71,52,59,78,135,146),
5089 (1,9,72,53,59,79,138,148),
5090 (1,9,73,54,60,80,140,151),
5091 (1,9,74,54,61,89,143,154),
5092 (1,9,75,55,62,91,145,156),
5093 (1,9,76,56,63,92,148,159),
5094 (1,9,77,57,64,93,151,162),
5095 (1,9,78,57,65,95,153,165),
5096 (1,9,79,58,66,96,156,168),
5097 (1,9,80,59,67,97,159,170),
5098 (2,1,1,26,17,24,17,23),
5099 (2,1,2,27,18,25,17,23),
5100 (2,1,3,29,19,26,17,24),
5101 (2,1,4,30,19,27,17,24),
5102 (2,1,5,31,20,29,17,24),
5103 (2,1,6,32,21,30,17,24),
5104 (2,1,7,34,22,31,18,25),
5105 (2,1,8,35,23,32,18,25),
5106 (2,1,9,37,24,34,18,25),
5107 (2,1,10,38,24,35,18,26),
5108 (2,1,11,39,25,36,18,26),
5109 (2,1,12,41,26,37,18,26),
5110 (2,1,13,42,27,39,18,27),
5111 (2,1,14,44,28,40,18,27),
5112 (2,1,15,45,29,41,18,27),
5113 (2,1,16,47,30,43,19,28),
5114 (2,1,17,48,31,44,19,28),
5115 (2,1,18,50,32,45,19,28),
5116 (2,1,19,51,33,47,19,29),
5117 (2,1,20,53,34,48,19,29),
5118 (2,1,21,54,34,50,19,29),
5119 (2,1,22,56,35,51,19,30),
5120 (2,1,23,57,36,52,20,30),
5121 (2,1,24,59,37,54,20,30),
5122 (2,1,25,60,38,55,20,31),
5123 (2,1,26,62,39,57,20,31),
5124 (2,1,27,64,40,58,20,32),
5125 (2,1,28,65,41,60,20,32),
5126 (2,1,29,67,43,61,21,32),
5127 (2,1,30,69,44,63,21,33),
5128 (2,1,31,70,45,64,21,33),
5129 (2,1,32,72,46,66,21,34),
5130 (2,1,33,74,47,67,21,34),
5131 (2,1,34,76,48,69,21,35),
5132 (2,1,35,77,49,71,22,35),
5133 (2,1,36,79,50,72,22,36),
5134 (2,1,37,81,51,74,22,36),
5135 (2,1,38,83,52,76,22,36),
5136 (2,1,39,84,53,77,22,37),
5137 (2,1,40,86,55,79,23,37),
5138 (2,1,41,88,56,81,23,38),
5139 (2,1,42,90,57,82,23,38),
5140 (2,1,43,92,58,84,23,39),
5141 (2,1,44,94,59,86,23,39),
5142 (2,1,45,96,60,87,24,40),
5143 (2,1,46,98,62,89,24,40),
5144 (2,1,47,100,63,91,24,41),
5145 (2,1,48,101,64,93,24,41),
5146 (2,1,49,103,65,94,25,42),
5147 (2,1,50,105,66,96,25,42),
5148 (2,1,51,107,68,98,25,43),
5149 (2,1,52,109,69,100,25,43),
5150 (2,1,53,111,70,102,25,44),
5151 (2,1,54,113,71,104,26,45),
5152 (2,1,55,115,73,105,26,45),
5153 (2,1,56,118,74,107,26,46),
5154 (2,1,57,120,75,109,26,46),
5155 (2,1,58,122,77,111,27,47),
5156 (2,1,59,124,78,113,27,47),
5157 (2,1,60,126,79,115,27,48),
5158 (2,1,61,128,81,117,27,48),
5159 (2,1,62,130,82,119,28,49),
5160 (2,1,63,132,83,121,28,50),
5161 (2,1,64,135,85,123,28,50),
5162 (2,1,65,137,86,125,29,51),
5163 (2,1,66,139,87,127,29,52),
5164 (2,1,67,141,89,129,29,52),
5165 (2,1,68,143,90,131,29,53),
5166 (2,1,69,146,92,133,30,53),
5167 (2,1,70,148,93,135,30,54),
5168 (2,1,71,157,94,142,30,55),
5169 (2,1,72,162,96,148,30,56),
5170 (2,1,73,165,98,150,30,57),
5171 (2,1,74,168,99,153,31,57),
5172 (2,1,75,170,101,154,31,58),
5173 (2,1,76,172,103,156,31,59),
5174 (2,1,77,174,105,159,32,60),
5175 (2,1,78,179,106,162,32,60),
5176 (2,1,79,184,108,167,32,61),
5177 (2,1,80,187,110,170,33,62),
5178 (2,3,1,23,20,23,17,24),
5179 (2,3,2,23,21,24,18,25),
5180 (2,3,3,24,23,25,18,25),
5181 (2,3,4,24,24,26,19,26),
5182 (2,3,5,25,25,27,19,26),
5183 (2,3,6,25,27,28,20,27),
5184 (2,3,7,26,28,28,21,28),
5185 (2,3,8,26,30,29,21,28),
5186 (2,3,9,26,31,30,22,29),
5187 (2,3,10,27,33,31,22,30),
5188 (2,3,11,27,34,32,23,30),
5189 (2,3,12,28,36,33,24,31),
5190 (2,3,13,28,37,34,24,32),
5191 (2,3,14,29,39,35,25,33),
5192 (2,3,15,29,40,36,26,33),
5193 (2,3,16,30,42,37,26,34),
5194 (2,3,17,30,43,39,27,35),
5195 (2,3,18,31,45,40,28,35),
5196 (2,3,19,31,47,41,28,36),
5197 (2,3,20,32,48,42,29,37),
5198 (2,3,21,32,50,43,30,38),
5199 (2,3,22,33,51,44,31,39),
5200 (2,3,23,34,53,45,31,39),
5201 (2,3,24,34,55,46,32,40),
5202 (2,3,25,35,57,47,33,41),
5203 (2,3,26,35,58,48,34,42),
5204 (2,3,27,36,60,50,34,43),
5205 (2,3,28,36,62,51,35,43),
5206 (2,3,29,37,63,52,36,44),
5207 (2,3,30,38,65,53,37,45),
5208 (2,3,31,38,67,54,37,46),
5209 (2,3,32,39,69,56,38,47),
5210 (2,3,33,39,71,57,39,48),
5211 (2,3,34,40,72,58,40,49),
5212 (2,3,35,41,74,59,41,49),
5213 (2,3,36,41,76,61,42,50),
5214 (2,3,37,42,78,62,42,51),
5215 (2,3,38,43,80,63,43,52),
5216 (2,3,39,43,82,64,44,53),
5217 (2,3,40,44,84,66,45,54),
5218 (2,3,41,45,86,67,46,55),
5219 (2,3,42,45,88,68,47,56),
5220 (2,3,43,46,90,70,47,57),
5221 (2,3,44,47,91,71,48,58),
5222 (2,3,45,47,93,72,49,59),
5223 (2,3,46,48,95,74,50,60),
5224 (2,3,47,49,98,75,51,61),
5225 (2,3,48,50,100,77,52,62),
5226 (2,3,49,50,102,78,53,63),
5227 (2,3,50,51,104,79,54,64),
5228 (2,3,51,52,106,81,55,65),
5229 (2,3,52,52,108,82,56,66),
5230 (2,3,53,53,110,84,57,67),
5231 (2,3,54,54,112,85,58,68),
5232 (2,3,55,55,114,87,59,69),
5233 (2,3,56,55,116,88,60,70),
5234 (2,3,57,56,118,90,61,71),
5235 (2,3,58,57,121,91,62,72),
5236 (2,3,59,58,123,93,63,73),
5237 (2,3,60,59,125,94,64,74),
5238 (2,3,61,59,127,96,65,76),
5239 (2,3,62,60,130,97,66,77),
5240 (2,3,63,61,132,99,67,78),
5241 (2,3,64,62,134,100,68,79),
5242 (2,3,65,63,136,102,69,80),
5243 (2,3,66,64,139,104,70,81),
5244 (2,3,67,64,141,105,71,82),
5245 (2,3,68,65,143,107,72,84),
5246 (2,3,69,66,146,108,73,85),
5247 (2,3,70,67,148,110,74,86),
5248 (2,3,71,68,151,112,75,87),
5249 (2,3,72,69,154,114,76,88),
5250 (2,3,73,70,157,116,77,90),
5251 (2,3,74,71,160,118,79,91),
5252 (2,3,75,72,163,120,80,93),
5253 (2,3,76,73,166,122,81,94),
5254 (2,3,77,74,169,124,83,96),
5255 (2,3,78,75,172,126,84,97),
5256 (2,3,79,76,175,128,85,99),
5257 (2,3,80,77,178,130,87,100),
5258 (2,4,1,24,20,23,17,23),
5259 (2,4,2,25,21,24,17,23),
5260 (2,4,3,25,23,24,17,24),
5261 (2,4,4,26,24,25,17,24),
5262 (2,4,5,27,26,26,18,24),
5263 (2,4,6,28,27,26,18,25),
5264 (2,4,7,29,29,27,18,25),
5265 (2,4,8,29,30,28,18,26),
5266 (2,4,9,30,32,29,18,26),
5267 (2,4,10,31,33,29,19,26),
5268 (2,4,11,32,35,30,19,27),
5269 (2,4,12,33,37,31,19,27),
5270 (2,4,13,34,38,32,19,28),
5271 (2,4,14,34,40,32,19,28),
5272 (2,4,15,35,41,33,19,28),
5273 (2,4,16,36,43,34,20,29),
5274 (2,4,17,37,45,35,20,29),
5275 (2,4,18,38,46,36,20,30),
5276 (2,4,19,39,48,37,20,30),
5277 (2,4,20,40,50,37,21,31),
5278 (2,4,21,41,52,38,21,31),
5279 (2,4,22,42,53,39,21,31),
5280 (2,4,23,43,55,40,21,32),
5281 (2,4,24,43,57,41,21,32),
5282 (2,4,25,44,59,42,22,33),
5283 (2,4,26,45,60,43,22,33),
5284 (2,4,27,46,62,44,22,34),
5285 (2,4,28,47,64,44,22,34),
5286 (2,4,29,48,66,45,23,35),
5287 (2,4,30,49,68,46,23,35),
5288 (2,4,31,50,70,47,23,36),
5289 (2,4,32,51,72,48,23,36),
5290 (2,4,33,53,73,49,24,37),
5291 (2,4,34,54,75,50,24,38),
5292 (2,4,35,55,77,51,24,38),
5293 (2,4,36,56,79,52,24,39),
5294 (2,4,37,57,81,53,25,39),
5295 (2,4,38,58,83,54,25,40),
5296 (2,4,39,59,85,55,25,40),
5297 (2,4,40,60,87,56,26,41),
5298 (2,4,41,61,89,57,26,41),
5299 (2,4,42,62,91,58,26,42),
5300 (2,4,43,63,93,59,27,43),
5301 (2,4,44,65,95,60,27,43),
5302 (2,4,45,66,98,61,27,44),
5303 (2,4,46,67,100,62,27,44),
5304 (2,4,47,68,102,64,28,45),
5305 (2,4,48,69,104,65,28,46),
5306 (2,4,49,71,106,66,28,46),
5307 (2,4,50,72,108,67,29,47),
5308 (2,4,51,73,110,68,29,48),
5309 (2,4,52,74,113,69,29,48),
5310 (2,4,53,75,115,70,30,49),
5311 (2,4,54,77,117,71,30,50),
5312 (2,4,55,78,119,73,30,50),
5313 (2,4,56,79,122,74,31,51),
5314 (2,4,57,80,124,75,31,52),
5315 (2,4,58,82,126,76,31,52),
5316 (2,4,59,83,129,77,32,53),
5317 (2,4,60,84,131,78,32,54),
5318 (2,4,61,86,133,80,33,54),
5319 (2,4,62,87,136,81,33,55),
5320 (2,4,63,88,138,82,33,56),
5321 (2,4,64,90,140,83,34,57),
5322 (2,4,65,91,143,85,34,57),
5323 (2,4,66,92,145,86,34,58),
5324 (2,4,67,94,148,87,35,59),
5325 (2,4,68,95,150,88,35,59),
5326 (2,4,69,97,153,90,36,60),
5327 (2,4,70,98,155,91,36,61),
5328 (2,4,71,100,158,92,36,62),
5329 (2,4,72,102,161,94,37,62),
5330 (2,4,73,103,164,99,37,63),
5331 (2,4,74,105,167,100,38,64),
5332 (2,4,75,107,170,102,38,65),
5333 (2,4,76,108,173,102,38,66),
5334 (2,4,77,110,176,102,39,67),
5335 (2,4,78,112,180,103,39,68),
5336 (2,4,79,114,183,105,40,69),
5337 (2,4,80,116,186,107,40,70),
5338 (2,6,1,26,17,24,17,23),
5339 (2,6,2,27,18,25,17,23),
5340 (2,6,3,29,19,26,17,24),
5341 (2,6,4,30,19,27,17,24),
5342 (2,6,5,31,20,29,17,24),
5343 (2,6,6,32,21,30,17,24),
5344 (2,6,7,34,22,31,18,25),
5345 (2,6,8,35,23,32,18,25),
5346 (2,6,9,37,24,34,18,25),
5347 (2,6,10,38,24,35,18,26),
5348 (2,6,11,39,25,36,18,26),
5349 (2,6,12,41,26,37,18,26),
5350 (2,6,13,42,27,39,18,27),
5351 (2,6,14,44,28,40,18,27),
5352 (2,6,15,45,29,41,18,27),
5353 (2,6,16,47,30,43,19,28),
5354 (2,6,17,48,31,44,19,28),
5355 (2,6,18,50,32,45,19,28),
5356 (2,6,19,51,33,47,19,29),
5357 (2,6,20,53,34,48,19,29),
5358 (2,6,21,54,34,50,19,29),
5359 (2,6,22,56,35,51,19,30),
5360 (2,6,23,57,36,52,20,30),
5361 (2,6,24,59,37,54,20,30),
5362 (2,6,25,60,38,55,20,31),
5363 (2,6,26,62,39,57,20,31),
5364 (2,6,27,64,40,58,20,32),
5365 (2,6,28,65,41,60,20,32),
5366 (2,6,29,67,43,61,21,32),
5367 (2,6,30,69,44,63,21,33),
5368 (2,6,31,70,45,64,21,33),
5369 (2,6,32,72,46,66,21,34),
5370 (2,6,33,74,47,67,21,34),
5371 (2,6,34,76,48,69,21,35),
5372 (2,6,35,77,49,71,22,35),
5373 (2,6,36,79,50,72,22,36),
5374 (2,6,37,81,51,74,22,36),
5375 (2,6,38,83,52,76,22,36),
5376 (2,6,39,84,53,77,22,37),
5377 (2,6,40,86,55,79,23,37),
5378 (2,6,41,88,56,81,23,38),
5379 (2,6,42,90,57,82,23,38),
5380 (2,6,43,92,58,84,23,39),
5381 (2,6,44,94,59,86,23,39),
5382 (2,6,45,96,60,87,24,40),
5383 (2,6,46,98,62,89,24,40),
5384 (2,6,47,100,63,91,24,41),
5385 (2,6,48,101,64,93,24,41),
5386 (2,6,49,103,65,94,25,42),
5387 (2,6,50,105,66,96,25,42),
5388 (2,6,51,107,68,98,25,43),
5389 (2,6,52,109,69,100,25,43),
5390 (2,6,53,110,69,100,25,44),
5391 (2,6,54,111,70,101,26,45),
5392 (2,6,55,111,70,101,26,45),
5393 (2,6,56,114,72,104,26,46),
5394 (2,6,57,116,73,106,26,46),
5395 (2,6,58,118,74,108,27,47),
5396 (2,6,59,124,76,110,27,47),
5397 (2,6,60,126,77,112,27,48),
5398 (2,6,61,128,78,114,27,49),
5399 (2,6,62,131,80,116,27,49),
5400 (2,6,63,133,81,119,28,50),
5401 (2,6,64,136,83,121,28,50),
5402 (2,6,65,136,84,123,28,51),
5403 (2,6,66,142,86,126,28,52),
5404 (2,6,67,145,87,128,29,52),
5405 (2,6,68,147,89,130,29,53),
5406 (2,6,69,150,90,133,29,54),
5407 (2,6,70,157,92,135,29,54),
5408 (2,6,71,160,94,138,30,55),
5409 (2,6,72,163,95,140,30,56),
5410 (2,6,73,166,97,151,30,57),
5411 (2,6,74,169,99,154,30,57),
5412 (2,6,75,172,100,156,31,58),
5413 (2,6,76,175,102,160,31,59),
5414 (2,6,77,179,104,162,31,60),
5415 (2,6,78,182,105,165,31,60),
5416 (2,6,79,191,107,168,32,61),
5417 (2,6,80,194,109,171,32,62),
5418 (2,7,1,24,17,23,18,25),
5419 (2,7,2,25,17,24,19,26),
5420 (2,7,3,26,18,25,20,27),
5421 (2,7,4,26,18,26,21,28),
5422 (2,7,5,27,19,27,22,29),
5423 (2,7,6,28,19,28,23,30),
5424 (2,7,7,29,20,29,24,31),
5425 (2,7,8,30,20,30,25,32),
5426 (2,7,9,31,21,31,26,33),
5427 (2,7,10,32,21,32,27,34),
5428 (2,7,11,33,22,33,28,36),
5429 (2,7,12,34,22,34,29,37),
5430 (2,7,13,34,23,35,30,38),
5431 (2,7,14,35,23,36,31,39),
5432 (2,7,15,36,24,37,32,40),
5433 (2,7,16,37,24,39,33,41),
5434 (2,7,17,38,25,40,34,43),
5435 (2,7,18,39,25,41,35,44),
5436 (2,7,19,40,26,42,36,45),
5437 (2,7,20,41,26,43,37,46),
5438 (2,7,21,42,27,44,38,47),
5439 (2,7,22,43,27,45,39,49),
5440 (2,7,23,44,28,47,40,50),
5441 (2,7,24,45,28,48,41,51),
5442 (2,7,25,47,29,49,43,52),
5443 (2,7,26,48,30,50,44,54),
5444 (2,7,27,49,30,52,45,55),
5445 (2,7,28,50,31,53,46,56),
5446 (2,7,29,51,31,54,47,58),
5447 (2,7,30,52,32,55,48,59),
5448 (2,7,31,53,33,57,50,60),
5449 (2,7,32,54,33,58,51,62),
5450 (2,7,33,55,34,59,52,63),
5451 (2,7,34,57,34,61,53,65),
5452 (2,7,35,58,35,62,55,66),
5453 (2,7,36,59,36,63,56,67),
5454 (2,7,37,60,36,65,57,69),
5455 (2,7,38,61,37,66,58,70),
5456 (2,7,39,62,38,67,60,72),
5457 (2,7,40,64,38,69,61,73),
5458 (2,7,41,65,39,70,62,75),
5459 (2,7,42,66,40,72,64,76),
5460 (2,7,43,67,40,73,65,78),
5461 (2,7,44,69,41,74,66,79),
5462 (2,7,45,70,42,76,68,81),
5463 (2,7,46,71,42,77,69,82),
5464 (2,7,47,72,43,79,70,84),
5465 (2,7,48,74,44,80,72,85),
5466 (2,7,49,75,45,82,73,87),
5467 (2,7,50,76,45,83,75,89),
5468 (2,7,51,78,46,85,76,90),
5469 (2,7,52,79,47,86,77,92),
5470 (2,7,53,80,47,88,79,93),
5471 (2,7,54,82,48,90,80,95),
5472 (2,7,55,83,49,91,82,97),
5473 (2,7,56,85,50,93,83,98),
5474 (2,7,57,86,50,94,85,100),
5475 (2,7,58,87,51,96,86,102),
5476 (2,7,59,89,52,97,88,103),
5477 (2,7,60,90,53,99,89,105),
5478 (2,7,61,92,54,101,91,107),
5479 (2,7,62,93,54,102,92,109),
5480 (2,7,63,95,55,104,94,110),
5481 (2,7,64,96,56,106,95,112),
5482 (2,7,65,97,57,107,97,114),
5483 (2,7,66,99,58,109,99,116),
5484 (2,7,67,100,58,111,100,118),
5485 (2,7,68,102,59,113,102,119),
5486 (2,7,69,103,60,114,103,121),
5487 (2,7,70,105,61,116,105,123),
5488 (2,7,71,106,62,118,117,125),
5489 (2,7,72,108,63,120,119,128),
5490 (2,7,73,110,64,122,122,130),
5491 (2,7,74,112,65,125,124,132),
5492 (2,7,75,114,66,127,126,134),
5493 (2,7,76,116,67,129,128,137),
5494 (2,7,77,117,68,131,128,139),
5495 (2,7,78,119,69,133,133,141),
5496 (2,7,79,121,70,136,135,144),
5497 (2,7,80,123,71,138,137,146),
5498 (2,9,1,23,17,23,19,25),
5499 (2,9,2,23,17,24,20,26),
5500 (2,9,3,24,18,24,21,27),
5501 (2,9,4,24,18,25,23,28),
5502 (2,9,5,24,18,25,24,30),
5503 (2,9,6,24,19,26,25,31),
5504 (2,9,7,25,19,26,26,32),
5505 (2,9,8,25,20,27,27,33),
5506 (2,9,9,25,20,27,29,34),
5507 (2,9,10,26,20,28,30,36),
5508 (2,9,11,26,21,29,31,37),
5509 (2,9,12,26,21,29,33,38),
5510 (2,9,13,27,22,30,34,39),
5511 (2,9,14,27,22,31,35,41),
5512 (2,9,15,27,23,31,37,42),
5513 (2,9,16,28,23,32,38,43),
5514 (2,9,17,28,23,32,39,45),
5515 (2,9,18,28,24,33,41,46),
5516 (2,9,19,29,24,34,42,47),
5517 (2,9,20,29,25,34,43,49),
5518 (2,9,21,29,25,35,45,50),
5519 (2,9,22,30,26,36,46,51),
5520 (2,9,23,30,26,37,48,53),
5521 (2,9,24,30,27,37,49,54),
5522 (2,9,25,31,27,38,51,56),
5523 (2,9,26,31,28,39,52,57),
5524 (2,9,27,32,28,39,54,59),
5525 (2,9,28,32,29,40,55,60),
5526 (2,9,29,32,29,41,57,62),
5527 (2,9,30,33,30,42,58,63),
5528 (2,9,31,33,30,42,60,65),
5529 (2,9,32,34,31,43,61,66),
5530 (2,9,33,34,31,44,63,68),
5531 (2,9,34,35,32,45,64,69),
5532 (2,9,35,35,32,45,66,71),
5533 (2,9,36,36,33,46,68,72),
5534 (2,9,37,36,34,47,69,74),
5535 (2,9,38,36,34,48,71,76),
5536 (2,9,39,37,35,49,72,77),
5537 (2,9,40,37,35,50,74,79),
5538 (2,9,41,38,36,50,76,80),
5539 (2,9,42,38,36,51,77,82),
5540 (2,9,43,39,37,52,79,84),
5541 (2,9,44,39,38,53,81,85),
5542 (2,9,45,40,38,54,83,87),
5543 (2,9,46,40,39,55,84,89),
5544 (2,9,47,41,39,56,86,91),
5545 (2,9,48,41,40,56,88,92),
5546 (2,9,49,42,41,57,90,94),
5547 (2,9,50,42,41,58,91,96),
5548 (2,9,51,43,42,59,93,98),
5549 (2,9,52,43,43,60,95,99),
5550 (2,9,53,44,43,61,97,101),
5551 (2,9,54,45,44,62,99,103),
5552 (2,9,55,45,45,63,101,105),
5553 (2,9,56,46,45,64,102,107),
5554 (2,9,57,46,46,65,104,109),
5555 (2,9,58,47,47,66,106,110),
5556 (2,9,59,47,47,67,108,112),
5557 (2,9,60,48,48,68,110,114),
5558 (2,9,61,48,49,69,112,116),
5559 (2,9,62,49,49,70,114,118),
5560 (2,9,63,50,50,71,116,120),
5561 (2,9,64,50,51,72,118,122),
5562 (2,9,65,51,51,73,120,124),
5563 (2,9,66,52,52,74,122,126),
5564 (2,9,67,52,53,75,124,128),
5565 (2,9,68,53,54,76,126,130),
5566 (2,9,69,53,54,77,128,132),
5567 (2,9,70,54,55,78,130,134),
5568 (2,9,71,55,56,88,134,145),
5569 (2,9,72,56,56,89,135,147),
5570 (2,9,73,57,57,90,137,150),
5571 (2,9,74,57,58,91,142,153),
5572 (2,9,75,58,59,93,142,155),
5573 (2,9,76,59,60,94,145,158),
5574 (2,9,77,60,61,95,148,161),
5575 (2,9,78,60,62,97,150,164),
5576 (2,9,79,61,63,98,153,167),
5577 (2,9,80,62,64,99,156,169),
5578 (3,1,1,25,16,25,19,19),
5579 (3,1,2,26,17,26,19,19),
5580 (3,1,3,28,18,27,19,20),
5581 (3,1,4,29,18,28,19,20),
5582 (3,1,5,30,19,30,19,20),
5583 (3,1,6,31,20,31,19,20),
5584 (3,1,7,33,21,32,20,21),
5585 (3,1,8,34,22,33,20,21),
5586 (3,1,9,36,23,35,20,21),
5587 (3,1,10,37,23,36,20,22),
5588 (3,1,11,38,24,37,20,22),
5589 (3,1,12,40,25,38,20,22),
5590 (3,1,13,41,26,40,20,23),
5591 (3,1,14,43,27,41,20,23),
5592 (3,1,15,44,28,42,20,23),
5593 (3,1,16,46,29,44,21,24),
5594 (3,1,17,47,30,45,21,24),
5595 (3,1,18,49,31,46,21,24),
5596 (3,1,19,50,32,48,21,25),
5597 (3,1,20,52,33,49,21,25),
5598 (3,1,21,53,34,51,21,26),
5599 (3,1,22,55,34,52,21,26),
5600 (3,1,23,56,35,53,21,26),
5601 (3,1,24,58,36,55,22,27),
5602 (3,1,25,59,37,56,22,27),
5603 (3,1,26,61,38,58,22,27),
5604 (3,1,27,63,39,59,22,28),
5605 (3,1,28,64,41,61,22,28),
5606 (3,1,29,66,42,62,22,29),
5607 (3,1,30,68,43,64,23,29),
5608 (3,1,31,69,44,65,23,30),
5609 (3,1,32,71,45,67,23,30),
5610 (3,1,33,73,46,68,23,30),
5611 (3,1,34,75,47,70,23,31),
5612 (3,1,35,76,48,72,24,31),
5613 (3,1,36,78,49,73,24,32),
5614 (3,1,37,80,50,75,24,32),
5615 (3,1,38,82,51,76,24,33),
5616 (3,1,39,84,52,78,24,33),
5617 (3,1,40,85,54,80,24,34),
5618 (3,1,41,87,55,81,25,34),
5619 (3,1,42,89,56,83,25,35),
5620 (3,1,43,91,57,85,25,35),
5621 (3,1,44,93,58,87,25,36),
5622 (3,1,45,95,59,88,26,36),
5623 (3,1,46,97,61,90,26,37),
5624 (3,1,47,99,62,92,26,37),
5625 (3,1,48,101,63,94,26,38),
5626 (3,1,49,102,64,95,26,38),
5627 (3,1,50,104,65,97,27,39),
5628 (3,1,51,106,67,99,27,39),
5629 (3,1,52,108,68,101,27,40),
5630 (3,1,53,110,69,103,27,40),
5631 (3,1,54,112,70,104,28,41),
5632 (3,1,55,115,72,106,28,41),
5633 (3,1,56,117,73,108,28,42),
5634 (3,1,57,119,74,110,28,42),
5635 (3,1,58,121,76,112,29,43),
5636 (3,1,59,123,77,114,29,43),
5637 (3,1,60,125,78,116,29,44),
5638 (3,1,61,127,80,118,29,45),
5639 (3,1,62,129,81,120,30,45),
5640 (3,1,63,131,82,122,30,46),
5641 (3,1,64,134,84,124,30,46),
5642 (3,1,65,136,85,126,31,47),
5643 (3,1,66,138,86,128,31,48),
5644 (3,1,67,140,88,130,31,48),
5645 (3,1,68,142,89,132,31,49),
5646 (3,1,69,145,91,134,32,49),
5647 (3,1,70,147,92,136,32,50),
5648 (3,1,71,150,93,138,32,51),
5649 (3,1,72,152,95,141,32,52),
5650 (3,1,73,164,97,151,32,53),
5651 (3,1,74,164,98,151,33,53),
5652 (3,1,75,170,100,156,33,54),
5653 (3,1,76,173,102,160,33,55),
5654 (3,1,77,173,104,160,34,56),
5655 (3,1,78,176,105,162,34,56),
5656 (3,1,79,183,107,168,34,57),
5657 (3,1,80,186,109,171,35,58),
5658 (3,2,1,24,16,25,19,20),
5659 (3,2,2,25,17,26,20,21),
5660 (3,2,3,26,17,27,20,21),
5661 (3,2,4,27,18,28,21,22),
5662 (3,2,5,28,18,29,22,23),
5663 (3,2,6,29,19,30,22,24),
5664 (3,2,7,31,20,31,23,24),
5665 (3,2,8,32,20,32,24,25),
5666 (3,2,9,33,21,33,24,26),
5667 (3,2,10,34,21,34,25,26),
5668 (3,2,11,35,22,36,26,27),
5669 (3,2,12,36,23,37,26,28),
5670 (3,2,13,38,23,38,27,29),
5671 (3,2,14,39,24,39,28,30),
5672 (3,2,15,40,25,40,29,30),
5673 (3,2,16,41,25,41,29,31),
5674 (3,2,17,43,26,43,30,32),
5675 (3,2,18,44,27,44,31,33),
5676 (3,2,19,45,28,45,32,34),
5677 (3,2,20,47,28,46,32,35),
5678 (3,2,21,48,29,47,33,35),
5679 (3,2,22,49,30,49,34,36),
5680 (3,2,23,51,30,50,35,37),
5681 (3,2,24,52,31,51,36,38),
5682 (3,2,25,53,32,52,36,39),
5683 (3,2,26,55,33,54,37,40),
5684 (3,2,27,56,33,55,38,41),
5685 (3,2,28,57,34,56,39,42),
5686 (3,2,29,59,35,58,40,43),
5687 (3,2,30,60,36,59,41,43),
5688 (3,2,31,62,37,60,42,44),
5689 (3,2,32,63,37,62,42,45),
5690 (3,2,33,65,38,63,43,46),
5691 (3,2,34,66,39,65,44,47),
5692 (3,2,35,68,40,66,45,48),
5693 (3,2,36,69,41,67,46,49),
5694 (3,2,37,71,41,69,47,50),
5695 (3,2,38,72,42,70,48,51),
5696 (3,2,39,74,43,72,49,52),
5697 (3,2,40,75,44,73,50,53),
5698 (3,2,41,77,45,75,51,54),
5699 (3,2,42,78,46,76,52,55),
5700 (3,2,43,80,47,78,53,56),
5701 (3,2,44,82,47,79,54,57),
5702 (3,2,45,83,48,81,55,59),
5703 (3,2,46,85,49,82,56,60),
5704 (3,2,47,87,50,84,57,61),
5705 (3,2,48,88,51,85,58,62),
5706 (3,2,49,90,52,87,59,63),
5707 (3,2,50,92,53,89,60,64),
5708 (3,2,51,93,54,90,61,65),
5709 (3,2,52,95,55,92,62,66),
5710 (3,2,53,97,56,93,63,67),
5711 (3,2,54,98,57,95,64,69),
5712 (3,2,55,100,58,97,65,70),
5713 (3,2,56,102,59,98,66,71),
5714 (3,2,57,104,60,100,67,72),
5715 (3,2,58,106,61,102,68,73),
5716 (3,2,59,107,62,103,69,74),
5717 (3,2,60,109,63,105,70,76),
5718 (3,2,61,111,64,107,72,77),
5719 (3,2,62,113,65,109,73,78),
5720 (3,2,63,115,66,110,74,79),
5721 (3,2,64,117,67,112,75,80),
5722 (3,2,65,118,68,114,76,82),
5723 (3,2,66,120,69,116,77,83),
5724 (3,2,67,122,70,118,78,84),
5725 (3,2,68,124,71,119,80,85),
5726 (3,2,69,126,72,121,81,87),
5727 (3,2,70,128,73,123,82,88),
5728 (3,2,71,150,74,125,83,89),
5729 (3,2,72,152,75,128,85,91),
5730 (3,2,73,156,76,130,86,93),
5731 (3,2,74,158,78,132,88,94),
5732 (3,2,75,161,79,134,89,96),
5733 (3,2,76,164,80,137,91,97),
5734 (3,2,77,166,82,139,92,99),
5735 (3,2,78,170,83,141,94,101),
5736 (3,2,79,172,84,144,95,102),
5737 (3,2,80,175,86,146,97,104),
5738 (3,3,1,22,19,24,19,20),
5739 (3,3,2,22,20,25,20,21),
5740 (3,3,3,23,22,26,20,21),
5741 (3,3,4,23,23,27,21,22),
5742 (3,3,5,24,25,28,21,23),
5743 (3,3,6,24,26,29,22,23),
5744 (3,3,7,25,27,29,23,24),
5745 (3,3,8,25,29,30,23,25),
5746 (3,3,9,25,30,31,24,25),
5747 (3,3,10,26,32,32,24,26),
5748 (3,3,11,26,33,33,25,27),
5749 (3,3,12,27,35,34,26,27),
5750 (3,3,13,27,36,35,26,28),
5751 (3,3,14,28,38,36,27,29),
5752 (3,3,15,28,39,37,28,29),
5753 (3,3,16,29,41,38,28,30),
5754 (3,3,17,29,42,39,29,31),
5755 (3,3,18,30,44,41,30,32),
5756 (3,3,19,30,46,42,30,32),
5757 (3,3,20,31,47,43,31,33),
5758 (3,3,21,32,49,44,32,34),
5759 (3,3,22,32,51,45,33,35),
5760 (3,3,23,33,52,46,33,36),
5761 (3,3,24,33,54,47,34,36),
5762 (3,3,25,34,56,48,35,37),
5763 (3,3,26,34,57,49,35,38),
5764 (3,3,27,35,59,51,36,39),
5765 (3,3,28,35,61,52,37,40),
5766 (3,3,29,36,63,53,38,40),
5767 (3,3,30,37,64,54,39,41),
5768 (3,3,31,37,66,55,39,42),
5769 (3,3,32,38,68,57,40,43),
5770 (3,3,33,38,70,58,41,44),
5771 (3,3,34,39,71,59,42,45),
5772 (3,3,35,40,73,60,43,46),
5773 (3,3,36,40,75,62,43,47),
5774 (3,3,37,41,77,63,44,47),
5775 (3,3,38,42,79,64,45,48),
5776 (3,3,39,42,81,65,46,49),
5777 (3,3,40,43,83,67,47,50),
5778 (3,3,41,44,85,68,48,51),
5779 (3,3,42,44,87,69,49,52),
5780 (3,3,43,45,89,71,49,53),
5781 (3,3,44,46,91,72,50,54),
5782 (3,3,45,46,93,73,51,55),
5783 (3,3,46,47,95,75,52,56),
5784 (3,3,47,48,97,76,53,57),
5785 (3,3,48,49,99,78,54,58),
5786 (3,3,49,49,101,79,55,59),
5787 (3,3,50,50,103,80,56,60),
5788 (3,3,51,51,105,82,57,61),
5789 (3,3,52,51,107,83,58,62),
5790 (3,3,53,52,109,85,59,63),
5791 (3,3,54,53,111,86,60,64),
5792 (3,3,55,54,113,88,61,65),
5793 (3,3,56,55,115,89,62,66),
5794 (3,3,57,55,118,91,62,67),
5795 (3,3,58,56,120,92,63,68),
5796 (3,3,59,57,122,94,64,70),
5797 (3,3,60,58,124,95,65,71),
5798 (3,3,61,58,126,97,67,72),
5799 (3,3,62,59,129,98,68,73),
5800 (3,3,63,60,131,100,69,74),
5801 (3,3,64,61,133,101,70,75),
5802 (3,3,65,62,135,103,71,76),
5803 (3,3,66,63,138,105,72,77),
5804 (3,3,67,63,140,106,73,78),
5805 (3,3,68,64,142,108,74,80),
5806 (3,3,69,65,145,109,75,81),
5807 (3,3,70,66,147,111,76,82),
5808 (3,3,71,67,150,113,77,83),
5809 (3,3,72,68,153,115,78,84),
5810 (3,3,73,69,156,117,79,86),
5811 (3,3,74,70,159,119,81,87),
5812 (3,3,75,71,162,121,82,89),
5813 (3,3,76,72,165,123,83,90),
5814 (3,3,77,73,168,125,85,92),
5815 (3,3,78,74,171,127,86,93),
5816 (3,3,79,75,174,129,87,95),
5817 (3,3,80,76,177,131,89,96),
5818 (3,4,1,23,19,24,19,19),
5819 (3,4,2,24,20,25,19,19),
5820 (3,4,3,24,22,25,19,20),
5821 (3,4,4,25,23,26,19,20),
5822 (3,4,5,26,25,27,20,20),
5823 (3,4,6,27,26,27,20,21),
5824 (3,4,7,28,28,28,20,21),
5825 (3,4,8,28,29,29,20,22),
5826 (3,4,9,29,31,30,20,22),
5827 (3,4,10,30,32,30,20,22),
5828 (3,4,11,31,34,31,21,23),
5829 (3,4,12,32,36,32,21,23),
5830 (3,4,13,33,37,33,21,24),
5831 (3,4,14,33,39,33,21,24),
5832 (3,4,15,34,40,34,21,25),
5833 (3,4,16,35,42,35,22,25),
5834 (3,4,17,36,44,36,22,25),
5835 (3,4,18,37,45,37,22,26),
5836 (3,4,19,38,47,38,22,26),
5837 (3,4,20,39,49,38,22,27),
5838 (3,4,21,40,51,39,23,27),
5839 (3,4,22,41,52,40,23,28),
5840 (3,4,23,42,54,41,23,28),
5841 (3,4,24,43,56,42,23,29),
5842 (3,4,25,44,58,43,24,29),
5843 (3,4,26,44,59,44,24,30),
5844 (3,4,27,45,61,44,24,30),
5845 (3,4,28,46,63,45,24,31),
5846 (3,4,29,47,65,46,25,31),
5847 (3,4,30,48,67,47,25,32),
5848 (3,4,31,49,69,48,25,32),
5849 (3,4,32,51,71,49,25,33),
5850 (3,4,33,52,72,50,26,33),
5851 (3,4,34,53,74,51,26,34),
5852 (3,4,35,54,76,52,26,34),
5853 (3,4,36,55,78,53,26,35),
5854 (3,4,37,56,80,54,27,35),
5855 (3,4,38,57,82,55,27,36),
5856 (3,4,39,58,84,56,27,37),
5857 (3,4,40,59,86,57,28,37),
5858 (3,4,41,60,88,58,28,38),
5859 (3,4,42,61,90,59,28,38),
5860 (3,4,43,63,92,60,28,39),
5861 (3,4,44,64,95,61,29,39),
5862 (3,4,45,65,97,62,29,40),
5863 (3,4,46,66,99,63,29,41),
5864 (3,4,47,67,101,64,30,41),
5865 (3,4,48,68,103,66,30,42),
5866 (3,4,49,70,105,67,30,43),
5867 (3,4,50,71,107,68,31,43),
5868 (3,4,51,72,110,69,31,44),
5869 (3,4,52,73,112,70,31,44),
5870 (3,4,53,74,114,71,32,45),
5871 (3,4,54,76,116,72,32,46),
5872 (3,4,55,77,118,73,32,46),
5873 (3,4,56,78,121,75,33,47),
5874 (3,4,57,80,123,76,33,48),
5875 (3,4,58,81,125,77,33,48),
5876 (3,4,59,82,128,78,34,49),
5877 (3,4,60,83,130,79,34,50),
5878 (3,4,61,85,132,81,34,51),
5879 (3,4,62,86,135,82,35,51),
5880 (3,4,63,87,137,83,35,52),
5881 (3,4,64,89,139,84,36,53),
5882 (3,4,65,90,142,86,36,53),
5883 (3,4,66,91,144,87,36,54),
5884 (3,4,67,93,147,88,37,55),
5885 (3,4,68,94,149,89,37,56),
5886 (3,4,69,96,152,91,38,56),
5887 (3,4,70,97,154,92,38,57),
5888 (3,4,71,99,157,93,38,58),
5889 (3,4,72,101,160,96,39,58),
5890 (3,4,73,102,163,97,39,59),
5891 (3,4,74,104,166,98,40,60),
5892 (3,4,75,106,169,100,40,61),
5893 (3,4,76,107,172,101,40,62),
5894 (3,4,77,109,175,103,41,63),
5895 (3,4,78,111,179,105,41,64),
5896 (3,4,79,113,182,106,42,65),
5897 (3,4,80,115,185,108,42,66),
5898 (3,5,1,22,16,23,21,22),
5899 (3,5,2,22,16,23,22,23),
5900 (3,5,3,22,16,24,24,25),
5901 (3,5,4,22,17,24,25,26),
5902 (3,5,5,23,17,24,26,27),
5903 (3,5,6,23,17,25,28,29),
5904 (3,5,7,23,17,25,29,30),
5905 (3,5,8,23,18,26,30,32),
5906 (3,5,9,23,18,26,32,33),
5907 (3,5,10,23,18,26,33,35),
5908 (3,5,11,24,18,27,35,36),
5909 (3,5,12,24,19,27,36,38),
5910 (3,5,13,24,19,28,37,39),
5911 (3,5,14,24,19,28,39,41),
5912 (3,5,15,24,19,28,40,42),
5913 (3,5,16,24,20,29,42,44),
5914 (3,5,17,25,20,29,43,45),
5915 (3,5,18,25,20,30,45,47),
5916 (3,5,19,25,21,30,46,49),
5917 (3,5,20,25,21,31,48,50),
5918 (3,5,21,25,21,31,50,52),
5919 (3,5,22,26,22,31,51,53),
5920 (3,5,23,26,22,32,53,55),
5921 (3,5,24,26,22,32,54,57),
5922 (3,5,25,26,22,33,56,58),
5923 (3,5,26,27,23,33,58,60),
5924 (3,5,27,27,23,34,59,62),
5925 (3,5,28,27,23,34,61,64),
5926 (3,5,29,27,24,35,63,65),
5927 (3,5,30,28,24,35,64,67),
5928 (3,5,31,28,24,36,66,69),
5929 (3,5,32,28,25,36,68,71),
5930 (3,5,33,28,25,37,70,72),
5931 (3,5,34,29,26,38,71,74),
5932 (3,5,35,29,26,38,73,76),
5933 (3,5,36,29,26,39,75,78),
5934 (3,5,37,29,27,39,77,80),
5935 (3,5,38,30,27,40,78,82),
5936 (3,5,39,30,27,40,80,84),
5937 (3,5,40,30,28,41,82,86),
5938 (3,5,41,31,28,41,84,88),
5939 (3,5,42,31,29,42,86,89),
5940 (3,5,43,31,29,43,88,91),
5941 (3,5,44,32,29,43,90,93),
5942 (3,5,45,32,30,44,92,95),
5943 (3,5,46,32,30,44,93,97),
5944 (3,5,47,32,30,45,95,99),
5945 (3,5,48,33,31,46,97,101),
5946 (3,5,49,33,31,46,99,103),
5947 (3,5,50,33,32,47,101,106),
5948 (3,5,51,34,32,48,103,108),
5949 (3,5,52,34,33,48,105,110),
5950 (3,5,53,35,33,49,107,112),
5951 (3,5,54,35,33,50,109,114),
5952 (3,5,55,35,34,50,111,116),
5953 (3,5,56,36,34,51,113,118),
5954 (3,5,57,36,35,52,116,120),
5955 (3,5,58,36,35,52,118,123),
5956 (3,5,59,37,36,53,120,125),
5957 (3,5,60,37,36,54,122,127),
5958 (3,5,61,37,37,54,124,129),
5959 (3,5,62,38,37,55,126,131),
5960 (3,5,63,38,38,56,128,134),
5961 (3,5,64,39,38,57,131,136),
5962 (3,5,65,39,39,57,133,138),
5963 (3,5,66,39,39,58,135,141),
5964 (3,5,67,40,40,59,137,143),
5965 (3,5,68,40,40,59,139,145),
5966 (3,5,69,41,40,60,142,148),
5967 (3,5,70,41,41,61,144,150),
5968 (3,5,71,41,42,62,147,153),
5969 (3,5,72,42,42,62,150,163),
5970 (3,5,73,42,43,63,153,166),
5971 (3,5,74,43,43,64,155,170),
5972 (3,5,75,43,44,65,158,173),
5973 (3,5,76,43,45,66,161,176),
5974 (3,5,77,44,45,67,164,179),
5975 (3,5,78,44,46,68,167,182),
5976 (3,5,79,45,46,69,170,184),
5977 (3,5,80,45,47,70,173,189),
5978 (3,6,1,25,16,25,19,19),
5979 (3,6,2,26,17,26,19,19),
5980 (3,6,3,28,18,27,19,20),
5981 (3,6,4,29,18,28,19,20),
5982 (3,6,5,30,19,30,19,20),
5983 (3,6,6,31,20,31,19,20),
5984 (3,6,7,33,21,32,20,21),
5985 (3,6,8,34,22,33,20,21),
5986 (3,6,9,36,23,35,20,21),
5987 (3,6,10,37,23,36,20,22),
5988 (3,6,11,38,24,37,20,22),
5989 (3,6,12,40,25,38,20,22),
5990 (3,6,13,41,26,40,20,23),
5991 (3,6,14,43,27,41,20,23),
5992 (3,6,15,44,28,42,20,23),
5993 (3,6,16,46,29,44,21,24),
5994 (3,6,17,47,30,45,21,24),
5995 (3,6,18,49,31,46,21,24),
5996 (3,6,19,50,32,48,21,25),
5997 (3,6,20,52,33,49,21,25),
5998 (3,6,21,53,34,51,21,26),
5999 (3,6,22,55,34,52,21,26),
6000 (3,6,23,56,35,53,21,26),
6001 (3,6,24,58,36,55,22,27),
6002 (3,6,25,59,37,56,22,27),
6003 (3,6,26,61,38,58,22,27),
6004 (3,6,27,63,39,59,22,28),
6005 (3,6,28,64,41,61,22,28),
6006 (3,6,29,66,42,62,22,29),
6007 (3,6,30,68,43,64,23,29),
6008 (3,6,31,69,44,65,23,30),
6009 (3,6,32,71,45,67,23,30),
6010 (3,6,33,73,46,68,23,30),
6011 (3,6,34,75,47,70,23,31),
6012 (3,6,35,76,48,72,24,31),
6013 (3,6,36,78,49,73,24,32),
6014 (3,6,37,80,50,75,24,32),
6015 (3,6,38,82,51,76,24,33),
6016 (3,6,39,84,52,78,24,33),
6017 (3,6,40,85,54,80,24,34),
6018 (3,6,41,87,55,81,25,34),
6019 (3,6,42,89,56,83,25,35),
6020 (3,6,43,91,57,85,25,35),
6021 (3,6,44,93,58,87,25,36),
6022 (3,6,45,95,59,88,26,36),
6023 (3,6,46,97,61,90,26,37),
6024 (3,6,47,99,62,92,26,37),
6025 (3,6,48,101,63,94,26,38),
6026 (3,6,49,102,64,95,26,38),
6027 (3,6,50,104,65,97,27,39),
6028 (3,6,51,106,67,99,27,39),
6029 (3,6,52,108,68,99,27,40),
6030 (3,6,53,109,68,101,27,40),
6031 (3,6,54,110,69,101,28,41),
6032 (3,6,55,110,69,102,28,41),
6033 (3,6,56,113,71,105,28,42),
6034 (3,6,57,118,72,107,28,42),
6035 (3,6,58,120,73,109,29,43),
6036 (3,6,59,123,75,111,29,43),
6037 (3,6,60,125,76,113,29,44),
6038 (3,6,61,126,77,115,29,45),
6039 (3,6,62,127,79,117,29,45),
6040 (3,6,63,129,80,120,30,46),
6041 (3,6,64,132,82,122,30,46),
6042 (3,6,65,135,83,124,30,47),
6043 (3,6,66,137,85,127,30,48),
6044 (3,6,67,144,86,129,31,48),
6045 (3,6,68,146,88,131,31,49),
6046 (3,6,69,149,89,133,31,50),
6047 (3,6,70,152,91,136,31,50),
6048 (3,6,71,154,93,139,32,51),
6049 (3,6,72,157,94,141,32,52),
6050 (3,6,73,160,96,144,32,53),
6051 (3,6,74,163,98,146,32,53),
6052 (3,6,75,166,99,150,33,54),
6053 (3,6,76,169,101,152,33,55),
6054 (3,6,77,172,103,155,33,56),
6055 (3,6,78,176,104,157,33,56),
6056 (3,6,79,179,106,160,34,57),
6057 (3,6,80,182,108,163,34,58),
6058 (4,1,1,20,25,21,20,20),
6059 (4,1,2,21,26,22,20,20),
6060 (4,1,3,23,27,23,20,21),
6061 (4,1,4,24,27,25,20,21),
6062 (4,1,5,25,28,26,20,21),
6063 (4,1,6,27,29,27,20,21),
6064 (4,1,7,28,30,28,21,22),
6065 (4,1,8,29,31,29,21,22),
6066 (4,1,9,31,31,31,21,22),
6067 (4,1,10,32,32,32,21,23),
6068 (4,1,11,33,33,33,21,23),
6069 (4,1,12,35,34,34,21,23),
6070 (4,1,13,36,35,36,21,24),
6071 (4,1,14,38,36,37,21,24),
6072 (4,1,15,39,37,38,21,24),
6073 (4,1,16,41,37,40,21,25),
6074 (4,1,17,42,38,41,22,25),
6075 (4,1,18,44,39,43,22,25),
6076 (4,1,19,45,40,44,22,26),
6077 (4,1,20,47,41,45,22,26),
6078 (4,1,21,48,42,47,22,26),
6079 (4,1,22,50,43,48,22,27),
6080 (4,1,23,52,44,50,22,27),
6081 (4,1,24,53,45,51,23,28),
6082 (4,1,25,55,46,52,23,28),
6083 (4,1,26,56,47,54,23,28),
6084 (4,1,27,58,48,55,23,29),
6085 (4,1,28,60,49,57,23,29),
6086 (4,1,29,61,50,58,23,30),
6087 (4,1,30,63,51,60,24,30),
6088 (4,1,31,65,52,62,24,30),
6089 (4,1,32,66,53,63,24,31),
6090 (4,1,33,68,54,65,24,31),
6091 (4,1,34,70,55,66,24,32),
6092 (4,1,35,72,56,68,24,32),
6093 (4,1,36,73,58,69,25,33),
6094 (4,1,37,75,59,71,25,33),
6095 (4,1,38,77,60,73,25,34),
6096 (4,1,39,79,61,74,25,34),
6097 (4,1,40,81,62,76,25,35),
6098 (4,1,41,82,63,78,26,35),
6099 (4,1,42,84,64,79,26,35),
6100 (4,1,43,86,66,81,26,36),
6101 (4,1,44,88,67,83,26,36),
6102 (4,1,45,90,68,85,26,37),
6103 (4,1,46,92,69,86,27,37),
6104 (4,1,47,94,70,88,27,38),
6105 (4,1,48,96,72,90,27,38),
6106 (4,1,49,98,73,92,27,39),
6107 (4,1,50,100,74,93,28,40),
6108 (4,1,51,102,75,95,28,40),
6109 (4,1,52,104,77,97,28,41),
6110 (4,1,53,106,78,99,28,41),
6111 (4,1,54,108,79,101,29,42),
6112 (4,1,55,110,80,103,29,42),
6113 (4,1,56,112,82,104,29,43),
6114 (4,1,57,114,83,106,29,43),
6115 (4,1,58,116,84,108,30,44),
6116 (4,1,59,118,86,110,30,44),
6117 (4,1,60,120,87,112,30,45),
6118 (4,1,61,122,88,114,30,46),
6119 (4,1,62,124,90,116,31,46),
6120 (4,1,63,127,91,118,31,47),
6121 (4,1,64,129,92,120,31,47),
6122 (4,1,65,131,94,122,32,48),
6123 (4,1,66,133,95,124,32,49),
6124 (4,1,67,135,97,126,32,49),
6125 (4,1,68,138,98,128,32,50),
6126 (4,1,69,140,100,130,33,50),
6127 (4,1,70,142,101,132,33,51),
6128 (4,1,71,145,102,134,33,52),
6129 (4,1,72,147,104,137,33,53),
6130 (4,1,73,150,106,139,33,54),
6131 (4,1,74,153,107,142,34,54),
6132 (4,1,75,156,109,144,34,55),
6133 (4,1,76,159,111,148,34,56),
6134 (4,1,77,162,113,150,35,57),
6135 (4,1,78,165,114,152,35,57),
6136 (4,1,79,178,116,164,35,58),
6137 (4,1,80,181,118,167,36,59),
6138 (4,3,1,17,28,20,20,21),
6139 (4,3,2,17,29,21,21,22),
6140 (4,3,3,18,31,22,21,22),
6141 (4,3,4,18,32,23,22,23),
6142 (4,3,5,19,33,24,22,24),
6143 (4,3,6,19,35,25,23,24),
6144 (4,3,7,20,36,26,24,25),
6145 (4,3,8,20,38,27,24,25),
6146 (4,3,9,21,39,27,25,26),
6147 (4,3,10,21,40,28,25,27),
6148 (4,3,11,22,42,29,26,28),
6149 (4,3,12,22,43,30,27,28),
6150 (4,3,13,23,45,31,27,29),
6151 (4,3,14,23,46,32,28,30),
6152 (4,3,15,24,48,34,29,30),
6153 (4,3,16,24,50,35,29,31),
6154 (4,3,17,25,51,36,30,32),
6155 (4,3,18,25,53,37,31,33),
6156 (4,3,19,26,54,38,31,33),
6157 (4,3,20,26,56,39,32,34),
6158 (4,3,21,27,57,40,33,35),
6159 (4,3,22,27,59,41,33,36),
6160 (4,3,23,28,61,42,34,36),
6161 (4,3,24,28,62,43,35,37),
6162 (4,3,25,29,64,44,36,38),
6163 (4,3,26,30,66,46,36,39),
6164 (4,3,27,30,68,47,37,40),
6165 (4,3,28,31,69,48,38,41),
6166 (4,3,29,31,71,49,39,41),
6167 (4,3,30,32,73,50,39,42),
6168 (4,3,31,33,75,52,40,43),
6169 (4,3,32,33,76,53,41,44),
6170 (4,3,33,34,78,54,42,45),
6171 (4,3,34,34,80,55,43,46),
6172 (4,3,35,35,82,57,44,47),
6173 (4,3,36,36,84,58,44,48),
6174 (4,3,37,36,86,59,45,48),
6175 (4,3,38,37,87,60,46,49),
6176 (4,3,39,38,89,62,47,50),
6177 (4,3,40,38,91,63,48,51),
6178 (4,3,41,39,93,64,49,52),
6179 (4,3,42,40,95,66,49,53),
6180 (4,3,43,40,97,67,50,54),
6181 (4,3,44,41,99,68,51,55),
6182 (4,3,45,42,101,70,52,56),
6183 (4,3,46,42,103,71,53,57),
6184 (4,3,47,43,105,72,54,58),
6185 (4,3,48,44,107,74,55,59),
6186 (4,3,49,45,109,75,56,60),
6187 (4,3,50,45,111,77,57,61),
6188 (4,3,51,46,113,78,58,62),
6189 (4,3,52,47,115,79,59,63),
6190 (4,3,53,47,118,81,60,64),
6191 (4,3,54,48,120,82,61,65),
6192 (4,3,55,49,122,84,61,66),
6193 (4,3,56,50,124,85,62,67),
6194 (4,3,57,50,126,87,63,68),
6195 (4,3,58,51,128,88,64,69),
6196 (4,3,59,52,131,90,65,70),
6197 (4,3,60,53,133,91,66,72),
6198 (4,3,61,54,135,93,67,73),
6199 (4,3,62,54,137,94,69,74),
6200 (4,3,63,55,140,96,70,75),
6201 (4,3,64,56,142,97,71,76),
6202 (4,3,65,57,144,99,72,77),
6203 (4,3,66,58,147,101,73,78),
6204 (4,3,67,58,149,102,74,79),
6205 (4,3,68,59,151,104,75,81),
6206 (4,3,69,60,154,105,76,82),
6207 (4,3,70,61,156,107,77,83),
6208 (4,3,71,62,159,109,78,84),
6209 (4,3,72,63,162,111,79,85),
6210 (4,3,73,64,165,113,80,87),
6211 (4,3,74,65,168,115,82,88),
6212 (4,3,75,66,171,117,83,90),
6213 (4,3,76,67,174,119,84,91),
6214 (4,3,77,68,177,121,86,93),
6215 (4,3,78,69,180,123,87,94),
6216 (4,3,79,70,190,125,91,96),
6217 (4,3,80,71,193,127,93,97),
6218 (4,4,1,18,28,20,20,20),
6219 (4,4,2,19,29,21,20,20),
6220 (4,4,3,20,31,21,20,21),
6221 (4,4,4,20,32,22,20,21),
6222 (4,4,5,21,34,23,21,21),
6223 (4,4,6,22,35,24,21,22),
6224 (4,4,7,23,37,24,21,22),
6225 (4,4,8,24,38,25,21,23),
6226 (4,4,9,24,40,26,21,23),
6227 (4,4,10,25,41,26,21,23),
6228 (4,4,11,26,43,27,22,24),
6229 (4,4,12,27,44,28,22,24),
6230 (4,4,13,28,46,29,22,25),
6231 (4,4,14,29,48,30,22,25),
6232 (4,4,15,29,49,30,22,25),
6233 (4,4,16,30,51,31,23,26),
6234 (4,4,17,31,52,32,23,26),
6235 (4,4,18,32,54,33,23,27),
6236 (4,4,19,33,56,34,23,27),
6237 (4,4,20,34,57,35,23,28),
6238 (4,4,21,35,59,35,24,28),
6239 (4,4,22,36,61,36,24,29),
6240 (4,4,23,37,63,37,24,29),
6241 (4,4,24,38,64,38,24,30),
6242 (4,4,25,39,66,39,25,30),
6243 (4,4,26,40,68,40,25,31),
6244 (4,4,27,41,70,41,25,31),
6245 (4,4,28,42,72,42,25,32),
6246 (4,4,29,43,73,43,25,32),
6247 (4,4,30,44,75,43,26,33),
6248 (4,4,31,45,77,44,26,33),
6249 (4,4,32,46,79,45,26,34),
6250 (4,4,33,47,81,46,27,34),
6251 (4,4,34,48,83,47,27,35),
6252 (4,4,35,49,85,48,27,35),
6253 (4,4,36,50,87,49,27,36),
6254 (4,4,37,51,89,50,28,36),
6255 (4,4,38,52,91,51,28,37),
6256 (4,4,39,53,93,52,28,38),
6257 (4,4,40,54,95,53,28,38),
6258 (4,4,41,56,97,54,29,39),
6259 (4,4,42,57,99,55,29,39),
6260 (4,4,43,58,101,56,29,40),
6261 (4,4,44,59,103,57,30,40),
6262 (4,4,45,60,105,59,30,41),
6263 (4,4,46,61,107,60,30,42),
6264 (4,4,47,62,109,61,31,42),
6265 (4,4,48,64,112,62,31,43),
6266 (4,4,49,65,114,63,31,44),
6267 (4,4,50,66,116,64,32,44),
6268 (4,4,51,67,118,65,32,45),
6269 (4,4,52,68,120,66,32,45),
6270 (4,4,53,70,123,67,33,46),
6271 (4,4,54,71,125,69,33,47),
6272 (4,4,55,72,127,70,33,47),
6273 (4,4,56,73,129,71,34,48),
6274 (4,4,57,75,132,72,34,49),
6275 (4,4,58,76,134,73,34,49),
6276 (4,4,59,77,136,74,35,50),
6277 (4,4,60,79,139,76,35,51),
6278 (4,4,61,80,141,77,35,51),
6279 (4,4,62,81,143,78,36,52),
6280 (4,4,63,82,146,79,36,53),
6281 (4,4,64,84,148,80,37,54),
6282 (4,4,65,85,151,82,37,54),
6283 (4,4,66,87,153,83,37,55),
6284 (4,4,67,88,156,84,38,56),
6285 (4,4,68,89,158,85,38,57),
6286 (4,4,69,91,160,87,39,57),
6287 (4,4,70,92,163,88,39,58),
6288 (4,4,71,94,166,90,39,59),
6289 (4,4,72,96,169,91,40,59),
6290 (4,4,73,97,172,93,40,60),
6291 (4,4,74,99,175,94,41,61),
6292 (4,4,75,101,178,96,41,62),
6293 (4,4,76,102,181,97,41,63),
6294 (4,4,77,104,184,99,42,64),
6295 (4,4,78,106,188,101,42,65),
6296 (4,4,79,108,191,102,43,66),
6297 (4,4,80,110,194,104,43,67),
6298 (4,5,1,17,25,19,22,23),
6299 (4,5,2,17,25,19,23,24),
6300 (4,5,3,17,25,20,25,26),
6301 (4,5,4,17,26,20,26,27),
6302 (4,5,5,18,26,20,27,28),
6303 (4,5,6,18,26,21,29,30),
6304 (4,5,7,18,26,21,30,31),
6305 (4,5,8,18,26,22,31,33),
6306 (4,5,9,18,27,22,33,34),
6307 (4,5,10,19,27,22,34,36),
6308 (4,5,11,19,27,23,36,37),
6309 (4,5,12,19,27,23,37,39),
6310 (4,5,13,19,28,24,38,40),
6311 (4,5,14,19,28,24,40,42),
6312 (4,5,15,19,28,25,41,43),
6313 (4,5,16,20,28,25,43,45),
6314 (4,5,17,20,29,25,44,46),
6315 (4,5,18,20,29,26,46,48),
6316 (4,5,19,20,29,26,47,49),
6317 (4,5,20,21,30,27,49,51),
6318 (4,5,21,21,30,27,51,53),
6319 (4,5,22,21,30,28,52,54),
6320 (4,5,23,21,30,28,54,56),
6321 (4,5,24,21,31,29,55,58),
6322 (4,5,25,22,31,29,57,59),
6323 (4,5,26,22,31,30,59,61),
6324 (4,5,27,22,32,30,60,63),
6325 (4,5,28,22,32,31,62,65),
6326 (4,5,29,23,32,31,64,66),
6327 (4,5,30,23,33,32,65,68),
6328 (4,5,31,23,33,32,67,70),
6329 (4,5,32,23,33,33,69,72),
6330 (4,5,33,24,34,33,70,73),
6331 (4,5,34,24,34,34,72,75),
6332 (4,5,35,24,34,34,74,77),
6333 (4,5,36,24,35,35,76,79),
6334 (4,5,37,25,35,35,78,81),
6335 (4,5,38,25,35,36,79,83),
6336 (4,5,39,25,36,37,81,85),
6337 (4,5,40,26,36,37,83,87),
6338 (4,5,41,26,37,38,85,88),
6339 (4,5,42,26,37,38,87,90),
6340 (4,5,43,27,37,39,89,92),
6341 (4,5,44,27,38,39,91,94),
6342 (4,5,45,27,38,40,92,96),
6343 (4,5,46,27,39,41,94,98),
6344 (4,5,47,28,39,41,96,100),
6345 (4,5,48,28,39,42,98,102),
6346 (4,5,49,28,40,43,100,104),
6347 (4,5,50,29,40,43,102,106),
6348 (4,5,51,29,41,44,104,109),
6349 (4,5,52,29,41,44,106,111),
6350 (4,5,53,30,42,45,108,113),
6351 (4,5,54,30,42,46,110,115),
6352 (4,5,55,30,43,46,112,117),
6353 (4,5,56,31,43,47,114,119),
6354 (4,5,57,31,43,48,117,121),
6355 (4,5,58,31,44,48,119,124),
6356 (4,5,59,32,44,49,121,126),
6357 (4,5,60,32,45,50,123,128),
6358 (4,5,61,33,45,51,125,130),
6359 (4,5,62,33,46,51,127,132),
6360 (4,5,63,33,46,52,129,135),
6361 (4,5,64,34,47,53,132,137),
6362 (4,5,65,34,47,53,134,139),
6363 (4,5,66,34,48,54,136,142),
6364 (4,5,67,35,48,55,138,144),
6365 (4,5,68,35,49,56,140,146),
6366 (4,5,69,36,49,56,143,149),
6367 (4,5,70,36,50,57,145,151),
6368 (4,5,71,36,51,58,148,161),
6369 (4,5,72,37,51,58,151,164),
6370 (4,5,73,37,52,59,154,168),
6371 (4,5,74,38,52,60,156,171),
6372 (4,5,75,38,53,61,159,174),
6373 (4,5,76,38,54,62,162,177),
6374 (4,5,77,39,54,63,165,180),
6375 (4,5,78,39,55,64,168,183),
6376 (4,5,79,40,55,65,171,186),
6377 (4,5,80,40,56,66,200,191),
6378 (4,6,1,20,25,21,20,20),
6379 (4,6,2,21,26,22,20,20),
6380 (4,6,3,23,27,23,20,21),
6381 (4,6,4,24,27,25,20,21),
6382 (4,6,5,25,28,26,20,21),
6383 (4,6,6,27,29,27,20,21),
6384 (4,6,7,28,30,28,21,22),
6385 (4,6,8,29,31,29,21,22),
6386 (4,6,9,31,31,31,21,22),
6387 (4,6,10,32,32,32,21,23),
6388 (4,6,11,33,33,33,21,23),
6389 (4,6,12,35,34,34,21,23),
6390 (4,6,13,36,35,36,21,24),
6391 (4,6,14,38,36,37,21,24),
6392 (4,6,15,39,37,38,21,24),
6393 (4,6,16,41,37,40,21,25),
6394 (4,6,17,42,38,41,22,25),
6395 (4,6,18,44,39,43,22,25),
6396 (4,6,19,45,40,44,22,26),
6397 (4,6,20,47,41,45,22,26),
6398 (4,6,21,48,42,47,22,26),
6399 (4,6,22,50,43,48,22,27),
6400 (4,6,23,52,44,50,22,27),
6401 (4,6,24,53,45,51,23,28),
6402 (4,6,25,55,46,52,23,28),
6403 (4,6,26,56,47,54,23,28),
6404 (4,6,27,58,48,55,23,29),
6405 (4,6,28,60,49,57,23,29),
6406 (4,6,29,61,50,58,23,30),
6407 (4,6,30,63,51,60,24,30),
6408 (4,6,31,65,52,62,24,30),
6409 (4,6,32,66,53,63,24,31),
6410 (4,6,33,68,54,65,24,31),
6411 (4,6,34,70,55,66,24,32),
6412 (4,6,35,72,56,68,24,32),
6413 (4,6,36,73,58,69,25,33),
6414 (4,6,37,75,59,71,25,33),
6415 (4,6,38,77,60,73,25,34),
6416 (4,6,39,79,61,74,25,34),
6417 (4,6,40,81,62,76,25,35),
6418 (4,6,41,82,63,78,26,35),
6419 (4,6,42,84,64,79,26,35),
6420 (4,6,43,86,66,81,26,36),
6421 (4,6,44,88,67,83,26,36),
6422 (4,6,45,90,68,85,26,37),
6423 (4,6,46,92,69,86,27,37),
6424 (4,6,47,94,70,88,27,38),
6425 (4,6,48,96,72,90,27,38),
6426 (4,6,49,98,73,92,27,39),
6427 (4,6,50,100,74,93,28,40),
6428 (4,6,51,101,75,94,28,40),
6429 (4,6,52,102,76,95,28,41),
6430 (4,6,53,103,77,96,28,41),
6431 (4,6,54,104,77,97,29,42),
6432 (4,6,55,105,78,98,29,42),
6433 (4,6,56,108,80,101,29,43),
6434 (4,6,57,113,81,103,29,43),
6435 (4,6,58,115,82,105,30,44),
6436 (4,6,59,115,84,107,30,44),
6437 (4,6,60,120,85,109,30,45),
6438 (4,6,61,122,86,111,30,46),
6439 (4,6,62,122,88,113,30,46),
6440 (4,6,63,127,89,116,31,47),
6441 (4,6,64,127,91,118,31,47),
6442 (4,6,65,133,92,120,31,48),
6443 (4,6,66,135,94,123,31,49),
6444 (4,6,67,136,95,125,32,49),
6445 (4,6,68,137,97,127,32,50),
6446 (4,6,69,140,98,130,32,51),
6447 (4,6,70,147,100,132,32,51),
6448 (4,6,71,154,102,135,33,52),
6449 (4,6,72,156,103,137,33,53),
6450 (4,6,73,157,105,140,33,54),
6451 (4,6,74,158,107,142,33,54),
6452 (4,6,75,161,108,145,34,55),
6453 (4,6,76,164,110,148,34,56),
6454 (4,6,77,167,112,150,34,57),
6455 (4,6,78,170,113,153,34,57),
6456 (4,6,79,172,115,156,35,58),
6457 (4,6,80,177,117,159,35,59),
6458 (4,11,1,18,25,19,22,22),
6459 (4,11,2,19,25,20,23,23),
6460 (4,11,3,19,26,20,24,24),
6461 (4,11,4,20,26,21,25,26),
6462 (4,11,5,20,27,22,26,27),
6463 (4,11,6,21,27,22,27,28),
6464 (4,11,7,21,28,23,28,29),
6465 (4,11,8,22,28,24,29,30),
6466 (4,11,9,23,29,24,30,32),
6467 (4,11,10,23,29,25,32,33),
6468 (4,11,11,24,30,26,33,34),
6469 (4,11,12,24,31,26,34,35),
6470 (4,11,13,25,31,27,35,37),
6471 (4,11,14,26,32,28,36,38),
6472 (4,11,15,26,32,29,37,39),
6473 (4,11,16,27,33,29,38,41),
6474 (4,11,17,28,33,30,40,42),
6475 (4,11,18,28,34,31,41,43),
6476 (4,11,19,29,35,32,42,45),
6477 (4,11,20,30,35,32,43,46),
6478 (4,11,21,30,36,33,45,48),
6479 (4,11,22,31,36,34,46,49),
6480 (4,11,23,32,37,35,47,51),
6481 (4,11,24,32,38,36,48,52),
6482 (4,11,25,33,38,36,50,53),
6483 (4,11,26,34,39,37,51,55),
6484 (4,11,27,35,40,38,52,56),
6485 (4,11,28,35,40,39,54,58),
6486 (4,11,29,36,41,40,55,59),
6487 (4,11,30,37,42,41,56,61),
6488 (4,11,31,38,42,42,58,62),
6489 (4,11,32,38,43,42,59,64),
6490 (4,11,33,39,44,43,60,66),
6491 (4,11,34,40,44,44,62,67),
6492 (4,11,35,41,45,45,63,69),
6493 (4,11,36,42,46,46,65,70),
6494 (4,11,37,42,47,47,66,72),
6495 (4,11,38,43,47,48,67,74),
6496 (4,11,39,44,48,49,69,75),
6497 (4,11,40,45,49,50,70,77),
6498 (4,11,41,46,50,51,72,79),
6499 (4,11,42,46,50,52,73,80),
6500 (4,11,43,47,51,53,75,82),
6501 (4,11,44,48,52,54,76,84),
6502 (4,11,45,49,53,55,78,85),
6503 (4,11,46,50,54,56,79,87),
6504 (4,11,47,51,54,57,81,89),
6505 (4,11,48,52,55,58,83,91),
6506 (4,11,49,53,56,59,84,93),
6507 (4,11,50,53,57,60,86,94),
6508 (4,11,51,54,58,61,87,96),
6509 (4,11,52,55,59,62,89,98),
6510 (4,11,53,56,59,63,91,100),
6511 (4,11,54,57,60,64,92,102),
6512 (4,11,55,58,61,65,94,103),
6513 (4,11,56,59,62,66,95,105),
6514 (4,11,57,60,63,67,97,107),
6515 (4,11,58,61,64,68,99,109),
6516 (4,11,59,62,65,69,101,111),
6517 (4,11,60,63,66,70,102,113),
6518 (4,11,61,64,66,72,104,115),
6519 (4,11,62,65,67,73,106,117),
6520 (4,11,63,66,68,74,107,119),
6521 (4,11,64,67,69,75,109,121),
6522 (4,11,65,68,70,76,111,123),
6523 (4,11,66,69,71,77,113,125),
6524 (4,11,67,70,72,78,115,127),
6525 (4,11,68,71,73,80,116,129),
6526 (4,11,69,72,74,81,118,131),
6527 (4,11,70,73,75,82,120,133),
6528 (4,11,71,75,76,83,122,135),
6529 (4,11,72,76,78,85,125,138),
6530 (4,11,73,77,79,86,127,140),
6531 (4,11,74,78,80,88,131,143),
6532 (4,11,75,80,81,89,133,145),
6533 (4,11,76,81,82,91,134,148),
6534 (4,11,77,82,83,92,136,151),
6535 (4,11,78,84,85,94,138,153),
6536 (4,11,79,85,86,95,141,156),
6537 (4,11,80,86,87,97,143,159),
6538 (5,1,1,22,18,23,18,25),
6539 (5,1,2,23,19,24,18,25),
6540 (5,1,3,25,20,25,18,26),
6541 (5,1,4,26,20,26,18,26),
6542 (5,1,5,27,21,28,18,26),
6543 (5,1,6,29,22,29,18,26),
6544 (5,1,7,30,23,30,19,27),
6545 (5,1,8,31,24,31,19,27),
6546 (5,1,9,33,25,33,19,27),
6547 (5,1,10,34,25,34,19,28),
6548 (5,1,11,35,26,35,19,28),
6549 (5,1,12,37,27,36,19,28),
6550 (5,1,13,38,28,38,19,28),
6551 (5,1,14,40,29,39,19,29),
6552 (5,1,15,41,30,40,19,29),
6553 (5,1,16,43,31,42,20,29),
6554 (5,1,17,44,32,43,20,30),
6555 (5,1,18,46,33,44,20,30),
6556 (5,1,19,47,34,46,20,31),
6557 (5,1,20,49,34,47,20,31),
6558 (5,1,21,50,35,49,20,31),
6559 (5,1,22,52,36,50,20,32),
6560 (5,1,23,53,37,51,21,32),
6561 (5,1,24,55,38,53,21,32),
6562 (5,1,25,57,39,54,21,33),
6563 (5,1,26,58,40,56,21,33),
6564 (5,1,27,60,41,57,21,34),
6565 (5,1,28,62,42,59,21,34),
6566 (5,1,29,63,43,60,21,34),
6567 (5,1,30,65,44,62,22,35),
6568 (5,1,31,67,46,63,22,35),
6569 (5,1,32,68,47,65,22,36),
6570 (5,1,33,70,48,67,22,36),
6571 (5,1,34,72,49,68,22,36),
6572 (5,1,35,74,50,70,23,37),
6573 (5,1,36,75,51,71,23,37),
6574 (5,1,37,77,52,73,23,38),
6575 (5,1,38,79,53,75,23,38),
6576 (5,1,39,81,54,76,23,39),
6577 (5,1,40,83,55,78,24,39),
6578 (5,1,41,84,57,80,24,40),
6579 (5,1,42,86,58,81,24,40),
6580 (5,1,43,88,59,83,24,41),
6581 (5,1,44,90,60,85,24,41),
6582 (5,1,45,92,61,86,25,42),
6583 (5,1,46,94,62,88,25,42),
6584 (5,1,47,96,64,90,25,43),
6585 (5,1,48,98,65,92,25,43),
6586 (5,1,49,100,66,93,25,44),
6587 (5,1,50,102,67,95,26,44),
6588 (5,1,51,104,69,97,26,45),
6589 (5,1,52,106,70,99,26,45),
6590 (5,1,53,108,71,101,26,46),
6591 (5,1,54,110,72,103,27,46),
6592 (5,1,55,112,74,104,27,47),
6593 (5,1,56,114,75,106,27,48),
6594 (5,1,57,116,76,108,27,48),
6595 (5,1,58,118,78,110,28,49),
6596 (5,1,59,120,79,112,28,49),
6597 (5,1,60,122,80,114,28,50),
6598 (5,1,61,124,82,116,28,50),
6599 (5,1,62,126,83,118,29,51),
6600 (5,1,63,128,84,120,29,52),
6601 (5,1,64,131,86,122,29,52),
6602 (5,1,65,133,87,124,30,53),
6603 (5,1,66,135,88,126,30,53),
6604 (5,1,67,137,90,128,30,54),
6605 (5,1,68,139,91,130,30,55),
6606 (5,1,69,142,93,132,31,55),
6607 (5,1,70,144,94,134,31,56),
6608 (5,1,71,147,95,136,31,57),
6609 (5,1,72,150,97,139,31,58),
6610 (5,1,73,152,99,141,31,59),
6611 (5,1,74,155,100,144,32,59),
6612 (5,1,75,158,102,146,32,60),
6613 (5,1,76,163,104,149,32,61),
6614 (5,1,77,167,106,152,33,62),
6615 (5,1,78,167,107,154,33,62),
6616 (5,1,79,170,109,157,33,63),
6617 (5,1,80,173,111,160,34,64),
6618 (5,4,1,20,21,22,18,25),
6619 (5,4,2,21,22,23,18,25),
6620 (5,4,3,22,24,23,18,26),
6621 (5,4,4,22,25,24,18,26),
6622 (5,4,5,23,27,25,19,26),
6623 (5,4,6,24,28,25,19,27),
6624 (5,4,7,25,30,26,19,27),
6625 (5,4,8,25,31,27,19,27),
6626 (5,4,9,26,33,28,19,28),
6627 (5,4,10,27,34,28,19,28),
6628 (5,4,11,28,36,29,20,29),
6629 (5,4,12,29,38,30,20,29),
6630 (5,4,13,30,39,31,20,29),
6631 (5,4,14,31,41,32,20,30),
6632 (5,4,15,31,42,32,20,30),
6633 (5,4,16,32,44,33,21,31),
6634 (5,4,17,33,46,34,21,31),
6635 (5,4,18,34,47,35,21,32),
6636 (5,4,19,35,49,36,21,32),
6637 (5,4,20,36,51,36,21,32),
6638 (5,4,21,37,52,37,22,33),
6639 (5,4,22,38,54,38,22,33),
6640 (5,4,23,39,56,39,22,34),
6641 (5,4,24,40,58,40,22,34),
6642 (5,4,25,41,60,41,23,35),
6643 (5,4,26,42,61,42,23,35),
6644 (5,4,27,43,63,43,23,36),
6645 (5,4,28,44,65,44,23,36),
6646 (5,4,29,45,67,44,24,37),
6647 (5,4,30,46,69,45,24,37),
6648 (5,4,31,47,71,46,24,38),
6649 (5,4,32,48,72,47,24,38),
6650 (5,4,33,49,74,48,25,39),
6651 (5,4,34,50,76,49,25,39),
6652 (5,4,35,51,78,50,25,40),
6653 (5,4,36,52,80,51,25,41),
6654 (5,4,37,53,82,52,26,41),
6655 (5,4,38,54,84,53,26,42),
6656 (5,4,39,55,86,54,26,42),
6657 (5,4,40,56,88,55,27,43),
6658 (5,4,41,57,90,56,27,43),
6659 (5,4,42,59,92,57,27,44),
6660 (5,4,43,60,94,58,27,45),
6661 (5,4,44,61,96,59,28,45),
6662 (5,4,45,62,99,60,28,46),
6663 (5,4,46,63,101,61,28,46),
6664 (5,4,47,64,103,63,29,47),
6665 (5,4,48,66,105,64,29,48),
6666 (5,4,49,67,107,65,29,48),
6667 (5,4,50,68,109,66,30,49),
6668 (5,4,51,69,111,67,30,50),
6669 (5,4,52,70,114,68,30,50),
6670 (5,4,53,72,116,69,31,51),
6671 (5,4,54,73,118,70,31,52),
6672 (5,4,55,74,120,72,31,52),
6673 (5,4,56,75,123,73,32,53),
6674 (5,4,57,77,125,74,32,54),
6675 (5,4,58,78,127,75,32,54),
6676 (5,4,59,79,130,76,33,55),
6677 (5,4,60,81,132,77,33,56),
6678 (5,4,61,82,134,79,34,56),
6679 (5,4,62,83,137,80,34,57),
6680 (5,4,63,84,139,81,34,58),
6681 (5,4,64,86,141,82,35,59),
6682 (5,4,65,87,144,84,35,59),
6683 (5,4,66,88,146,85,35,60),
6684 (5,4,67,90,149,86,36,61),
6685 (5,4,68,91,151,87,36,61),
6686 (5,4,69,93,154,89,37,62),
6687 (5,4,70,94,156,90,37,63),
6688 (5,4,71,96,159,91,37,64),
6689 (5,4,72,98,162,93,38,64),
6690 (5,4,73,99,165,95,38,65),
6691 (5,4,74,101,168,96,39,66),
6692 (5,4,75,103,171,98,39,67),
6693 (5,4,76,104,174,99,39,68),
6694 (5,4,77,106,177,101,40,69),
6695 (5,4,78,108,181,103,40,70),
6696 (5,4,79,110,184,104,41,71),
6697 (5,4,80,112,187,106,41,72),
6698 (5,5,1,19,18,21,20,28),
6699 (5,5,2,19,18,21,21,29),
6700 (5,5,3,19,18,22,23,31),
6701 (5,5,4,19,19,22,24,32),
6702 (5,5,5,20,19,22,25,33),
6703 (5,5,6,20,19,23,27,35),
6704 (5,5,7,20,19,23,28,36),
6705 (5,5,8,20,20,24,29,38),
6706 (5,5,9,20,20,24,31,39),
6707 (5,5,10,20,20,24,32,40),
6708 (5,5,11,21,20,25,34,42),
6709 (5,5,12,21,21,25,35,43),
6710 (5,5,13,21,21,26,37,45),
6711 (5,5,14,21,21,26,38,46),
6712 (5,5,15,21,21,26,39,48),
6713 (5,5,16,22,22,27,41,50),
6714 (5,5,17,22,22,27,42,51),
6715 (5,5,18,22,22,28,44,53),
6716 (5,5,19,22,23,28,46,54),
6717 (5,5,20,22,23,29,47,56),
6718 (5,5,21,23,23,29,49,57),
6719 (5,5,22,23,23,30,50,59),
6720 (5,5,23,23,24,30,52,61),
6721 (5,5,24,23,24,31,53,62),
6722 (5,5,25,24,24,31,55,64),
6723 (5,5,26,24,25,32,57,66),
6724 (5,5,27,24,25,32,58,68),
6725 (5,5,28,24,25,33,60,69),
6726 (5,5,29,25,26,33,62,71),
6727 (5,5,30,25,26,34,63,73),
6728 (5,5,31,25,26,34,65,75),
6729 (5,5,32,25,27,35,67,76),
6730 (5,5,33,26,27,35,69,78),
6731 (5,5,34,26,27,36,70,80),
6732 (5,5,35,26,28,36,72,82),
6733 (5,5,36,26,28,37,74,84),
6734 (5,5,37,27,28,37,76,86),
6735 (5,5,38,27,29,38,77,87),
6736 (5,5,39,27,29,38,79,89),
6737 (5,5,40,28,30,39,81,91),
6738 (5,5,41,28,30,40,83,93),
6739 (5,5,42,28,30,40,85,95),
6740 (5,5,43,28,31,41,87,97),
6741 (5,5,44,29,31,41,89,99),
6742 (5,5,45,29,32,42,91,101),
6743 (5,5,46,29,32,43,92,103),
6744 (5,5,47,30,32,43,94,105),
6745 (5,5,48,30,33,44,96,107),
6746 (5,5,49,30,33,44,98,109),
6747 (5,5,50,31,34,45,100,111),
6748 (5,5,51,31,34,46,102,113),
6749 (5,5,52,31,35,46,104,115),
6750 (5,5,53,32,35,47,106,118),
6751 (5,5,54,32,35,48,108,120),
6752 (5,5,55,32,36,48,110,122),
6753 (5,5,56,33,36,49,113,124),
6754 (5,5,57,33,37,50,115,126),
6755 (5,5,58,33,37,50,117,128),
6756 (5,5,59,34,38,51,119,131),
6757 (5,5,60,34,38,52,121,133),
6758 (5,5,61,34,39,52,123,135),
6759 (5,5,62,35,39,53,125,137),
6760 (5,5,63,35,40,54,127,140),
6761 (5,5,64,36,40,55,130,142),
6762 (5,5,65,36,41,55,132,144),
6763 (5,5,66,36,41,56,134,147),
6764 (5,5,67,37,41,57,136,149),
6765 (5,5,68,37,42,58,138,151),
6766 (5,5,69,38,42,58,141,154),
6767 (5,5,70,38,43,59,143,156),
6768 (5,5,71,38,44,60,146,159),
6769 (5,5,72,39,44,60,149,162),
6770 (5,5,73,39,45,61,152,165),
6771 (5,5,74,40,45,62,157,168),
6772 (5,5,75,40,46,63,157,171),
6773 (5,5,76,40,47,64,160,174),
6774 (5,5,77,41,47,65,163,177),
6775 (5,5,78,41,48,66,166,180),
6776 (5,5,79,42,48,67,169,183),
6777 (5,5,80,42,49,68,172,186),
6778 (5,6,1,22,18,23,18,25),
6779 (5,6,2,23,19,24,18,25),
6780 (5,6,3,25,20,25,18,26),
6781 (5,6,4,26,20,26,18,26),
6782 (5,6,5,27,21,28,18,26),
6783 (5,6,6,29,22,29,18,26),
6784 (5,6,7,30,23,30,19,27),
6785 (5,6,8,31,24,31,19,27),
6786 (5,6,9,33,25,33,19,27),
6787 (5,6,10,34,25,34,19,28),
6788 (5,6,11,35,26,35,19,28),
6789 (5,6,12,37,27,36,19,28),
6790 (5,6,13,38,28,38,19,28),
6791 (5,6,14,40,29,39,19,29),
6792 (5,6,15,41,30,40,19,29),
6793 (5,6,16,43,31,42,20,29),
6794 (5,6,17,44,32,43,20,30),
6795 (5,6,18,46,33,44,20,30),
6796 (5,6,19,47,34,46,20,31),
6797 (5,6,20,49,34,47,20,31),
6798 (5,6,21,50,35,49,20,31),
6799 (5,6,22,52,36,50,20,32),
6800 (5,6,23,53,37,51,21,32),
6801 (5,6,24,55,38,53,21,32),
6802 (5,6,25,57,39,54,21,33),
6803 (5,6,26,58,40,56,21,33),
6804 (5,6,27,60,41,57,21,34),
6805 (5,6,28,62,42,59,21,34),
6806 (5,6,29,63,43,60,21,34),
6807 (5,6,30,65,44,62,22,35),
6808 (5,6,31,67,46,63,22,35),
6809 (5,6,32,68,47,65,22,36),
6810 (5,6,33,70,48,67,22,36),
6811 (5,6,34,72,49,68,22,36),
6812 (5,6,35,74,50,70,23,37),
6813 (5,6,36,75,51,71,23,37),
6814 (5,6,37,77,52,73,23,38),
6815 (5,6,38,79,53,75,23,38),
6816 (5,6,39,81,54,76,23,39),
6817 (5,6,40,83,55,78,24,39),
6818 (5,6,41,84,57,80,24,40),
6819 (5,6,42,86,58,81,24,40),
6820 (5,6,43,88,59,83,24,41),
6821 (5,6,44,90,60,85,24,41),
6822 (5,6,45,92,61,86,25,42),
6823 (5,6,46,94,62,88,25,42),
6824 (5,6,47,96,64,90,25,43),
6825 (5,6,48,98,65,92,25,43),
6826 (5,6,49,100,66,93,25,44),
6827 (5,6,50,102,67,95,26,44),
6828 (5,6,51,103,67,96,26,45),
6829 (5,6,52,104,68,97,26,45),
6830 (5,6,53,105,69,98,26,46),
6831 (5,6,54,106,70,99,27,46),
6832 (5,6,55,107,71,100,27,47),
6833 (5,6,56,110,73,103,27,48),
6834 (5,6,57,112,74,105,27,48),
6835 (5,6,58,114,75,107,28,49),
6836 (5,6,59,119,77,109,28,49),
6837 (5,6,60,122,78,111,28,50),
6838 (5,6,61,124,79,113,28,51),
6839 (5,6,62,127,81,115,28,51),
6840 (5,6,63,129,82,118,29,52),
6841 (5,6,64,136,84,120,29,52),
6842 (5,6,65,137,85,123,29,53),
6843 (5,6,66,138,87,125,29,54),
6844 (5,6,67,141,88,127,30,54),
6845 (5,6,68,143,90,129,30,55),
6846 (5,6,69,146,91,132,30,56),
6847 (5,6,70,149,93,134,30,56),
6848 (5,6,71,152,95,137,31,57),
6849 (5,6,72,154,96,139,31,58),
6850 (5,6,73,157,98,142,31,59),
6851 (5,6,74,158,100,145,31,59),
6852 (5,6,75,159,101,147,32,60),
6853 (5,6,76,162,103,150,32,61),
6854 (5,6,77,167,105,152,32,62),
6855 (5,6,78,173,106,155,32,62),
6856 (5,6,79,174,108,158,33,63),
6857 (5,6,80,174,110,161,33,64),
6858 (5,8,1,19,18,21,21,27),
6859 (5,8,2,19,18,21,22,28),
6860 (5,8,3,19,18,22,24,30),
6861 (5,8,4,19,18,22,25,31),
6862 (5,8,5,19,19,22,26,32),
6863 (5,8,6,19,19,22,28,34),
6864 (5,8,7,20,19,23,29,35),
6865 (5,8,8,20,19,23,31,36),
6866 (5,8,9,20,19,23,32,38),
6867 (5,8,10,20,19,24,34,39),
6868 (5,8,11,20,20,24,35,40),
6869 (5,8,12,20,20,24,37,42),
6870 (5,8,13,20,20,25,38,43),
6871 (5,8,14,20,20,25,40,45),
6872 (5,8,15,20,20,25,41,46),
6873 (5,8,16,21,21,26,43,48),
6874 (5,8,17,21,21,26,44,49),
6875 (5,8,18,21,21,26,46,51),
6876 (5,8,19,21,21,27,48,52),
6877 (5,8,20,21,21,27,49,54),
6878 (5,8,21,21,22,27,51,55),
6879 (5,8,22,21,22,28,52,57),
6880 (5,8,23,21,22,28,54,58),
6881 (5,8,24,22,22,29,56,60),
6882 (5,8,25,22,23,29,57,62),
6883 (5,8,26,22,23,29,59,63),
6884 (5,8,27,22,23,30,61,65),
6885 (5,8,28,22,23,30,63,67),
6886 (5,8,29,22,24,31,64,68),
6887 (5,8,30,23,24,31,66,70),
6888 (5,8,31,23,24,31,68,72),
6889 (5,8,32,23,24,32,70,73),
6890 (5,8,33,23,25,32,72,75),
6891 (5,8,34,23,25,33,73,77),
6892 (5,8,35,24,25,33,75,79),
6893 (5,8,36,24,25,34,77,80),
6894 (5,8,37,24,26,34,79,82),
6895 (5,8,38,24,26,35,81,84),
6896 (5,8,39,24,26,35,83,86),
6897 (5,8,40,24,27,35,85,88),
6898 (5,8,41,25,27,36,87,90),
6899 (5,8,42,25,27,36,89,91),
6900 (5,8,43,25,27,37,90,93),
6901 (5,8,44,25,28,37,92,95),
6902 (5,8,45,26,28,38,94,97),
6903 (5,8,46,26,28,38,96,99),
6904 (5,8,47,26,29,39,98,101),
6905 (5,8,48,26,29,39,100,103),
6906 (5,8,49,26,29,40,103,105),
6907 (5,8,50,27,30,40,105,107),
6908 (5,8,51,27,30,41,107,109),
6909 (5,8,52,27,30,42,109,111),
6910 (5,8,53,27,31,42,111,113),
6911 (5,8,54,28,31,43,113,115),
6912 (5,8,55,28,31,43,115,117),
6913 (5,8,56,28,32,44,117,119),
6914 (5,8,57,28,32,44,119,121),
6915 (5,8,58,29,32,45,122,123),
6916 (5,8,59,29,33,45,124,126),
6917 (5,8,60,29,33,46,126,128),
6918 (5,8,61,29,34,47,128,130),
6919 (5,8,62,30,34,47,131,132),
6920 (5,8,63,30,34,48,133,134),
6921 (5,8,64,30,35,48,135,136),
6922 (5,8,65,31,35,49,137,139),
6923 (5,8,66,31,35,50,140,141),
6924 (5,8,67,31,36,50,142,143),
6925 (5,8,68,31,36,51,144,145),
6926 (5,8,69,32,37,51,147,148),
6927 (5,8,70,32,37,52,149,150),
6928 (5,8,71,32,37,53,152,153),
6929 (5,8,72,32,38,54,155,156),
6930 (5,8,73,32,38,55,158,159),
6931 (5,8,74,33,39,55,161,161),
6932 (5,8,75,33,39,56,164,164),
6933 (5,8,76,33,39,57,167,167),
6934 (5,8,77,34,40,58,170,170),
6935 (5,8,78,34,40,58,173,173),
6936 (5,8,79,34,41,59,176,176),
6937 (5,8,80,35,41,60,179,179),
6938 (5,9,1,19,18,22,20,27),
6939 (5,9,2,19,18,23,21,28),
6940 (5,9,3,20,19,23,22,29),
6941 (5,9,4,20,19,24,24,30),
6942 (5,9,5,20,19,24,25,32),
6943 (5,9,6,20,20,25,26,33),
6944 (5,9,7,21,20,25,27,34),
6945 (5,9,8,21,21,26,28,35),
6946 (5,9,9,21,21,26,30,36),
6947 (5,9,10,22,21,27,31,38),
6948 (5,9,11,22,22,28,32,39),
6949 (5,9,12,22,22,28,34,40),
6950 (5,9,13,23,23,29,35,41),
6951 (5,9,14,23,23,30,36,43),
6952 (5,9,15,23,24,30,37,44),
6953 (5,9,16,24,24,31,39,45),
6954 (5,9,17,24,24,31,40,47),
6955 (5,9,18,24,25,32,42,48),
6956 (5,9,19,25,25,33,43,49),
6957 (5,9,20,25,26,33,44,51),
6958 (5,9,21,26,26,34,46,52),
6959 (5,9,22,26,27,35,47,53),
6960 (5,9,23,26,27,36,49,55),
6961 (5,9,24,27,28,36,50,56),
6962 (5,9,25,27,28,37,52,58),
6963 (5,9,26,27,29,38,53,59),
6964 (5,9,27,28,29,38,55,60),
6965 (5,9,28,28,30,39,56,62),
6966 (5,9,29,29,30,40,58,63),
6967 (5,9,30,29,31,41,59,65),
6968 (5,9,31,30,31,41,61,66),
6969 (5,9,32,30,32,42,62,68),
6970 (5,9,33,30,32,43,64,69),
6971 (5,9,34,31,33,44,65,71),
6972 (5,9,35,31,33,45,67,73),
6973 (5,9,36,32,34,45,69,74),
6974 (5,9,37,32,34,46,70,76),
6975 (5,9,38,33,35,47,72,77),
6976 (5,9,39,33,36,48,73,79),
6977 (5,9,40,34,36,49,75,81),
6978 (5,9,41,34,37,49,77,82),
6979 (5,9,42,35,37,50,78,84),
6980 (5,9,43,35,38,51,80,86),
6981 (5,9,44,36,39,52,82,87),
6982 (5,9,45,36,39,53,84,89),
6983 (5,9,46,37,40,54,85,91),
6984 (5,9,47,37,40,55,87,92),
6985 (5,9,48,38,41,55,89,94),
6986 (5,9,49,38,42,56,91,96),
6987 (5,9,50,39,42,57,92,98),
6988 (5,9,51,39,43,58,94,100),
6989 (5,9,52,40,44,59,96,101),
6990 (5,9,53,40,44,60,98,103),
6991 (5,9,54,41,45,61,100,105),
6992 (5,9,55,41,45,62,102,107),
6993 (5,9,56,42,46,63,103,109),
6994 (5,9,57,42,47,64,105,111),
6995 (5,9,58,43,47,65,107,112),
6996 (5,9,59,43,48,66,109,114),
6997 (5,9,60,44,49,67,111,116),
6998 (5,9,61,45,50,68,113,118),
6999 (5,9,62,45,50,69,115,120),
7000 (5,9,63,46,51,70,117,122),
7001 (5,9,64,46,52,71,119,124),
7002 (5,9,65,47,52,72,121,126),
7003 (5,9,66,48,53,73,123,128),
7004 (5,9,67,48,54,74,125,130),
7005 (5,9,68,49,55,75,127,132),
7006 (5,9,69,49,55,76,129,134),
7007 (5,9,70,50,56,77,131,136),
7008 (5,9,71,51,57,86,135,147),
7009 (5,9,72,52,57,88,136,149),
7010 (5,9,73,53,58,89,138,152),
7011 (5,9,74,53,59,90,141,155),
7012 (5,9,75,54,60,92,143,157),
7013 (5,9,76,55,61,93,146,160),
7014 (5,9,77,56,62,94,149,163),
7015 (5,9,78,56,63,96,151,166),
7016 (5,9,79,57,64,97,154,169),
7017 (5,9,80,58,65,99,157,171),
7018 (6,1,1,28,15,24,15,22),
7019 (6,1,2,29,16,25,15,22),
7020 (6,1,3,31,17,26,15,23),
7021 (6,1,4,32,17,27,15,23),
7022 (6,1,5,33,18,29,15,23),
7023 (6,1,6,34,19,30,15,23),
7024 (6,1,7,36,20,31,16,24),
7025 (6,1,8,37,21,32,16,24),
7026 (6,1,9,38,22,34,16,24),
7027 (6,1,10,40,22,35,16,25),
7028 (6,1,11,41,23,36,16,25),
7029 (6,1,12,43,24,37,16,25),
7030 (6,1,13,44,25,39,16,26),
7031 (6,1,14,46,26,40,16,26),
7032 (6,1,15,47,27,41,17,26),
7033 (6,1,16,48,28,43,17,27),
7034 (6,1,17,50,29,44,17,27),
7035 (6,1,18,51,30,45,17,27),
7036 (6,1,19,53,31,47,17,28),
7037 (6,1,20,54,32,48,17,28),
7038 (6,1,21,56,33,50,17,28),
7039 (6,1,22,58,34,51,18,29),
7040 (6,1,23,59,35,52,18,29),
7041 (6,1,24,61,36,54,18,30),
7042 (6,1,25,62,37,55,18,30),
7043 (6,1,26,64,38,57,18,30),
7044 (6,1,27,66,39,58,18,31),
7045 (6,1,28,67,40,60,18,31),
7046 (6,1,29,69,41,61,19,32),
7047 (6,1,30,71,42,63,19,32),
7048 (6,1,31,72,43,64,19,32),
7049 (6,1,32,74,44,66,19,33),
7050 (6,1,33,76,45,67,19,33),
7051 (6,1,34,77,46,69,20,34),
7052 (6,1,35,79,47,71,20,34),
7053 (6,1,36,81,48,72,20,35),
7054 (6,1,37,83,49,74,20,35),
7055 (6,1,38,85,50,76,20,35),
7056 (6,1,39,86,51,77,21,36),
7057 (6,1,40,88,53,79,21,36),
7058 (6,1,41,90,54,81,21,37),
7059 (6,1,42,92,55,82,21,37),
7060 (6,1,43,94,56,84,21,38),
7061 (6,1,44,96,57,86,22,38),
7062 (6,1,45,98,58,87,22,39),
7063 (6,1,46,99,60,89,22,39),
7064 (6,1,47,101,61,91,22,40),
7065 (6,1,48,103,62,93,22,40),
7066 (6,1,49,105,63,94,23,41),
7067 (6,1,50,107,65,96,23,41),
7068 (6,1,51,109,66,98,23,42),
7069 (6,1,52,111,67,100,23,42),
7070 (6,1,53,113,68,102,24,43),
7071 (6,1,54,115,70,104,24,44),
7072 (6,1,55,117,71,105,24,44),
7073 (6,1,56,119,72,107,24,45),
7074 (6,1,57,122,73,109,25,45),
7075 (6,1,58,124,75,111,25,46),
7076 (6,1,59,126,76,113,25,46),
7077 (6,1,60,128,77,115,25,47),
7078 (6,1,61,130,79,117,26,48),
7079 (6,1,62,132,80,119,26,48),
7080 (6,1,63,134,81,121,26,49),
7081 (6,1,64,137,83,123,26,49),
7082 (6,1,65,139,84,125,27,50),
7083 (6,1,66,141,85,127,27,51),
7084 (6,1,67,143,87,129,27,51),
7085 (6,1,68,145,88,131,27,52),
7086 (6,1,69,148,90,133,28,52),
7087 (6,1,70,150,91,135,28,53),
7088 (6,1,71,153,92,137,28,54),
7089 (6,1,72,155,94,140,28,55),
7090 (6,1,73,158,96,142,28,56),
7091 (6,1,74,161,97,145,29,56),
7092 (6,1,75,164,99,147,29,57),
7093 (6,1,76,167,101,150,29,58),
7094 (6,1,77,170,103,153,30,59),
7095 (6,1,78,173,104,155,30,59),
7096 (6,1,79,176,106,164,30,60),
7097 (6,1,80,179,108,170,31,61),
7098 (6,3,1,25,18,23,15,23),
7099 (6,3,2,25,19,24,16,24),
7100 (6,3,3,26,21,25,16,24),
7101 (6,3,4,26,22,26,17,25),
7102 (6,3,5,27,24,27,17,25),
7103 (6,3,6,27,25,28,18,26),
7104 (6,3,7,28,26,28,19,27),
7105 (6,3,8,28,28,29,19,27),
7106 (6,3,9,28,29,30,20,28),
7107 (6,3,10,29,31,31,20,29),
7108 (6,3,11,29,32,32,21,29),
7109 (6,3,12,30,34,33,22,30),
7110 (6,3,13,30,35,34,22,31),
7111 (6,3,14,31,37,35,23,32),
7112 (6,3,15,31,38,36,24,32),
7113 (6,3,16,32,40,37,24,33),
7114 (6,3,17,32,41,39,25,34),
7115 (6,3,18,33,43,40,26,35),
7116 (6,3,19,33,45,41,27,35),
7117 (6,3,20,34,46,42,27,36),
7118 (6,3,21,34,48,43,28,37),
7119 (6,3,22,35,50,44,29,38),
7120 (6,3,23,35,51,45,29,38),
7121 (6,3,24,36,53,46,30,39),
7122 (6,3,25,37,55,47,31,40),
7123 (6,3,26,37,56,48,32,41),
7124 (6,3,27,38,58,50,32,42),
7125 (6,3,28,38,60,51,33,42),
7126 (6,3,29,39,62,52,34,43),
7127 (6,3,30,39,63,53,35,44),
7128 (6,3,31,40,65,54,36,45),
7129 (6,3,32,41,67,56,36,46),
7130 (6,3,33,41,69,57,37,47),
7131 (6,3,34,42,71,58,38,48),
7132 (6,3,35,43,72,59,39,48),
7133 (6,3,36,43,74,61,40,49),
7134 (6,3,37,44,76,62,40,50),
7135 (6,3,38,45,78,63,41,51),
7136 (6,3,39,45,80,64,42,52),
7137 (6,3,40,46,82,66,43,53),
7138 (6,3,41,47,84,67,44,54),
7139 (6,3,42,47,86,68,45,55),
7140 (6,3,43,48,88,70,46,56),
7141 (6,3,44,49,90,71,46,57),
7142 (6,3,45,49,92,72,47,58),
7143 (6,3,46,50,94,74,48,59),
7144 (6,3,47,51,96,75,49,60),
7145 (6,3,48,51,98,77,50,61),
7146 (6,3,49,52,100,78,51,62),
7147 (6,3,50,53,102,79,52,63),
7148 (6,3,51,54,104,81,53,64),
7149 (6,3,52,54,106,82,54,65),
7150 (6,3,53,55,108,84,55,66),
7151 (6,3,54,56,110,85,56,67),
7152 (6,3,55,57,112,87,57,68),
7153 (6,3,56,57,114,88,58,69),
7154 (6,3,57,58,117,90,59,70),
7155 (6,3,58,59,119,91,60,71),
7156 (6,3,59,60,121,93,61,72),
7157 (6,3,60,61,123,94,62,74),
7158 (6,3,61,61,125,96,63,75),
7159 (6,3,62,62,128,97,64,76),
7160 (6,3,63,63,130,99,65,77),
7161 (6,3,64,64,132,100,66,78),
7162 (6,3,65,65,134,102,67,79),
7163 (6,3,66,66,137,104,68,80),
7164 (6,3,67,66,139,105,69,81),
7165 (6,3,68,67,141,107,70,83),
7166 (6,3,69,68,144,108,71,84),
7167 (6,3,70,69,146,110,72,85),
7168 (6,3,71,70,149,112,73,86),
7169 (6,3,72,71,152,114,74,87),
7170 (6,3,73,72,155,116,75,89),
7171 (6,3,74,73,158,118,77,90),
7172 (6,3,75,74,161,120,78,92),
7173 (6,3,76,75,164,122,79,93),
7174 (6,3,77,76,167,124,81,95),
7175 (6,3,78,77,176,126,85,96),
7176 (6,3,79,78,179,128,86,98),
7177 (6,3,80,79,183,130,88,99),
7178 (6,6,1,28,15,24,15,22),
7179 (6,6,2,29,16,25,15,22),
7180 (6,6,3,31,17,26,15,23),
7181 (6,6,4,32,17,27,15,23),
7182 (6,6,5,33,18,29,15,23),
7183 (6,6,6,34,19,30,15,23),
7184 (6,6,7,36,20,31,16,24),
7185 (6,6,8,37,21,32,16,24),
7186 (6,6,9,38,22,34,16,24),
7187 (6,6,10,40,22,35,16,25),
7188 (6,6,11,41,23,36,16,25),
7189 (6,6,12,43,24,37,16,25),
7190 (6,6,13,44,25,39,16,26),
7191 (6,6,14,46,26,40,16,26),
7192 (6,6,15,47,27,41,17,26),
7193 (6,6,16,48,28,43,17,27),
7194 (6,6,17,50,29,44,17,27),
7195 (6,6,18,51,30,45,17,27),
7196 (6,6,19,53,31,47,17,28),
7197 (6,6,20,54,32,48,17,28),
7198 (6,6,21,56,33,50,17,28),
7199 (6,6,22,58,34,51,18,29),
7200 (6,6,23,59,35,52,18,29),
7201 (6,6,24,61,36,54,18,30),
7202 (6,6,25,62,37,55,18,30),
7203 (6,6,26,64,38,57,18,30),
7204 (6,6,27,66,39,58,18,31),
7205 (6,6,28,67,40,60,18,31),
7206 (6,6,29,69,41,61,19,32),
7207 (6,6,30,71,42,63,19,32),
7208 (6,6,31,72,43,64,19,32),
7209 (6,6,32,74,44,66,19,33),
7210 (6,6,33,76,45,67,19,33),
7211 (6,6,34,77,46,69,20,34),
7212 (6,6,35,79,47,71,20,34),
7213 (6,6,36,81,48,72,20,35),
7214 (6,6,37,83,49,74,20,35),
7215 (6,6,38,85,50,76,20,35),
7216 (6,6,39,86,51,77,21,36),
7217 (6,6,40,88,53,79,21,36),
7218 (6,6,41,90,54,81,21,37),
7219 (6,6,42,92,55,82,21,37),
7220 (6,6,43,94,56,84,21,38),
7221 (6,6,44,96,57,86,22,38),
7222 (6,6,45,98,58,87,22,39),
7223 (6,6,46,99,60,89,22,39),
7224 (6,6,47,101,60,91,22,40),
7225 (6,6,48,103,61,93,22,40),
7226 (6,6,49,105,62,94,23,41),
7227 (6,6,50,107,63,96,23,41),
7228 (6,6,51,109,64,97,23,42),
7229 (6,6,52,110,65,98,23,42),
7230 (6,6,53,111,66,99,24,43),
7231 (6,6,54,112,67,100,24,44),
7232 (6,6,55,113,68,101,24,44),
7233 (6,6,56,116,70,104,24,45),
7234 (6,6,57,121,71,106,24,45),
7235 (6,6,58,123,72,108,25,46),
7236 (6,6,59,123,74,110,25,46),
7237 (6,6,60,125,75,112,25,47),
7238 (6,6,61,127,76,114,25,48),
7239 (6,6,62,133,78,116,25,48),
7240 (6,6,63,135,79,119,26,49),
7241 (6,6,64,139,81,121,26,49),
7242 (6,6,65,142,82,123,26,50),
7243 (6,6,66,146,84,126,26,51),
7244 (6,6,67,150,85,132,27,51),
7245 (6,6,68,153,87,137,27,52),
7246 (6,6,69,157,88,140,27,53),
7247 (6,6,70,160,90,143,27,53),
7248 (6,6,71,163,92,146,28,54),
7249 (6,6,72,165,93,148,28,55),
7250 (6,6,73,167,95,150,28,56),
7251 (6,6,74,171,97,153,28,56),
7252 (6,6,75,174,98,156,29,57),
7253 (6,6,76,178,100,156,29,58),
7254 (6,6,77,179,102,156,29,59),
7255 (6,6,78,179,103,156,29,59),
7256 (6,6,79,182,105,159,30,60),
7257 (6,6,80,185,107,162,30,61),
7258 (6,7,1,26,15,23,16,24),
7259 (6,7,2,27,15,24,17,25),
7260 (6,7,3,28,16,25,18,26),
7261 (6,7,4,28,16,26,19,27),
7262 (6,7,5,29,17,27,20,28),
7263 (6,7,6,30,17,28,21,29),
7264 (6,7,7,31,18,29,22,30),
7265 (6,7,8,32,18,30,23,31),
7266 (6,7,9,33,19,31,24,32),
7267 (6,7,10,34,19,32,25,33),
7268 (6,7,11,35,20,33,26,35),
7269 (6,7,12,35,20,34,27,36),
7270 (6,7,13,36,21,35,28,37),
7271 (6,7,14,37,21,36,29,38),
7272 (6,7,15,38,22,37,30,39),
7273 (6,7,16,39,22,39,31,40),
7274 (6,7,17,40,23,40,32,42),
7275 (6,7,18,41,23,41,33,43),
7276 (6,7,19,42,24,42,34,44),
7277 (6,7,20,43,24,43,35,45),
7278 (6,7,21,44,25,44,36,46),
7279 (6,7,22,45,25,45,37,48),
7280 (6,7,23,46,26,47,38,49),
7281 (6,7,24,47,27,48,40,50),
7282 (6,7,25,48,27,49,41,51),
7283 (6,7,26,49,28,50,42,53),
7284 (6,7,27,51,28,52,43,54),
7285 (6,7,28,52,29,53,44,55),
7286 (6,7,29,53,29,54,45,57),
7287 (6,7,30,54,30,55,47,58),
7288 (6,7,31,55,31,57,48,59),
7289 (6,7,32,56,31,58,49,61),
7290 (6,7,33,57,32,59,50,62),
7291 (6,7,34,58,33,61,51,64),
7292 (6,7,35,60,33,62,53,65),
7293 (6,7,36,61,34,63,54,66),
7294 (6,7,37,62,34,65,55,68),
7295 (6,7,38,63,35,66,57,69),
7296 (6,7,39,64,36,67,58,71),
7297 (6,7,40,66,36,69,59,72),
7298 (6,7,41,67,37,70,60,74),
7299 (6,7,42,68,38,72,62,75),
7300 (6,7,43,69,38,73,63,77),
7301 (6,7,44,70,39,74,64,78),
7302 (6,7,45,72,40,76,66,80),
7303 (6,7,46,73,41,77,67,81),
7304 (6,7,47,74,41,79,69,83),
7305 (6,7,48,76,42,80,70,84),
7306 (6,7,49,77,43,82,71,86),
7307 (6,7,50,78,43,83,73,88),
7308 (6,7,51,80,44,85,74,89),
7309 (6,7,52,81,45,86,76,91),
7310 (6,7,53,82,46,88,77,92),
7311 (6,7,54,84,46,90,78,94),
7312 (6,7,55,85,47,91,80,96),
7313 (6,7,56,86,48,93,81,97),
7314 (6,7,57,88,49,94,83,99),
7315 (6,7,58,89,49,96,84,101),
7316 (6,7,59,91,50,97,86,102),
7317 (6,7,60,92,51,99,87,104),
7318 (6,7,61,94,52,101,89,106),
7319 (6,7,62,95,52,102,90,108),
7320 (6,7,63,96,53,104,92,109),
7321 (6,7,64,98,54,106,93,111),
7322 (6,7,65,99,55,107,95,113),
7323 (6,7,66,101,56,109,97,115),
7324 (6,7,67,102,57,111,98,117),
7325 (6,7,68,104,57,113,100,118),
7326 (6,7,69,105,58,114,101,120),
7327 (6,7,70,107,59,116,103,122),
7328 (6,7,71,108,60,118,113,124),
7329 (6,7,72,110,61,120,117,127),
7330 (6,7,73,112,62,122,119,129),
7331 (6,7,74,114,63,125,122,131),
7332 (6,7,75,116,64,127,124,133),
7333 (6,7,76,118,65,129,126,136),
7334 (6,7,77,119,66,131,128,138),
7335 (6,7,78,121,67,133,130,140),
7336 (6,7,79,123,68,136,133,143),
7337 (6,7,80,125,69,138,135,145),
7338 (6,11,1,26,15,22,17,24),
7339 (6,11,2,27,16,23,18,25),
7340 (6,11,3,27,16,23,19,26),
7341 (6,11,4,28,17,24,20,27),
7342 (6,11,5,28,17,25,21,29),
7343 (6,11,6,29,18,25,22,30),
7344 (6,11,7,29,18,26,23,31),
7345 (6,11,8,30,19,27,24,32),
7346 (6,11,9,30,19,27,26,34),
7347 (6,11,10,31,20,28,27,35),
7348 (6,11,11,32,20,29,28,36),
7349 (6,11,12,32,21,29,29,37),
7350 (6,11,13,33,21,30,30,39),
7351 (6,11,14,33,22,31,31,40),
7352 (6,11,15,34,23,32,32,41),
7353 (6,11,16,35,23,32,34,43),
7354 (6,11,17,35,24,33,35,44),
7355 (6,11,18,36,24,34,36,45),
7356 (6,11,19,37,25,35,37,47),
7357 (6,11,20,37,26,35,39,48),
7358 (6,11,21,38,26,36,40,50),
7359 (6,11,22,39,27,37,41,51),
7360 (6,11,23,39,28,38,42,52),
7361 (6,11,24,40,28,39,44,54),
7362 (6,11,25,41,29,39,45,55),
7363 (6,11,26,41,30,40,46,57),
7364 (6,11,27,42,30,41,47,58),
7365 (6,11,28,43,31,42,49,60),
7366 (6,11,29,44,32,43,50,61),
7367 (6,11,30,44,32,44,52,63),
7368 (6,11,31,45,33,44,53,64),
7369 (6,11,32,46,34,45,54,66),
7370 (6,11,33,47,34,46,56,67),
7371 (6,11,34,47,35,47,57,69),
7372 (6,11,35,48,36,48,58,71),
7373 (6,11,36,49,36,49,60,72),
7374 (6,11,37,50,37,50,61,74),
7375 (6,11,38,51,38,51,63,76),
7376 (6,11,39,52,39,52,64,77),
7377 (6,11,40,52,39,53,66,79),
7378 (6,11,41,53,40,54,67,81),
7379 (6,11,42,54,41,55,69,82),
7380 (6,11,43,55,42,56,70,84),
7381 (6,11,44,56,43,57,72,86),
7382 (6,11,45,57,43,57,73,87),
7383 (6,11,46,57,44,58,75,89),
7384 (6,11,47,58,45,60,76,91),
7385 (6,11,48,59,46,61,78,93),
7386 (6,11,49,60,47,62,79,94),
7387 (6,11,50,61,47,63,81,96),
7388 (6,11,51,62,48,64,83,98),
7389 (6,11,52,63,49,65,84,100),
7390 (6,11,53,64,50,66,86,102),
7391 (6,11,54,65,51,67,87,104),
7392 (6,11,55,66,51,68,89,105),
7393 (6,11,56,67,52,69,91,107),
7394 (6,11,57,68,53,70,92,109),
7395 (6,11,58,69,54,71,94,111),
7396 (6,11,59,70,55,72,96,113),
7397 (6,11,60,71,56,73,97,115),
7398 (6,11,61,72,57,74,99,117),
7399 (6,11,62,73,58,76,101,119),
7400 (6,11,63,74,59,77,103,121),
7401 (6,11,64,75,59,78,104,123),
7402 (6,11,65,76,60,79,106,125),
7403 (6,11,66,77,61,80,108,127),
7404 (6,11,67,78,62,81,110,129),
7405 (6,11,68,79,63,83,111,131),
7406 (6,11,69,80,64,84,113,133),
7407 (6,11,70,81,65,85,115,135),
7408 (6,11,71,83,66,86,117,137),
7409 (6,11,72,84,68,88,120,140),
7410 (6,11,73,85,69,89,122,142),
7411 (6,11,74,86,70,91,124,145),
7412 (6,11,75,88,71,92,126,147),
7413 (6,11,76,89,72,94,128,150),
7414 (6,11,77,90,73,95,131,153),
7415 (6,11,78,92,75,97,133,155),
7416 (6,11,79,93,76,98,136,158),
7417 (6,11,80,94,77,100,138,185),
7418 (7,1,1,18,23,21,24,20),
7419 (7,1,2,19,24,22,24,20),
7420 (7,1,3,21,25,23,24,21),
7421 (7,1,4,22,25,25,24,21),
7422 (7,1,5,23,26,26,24,21),
7423 (7,1,6,25,27,27,24,21),
7424 (7,1,7,26,28,28,24,22),
7425 (7,1,8,27,29,29,25,22),
7426 (7,1,9,29,29,31,25,22),
7427 (7,1,10,30,30,32,25,23),
7428 (7,1,11,32,31,33,25,23),
7429 (7,1,12,33,32,34,25,23),
7430 (7,1,13,34,33,36,25,24),
7431 (7,1,14,36,34,37,25,24),
7432 (7,1,15,37,35,38,25,24),
7433 (7,1,16,39,36,40,25,25),
7434 (7,1,17,40,36,41,25,25),
7435 (7,1,18,42,37,43,26,25),
7436 (7,1,19,43,38,44,26,26),
7437 (7,1,20,45,39,45,26,26),
7438 (7,1,21,47,40,47,26,26),
7439 (7,1,22,48,41,48,26,27),
7440 (7,1,23,50,42,50,26,27),
7441 (7,1,24,51,43,51,26,28),
7442 (7,1,25,53,44,52,27,28),
7443 (7,1,26,55,45,54,27,28),
7444 (7,1,27,56,46,55,27,29),
7445 (7,1,28,58,47,57,27,29),
7446 (7,1,29,59,48,58,27,30),
7447 (7,1,30,61,49,60,27,30),
7448 (7,1,31,63,50,62,27,30),
7449 (7,1,32,65,51,63,28,31),
7450 (7,1,33,66,52,65,28,31),
7451 (7,1,34,68,53,66,28,32),
7452 (7,1,35,70,55,68,28,32),
7453 (7,1,36,72,56,69,28,33),
7454 (7,1,37,73,57,71,29,33),
7455 (7,1,38,75,58,73,29,34),
7456 (7,1,39,77,59,74,29,34),
7457 (7,1,40,79,60,76,29,35),
7458 (7,1,41,81,61,78,29,35),
7459 (7,1,42,82,62,79,30,35),
7460 (7,1,43,84,64,81,30,36),
7461 (7,1,44,86,65,83,30,36),
7462 (7,1,45,88,66,85,30,37),
7463 (7,1,46,90,67,86,30,37),
7464 (7,1,47,92,68,88,31,38),
7465 (7,1,48,94,70,90,31,38),
7466 (7,1,49,96,71,92,31,39),
7467 (7,1,50,98,72,93,31,40),
7468 (7,1,51,100,73,95,32,40),
7469 (7,1,52,102,75,97,32,41),
7470 (7,1,53,104,76,99,32,41),
7471 (7,1,54,106,77,101,32,42),
7472 (7,1,55,108,78,103,33,42),
7473 (7,1,56,110,80,104,33,43),
7474 (7,1,57,112,81,106,33,43),
7475 (7,1,58,114,82,108,33,44),
7476 (7,1,59,116,84,110,34,44),
7477 (7,1,60,118,85,112,34,45),
7478 (7,1,61,120,86,114,34,46),
7479 (7,1,62,122,88,116,35,46),
7480 (7,1,63,125,89,118,35,47),
7481 (7,1,64,127,91,120,35,47),
7482 (7,1,65,129,92,122,35,48),
7483 (7,1,66,131,93,124,36,49),
7484 (7,1,67,133,95,126,36,49),
7485 (7,1,68,136,96,128,36,50),
7486 (7,1,69,138,98,130,37,50),
7487 (7,1,70,140,99,132,37,51),
7488 (7,1,71,143,100,134,37,52),
7489 (7,1,72,145,102,137,37,53),
7490 (7,1,73,148,104,139,37,54),
7491 (7,1,74,151,105,142,38,54),
7492 (7,1,75,154,107,144,38,55),
7493 (7,1,76,157,109,147,38,56),
7494 (7,1,77,163,111,153,39,57),
7495 (7,1,78,169,112,158,39,57),
7496 (7,1,79,172,114,161,39,58),
7497 (7,1,80,175,116,164,40,59),
7498 (7,4,1,16,26,20,24,20),
7499 (7,4,2,17,27,21,24,20),
7500 (7,4,3,18,29,21,24,21),
7501 (7,4,4,18,30,22,24,21),
7502 (7,4,5,19,32,23,25,21),
7503 (7,4,6,20,33,24,25,22),
7504 (7,4,7,21,35,24,25,22),
7505 (7,4,8,22,36,25,25,23),
7506 (7,4,9,22,38,26,25,23),
7507 (7,4,10,23,39,26,25,23),
7508 (7,4,11,24,41,27,25,24),
7509 (7,4,12,25,42,28,26,24),
7510 (7,4,13,26,44,29,26,25),
7511 (7,4,14,27,46,30,26,25),
7512 (7,4,15,28,47,30,26,25),
7513 (7,4,16,28,49,31,26,26),
7514 (7,4,17,29,50,32,27,26),
7515 (7,4,18,30,52,33,27,27),
7516 (7,4,19,31,54,34,27,27),
7517 (7,4,20,32,56,35,27,28),
7518 (7,4,21,33,57,35,27,28),
7519 (7,4,22,34,59,36,28,29),
7520 (7,4,23,35,61,37,28,29),
7521 (7,4,24,36,62,38,28,30),
7522 (7,4,25,37,64,39,28,30),
7523 (7,4,26,38,66,40,29,31),
7524 (7,4,27,39,68,41,29,31),
7525 (7,4,28,40,70,42,29,32),
7526 (7,4,29,41,72,43,29,32),
7527 (7,4,30,42,73,43,29,33),
7528 (7,4,31,43,75,44,30,33),
7529 (7,4,32,44,77,45,30,34),
7530 (7,4,33,45,79,46,30,34),
7531 (7,4,34,46,81,47,31,35),
7532 (7,4,35,47,83,48,31,35),
7533 (7,4,36,48,85,49,31,36),
7534 (7,4,37,49,87,50,31,36),
7535 (7,4,38,50,89,51,32,37),
7536 (7,4,39,51,91,52,32,38),
7537 (7,4,40,53,93,53,32,38),
7538 (7,4,41,54,95,54,33,39),
7539 (7,4,42,55,97,55,33,39),
7540 (7,4,43,56,99,56,33,40),
7541 (7,4,44,57,101,57,33,40),
7542 (7,4,45,58,103,59,34,41),
7543 (7,4,46,59,105,60,34,42),
7544 (7,4,47,61,107,61,34,42),
7545 (7,4,48,62,110,62,35,43),
7546 (7,4,49,63,112,63,35,44),
7547 (7,4,50,64,114,64,35,44),
7548 (7,4,51,65,116,65,36,45),
7549 (7,4,52,67,118,66,36,45),
7550 (7,4,53,68,121,67,36,46),
7551 (7,4,54,69,123,69,37,47),
7552 (7,4,55,70,125,70,37,47),
7553 (7,4,56,72,127,71,37,48),
7554 (7,4,57,73,130,72,38,49),
7555 (7,4,58,74,132,73,38,49),
7556 (7,4,59,75,134,74,39,50),
7557 (7,4,60,77,137,76,39,51),
7558 (7,4,61,78,139,77,39,51),
7559 (7,4,62,79,141,78,40,52),
7560 (7,4,63,81,144,79,40,53),
7561 (7,4,64,82,146,80,41,54),
7562 (7,4,65,83,149,82,41,54),
7563 (7,4,66,85,151,83,41,55),
7564 (7,4,67,86,154,84,42,56),
7565 (7,4,68,87,156,85,42,57),
7566 (7,4,69,89,158,87,43,57),
7567 (7,4,70,90,161,88,43,58),
7568 (7,4,71,92,164,89,44,59),
7569 (7,4,72,94,167,91,45,59),
7570 (7,4,73,95,170,93,45,60),
7571 (7,4,74,97,173,94,46,61),
7572 (7,4,75,99,176,96,46,62),
7573 (7,4,76,100,179,97,46,63),
7574 (7,4,77,102,182,102,47,64),
7575 (7,4,78,104,186,105,47,65),
7576 (7,4,79,106,189,106,48,66),
7577 (7,4,80,108,192,108,48,67),
7578 (7,6,1,18,23,21,24,20),
7579 (7,6,2,19,24,22,24,20),
7580 (7,6,3,21,25,23,24,21),
7581 (7,6,4,22,25,25,24,21),
7582 (7,6,5,23,26,26,24,21),
7583 (7,6,6,25,27,27,24,21),
7584 (7,6,7,26,28,28,24,22),
7585 (7,6,8,27,29,29,25,22),
7586 (7,6,9,29,29,31,25,22),
7587 (7,6,10,30,30,32,25,23),
7588 (7,6,11,32,31,33,25,23),
7589 (7,6,12,33,32,34,25,23),
7590 (7,6,13,34,33,36,25,24),
7591 (7,6,14,36,34,37,25,24),
7592 (7,6,15,37,35,38,25,24),
7593 (7,6,16,39,36,40,25,25),
7594 (7,6,17,40,36,41,25,25),
7595 (7,6,18,42,37,43,26,25),
7596 (7,6,19,43,38,44,26,26),
7597 (7,6,20,45,39,45,26,26),
7598 (7,6,21,47,40,47,26,26),
7599 (7,6,22,48,41,48,26,27),
7600 (7,6,23,50,42,50,26,27),
7601 (7,6,24,51,43,51,26,28),
7602 (7,6,25,53,44,52,27,28),
7603 (7,6,26,55,45,54,27,28),
7604 (7,6,27,56,46,55,27,29),
7605 (7,6,28,58,47,57,27,29),
7606 (7,6,29,59,48,58,27,30),
7607 (7,6,30,61,49,60,27,30),
7608 (7,6,31,63,50,62,27,30),
7609 (7,6,32,65,51,63,28,31),
7610 (7,6,33,66,52,65,28,31),
7611 (7,6,34,68,53,66,28,32),
7612 (7,6,35,70,55,68,28,32),
7613 (7,6,36,72,56,69,28,33),
7614 (7,6,37,73,57,71,29,33),
7615 (7,6,38,75,58,73,29,34),
7616 (7,6,39,77,59,74,29,34),
7617 (7,6,40,79,60,76,29,35),
7618 (7,6,41,81,61,78,29,35),
7619 (7,6,42,82,62,79,30,35),
7620 (7,6,43,84,64,81,30,36),
7621 (7,6,44,86,65,83,30,36),
7622 (7,6,45,88,66,85,30,37),
7623 (7,6,46,90,67,86,30,37),
7624 (7,6,47,92,68,88,31,38),
7625 (7,6,48,94,70,90,31,38),
7626 (7,6,49,96,71,92,31,39),
7627 (7,6,50,98,72,93,31,40),
7628 (7,6,51,99,72,93,32,40),
7629 (7,6,52,100,73,95,32,41),
7630 (7,6,53,101,74,96,32,41),
7631 (7,6,54,102,75,97,32,42),
7632 (7,6,55,103,76,98,33,42),
7633 (7,6,56,106,78,101,33,43),
7634 (7,6,57,111,79,103,33,43),
7635 (7,6,58,113,80,105,34,44),
7636 (7,6,59,116,82,107,34,44),
7637 (7,6,60,118,83,109,34,45),
7638 (7,6,61,120,84,111,34,46),
7639 (7,6,62,127,86,119,34,46),
7640 (7,6,63,129,87,122,35,47),
7641 (7,6,64,132,89,125,35,47),
7642 (7,6,65,135,90,127,35,48),
7643 (7,6,66,137,92,130,35,49),
7644 (7,6,67,138,93,130,36,49),
7645 (7,6,68,140,95,131,36,50),
7646 (7,6,69,142,96,131,36,51),
7647 (7,6,70,145,98,132,36,51),
7648 (7,6,71,148,100,135,37,52),
7649 (7,6,72,150,101,137,37,53),
7650 (7,6,73,153,103,140,37,54),
7651 (7,6,74,154,105,142,37,54),
7652 (7,6,75,155,106,145,38,55),
7653 (7,6,76,158,108,151,38,56),
7654 (7,6,77,161,110,157,38,57),
7655 (7,6,78,164,111,162,38,57),
7656 (7,6,79,167,113,165,39,58),
7657 (7,6,80,170,115,168,39,59),
7658 (7,8,1,15,23,19,27,22),
7659 (7,8,2,15,23,19,28,23),
7660 (7,8,3,15,23,20,30,25),
7661 (7,8,4,15,23,20,31,26),
7662 (7,8,5,15,24,20,32,27),
7663 (7,8,6,15,24,20,34,29),
7664 (7,8,7,16,24,21,35,30),
7665 (7,8,8,16,24,21,37,31),
7666 (7,8,9,16,24,21,38,33),
7667 (7,8,10,16,24,22,40,34),
7668 (7,8,11,16,25,22,41,36),
7669 (7,8,12,16,25,22,42,37),
7670 (7,8,13,16,25,23,44,38),
7671 (7,8,14,16,25,23,45,40),
7672 (7,8,15,17,25,23,47,41),
7673 (7,8,16,17,25,24,49,43),
7674 (7,8,17,17,26,24,50,44),
7675 (7,8,18,17,26,24,52,46),
7676 (7,8,19,17,26,25,53,47),
7677 (7,8,20,17,26,25,55,49),
7678 (7,8,21,17,26,26,57,51),
7679 (7,8,22,18,27,26,58,52),
7680 (7,8,23,18,27,26,60,54),
7681 (7,8,24,18,27,27,61,55),
7682 (7,8,25,18,27,27,63,57),
7683 (7,8,26,18,28,27,65,59),
7684 (7,8,27,18,28,28,67,60),
7685 (7,8,28,18,28,28,68,62),
7686 (7,8,29,19,28,29,70,64),
7687 (7,8,30,19,29,29,72,65),
7688 (7,8,31,19,29,30,74,67),
7689 (7,8,32,19,29,30,75,69),
7690 (7,8,33,19,29,30,77,70),
7691 (7,8,34,20,30,31,79,72),
7692 (7,8,35,20,30,31,81,74),
7693 (7,8,36,20,30,32,83,76),
7694 (7,8,37,20,30,32,85,78),
7695 (7,8,38,20,31,33,86,79),
7696 (7,8,39,21,31,33,88,81),
7697 (7,8,40,21,31,34,90,83),
7698 (7,8,41,21,32,34,92,85),
7699 (7,8,42,21,32,35,94,87),
7700 (7,8,43,21,32,35,96,89),
7701 (7,8,44,22,32,36,98,91),
7702 (7,8,45,22,33,36,100,92),
7703 (7,8,46,22,33,37,102,94),
7704 (7,8,47,22,33,37,104,96),
7705 (7,8,48,22,34,38,106,98),
7706 (7,8,49,23,34,38,108,100),
7707 (7,8,50,23,34,39,110,102),
7708 (7,8,51,23,35,39,112,104),
7709 (7,8,52,23,35,40,114,106),
7710 (7,8,53,24,35,40,117,108),
7711 (7,8,54,24,36,41,119,110),
7712 (7,8,55,24,36,41,121,112),
7713 (7,8,56,24,37,42,123,114),
7714 (7,8,57,25,37,42,125,117),
7715 (7,8,58,25,37,43,127,119),
7716 (7,8,59,25,38,43,130,121),
7717 (7,8,60,25,38,44,132,123),
7718 (7,8,61,26,38,45,134,125),
7719 (7,8,62,26,39,45,136,127),
7720 (7,8,63,26,39,46,139,129),
7721 (7,8,64,26,40,46,141,132),
7722 (7,8,65,27,40,47,143,134),
7723 (7,8,66,27,40,48,146,136),
7724 (7,8,67,27,41,48,148,138),
7725 (7,8,68,27,41,49,150,140),
7726 (7,8,69,28,42,49,153,143),
7727 (7,8,70,28,42,50,155,145),
7728 (7,8,71,28,42,51,168,148),
7729 (7,8,72,28,43,52,168,151),
7730 (7,8,73,28,43,53,171,154),
7731 (7,8,74,29,44,53,174,156),
7732 (7,8,75,29,44,54,177,159),
7733 (7,8,76,29,44,55,180,162),
7734 (7,8,77,30,45,56,183,165),
7735 (7,8,78,30,45,56,186,168),
7736 (7,8,79,30,46,57,190,171),
7737 (7,8,80,31,46,58,193,174),
7738 (7,9,1,15,23,20,26,22),
7739 (7,9,2,15,23,21,27,23),
7740 (7,9,3,16,24,21,28,24),
7741 (7,9,4,16,24,22,29,25),
7742 (7,9,5,16,24,22,31,27),
7743 (7,9,6,17,25,23,32,28),
7744 (7,9,7,17,25,23,33,29),
7745 (7,9,8,17,26,24,34,30),
7746 (7,9,9,17,26,25,36,31),
7747 (7,9,10,18,26,25,37,33),
7748 (7,9,11,18,27,26,38,34),
7749 (7,9,12,18,27,26,39,35),
7750 (7,9,13,19,28,27,41,36),
7751 (7,9,14,19,28,28,42,38),
7752 (7,9,15,20,28,28,43,39),
7753 (7,9,16,20,29,29,45,40),
7754 (7,9,17,20,29,30,46,42),
7755 (7,9,18,21,30,30,47,43),
7756 (7,9,19,21,30,31,49,44),
7757 (7,9,20,21,31,32,50,46),
7758 (7,9,21,22,31,32,51,47),
7759 (7,9,22,22,31,33,53,49),
7760 (7,9,23,23,32,34,54,50),
7761 (7,9,24,23,32,34,56,51),
7762 (7,9,25,23,33,35,57,53),
7763 (7,9,26,24,33,36,59,54),
7764 (7,9,27,24,34,37,60,56),
7765 (7,9,28,25,34,37,62,57),
7766 (7,9,29,25,35,38,63,59),
7767 (7,9,30,25,35,39,65,60),
7768 (7,9,31,26,36,40,66,62),
7769 (7,9,32,26,36,40,68,63),
7770 (7,9,33,27,37,41,69,65),
7771 (7,9,34,27,38,42,71,66),
7772 (7,9,35,28,38,43,73,68),
7773 (7,9,36,28,39,43,74,69),
7774 (7,9,37,28,39,44,76,71),
7775 (7,9,38,29,40,45,77,73),
7776 (7,9,39,29,40,46,79,74),
7777 (7,9,40,30,41,47,81,76),
7778 (7,9,41,30,41,48,82,78),
7779 (7,9,42,31,42,48,84,79),
7780 (7,9,43,31,43,49,86,81),
7781 (7,9,44,32,43,50,88,83),
7782 (7,9,45,32,44,51,89,84),
7783 (7,9,46,33,44,52,91,86),
7784 (7,9,47,33,45,53,93,88),
7785 (7,9,48,34,46,54,95,89),
7786 (7,9,49,34,46,54,96,91),
7787 (7,9,50,35,47,55,98,93),
7788 (7,9,51,35,48,56,100,95),
7789 (7,9,52,36,48,57,102,97),
7790 (7,9,53,36,49,58,104,98),
7791 (7,9,54,37,50,59,105,100),
7792 (7,9,55,37,50,60,107,102),
7793 (7,9,56,38,51,61,109,104),
7794 (7,9,57,38,52,62,111,106),
7795 (7,9,58,39,52,63,113,108),
7796 (7,9,59,40,53,64,115,109),
7797 (7,9,60,40,54,65,117,111),
7798 (7,9,61,41,54,66,119,113),
7799 (7,9,62,41,55,67,121,115),
7800 (7,9,63,42,56,68,123,117),
7801 (7,9,64,42,57,69,125,119),
7802 (7,9,65,43,57,70,127,121),
7803 (7,9,66,44,58,71,129,123),
7804 (7,9,67,44,59,72,131,125),
7805 (7,9,68,45,59,73,133,127),
7806 (7,9,69,45,60,74,135,129),
7807 (7,9,70,46,61,75,137,131),
7808 (7,9,71,47,62,84,147,142),
7809 (7,9,72,48,62,85,148,144),
7810 (7,9,73,49,63,85,153,147),
7811 (7,9,74,49,64,88,153,150),
7812 (7,9,75,50,65,90,155,152),
7813 (7,9,76,51,66,91,158,155),
7814 (7,9,77,52,67,92,161,158),
7815 (7,9,78,52,68,93,163,161),
7816 (7,9,79,53,69,95,166,164),
7817 (7,9,80,54,70,96,170,166),
7818 (8,1,1,24,22,23,16,21),
7819 (8,1,2,25,23,24,16,21),
7820 (8,1,3,27,24,25,16,22),
7821 (8,1,4,28,24,26,16,22),
7822 (8,1,5,29,25,28,16,22),
7823 (8,1,6,31,26,29,16,22),
7824 (8,1,7,32,27,30,17,23),
7825 (8,1,8,33,28,31,17,23),
7826 (8,1,9,35,28,33,17,23),
7827 (8,1,10,36,29,34,17,24),
7828 (8,1,11,37,30,35,17,24),
7829 (8,1,12,39,31,36,17,24),
7830 (8,1,13,40,32,38,17,25),
7831 (8,1,14,42,33,39,17,25),
7832 (8,1,15,43,34,40,18,25),
7833 (8,1,16,45,35,42,18,26),
7834 (8,1,17,46,35,43,18,26),
7835 (8,1,18,48,36,44,18,26),
7836 (8,1,19,49,37,46,18,27),
7837 (8,1,20,51,38,47,18,27),
7838 (8,1,21,52,39,49,18,27),
7839 (8,1,22,54,40,50,18,28),
7840 (8,1,23,55,41,51,19,28),
7841 (8,1,24,57,42,53,19,29),
7842 (8,1,25,59,43,54,19,29),
7843 (8,1,26,60,44,56,19,29),
7844 (8,1,27,62,45,57,19,30),
7845 (8,1,28,63,46,59,19,30),
7846 (8,1,29,65,47,60,20,31),
7847 (8,1,30,67,48,62,20,31),
7848 (8,1,31,69,49,63,20,31),
7849 (8,1,32,70,50,65,20,32),
7850 (8,1,33,72,51,67,20,32),
7851 (8,1,34,74,53,68,20,33),
7852 (8,1,35,75,54,70,21,33),
7853 (8,1,36,77,55,71,21,34),
7854 (8,1,37,79,56,73,21,34),
7855 (8,1,38,81,57,75,21,35),
7856 (8,1,39,83,58,76,21,35),
7857 (8,1,40,84,59,78,22,35),
7858 (8,1,41,86,60,80,22,36),
7859 (8,1,42,88,62,81,22,36),
7860 (8,1,43,90,63,83,22,37),
7861 (8,1,44,92,64,85,22,37),
7862 (8,1,45,94,65,86,23,38),
7863 (8,1,46,96,66,88,23,38),
7864 (8,1,47,98,67,90,23,39),
7865 (8,1,48,100,69,92,23,39),
7866 (8,1,49,102,70,93,24,40),
7867 (8,1,50,103,71,95,24,40),
7868 (8,1,51,105,72,97,24,41),
7869 (8,1,52,107,74,99,24,42),
7870 (8,1,53,109,75,101,25,42),
7871 (8,1,54,112,76,103,25,43),
7872 (8,1,55,114,78,104,25,43),
7873 (8,1,56,116,79,106,25,44),
7874 (8,1,57,118,80,108,25,44),
7875 (8,1,58,120,81,110,26,45),
7876 (8,1,59,122,83,112,26,45),
7877 (8,1,60,124,84,114,26,46),
7878 (8,1,61,126,85,116,27,47),
7879 (8,1,62,128,87,118,27,47),
7880 (8,1,63,130,88,120,27,48),
7881 (8,1,64,133,90,122,27,48),
7882 (8,1,65,135,91,124,28,49),
7883 (8,1,66,137,92,126,28,50),
7884 (8,1,67,139,94,128,28,50),
7885 (8,1,68,141,95,130,28,51),
7886 (8,1,69,144,97,132,29,51),
7887 (8,1,70,146,98,134,29,52),
7888 (8,1,71,149,99,136,29,53),
7889 (8,1,72,151,101,139,29,54),
7890 (8,1,73,154,103,141,29,55),
7891 (8,1,74,157,104,144,30,55),
7892 (8,1,75,166,106,151,30,56),
7893 (8,1,76,172,108,157,30,57),
7894 (8,1,77,175,110,161,31,58),
7895 (8,1,78,179,111,163,31,58),
7896 (8,1,79,182,113,164,31,59),
7897 (8,1,80,185,115,169,32,60),
7898 (8,3,1,21,25,22,16,22),
7899 (8,3,2,21,26,23,17,23),
7900 (8,3,3,22,28,24,17,23),
7901 (8,3,4,22,29,25,18,24),
7902 (8,3,5,23,30,26,18,25),
7903 (8,3,6,23,32,27,19,25),
7904 (8,3,7,24,33,28,20,26),
7905 (8,3,8,24,35,28,20,26),
7906 (8,3,9,25,36,29,21,27),
7907 (8,3,10,25,38,30,21,28),
7908 (8,3,11,25,39,31,22,29),
7909 (8,3,12,26,41,32,23,29),
7910 (8,3,13,26,42,33,23,30),
7911 (8,3,14,27,44,34,24,31),
7912 (8,3,15,27,45,35,25,31),
7913 (8,3,16,28,47,36,25,32),
7914 (8,3,17,28,48,38,26,33),
7915 (8,3,18,29,50,39,27,34),
7916 (8,3,19,29,51,40,28,34),
7917 (8,3,20,30,53,41,28,35),
7918 (8,3,21,31,55,42,29,36),
7919 (8,3,22,31,56,43,30,37),
7920 (8,3,23,32,58,44,30,37),
7921 (8,3,24,32,60,45,31,38),
7922 (8,3,25,33,61,46,32,39),
7923 (8,3,26,33,63,48,33,40),
7924 (8,3,27,34,65,49,33,41),
7925 (8,3,28,35,66,50,34,41),
7926 (8,3,29,35,68,51,35,42),
7927 (8,3,30,36,70,52,36,43),
7928 (8,3,31,36,72,53,37,44),
7929 (8,3,32,37,73,55,37,45),
7930 (8,3,33,38,75,56,38,46),
7931 (8,3,34,38,77,57,39,47),
7932 (8,3,35,39,79,58,40,48),
7933 (8,3,36,39,81,60,41,48),
7934 (8,3,37,40,83,61,41,49),
7935 (8,3,38,41,85,62,42,50),
7936 (8,3,39,41,86,63,43,51),
7937 (8,3,40,42,88,65,44,52),
7938 (8,3,41,43,90,66,45,53),
7939 (8,3,42,43,92,67,46,54),
7940 (8,3,43,44,94,69,47,55),
7941 (8,3,44,45,96,70,47,56),
7942 (8,3,45,45,98,71,48,57),
7943 (8,3,46,46,100,73,49,58),
7944 (8,3,47,47,102,74,50,59),
7945 (8,3,48,48,104,76,51,60),
7946 (8,3,49,48,106,77,52,61),
7947 (8,3,50,49,108,78,53,62),
7948 (8,3,51,50,110,80,54,63),
7949 (8,3,52,51,113,81,55,64),
7950 (8,3,53,51,115,83,56,65),
7951 (8,3,54,52,117,84,57,66),
7952 (8,3,55,53,119,86,58,67),
7953 (8,3,56,54,121,87,59,68),
7954 (8,3,57,54,123,89,60,69),
7955 (8,3,58,55,126,90,61,70),
7956 (8,3,59,56,128,92,62,71),
7957 (8,3,60,57,130,93,63,73),
7958 (8,3,61,58,132,95,64,74),
7959 (8,3,62,58,134,96,65,75),
7960 (8,3,63,59,137,98,66,76),
7961 (8,3,64,60,139,99,67,77),
7962 (8,3,65,61,141,101,68,78),
7963 (8,3,66,62,144,103,69,79),
7964 (8,3,67,62,146,104,70,80),
7965 (8,3,68,63,148,106,71,82),
7966 (8,3,69,64,151,107,72,83),
7967 (8,3,70,65,153,109,73,84),
7968 (8,3,71,66,156,111,74,85),
7969 (8,3,72,67,159,113,75,86),
7970 (8,3,73,68,162,115,76,88),
7971 (8,3,74,69,165,117,78,89),
7972 (8,3,75,70,174,119,82,91),
7973 (8,3,76,71,177,121,83,92),
7974 (8,3,77,72,180,123,85,94),
7975 (8,3,78,73,184,125,86,95),
7976 (8,3,79,74,187,127,87,97),
7977 (8,3,80,75,190,129,89,98),
7978 (8,4,1,22,25,22,16,21),
7979 (8,4,2,23,26,23,16,21),
7980 (8,4,3,24,28,23,16,22),
7981 (8,4,4,24,29,24,16,22),
7982 (8,4,5,25,31,25,17,22),
7983 (8,4,6,26,32,25,17,23),
7984 (8,4,7,27,34,26,17,23),
7985 (8,4,8,27,35,27,17,24),
7986 (8,4,9,28,37,28,17,24),
7987 (8,4,10,29,38,28,18,24),
7988 (8,4,11,30,40,29,18,25),
7989 (8,4,12,31,41,30,18,25),
7990 (8,4,13,32,43,31,18,26),
7991 (8,4,14,32,45,32,18,26),
7992 (8,4,15,33,46,32,19,26),
7993 (8,4,16,34,48,33,19,27),
7994 (8,4,17,35,50,34,19,27),
7995 (8,4,18,36,51,35,19,28),
7996 (8,4,19,37,53,36,19,28),
7997 (8,4,20,38,55,36,20,29),
7998 (8,4,21,39,56,37,20,29),
7999 (8,4,22,40,58,38,20,30),
8000 (8,4,23,41,60,39,20,30),
8001 (8,4,24,42,62,40,20,31),
8002 (8,4,25,43,63,41,21,31),
8003 (8,4,26,44,65,42,21,32),
8004 (8,4,27,45,67,43,21,32),
8005 (8,4,28,46,69,44,21,33),
8006 (8,4,29,47,71,44,22,33),
8007 (8,4,30,48,72,45,22,34),
8008 (8,4,31,49,74,46,22,34),
8009 (8,4,32,50,76,47,22,35),
8010 (8,4,33,51,78,48,23,35),
8011 (8,4,34,52,80,49,23,36),
8012 (8,4,35,53,82,50,23,36),
8013 (8,4,36,54,84,51,24,37),
8014 (8,4,37,55,86,52,24,37),
8015 (8,4,38,56,88,53,24,38),
8016 (8,4,39,57,90,54,24,38),
8017 (8,4,40,58,92,55,25,39),
8018 (8,4,41,59,94,56,25,40),
8019 (8,4,42,60,96,57,25,40),
8020 (8,4,43,62,98,58,26,41),
8021 (8,4,44,63,100,59,26,41),
8022 (8,4,45,64,102,60,26,42),
8023 (8,4,46,65,104,61,27,43),
8024 (8,4,47,66,107,63,27,43),
8025 (8,4,48,67,109,64,27,44),
8026 (8,4,49,69,111,65,27,44),
8027 (8,4,50,70,113,66,28,45),
8028 (8,4,51,71,115,67,28,46),
8029 (8,4,52,72,117,68,28,46),
8030 (8,4,53,74,120,69,29,47),
8031 (8,4,54,75,122,70,29,48),
8032 (8,4,55,76,124,72,29,48),
8033 (8,4,56,77,126,73,30,49),
8034 (8,4,57,79,129,74,30,50),
8035 (8,4,58,80,131,75,30,50),
8036 (8,4,59,81,133,76,31,51),
8037 (8,4,60,82,136,77,31,52),
8038 (8,4,61,84,138,79,32,52),
8039 (8,4,62,85,140,80,32,53),
8040 (8,4,63,86,143,81,32,54),
8041 (8,4,64,88,145,82,33,55),
8042 (8,4,65,89,148,84,33,55),
8043 (8,4,66,90,150,85,33,56),
8044 (8,4,67,92,153,86,34,57),
8045 (8,4,68,93,155,87,34,58),
8046 (8,4,69,95,157,89,35,58),
8047 (8,4,70,96,160,90,35,59),
8048 (8,4,71,98,163,94,35,60),
8049 (8,4,72,100,166,96,36,60),
8050 (8,4,73,101,169,96,36,61),
8051 (8,4,74,103,172,97,37,62),
8052 (8,4,75,105,175,98,37,63),
8053 (8,4,76,106,178,99,37,64),
8054 (8,4,77,108,181,105,38,65),
8055 (8,4,78,110,185,107,38,66),
8056 (8,4,79,112,188,109,39,67),
8057 (8,4,80,114,191,110,39,68),
8058 (8,5,1,21,22,21,18,24),
8059 (8,5,2,21,22,21,19,25),
8060 (8,5,3,21,22,22,21,27),
8061 (8,5,4,21,23,22,22,28),
8062 (8,5,5,22,23,22,23,29),
8063 (8,5,6,22,23,23,25,31),
8064 (8,5,7,22,23,23,26,32),
8065 (8,5,8,22,24,24,27,34),
8066 (8,5,9,22,24,24,29,35),
8067 (8,5,10,22,24,24,30,37),
8068 (8,5,11,23,24,25,32,38),
8069 (8,5,12,23,24,25,33,40),
8070 (8,5,13,23,25,26,35,41),
8071 (8,5,14,23,25,26,36,43),
8072 (8,5,15,23,25,26,38,44),
8073 (8,5,16,24,26,27,39,46),
8074 (8,5,17,24,26,27,41,47),
8075 (8,5,18,24,26,28,42,49),
8076 (8,5,19,24,26,28,44,50),
8077 (8,5,20,24,27,29,45,52),
8078 (8,5,21,25,27,29,47,54),
8079 (8,5,22,25,27,30,48,55),
8080 (8,5,23,25,28,30,50,57),
8081 (8,5,24,25,28,31,52,59),
8082 (8,5,25,25,28,31,53,60),
8083 (8,5,26,26,28,32,55,62),
8084 (8,5,27,26,29,32,56,64),
8085 (8,5,28,26,29,33,58,65),
8086 (8,5,29,26,29,33,60,67),
8087 (8,5,30,27,30,34,62,69),
8088 (8,5,31,27,30,34,63,71),
8089 (8,5,32,27,30,35,65,73),
8090 (8,5,33,27,31,35,67,74),
8091 (8,5,34,28,31,36,68,76),
8092 (8,5,35,28,32,36,70,78),
8093 (8,5,36,28,32,37,72,80),
8094 (8,5,37,29,32,37,74,82),
8095 (8,5,38,29,33,38,76,84),
8096 (8,5,39,29,33,38,77,86),
8097 (8,5,40,29,33,39,79,87),
8098 (8,5,41,30,34,40,81,89),
8099 (8,5,42,30,34,40,83,91),
8100 (8,5,43,30,35,41,85,93),
8101 (8,5,44,31,35,41,87,95),
8102 (8,5,45,31,35,42,89,97),
8103 (8,5,46,31,36,43,91,99),
8104 (8,5,47,32,36,43,93,101),
8105 (8,5,48,32,37,44,94,103),
8106 (8,5,49,32,37,44,96,105),
8107 (8,5,50,33,37,45,98,107),
8108 (8,5,51,33,38,46,100,110),
8109 (8,5,52,33,38,46,102,112),
8110 (8,5,53,34,39,47,104,114),
8111 (8,5,54,34,39,48,106,116),
8112 (8,5,55,34,40,48,109,118),
8113 (8,5,56,35,40,49,111,120),
8114 (8,5,57,35,41,50,113,122),
8115 (8,5,58,35,41,50,115,125),
8116 (8,5,59,36,42,51,117,127),
8117 (8,5,60,36,42,52,119,129),
8118 (8,5,61,36,42,52,121,131),
8119 (8,5,62,37,43,53,123,133),
8120 (8,5,63,37,43,54,125,136),
8121 (8,5,64,38,44,55,128,138),
8122 (8,5,65,38,44,55,130,140),
8123 (8,5,66,38,45,56,132,143),
8124 (8,5,67,39,45,57,134,145),
8125 (8,5,68,39,46,58,136,147),
8126 (8,5,69,40,46,58,139,150),
8127 (8,5,70,40,47,59,141,152),
8128 (8,5,71,40,48,60,144,155),
8129 (8,5,72,41,48,60,147,158),
8130 (8,5,73,41,49,61,150,161),
8131 (8,5,74,42,49,62,152,164),
8132 (8,5,75,42,50,63,155,167),
8133 (8,5,76,42,51,64,158,170),
8134 (8,5,77,43,51,65,161,173),
8135 (8,5,78,43,52,66,164,176),
8136 (8,5,79,44,52,67,167,179),
8137 (8,5,80,44,53,68,170,182),
8138 (8,6,1,24,22,23,16,21),
8139 (8,6,2,25,23,24,16,21),
8140 (8,6,3,27,24,25,16,22),
8141 (8,6,4,28,24,26,16,22),
8142 (8,6,5,29,25,28,16,22),
8143 (8,6,6,31,26,29,16,22),
8144 (8,6,7,32,27,30,17,23),
8145 (8,6,8,33,28,31,17,23),
8146 (8,6,9,35,28,33,17,23),
8147 (8,6,10,36,29,34,17,24),
8148 (8,6,11,37,30,35,17,24),
8149 (8,6,12,39,31,36,17,24),
8150 (8,6,13,40,32,38,17,25),
8151 (8,6,14,42,33,39,17,25),
8152 (8,6,15,43,34,40,18,25),
8153 (8,6,16,45,35,42,18,26),
8154 (8,6,17,46,35,43,18,26),
8155 (8,6,18,48,36,44,18,26),
8156 (8,6,19,49,37,46,18,27),
8157 (8,6,20,51,38,47,18,27),
8158 (8,6,21,52,39,49,18,27),
8159 (8,6,22,54,40,50,18,28),
8160 (8,6,23,55,41,51,19,28),
8161 (8,6,24,57,42,53,19,29),
8162 (8,6,25,59,43,54,19,29),
8163 (8,6,26,60,44,56,19,29),
8164 (8,6,27,62,45,57,19,30),
8165 (8,6,28,63,46,59,19,30),
8166 (8,6,29,65,47,60,20,31),
8167 (8,6,30,67,48,62,20,31),
8168 (8,6,31,69,49,63,20,31),
8169 (8,6,32,70,50,65,20,32),
8170 (8,6,33,72,51,67,20,32),
8171 (8,6,34,74,53,68,20,33),
8172 (8,6,35,75,54,70,21,33),
8173 (8,6,36,77,55,71,21,34),
8174 (8,6,37,79,56,73,21,34),
8175 (8,6,38,81,57,75,21,35),
8176 (8,6,39,83,58,76,21,35),
8177 (8,6,40,84,59,78,22,35),
8178 (8,6,41,86,60,80,22,36),
8179 (8,6,42,88,62,81,22,36),
8180 (8,6,43,90,63,83,22,37),
8181 (8,6,44,92,64,85,22,37),
8182 (8,6,45,94,65,86,23,38),
8183 (8,6,46,96,66,88,23,38),
8184 (8,6,47,98,67,90,23,39),
8185 (8,6,48,100,69,92,23,39),
8186 (8,6,49,102,70,93,24,40),
8187 (8,6,50,103,71,95,24,40),
8188 (8,6,51,105,72,96,24,41),
8189 (8,6,52,106,74,97,24,42),
8190 (8,6,53,107,73,98,25,42),
8191 (8,6,54,108,74,99,25,43),
8192 (8,6,55,109,75,100,25,43),
8193 (8,6,56,112,77,103,25,44),
8194 (8,6,57,114,78,105,25,44),
8195 (8,6,58,118,79,107,26,45),
8196 (8,6,59,119,81,109,26,45),
8197 (8,6,60,121,82,111,26,46),
8198 (8,6,61,123,83,113,26,47),
8199 (8,6,62,126,85,115,26,47),
8200 (8,6,63,128,86,118,27,48),
8201 (8,6,64,131,88,120,27,48),
8202 (8,6,65,138,89,122,27,49),
8203 (8,6,66,140,91,125,27,50),
8204 (8,6,67,143,92,127,28,50),
8205 (8,6,68,145,94,129,28,51),
8206 (8,6,69,148,95,132,28,52),
8207 (8,6,70,151,97,134,28,52),
8208 (8,6,71,154,99,137,29,53),
8209 (8,6,72,156,100,139,29,54),
8210 (8,6,73,159,102,142,29,55),
8211 (8,6,74,162,104,144,29,55),
8212 (8,6,75,165,105,147,30,56),
8213 (8,6,76,168,107,150,30,57),
8214 (8,6,77,169,109,153,30,58),
8215 (8,6,78,170,110,155,30,58),
8216 (8,6,79,178,112,158,31,59),
8217 (8,6,80,181,114,161,31,60),
8218 (8,7,1,22,22,22,17,23),
8219 (8,7,2,23,22,23,18,24),
8220 (8,7,3,24,23,24,19,25),
8221 (8,7,4,25,23,25,20,26),
8222 (8,7,5,25,24,26,21,27),
8223 (8,7,6,26,24,27,22,28),
8224 (8,7,7,27,25,28,23,29),
8225 (8,7,8,28,25,29,24,30),
8226 (8,7,9,29,25,30,25,31),
8227 (8,7,10,30,26,31,26,33),
8228 (8,7,11,31,26,32,27,34),
8229 (8,7,12,32,27,33,28,35),
8230 (8,7,13,33,27,34,29,36),
8231 (8,7,14,34,28,35,30,37),
8232 (8,7,15,34,28,36,31,38),
8233 (8,7,16,35,29,38,32,39),
8234 (8,7,17,36,29,39,33,41),
8235 (8,7,18,37,30,40,34,42),
8236 (8,7,19,38,30,41,35,43),
8237 (8,7,20,39,31,42,36,44),
8238 (8,7,21,40,32,43,37,45),
8239 (8,7,22,41,32,45,38,47),
8240 (8,7,23,43,33,46,39,48),
8241 (8,7,24,44,33,47,40,49),
8242 (8,7,25,45,34,48,42,51),
8243 (8,7,26,46,34,49,43,52),
8244 (8,7,27,47,35,51,44,53),
8245 (8,7,28,48,35,52,45,54),
8246 (8,7,29,49,36,53,46,56),
8247 (8,7,30,50,37,54,48,57),
8248 (8,7,31,51,37,56,49,59),
8249 (8,7,32,52,38,57,50,60),
8250 (8,7,33,53,38,58,51,61),
8251 (8,7,34,55,39,60,52,63),
8252 (8,7,35,56,40,61,54,64),
8253 (8,7,36,57,40,62,55,66),
8254 (8,7,37,58,41,64,56,67),
8255 (8,7,38,59,42,65,57,68),
8256 (8,7,39,61,42,66,59,70),
8257 (8,7,40,62,43,68,60,71),
8258 (8,7,41,63,44,69,61,73),
8259 (8,7,42,64,44,71,63,74),
8260 (8,7,43,65,45,72,64,76),
8261 (8,7,44,67,46,74,65,77),
8262 (8,7,45,68,46,75,67,79),
8263 (8,7,46,69,47,76,68,80),
8264 (8,7,47,71,48,78,69,82),
8265 (8,7,48,72,49,79,71,83),
8266 (8,7,49,73,49,81,72,85),
8267 (8,7,50,74,50,82,74,87),
8268 (8,7,51,76,51,84,75,88),
8269 (8,7,52,77,51,85,77,90),
8270 (8,7,53,78,52,87,78,92),
8271 (8,7,54,80,53,89,79,93),
8272 (8,7,55,81,54,90,81,95),
8273 (8,7,56,83,55,92,82,96),
8274 (8,7,57,84,55,93,84,98),
8275 (8,7,58,85,56,95,85,100),
8276 (8,7,59,87,57,97,87,102),
8277 (8,7,60,88,58,98,88,103),
8278 (8,7,61,90,58,100,90,105),
8279 (8,7,62,91,59,101,91,107),
8280 (8,7,63,93,60,103,93,108),
8281 (8,7,64,94,61,105,94,110),
8282 (8,7,65,95,62,106,96,112),
8283 (8,7,66,97,63,108,98,114),
8284 (8,7,67,98,63,110,99,116),
8285 (8,7,68,100,64,112,101,117),
8286 (8,7,69,101,65,113,102,119),
8287 (8,7,70,103,66,115,104,121),
8288 (8,7,71,104,67,117,116,123),
8289 (8,7,72,106,68,119,118,126),
8290 (8,7,73,108,69,121,121,128),
8291 (8,7,74,110,70,124,123,130),
8292 (8,7,75,112,71,126,125,132),
8293 (8,7,76,114,72,128,127,135),
8294 (8,7,77,115,73,130,129,137),
8295 (8,7,78,117,74,132,132,139),
8296 (8,7,79,119,75,135,134,142),
8297 (8,7,80,121,76,137,136,144),
8298 (8,8,1,21,22,21,19,23),
8299 (8,8,2,21,22,21,20,24),
8300 (8,8,3,21,22,22,22,26),
8301 (8,8,4,21,22,22,23,27),
8302 (8,8,5,21,23,22,25,28),
8303 (8,8,6,21,23,22,26,30),
8304 (8,8,7,21,23,23,27,31),
8305 (8,8,8,22,23,23,29,32),
8306 (8,8,9,22,23,23,30,34),
8307 (8,8,10,22,23,24,32,35),
8308 (8,8,11,22,24,24,33,37),
8309 (8,8,12,22,24,24,35,38),
8310 (8,8,13,22,24,25,36,39),
8311 (8,8,14,22,24,25,38,41),
8312 (8,8,15,22,24,25,39,42),
8313 (8,8,16,22,24,26,41,44),
8314 (8,8,17,23,25,26,42,45),
8315 (8,8,18,23,25,26,44,47),
8316 (8,8,19,23,25,27,46,48),
8317 (8,8,20,23,25,27,47,50),
8318 (8,8,21,23,25,27,49,51),
8319 (8,8,22,23,26,28,51,53),
8320 (8,8,23,23,26,28,52,55),
8321 (8,8,24,24,26,29,54,56),
8322 (8,8,25,24,26,29,56,58),
8323 (8,8,26,24,27,29,57,60),
8324 (8,8,27,24,27,30,59,61),
8325 (8,8,28,24,27,30,61,63),
8326 (8,8,29,24,27,31,63,65),
8327 (8,8,30,24,28,31,64,66),
8328 (8,8,31,25,28,31,66,68),
8329 (8,8,32,25,28,32,68,70),
8330 (8,8,33,25,28,32,70,71),
8331 (8,8,34,25,29,33,71,73),
8332 (8,8,35,25,29,33,73,75),
8333 (8,8,36,26,29,34,75,77),
8334 (8,8,37,26,29,34,77,79),
8335 (8,8,38,26,30,35,79,80),
8336 (8,8,39,26,30,35,81,82),
8337 (8,8,40,26,30,35,83,84),
8338 (8,8,41,27,31,36,85,86),
8339 (8,8,42,27,31,36,87,88),
8340 (8,8,43,27,31,37,89,90),
8341 (8,8,44,27,32,37,91,91),
8342 (8,8,45,27,32,38,93,93),
8343 (8,8,46,28,32,38,95,95),
8344 (8,8,47,28,32,39,97,97),
8345 (8,8,48,28,33,39,99,99),
8346 (8,8,49,28,33,40,101,101),
8347 (8,8,50,29,33,40,103,103),
8348 (8,8,51,29,34,41,105,105),
8349 (8,8,52,29,34,42,107,107),
8350 (8,8,53,29,35,42,109,109),
8351 (8,8,54,30,35,43,111,111),
8352 (8,8,55,30,35,43,113,113),
8353 (8,8,56,30,36,44,115,115),
8354 (8,8,57,30,36,44,118,118),
8355 (8,8,58,31,36,45,120,120),
8356 (8,8,59,31,37,45,122,122),
8357 (8,8,60,31,37,46,124,124),
8358 (8,8,61,31,37,47,126,126),
8359 (8,8,62,32,38,47,129,128),
8360 (8,8,63,32,38,48,131,130),
8361 (8,8,64,32,39,48,133,133),
8362 (8,8,65,33,39,49,135,135),
8363 (8,8,66,33,39,50,138,137),
8364 (8,8,67,33,40,50,140,139),
8365 (8,8,68,33,40,51,142,141),
8366 (8,8,69,34,41,51,145,144),
8367 (8,8,70,34,41,52,147,146),
8368 (8,8,71,34,41,53,150,149),
8369 (8,8,72,34,42,54,153,152),
8370 (8,8,73,34,42,55,156,155),
8371 (8,8,74,35,43,55,159,157),
8372 (8,8,75,35,43,56,162,160),
8373 (8,8,76,35,43,57,168,163),
8374 (8,8,77,36,44,58,168,166),
8375 (8,8,78,36,44,58,171,169),
8376 (8,8,79,36,45,59,177,172),
8377 (8,8,80,37,45,60,177,175),
8378 (10,2,1,19,22,21,24,20),
8379 (10,2,2,20,23,22,25,21),
8380 (10,2,3,21,23,23,25,21),
8381 (10,2,4,22,24,24,26,22),
8382 (10,2,5,23,24,25,27,23),
8383 (10,2,6,25,25,26,27,24),
8384 (10,2,7,26,25,27,28,24),
8385 (10,2,8,27,26,28,29,25),
8386 (10,2,9,28,27,29,29,26),
8387 (10,2,10,29,27,31,30,26),
8388 (10,2,11,30,28,32,31,27),
8389 (10,2,12,32,29,33,31,28),
8390 (10,2,13,33,29,34,32,29),
8391 (10,2,14,34,30,35,33,30),
8392 (10,2,15,35,31,36,33,30),
8393 (10,2,16,37,31,37,34,31),
8394 (10,2,17,38,32,39,35,32),
8395 (10,2,18,39,33,40,36,33),
8396 (10,2,19,40,33,41,36,34),
8397 (10,2,20,42,34,42,37,35),
8398 (10,2,21,43,35,44,38,35),
8399 (10,2,22,44,35,45,39,36),
8400 (10,2,23,46,36,46,40,37),
8401 (10,2,24,47,37,47,40,38),
8402 (10,2,25,49,38,49,41,39),
8403 (10,2,26,50,38,50,42,40),
8404 (10,2,27,51,39,51,43,41),
8405 (10,2,28,53,40,53,44,42),
8406 (10,2,29,54,41,54,45,43),
8407 (10,2,30,56,41,55,45,43),
8408 (10,2,31,57,42,57,46,44),
8409 (10,2,32,58,43,58,47,45),
8410 (10,2,33,60,44,59,48,46),
8411 (10,2,34,61,45,61,49,47),
8412 (10,2,35,63,45,62,50,48),
8413 (10,2,36,64,46,64,51,49),
8414 (10,2,37,66,47,65,52,50),
8415 (10,2,38,67,48,67,53,51),
8416 (10,2,39,69,49,68,54,52),
8417 (10,2,40,71,50,69,55,53),
8418 (10,2,41,72,50,71,55,54),
8419 (10,2,42,74,51,72,56,55),
8420 (10,2,43,75,52,74,57,56),
8421 (10,2,44,77,53,75,58,57),
8422 (10,2,45,79,54,77,59,59),
8423 (10,2,46,80,55,78,60,60),
8424 (10,2,47,82,56,80,61,61),
8425 (10,2,48,83,57,82,62,62),
8426 (10,2,49,85,58,83,63,63),
8427 (10,2,50,87,59,85,64,64),
8428 (10,2,51,89,60,86,66,65),
8429 (10,2,52,90,61,88,67,66),
8430 (10,2,53,92,61,90,68,67),
8431 (10,2,54,94,62,91,69,69),
8432 (10,2,55,95,63,93,70,70),
8433 (10,2,56,97,64,95,71,71),
8434 (10,2,57,99,65,96,72,72),
8435 (10,2,58,101,66,98,73,73),
8436 (10,2,59,102,67,100,74,74),
8437 (10,2,60,104,68,101,75,76),
8438 (10,2,61,106,69,103,76,77),
8439 (10,2,62,108,70,105,78,78),
8440 (10,2,63,110,72,106,79,79),
8441 (10,2,64,112,73,108,80,80),
8442 (10,2,65,113,74,110,81,82),
8443 (10,2,66,115,75,112,82,83),
8444 (10,2,67,117,76,114,83,84),
8445 (10,2,68,119,77,115,85,85),
8446 (10,2,69,121,78,117,86,87),
8447 (10,2,70,123,79,119,87,88),
8448 (10,2,71,125,80,120,88,89),
8449 (10,2,72,128,81,123,90,91),
8450 (10,2,73,130,82,125,91,93),
8451 (10,2,74,133,84,127,93,94),
8452 (10,2,75,135,85,129,94,96),
8453 (10,2,76,137,86,132,96,97),
8454 (10,2,77,140,88,134,97,99),
8455 (10,2,78,143,89,136,99,101),
8456 (10,2,79,145,90,139,100,102),
8457 (10,2,80,148,92,141,102,104),
8458 (10,3,1,17,25,20,24,20),
8459 (10,3,2,17,26,21,25,21),
8460 (10,3,3,18,28,22,25,21),
8461 (10,3,4,18,29,23,26,22),
8462 (10,3,5,19,30,24,26,23),
8463 (10,3,6,19,32,25,27,23),
8464 (10,3,7,20,33,26,27,24),
8465 (10,3,8,20,35,27,28,25),
8466 (10,3,9,21,36,27,29,25),
8467 (10,3,10,21,38,28,29,26),
8468 (10,3,11,22,39,29,30,27),
8469 (10,3,12,22,41,30,31,27),
8470 (10,3,13,23,42,31,31,28),
8471 (10,3,14,23,44,32,32,29),
8472 (10,3,15,24,45,34,32,29),
8473 (10,3,16,24,47,35,33,30),
8474 (10,3,17,25,48,36,34,31),
8475 (10,3,18,25,50,37,34,32),
8476 (10,3,19,26,51,38,35,32),
8477 (10,3,20,26,53,39,36,33),
8478 (10,3,21,27,55,40,37,34),
8479 (10,3,22,27,56,41,37,35),
8480 (10,3,23,28,58,42,38,36),
8481 (10,3,24,28,60,43,39,36),
8482 (10,3,25,29,61,44,39,37),
8483 (10,3,26,30,63,46,40,38),
8484 (10,3,27,30,65,47,41,39),
8485 (10,3,28,31,66,48,42,40),
8486 (10,3,29,31,68,49,42,40),
8487 (10,3,30,32,70,50,43,41),
8488 (10,3,31,33,72,52,44,42),
8489 (10,3,32,33,73,53,45,43),
8490 (10,3,33,34,75,54,46,44),
8491 (10,3,34,34,77,55,46,45),
8492 (10,3,35,35,79,57,47,46),
8493 (10,3,36,36,81,58,48,47),
8494 (10,3,37,36,83,59,49,47),
8495 (10,3,38,37,85,60,50,48),
8496 (10,3,39,38,86,62,51,49),
8497 (10,3,40,38,88,63,51,50),
8498 (10,3,41,39,90,64,52,51),
8499 (10,3,42,40,92,66,53,52),
8500 (10,3,43,40,94,67,54,53),
8501 (10,3,44,41,96,68,55,54),
8502 (10,3,45,42,98,70,56,55),
8503 (10,3,46,42,100,71,57,56),
8504 (10,3,47,43,102,72,58,57),
8505 (10,3,48,44,104,74,59,58),
8506 (10,3,49,45,106,75,60,59),
8507 (10,3,50,45,108,77,61,60),
8508 (10,3,51,46,110,78,61,61),
8509 (10,3,52,47,113,79,62,62),
8510 (10,3,53,47,115,81,63,63),
8511 (10,3,54,48,117,82,64,64),
8512 (10,3,55,49,119,84,65,65),
8513 (10,3,56,50,121,85,66,66),
8514 (10,3,57,50,123,87,67,67),
8515 (10,3,58,51,126,88,68,68),
8516 (10,3,59,52,128,90,69,70),
8517 (10,3,60,53,130,91,70,71),
8518 (10,3,61,54,132,93,71,72),
8519 (10,3,62,54,134,94,72,73),
8520 (10,3,63,55,137,96,73,74),
8521 (10,3,64,56,139,97,75,75),
8522 (10,3,65,57,141,99,76,76),
8523 (10,3,66,58,144,101,77,77),
8524 (10,3,67,58,146,102,78,78),
8525 (10,3,68,59,148,104,79,80),
8526 (10,3,69,60,151,105,80,81),
8527 (10,3,70,61,153,107,81,82),
8528 (10,3,71,62,156,108,82,83),
8529 (10,3,72,63,159,110,83,84),
8530 (10,3,73,64,162,112,84,86),
8531 (10,3,74,65,165,114,86,87),
8532 (10,3,75,66,168,116,87,89),
8533 (10,3,76,67,171,118,89,90),
8534 (10,3,77,68,174,120,90,92),
8535 (10,3,78,69,177,122,91,93),
8536 (10,3,79,70,180,124,92,95),
8537 (10,3,80,71,183,126,94,96),
8538 (10,4,1,18,25,20,24,19),
8539 (10,4,2,19,26,21,24,19),
8540 (10,4,3,20,28,21,24,20),
8541 (10,4,4,20,29,22,24,20),
8542 (10,4,5,21,31,23,25,20),
8543 (10,4,6,22,32,24,25,21),
8544 (10,4,7,23,34,24,25,21),
8545 (10,4,8,24,35,25,25,22),
8546 (10,4,9,24,37,26,25,22),
8547 (10,4,10,25,38,26,25,22),
8548 (10,4,11,26,40,27,25,23),
8549 (10,4,12,27,41,28,26,23),
8550 (10,4,13,28,43,29,26,24),
8551 (10,4,14,29,45,30,26,24),
8552 (10,4,15,29,46,30,26,25),
8553 (10,4,16,30,48,31,26,25),
8554 (10,4,17,31,50,32,27,25),
8555 (10,4,18,32,51,33,27,26),
8556 (10,4,19,33,53,34,27,26),
8557 (10,4,20,34,55,35,27,27),
8558 (10,4,21,35,56,35,27,27),
8559 (10,4,22,36,58,36,28,28),
8560 (10,4,23,37,60,37,28,28),
8561 (10,4,24,38,62,38,28,29),
8562 (10,4,25,39,63,39,28,29),
8563 (10,4,26,40,65,40,29,30),
8564 (10,4,27,41,67,41,29,30),
8565 (10,4,28,42,69,42,29,31),
8566 (10,4,29,43,71,43,29,31),
8567 (10,4,30,44,72,43,29,32),
8568 (10,4,31,45,74,44,30,32),
8569 (10,4,32,46,76,45,30,33),
8570 (10,4,33,47,78,46,30,33),
8571 (10,4,34,48,80,47,31,34),
8572 (10,4,35,49,82,48,31,34),
8573 (10,4,36,50,84,49,31,35),
8574 (10,4,37,51,86,50,31,35),
8575 (10,4,38,52,88,51,32,36),
8576 (10,4,39,53,90,52,32,37),
8577 (10,4,40,54,92,53,32,37),
8578 (10,4,41,56,94,54,33,38),
8579 (10,4,42,57,96,55,33,38),
8580 (10,4,43,58,98,56,33,39),
8581 (10,4,44,59,100,57,33,39),
8582 (10,4,45,60,102,59,34,40),
8583 (10,4,46,61,104,60,34,41),
8584 (10,4,47,62,107,61,34,41),
8585 (10,4,48,64,109,62,35,42),
8586 (10,4,49,65,111,63,35,43),
8587 (10,4,50,66,113,64,35,43),
8588 (10,4,51,67,115,65,36,44),
8589 (10,4,52,68,117,66,36,44),
8590 (10,4,53,70,120,67,36,45),
8591 (10,4,54,71,122,69,37,46),
8592 (10,4,55,72,124,70,37,46),
8593 (10,4,56,73,126,71,37,47),
8594 (10,4,57,75,129,72,38,48),
8595 (10,4,58,76,131,73,38,48),
8596 (10,4,59,77,133,74,39,49),
8597 (10,4,60,79,136,76,39,50),
8598 (10,4,61,80,138,77,39,51),
8599 (10,4,62,81,140,78,40,51),
8600 (10,4,63,82,143,79,40,52),
8601 (10,4,64,84,145,80,41,53),
8602 (10,4,65,85,148,82,41,53),
8603 (10,4,66,87,150,83,41,54),
8604 (10,4,67,88,153,84,42,55),
8605 (10,4,68,89,155,85,42,56),
8606 (10,4,69,91,157,87,43,56),
8607 (10,4,70,92,160,88,43,57),
8608 (10,4,71,94,163,88,43,58),
8609 (10,4,72,96,166,90,44,58),
8610 (10,4,73,97,169,92,44,59),
8611 (10,4,74,99,172,93,45,60),
8612 (10,4,75,101,175,95,45,61),
8613 (10,4,76,102,178,96,45,62),
8614 (10,4,77,104,181,101,46,63),
8615 (10,4,78,106,185,104,46,64),
8616 (10,4,79,108,188,105,47,65),
8617 (10,4,80,110,191,107,47,66),
8618 (10,5,1,17,22,19,26,22),
8619 (10,5,2,17,22,19,27,23),
8620 (10,5,3,17,22,20,29,25),
8621 (10,5,4,17,23,20,30,26),
8622 (10,5,5,18,23,20,31,27),
8623 (10,5,6,18,23,21,33,29),
8624 (10,5,7,18,23,21,34,30),
8625 (10,5,8,18,24,22,35,32),
8626 (10,5,9,18,24,22,37,33),
8627 (10,5,10,19,24,22,38,35),
8628 (10,5,11,19,24,23,39,36),
8629 (10,5,12,19,24,23,41,38),
8630 (10,5,13,19,25,24,42,39),
8631 (10,5,14,19,25,24,44,41),
8632 (10,5,15,19,25,25,45,42),
8633 (10,5,16,20,26,25,47,44),
8634 (10,5,17,20,26,25,48,45),
8635 (10,5,18,20,26,26,50,47),
8636 (10,5,19,20,26,26,51,49),
8637 (10,5,20,21,27,27,53,50),
8638 (10,5,21,21,27,27,54,52),
8639 (10,5,22,21,27,28,56,53),
8640 (10,5,23,21,28,28,58,55),
8641 (10,5,24,21,28,29,59,57),
8642 (10,5,25,22,28,29,61,58),
8643 (10,5,26,22,28,30,62,60),
8644 (10,5,27,22,29,30,64,62),
8645 (10,5,28,22,29,31,66,64),
8646 (10,5,29,23,29,31,67,65),
8647 (10,5,30,23,30,32,69,67),
8648 (10,5,31,23,30,32,71,69),
8649 (10,5,32,23,30,33,72,71),
8650 (10,5,33,24,31,33,74,72),
8651 (10,5,34,24,31,34,76,74),
8652 (10,5,35,24,32,34,78,76),
8653 (10,5,36,24,32,35,80,78),
8654 (10,5,37,25,32,35,81,80),
8655 (10,5,38,25,33,36,83,82),
8656 (10,5,39,25,33,37,85,84),
8657 (10,5,40,26,33,37,87,86),
8658 (10,5,41,26,34,38,89,88),
8659 (10,5,42,26,34,38,91,89),
8660 (10,5,43,27,35,39,92,91),
8661 (10,5,44,27,35,39,94,93),
8662 (10,5,45,27,35,40,96,95),
8663 (10,5,46,27,36,41,98,97),
8664 (10,5,47,28,36,41,100,99),
8665 (10,5,48,28,37,42,102,101),
8666 (10,5,49,28,37,43,104,103),
8667 (10,5,50,29,37,43,106,106),
8668 (10,5,51,29,38,44,108,108),
8669 (10,5,52,29,38,44,110,110),
8670 (10,5,53,30,39,45,112,112),
8671 (10,5,54,30,39,46,114,114),
8672 (10,5,55,30,40,46,116,116),
8673 (10,5,56,31,40,47,118,118),
8674 (10,5,57,31,41,48,120,120),
8675 (10,5,58,31,41,48,123,123),
8676 (10,5,59,32,42,49,125,125),
8677 (10,5,60,32,42,50,127,127),
8678 (10,5,61,33,42,51,129,129),
8679 (10,5,62,33,43,51,131,131),
8680 (10,5,63,33,43,52,133,134),
8681 (10,5,64,34,44,53,135,136),
8682 (10,5,65,34,44,53,138,138),
8683 (10,5,66,34,45,54,140,141),
8684 (10,5,67,35,45,55,142,143),
8685 (10,5,68,35,46,56,144,145),
8686 (10,5,69,36,46,56,147,148),
8687 (10,5,70,36,47,57,149,150),
8688 (10,5,71,36,48,57,152,153),
8689 (10,5,72,37,48,57,155,156),
8690 (10,5,73,37,49,58,158,159),
8691 (10,5,74,38,49,59,160,163),
8692 (10,5,75,38,50,60,163,165),
8693 (10,5,76,38,51,61,166,170),
8694 (10,5,77,39,51,62,168,175),
8695 (10,5,78,39,52,63,172,174),
8696 (10,5,79,40,52,64,175,177),
8697 (10,5,80,40,53,65,178,180),
8698 (10,6,1,18,23,21,24,20),
8699 (10,6,2,19,24,22,24,20),
8700 (10,6,3,21,25,23,24,21),
8701 (10,6,4,22,25,25,24,21),
8702 (10,6,5,23,26,26,24,21),
8703 (10,6,6,25,27,27,24,21),
8704 (10,6,7,26,28,28,24,22),
8705 (10,6,8,27,29,29,25,22),
8706 (10,6,9,29,29,31,25,22),
8707 (10,6,10,30,30,32,25,23),
8708 (10,6,11,32,31,33,25,23),
8709 (10,6,12,33,32,34,25,23),
8710 (10,6,13,34,33,36,25,24),
8711 (10,6,14,36,34,37,25,24),
8712 (10,6,15,37,35,38,25,24),
8713 (10,6,16,39,36,40,25,25),
8714 (10,6,17,40,36,41,25,25),
8715 (10,6,18,42,37,43,26,25),
8716 (10,6,19,43,38,44,26,26),
8717 (10,6,20,45,39,45,26,26),
8718 (10,6,21,47,40,47,26,26),
8719 (10,6,22,48,41,48,26,27),
8720 (10,6,23,50,42,50,26,27),
8721 (10,6,24,51,43,51,26,28),
8722 (10,6,25,53,44,52,27,28),
8723 (10,6,26,55,45,54,27,28),
8724 (10,6,27,56,46,55,27,29),
8725 (10,6,28,58,47,57,27,29),
8726 (10,6,29,59,48,58,27,30),
8727 (10,6,30,61,49,60,27,30),
8728 (10,6,31,63,50,62,27,30),
8729 (10,6,32,65,51,63,28,31),
8730 (10,6,33,66,52,65,28,31),
8731 (10,6,34,68,53,66,28,32),
8732 (10,6,35,70,55,68,28,32),
8733 (10,6,36,72,56,69,28,33),
8734 (10,6,37,73,57,71,29,33),
8735 (10,6,38,75,58,73,29,34),
8736 (10,6,39,77,59,74,29,34),
8737 (10,6,40,79,60,76,29,35),
8738 (10,6,41,81,61,78,29,35),
8739 (10,6,42,82,62,79,30,35),
8740 (10,6,43,84,64,81,30,36),
8741 (10,6,44,86,65,83,30,36),
8742 (10,6,45,88,66,85,30,37),
8743 (10,6,46,90,67,86,30,37),
8744 (10,6,47,92,68,88,31,38),
8745 (10,6,48,94,69,90,31,38),
8746 (10,6,49,96,69,92,31,39),
8747 (10,6,50,98,70,93,31,40),
8748 (10,6,51,100,71,95,32,40),
8749 (10,6,52,102,72,96,32,41),
8750 (10,6,53,103,73,97,32,41),
8751 (10,6,54,104,74,98,32,41),
8752 (10,6,55,105,75,97,33,41),
8753 (10,6,56,108,77,100,33,42),
8754 (10,6,57,113,78,102,33,42),
8755 (10,6,58,115,79,104,34,43),
8756 (10,6,59,117,81,106,34,43),
8757 (10,6,60,118,82,108,34,44),
8758 (10,6,61,119,83,110,34,45),
8759 (10,6,62,121,85,112,34,45),
8760 (10,6,63,124,86,115,35,46),
8761 (10,6,64,127,88,117,35,46),
8762 (10,6,65,133,89,119,35,47),
8763 (10,6,66,135,91,122,35,48),
8764 (10,6,67,139,92,124,36,48),
8765 (10,6,68,141,94,126,36,49),
8766 (10,6,69,142,95,129,36,50),
8767 (10,6,70,145,97,131,36,50),
8768 (10,6,71,150,99,134,37,51),
8769 (10,6,72,152,100,136,37,52),
8770 (10,6,73,155,102,139,37,53),
8771 (10,6,74,158,104,141,37,53),
8772 (10,6,75,159,105,144,38,54),
8773 (10,6,76,160,107,147,38,55),
8774 (10,6,77,163,109,149,38,56),
8775 (10,6,78,166,110,152,38,56),
8776 (10,6,79,169,112,155,39,57),
8777 (10,6,80,172,114,158,39,58),
8778 (10,8,1,17,22,19,27,21),
8779 (10,8,2,17,22,19,28,22),
8780 (10,8,3,17,22,20,30,24),
8781 (10,8,4,17,22,20,31,25),
8782 (10,8,5,17,23,20,32,26),
8783 (10,8,6,17,23,20,34,28),
8784 (10,8,7,18,23,21,35,29),
8785 (10,8,8,18,23,21,37,30),
8786 (10,8,9,18,23,21,38,32),
8787 (10,8,10,18,23,22,40,33),
8788 (10,8,11,18,24,22,41,35),
8789 (10,8,12,18,24,22,42,36),
8790 (10,8,13,18,24,23,44,37),
8791 (10,8,14,18,24,23,45,39),
8792 (10,8,15,18,24,23,47,40),
8793 (10,8,16,19,24,24,49,42),
8794 (10,8,17,19,25,24,50,43),
8795 (10,8,18,19,25,24,52,45),
8796 (10,8,19,19,25,25,53,46),
8797 (10,8,20,19,25,25,55,48),
8798 (10,8,21,19,25,26,57,50),
8799 (10,8,22,19,26,26,58,51),
8800 (10,8,23,20,26,26,60,53),
8801 (10,8,24,20,26,27,61,54),
8802 (10,8,25,20,26,27,63,56),
8803 (10,8,26,20,27,27,65,58),
8804 (10,8,27,20,27,28,67,59),
8805 (10,8,28,20,27,28,68,61),
8806 (10,8,29,21,27,29,70,63),
8807 (10,8,30,21,28,29,72,64),
8808 (10,8,31,21,28,30,74,66),
8809 (10,8,32,21,28,30,75,68),
8810 (10,8,33,21,28,30,77,70),
8811 (10,8,34,21,29,31,79,71),
8812 (10,8,35,22,29,31,81,73),
8813 (10,8,36,22,29,32,83,75),
8814 (10,8,37,22,29,32,85,77),
8815 (10,8,38,22,30,33,86,78),
8816 (10,8,39,22,30,33,88,80),
8817 (10,8,40,23,30,34,90,82),
8818 (10,8,41,23,31,34,92,84),
8819 (10,8,42,23,31,35,94,86),
8820 (10,8,43,23,31,35,96,88),
8821 (10,8,44,23,32,36,98,90),
8822 (10,8,45,24,32,36,100,92),
8823 (10,8,46,24,32,37,102,93),
8824 (10,8,47,24,32,37,104,95),
8825 (10,8,48,24,33,38,106,97),
8826 (10,8,49,25,33,38,108,99),
8827 (10,8,50,25,33,39,110,101),
8828 (10,8,51,25,34,39,112,103),
8829 (10,8,52,25,34,40,114,105),
8830 (10,8,53,25,35,40,117,107),
8831 (10,8,54,26,35,41,119,109),
8832 (10,8,55,26,35,41,121,111),
8833 (10,8,56,26,36,42,123,113),
8834 (10,8,57,26,36,42,125,116),
8835 (10,8,58,27,36,43,127,118),
8836 (10,8,59,27,37,43,130,120),
8837 (10,8,60,27,37,44,132,122),
8838 (10,8,61,27,37,45,134,124),
8839 (10,8,62,28,38,45,136,126),
8840 (10,8,63,28,38,46,139,128),
8841 (10,8,64,28,39,46,141,131),
8842 (10,8,65,29,39,47,143,133),
8843 (10,8,66,29,39,48,146,135),
8844 (10,8,67,29,40,48,148,137),
8845 (10,8,68,29,40,49,150,139),
8846 (10,8,69,30,41,49,153,142),
8847 (10,8,70,30,41,50,155,144),
8848 (10,8,71,30,41,50,158,147),
8849 (10,8,72,30,42,51,161,150),
8850 (10,8,73,30,42,52,164,153),
8851 (10,8,74,31,43,52,167,155),
8852 (10,8,75,31,43,53,170,158),
8853 (10,8,76,31,43,54,173,161),
8854 (10,8,77,32,44,55,176,164),
8855 (10,8,78,32,44,55,179,167),
8856 (10,8,79,32,45,56,182,170),
8857 (10,8,80,33,45,57,185,173),
8858 (10,9,1,17,22,20,26,21),
8859 (10,9,2,17,22,21,27,22),
8860 (10,9,3,18,23,21,28,23),
8861 (10,9,4,18,23,22,29,24),
8862 (10,9,5,18,23,22,31,26),
8863 (10,9,6,18,24,23,32,27),
8864 (10,9,7,19,24,23,33,28),
8865 (10,9,8,19,25,24,34,29),
8866 (10,9,9,19,25,25,36,30),
8867 (10,9,10,20,25,25,37,32),
8868 (10,9,11,20,26,26,38,33),
8869 (10,9,12,20,26,26,39,34),
8870 (10,9,13,21,27,27,41,36),
8871 (10,9,14,21,27,28,42,37),
8872 (10,9,15,21,27,28,43,38),
8873 (10,9,16,22,28,29,45,39),
8874 (10,9,17,22,28,30,46,41),
8875 (10,9,18,23,29,30,47,42),
8876 (10,9,19,23,29,31,49,43),
8877 (10,9,20,23,30,32,50,45),
8878 (10,9,21,24,30,32,51,46),
8879 (10,9,22,24,31,33,53,48),
8880 (10,9,23,24,31,34,54,49),
8881 (10,9,24,25,31,34,56,50),
8882 (10,9,25,25,32,35,57,52),
8883 (10,9,26,26,32,36,59,53),
8884 (10,9,27,26,33,37,60,55),
8885 (10,9,28,26,33,37,62,56),
8886 (10,9,29,27,34,38,63,58),
8887 (10,9,30,27,34,39,65,59),
8888 (10,9,31,28,35,40,66,61),
8889 (10,9,32,28,36,40,68,62),
8890 (10,9,33,29,36,41,69,64),
8891 (10,9,34,29,37,42,71,65),
8892 (10,9,35,29,37,43,73,67),
8893 (10,9,36,30,38,43,74,69),
8894 (10,9,37,30,38,44,76,70),
8895 (10,9,38,31,39,45,77,72),
8896 (10,9,39,31,39,46,79,73),
8897 (10,9,40,32,40,47,81,75),
8898 (10,9,41,32,41,48,82,77),
8899 (10,9,42,33,41,48,84,78),
8900 (10,9,43,33,42,49,86,80),
8901 (10,9,44,34,42,50,88,82),
8902 (10,9,45,34,43,51,89,83),
8903 (10,9,46,35,44,52,91,85),
8904 (10,9,47,35,44,53,93,87),
8905 (10,9,48,36,45,54,95,89),
8906 (10,9,49,36,45,54,96,90),
8907 (10,9,50,37,46,55,98,92),
8908 (10,9,51,37,47,56,100,94),
8909 (10,9,52,38,47,57,102,96),
8910 (10,9,53,38,48,58,104,97),
8911 (10,9,54,39,49,59,105,99),
8912 (10,9,55,39,49,60,107,101),
8913 (10,9,56,40,50,61,109,103),
8914 (10,9,57,40,51,62,111,105),
8915 (10,9,58,41,51,63,113,107),
8916 (10,9,59,42,52,64,115,108),
8917 (10,9,60,42,53,65,117,110),
8918 (10,9,61,43,53,66,119,112),
8919 (10,9,62,43,54,67,121,114),
8920 (10,9,63,44,55,68,123,116),
8921 (10,9,64,44,56,69,125,118),
8922 (10,9,65,45,56,70,127,120),
8923 (10,9,66,46,57,71,129,122),
8924 (10,9,67,46,58,72,131,124),
8925 (10,9,68,47,58,73,133,126),
8926 (10,9,69,47,59,74,135,128),
8927 (10,9,70,48,60,75,137,130),
8928 (10,9,71,49,61,83,139,141),
8929 (10,9,72,50,61,84,142,143),
8930 (10,9,73,51,62,84,144,146),
8931 (10,9,74,51,63,86,147,149),
8932 (10,9,75,52,64,89,149,151),
8933 (10,9,76,53,65,90,155,154),
8934 (10,9,77,54,66,91,155,157),
8935 (10,9,78,54,67,93,157,160),
8936 (10,9,79,55,68,94,160,163),
8937 (10,9,80,56,69,95,163,165),
8938 (11,1,1,24,17,21,21,22),
8939 (11,1,2,25,18,22,21,22),
8940 (11,1,3,27,19,23,21,23),
8941 (11,1,4,28,19,25,21,23),
8942 (11,1,5,29,20,26,21,23),
8943 (11,1,6,31,21,27,21,23),
8944 (11,1,7,32,22,28,21,24),
8945 (11,1,8,33,23,29,22,24),
8946 (11,1,9,35,24,31,22,24),
8947 (11,1,10,36,24,32,22,25),
8948 (11,1,11,37,25,33,22,25),
8949 (11,1,12,39,26,34,22,25),
8950 (11,1,13,40,27,36,22,26),
8951 (11,1,14,42,28,37,22,26),
8952 (11,1,15,43,29,38,22,26),
8953 (11,1,16,45,30,40,22,27),
8954 (11,1,17,46,31,41,23,27),
8955 (11,1,18,48,32,43,23,27),
8956 (11,1,19,49,33,44,23,28),
8957 (11,1,20,51,34,45,23,28),
8958 (11,1,21,52,34,47,23,28),
8959 (11,1,22,54,35,48,23,29),
8960 (11,1,23,55,36,50,23,29),
8961 (11,1,24,57,37,51,24,30),
8962 (11,1,25,59,38,52,24,30),
8963 (11,1,26,60,39,54,24,30),
8964 (11,1,27,62,40,55,24,31),
8965 (11,1,28,63,41,57,24,31),
8966 (11,1,29,65,43,58,24,32),
8967 (11,1,30,67,44,60,24,32),
8968 (11,1,31,69,45,62,25,32),
8969 (11,1,32,70,46,63,25,33),
8970 (11,1,33,72,47,65,25,33),
8971 (11,1,34,74,48,66,25,34),
8972 (11,1,35,75,49,68,25,34),
8973 (11,1,36,77,50,69,26,35),
8974 (11,1,37,79,51,71,26,35),
8975 (11,1,38,81,52,73,26,35),
8976 (11,1,39,83,53,74,26,36),
8977 (11,1,40,84,55,76,26,36),
8978 (11,1,41,86,56,78,27,37),
8979 (11,1,42,88,57,79,27,37),
8980 (11,1,43,90,58,81,27,38),
8981 (11,1,44,92,59,83,27,38),
8982 (11,1,45,94,60,85,27,39),
8983 (11,1,46,96,62,86,28,39),
8984 (11,1,47,98,63,88,28,40),
8985 (11,1,48,100,64,90,28,40),
8986 (11,1,49,102,65,92,28,41),
8987 (11,1,50,103,66,93,29,41),
8988 (11,1,51,105,68,95,29,42),
8989 (11,1,52,107,69,97,29,42),
8990 (11,1,53,109,70,99,29,43),
8991 (11,1,54,112,71,101,30,44),
8992 (11,1,55,114,73,103,30,44),
8993 (11,1,56,116,74,104,30,45),
8994 (11,1,57,118,75,106,30,45),
8995 (11,1,58,120,77,108,31,46),
8996 (11,1,59,122,78,110,31,46),
8997 (11,1,60,124,79,112,31,47),
8998 (11,1,61,126,81,114,31,48),
8999 (11,1,62,128,82,116,32,48),
9000 (11,1,63,130,83,118,32,49),
9001 (11,1,64,133,85,120,32,49),
9002 (11,1,65,135,86,122,33,50),
9003 (11,1,66,137,87,124,33,51),
9004 (11,1,67,139,89,126,33,51),
9005 (11,1,68,141,90,128,33,52),
9006 (11,1,69,144,92,130,34,52),
9007 (11,1,70,146,93,132,34,53),
9008 (11,1,71,149,94,134,34,54),
9009 (11,1,72,151,96,137,34,55),
9010 (11,1,73,154,98,139,34,56),
9011 (11,1,74,157,99,142,35,56),
9012 (11,1,75,166,101,149,35,57),
9013 (11,1,76,172,103,155,35,58),
9014 (11,1,77,175,105,159,36,59),
9015 (11,1,78,179,106,161,36,59),
9016 (11,1,79,182,108,164,36,60),
9017 (11,1,80,185,110,167,37,61),
9018 (11,2,1,23,17,21,21,23),
9019 (11,2,2,24,18,22,22,24),
9020 (11,2,3,25,18,23,22,24),
9021 (11,2,4,26,19,24,23,25),
9022 (11,2,5,27,19,25,24,26),
9023 (11,2,6,29,20,26,24,26),
9024 (11,2,7,30,21,27,25,27),
9025 (11,2,8,31,21,28,26,28),
9026 (11,2,9,32,22,29,26,29),
9027 (11,2,10,33,22,31,27,29),
9028 (11,2,11,34,23,32,28,30),
9029 (11,2,12,36,24,33,28,31),
9030 (11,2,13,37,24,34,29,32),
9031 (11,2,14,38,25,35,30,32),
9032 (11,2,15,39,26,36,31,33),
9033 (11,2,16,40,26,37,31,34),
9034 (11,2,17,42,27,39,32,35),
9035 (11,2,18,43,28,40,33,36),
9036 (11,2,19,44,28,41,34,37),
9037 (11,2,20,46,29,42,34,37),
9038 (11,2,21,47,30,44,35,38),
9039 (11,2,22,48,31,45,36,39),
9040 (11,2,23,50,31,46,37,40),
9041 (11,2,24,51,32,47,38,41),
9042 (11,2,25,52,33,49,38,42),
9043 (11,2,26,54,34,50,39,43),
9044 (11,2,27,55,34,51,40,44),
9045 (11,2,28,56,35,53,41,44),
9046 (11,2,29,58,36,54,42,45),
9047 (11,2,30,59,37,55,43,46),
9048 (11,2,31,61,37,57,43,47),
9049 (11,2,32,62,38,58,44,48),
9050 (11,2,33,64,39,59,45,49),
9051 (11,2,34,65,40,61,46,50),
9052 (11,2,35,67,41,62,47,51),
9053 (11,2,36,68,42,64,48,52),
9054 (11,2,37,70,42,65,49,53),
9055 (11,2,38,71,43,67,50,54),
9056 (11,2,39,73,44,68,51,55),
9057 (11,2,40,74,45,69,52,56),
9058 (11,2,41,76,46,71,53,57),
9059 (11,2,42,78,47,72,54,58),
9060 (11,2,43,79,47,74,55,59),
9061 (11,2,44,81,48,75,56,60),
9062 (11,2,45,82,49,77,57,61),
9063 (11,2,46,84,50,78,58,62),
9064 (11,2,47,86,51,80,59,64),
9065 (11,2,48,87,52,82,60,65),
9066 (11,2,49,89,53,83,61,66),
9067 (11,2,50,91,54,85,62,67),
9068 (11,2,51,92,55,86,63,68),
9069 (11,2,52,94,56,88,64,69),
9070 (11,2,53,96,57,90,65,70),
9071 (11,2,54,97,58,91,66,71),
9072 (11,2,55,99,59,93,67,73),
9073 (11,2,56,101,60,95,68,74),
9074 (11,2,57,103,61,96,69,75),
9075 (11,2,58,105,62,98,70,76),
9076 (11,2,59,106,63,100,71,77),
9077 (11,2,60,108,64,101,72,78),
9078 (11,2,61,110,65,103,74,80),
9079 (11,2,62,112,66,105,75,81),
9080 (11,2,63,114,67,106,76,82),
9081 (11,2,64,116,68,108,77,83),
9082 (11,2,65,117,69,110,78,85),
9083 (11,2,66,119,70,112,79,86),
9084 (11,2,67,121,71,114,80,87),
9085 (11,2,68,123,72,115,82,88),
9086 (11,2,69,125,73,117,83,90),
9087 (11,2,70,127,74,119,84,91),
9088 (11,2,71,130,75,121,87,92),
9089 (11,2,72,132,76,124,90,94),
9090 (11,2,73,134,77,126,93,96),
9091 (11,2,74,137,79,128,97,97),
9092 (11,2,75,139,80,130,101,99),
9093 (11,2,76,142,81,133,106,100),
9094 (11,2,77,144,83,135,108,102),
9095 (11,2,78,147,84,137,110,104),
9096 (11,2,79,149,85,140,111,105),
9097 (11,2,80,152,87,142,113,107),
9098 (11,3,1,21,20,20,21,23),
9099 (11,3,2,21,21,21,22,24),
9100 (11,3,3,22,23,22,22,24),
9101 (11,3,4,22,24,23,23,25),
9102 (11,3,5,23,25,24,23,25),
9103 (11,3,6,23,27,25,24,26),
9104 (11,3,7,24,28,26,24,27),
9105 (11,3,8,24,30,27,25,27),
9106 (11,3,9,25,31,27,26,28),
9107 (11,3,10,25,33,28,26,29),
9108 (11,3,11,25,34,29,27,29),
9109 (11,3,12,26,36,30,28,30),
9110 (11,3,13,26,37,31,28,31),
9111 (11,3,14,27,39,32,29,32),
9112 (11,3,15,27,40,34,30,32),
9113 (11,3,16,28,42,35,30,33),
9114 (11,3,17,28,43,36,31,34),
9115 (11,3,18,29,45,37,32,35),
9116 (11,3,19,29,47,38,32,35),
9117 (11,3,20,30,48,39,33,36),
9118 (11,3,21,31,50,40,34,37),
9119 (11,3,22,31,51,41,34,38),
9120 (11,3,23,32,53,42,35,38),
9121 (11,3,24,32,55,43,36,39),
9122 (11,3,25,33,57,44,37,40),
9123 (11,3,26,33,58,46,37,41),
9124 (11,3,27,34,60,47,38,42),
9125 (11,3,28,35,62,48,39,42),
9126 (11,3,29,35,63,49,40,43),
9127 (11,3,30,36,65,50,40,44),
9128 (11,3,31,36,67,52,41,45),
9129 (11,3,32,37,69,53,42,46),
9130 (11,3,33,38,71,54,43,47),
9131 (11,3,34,38,72,55,44,48),
9132 (11,3,35,39,74,57,44,48),
9133 (11,3,36,39,76,58,45,49),
9134 (11,3,37,40,78,59,46,50),
9135 (11,3,38,41,80,60,47,51),
9136 (11,3,39,41,82,62,48,52),
9137 (11,3,40,42,84,63,49,53),
9138 (11,3,41,43,86,64,50,54),
9139 (11,3,42,43,88,66,50,55),
9140 (11,3,43,44,90,67,51,56),
9141 (11,3,44,45,91,68,52,57),
9142 (11,3,45,45,93,70,53,58),
9143 (11,3,46,46,95,71,54,59),
9144 (11,3,47,47,98,72,55,60),
9145 (11,3,48,48,100,74,56,61),
9146 (11,3,49,48,102,75,57,62),
9147 (11,3,50,49,104,77,58,63),
9148 (11,3,51,50,106,78,59,64),
9149 (11,3,52,51,108,79,60,65),
9150 (11,3,53,51,110,81,61,66),
9151 (11,3,54,52,112,82,61,67),
9152 (11,3,55,53,114,84,62,68),
9153 (11,3,56,54,116,85,63,69),
9154 (11,3,57,54,118,87,64,70),
9155 (11,3,58,55,121,88,65,71),
9156 (11,3,59,56,123,90,66,72),
9157 (11,3,60,57,125,91,67,74),
9158 (11,3,61,58,127,93,68,75),
9159 (11,3,62,58,130,94,69,76),
9160 (11,3,63,59,132,96,71,77),
9161 (11,3,64,60,134,97,72,78),
9162 (11,3,65,61,136,99,73,79),
9163 (11,3,66,62,139,101,74,80),
9164 (11,3,67,62,141,102,75,81),
9165 (11,3,68,63,143,104,76,83),
9166 (11,3,69,64,146,105,77,84),
9167 (11,3,70,65,148,107,78,85),
9168 (11,3,71,66,151,109,79,86),
9169 (11,3,72,67,154,111,80,87),
9170 (11,3,73,68,157,113,81,89),
9171 (11,3,74,69,160,115,83,90),
9172 (11,3,75,70,163,117,84,92),
9173 (11,3,76,71,166,119,85,93),
9174 (11,3,77,72,169,121,87,95),
9175 (11,3,78,73,172,123,88,96),
9176 (11,3,79,74,175,125,89,98),
9177 (11,3,80,75,178,127,91,99),
9178 (11,5,1,21,17,19,23,25),
9179 (11,5,2,21,17,19,24,26),
9180 (11,5,3,21,17,20,26,28),
9181 (11,5,4,21,18,20,27,29),
9182 (11,5,5,22,18,20,28,30),
9183 (11,5,6,22,18,21,30,32),
9184 (11,5,7,22,18,21,31,33),
9185 (11,5,8,22,19,22,32,35),
9186 (11,5,9,22,19,22,34,36),
9187 (11,5,10,22,19,22,35,38),
9188 (11,5,11,23,19,23,37,39),
9189 (11,5,12,23,20,23,38,41),
9190 (11,5,13,23,20,24,39,42),
9191 (11,5,14,23,20,24,41,44),
9192 (11,5,15,23,20,25,42,45),
9193 (11,5,16,24,21,25,44,47),
9194 (11,5,17,24,21,25,45,48),
9195 (11,5,18,24,21,26,47,50),
9196 (11,5,19,24,22,26,48,51),
9197 (11,5,20,24,22,27,50,53),
9198 (11,5,21,25,22,27,51,55),
9199 (11,5,22,25,22,28,53,56),
9200 (11,5,23,25,23,28,55,58),
9201 (11,5,24,25,23,29,56,60),
9202 (11,5,25,25,23,29,58,61),
9203 (11,5,26,26,24,30,60,63),
9204 (11,5,27,26,24,30,61,65),
9205 (11,5,28,26,24,31,63,66),
9206 (11,5,29,26,25,31,65,68),
9207 (11,5,30,27,25,32,66,70),
9208 (11,5,31,27,25,32,68,72),
9209 (11,5,32,27,26,33,70,73),
9210 (11,5,33,27,26,33,71,75),
9211 (11,5,34,28,26,34,73,77),
9212 (11,5,35,28,27,34,75,79),
9213 (11,5,36,28,27,35,77,81),
9214 (11,5,37,29,28,35,79,83),
9215 (11,5,38,29,28,36,80,85),
9216 (11,5,39,29,28,37,82,86),
9217 (11,5,40,29,29,37,84,88),
9218 (11,5,41,30,29,38,86,90),
9219 (11,5,42,30,29,38,88,92),
9220 (11,5,43,30,30,39,90,94),
9221 (11,5,44,31,30,39,91,96),
9222 (11,5,45,31,31,40,93,98),
9223 (11,5,46,31,31,41,95,100),
9224 (11,5,47,32,31,41,97,102),
9225 (11,5,48,32,32,42,99,104),
9226 (11,5,49,32,32,43,101,106),
9227 (11,5,50,33,33,43,103,108),
9228 (11,5,51,33,33,44,105,110),
9229 (11,5,52,33,34,44,107,113),
9230 (11,5,53,34,34,45,109,115),
9231 (11,5,54,34,34,46,111,117),
9232 (11,5,55,34,35,46,113,119),
9233 (11,5,56,35,35,47,115,121),
9234 (11,5,57,35,36,48,118,123),
9235 (11,5,58,35,36,48,120,126),
9236 (11,5,59,36,37,49,122,128),
9237 (11,5,60,36,37,50,124,130),
9238 (11,5,61,36,38,51,126,132),
9239 (11,5,62,37,38,51,128,134),
9240 (11,5,63,37,39,52,130,137),
9241 (11,5,64,38,39,53,133,139),
9242 (11,5,65,38,40,53,135,141),
9243 (11,5,66,38,40,54,137,144),
9244 (11,5,67,39,40,55,139,146),
9245 (11,5,68,39,41,56,141,148),
9246 (11,5,69,40,41,56,144,151),
9247 (11,5,70,40,42,57,146,153),
9248 (11,5,71,40,43,58,149,156),
9249 (11,5,72,41,43,58,155,159),
9250 (11,5,73,41,44,59,157,160),
9251 (11,5,74,42,44,61,160,163),
9252 (11,5,75,42,45,62,164,166),
9253 (11,5,76,42,46,62,167,169),
9254 (11,5,77,43,46,63,168,172),
9255 (11,5,78,43,47,64,169,177),
9256 (11,5,79,44,47,65,172,180),
9257 (11,5,80,44,48,66,175,183),
9258 (11,6,1,24,17,21,21,22),
9259 (11,6,2,25,18,22,21,22),
9260 (11,6,3,27,19,23,21,23),
9261 (11,6,4,28,19,25,21,23),
9262 (11,6,5,29,20,26,21,23),
9263 (11,6,6,31,21,27,21,23),
9264 (11,6,7,32,22,28,21,24),
9265 (11,6,8,33,23,29,22,24),
9266 (11,6,9,35,24,31,22,24),
9267 (11,6,10,36,24,32,22,25),
9268 (11,6,11,37,25,33,22,25),
9269 (11,6,12,39,26,34,22,25),
9270 (11,6,13,40,27,36,22,26),
9271 (11,6,14,42,28,37,22,26),
9272 (11,6,15,43,29,38,22,26),
9273 (11,6,16,45,30,40,22,27),
9274 (11,6,17,46,31,41,23,27),
9275 (11,6,18,48,32,43,23,27),
9276 (11,6,19,49,33,44,23,28),
9277 (11,6,20,51,34,45,23,28),
9278 (11,6,21,52,34,47,23,28),
9279 (11,6,22,54,35,48,23,29),
9280 (11,6,23,55,36,50,23,29),
9281 (11,6,24,57,37,51,24,30),
9282 (11,6,25,59,38,52,24,30),
9283 (11,6,26,60,39,54,24,30),
9284 (11,6,27,62,40,55,24,31),
9285 (11,6,28,63,41,57,24,31),
9286 (11,6,29,65,43,58,24,32),
9287 (11,6,30,67,44,60,24,32),
9288 (11,6,31,69,45,62,25,32),
9289 (11,6,32,70,46,63,25,33),
9290 (11,6,33,72,47,65,25,33),
9291 (11,6,34,74,48,66,25,34),
9292 (11,6,35,75,49,68,25,34),
9293 (11,6,36,77,50,69,26,35),
9294 (11,6,37,79,51,71,26,35),
9295 (11,6,38,81,52,73,26,35),
9296 (11,6,39,83,53,74,26,36),
9297 (11,6,40,84,55,76,26,36),
9298 (11,6,41,86,56,78,27,37),
9299 (11,6,42,88,57,79,27,37),
9300 (11,6,43,90,58,81,27,38),
9301 (11,6,44,92,59,83,27,38),
9302 (11,6,45,94,60,85,27,39),
9303 (11,6,46,96,62,86,28,39),
9304 (11,6,47,98,63,88,28,40),
9305 (11,6,48,100,64,90,28,40),
9306 (11,6,49,102,65,92,28,41),
9307 (11,6,50,103,65,93,29,41),
9308 (11,6,51,105,66,94,29,42),
9309 (11,6,52,106,67,95,29,42),
9310 (11,6,53,107,68,96,29,43),
9311 (11,6,54,108,69,97,30,44),
9312 (11,6,55,109,70,98,30,44),
9313 (11,6,56,112,72,101,30,45),
9314 (11,6,57,114,73,103,30,45),
9315 (11,6,58,117,74,105,31,46),
9316 (11,6,59,119,76,107,31,46),
9317 (11,6,60,121,77,109,31,47),
9318 (11,6,61,123,78,111,31,48),
9319 (11,6,62,126,80,113,31,48),
9320 (11,6,63,128,81,116,32,49),
9321 (11,6,64,131,83,118,32,49),
9322 (11,6,65,136,84,120,32,50),
9323 (11,6,66,140,86,123,32,51),
9324 (11,6,67,141,87,125,33,51),
9325 (11,6,68,141,89,127,33,52),
9326 (11,6,69,144,90,130,33,53),
9327 (11,6,70,147,92,132,33,53),
9328 (11,6,71,150,94,135,34,54),
9329 (11,6,72,152,95,137,34,55),
9330 (11,6,73,155,97,140,34,56),
9331 (11,6,74,162,99,142,34,56),
9332 (11,6,75,165,100,145,35,57),
9333 (11,6,76,167,102,146,35,58),
9334 (11,6,77,169,104,150,35,59),
9335 (11,6,78,170,105,152,35,59),
9336 (11,6,79,173,107,156,36,60),
9337 (11,6,80,176,109,159,36,61),
9338 (11,7,1,22,17,20,22,24),
9339 (11,7,2,23,17,21,23,25),
9340 (11,7,3,24,18,22,24,26),
9341 (11,7,4,25,18,23,25,27),
9342 (11,7,5,25,19,24,26,28),
9343 (11,7,6,26,19,25,27,29),
9344 (11,7,7,27,20,26,28,30),
9345 (11,7,8,28,20,27,28,31),
9346 (11,7,9,29,21,28,29,32),
9347 (11,7,10,30,21,29,30,33),
9348 (11,7,11,31,22,30,31,35),
9349 (11,7,12,32,22,31,32,36),
9350 (11,7,13,33,23,32,33,37),
9351 (11,7,14,34,23,33,34,38),
9352 (11,7,15,34,24,35,35,39),
9353 (11,7,16,35,24,36,36,40),
9354 (11,7,17,36,25,37,38,42),
9355 (11,7,18,37,25,38,39,43),
9356 (11,7,19,38,26,39,40,44),
9357 (11,7,20,39,26,40,41,45),
9358 (11,7,21,40,27,41,42,46),
9359 (11,7,22,41,27,43,43,48),
9360 (11,7,23,43,28,44,44,49),
9361 (11,7,24,44,28,45,45,50),
9362 (11,7,25,45,29,46,46,51),
9363 (11,7,26,46,30,47,48,53),
9364 (11,7,27,47,30,49,49,54),
9365 (11,7,28,48,31,50,50,55),
9366 (11,7,29,49,31,51,51,57),
9367 (11,7,30,50,32,53,52,58),
9368 (11,7,31,51,33,54,53,59),
9369 (11,7,32,52,33,55,55,61),
9370 (11,7,33,53,34,56,56,62),
9371 (11,7,34,55,34,58,57,64),
9372 (11,7,35,56,35,59,58,65),
9373 (11,7,36,57,36,60,60,66),
9374 (11,7,37,58,36,62,61,68),
9375 (11,7,38,59,37,63,62,69),
9376 (11,7,39,61,38,65,63,71),
9377 (11,7,40,62,38,66,65,72),
9378 (11,7,41,63,39,67,66,74),
9379 (11,7,42,64,40,69,67,75),
9380 (11,7,43,65,40,70,69,77),
9381 (11,7,44,67,41,72,70,78),
9382 (11,7,45,68,42,73,71,80),
9383 (11,7,46,69,42,75,73,81),
9384 (11,7,47,71,43,76,74,83),
9385 (11,7,48,72,44,78,76,84),
9386 (11,7,49,73,45,79,77,86),
9387 (11,7,50,74,45,81,78,88),
9388 (11,7,51,76,46,82,80,89),
9389 (11,7,52,77,47,84,81,91),
9390 (11,7,53,78,47,85,83,92),
9391 (11,7,54,80,48,87,84,94),
9392 (11,7,55,81,49,88,86,96),
9393 (11,7,56,83,50,90,87,97),
9394 (11,7,57,84,50,91,89,99),
9395 (11,7,58,85,51,93,90,101),
9396 (11,7,59,87,52,95,92,102),
9397 (11,7,60,88,53,96,93,104),
9398 (11,7,61,90,54,98,95,106),
9399 (11,7,62,91,54,99,96,108),
9400 (11,7,63,93,55,101,98,109),
9401 (11,7,64,94,56,103,99,111),
9402 (11,7,65,95,57,104,101,113),
9403 (11,7,66,97,58,106,103,115),
9404 (11,7,67,98,58,108,104,117),
9405 (11,7,68,100,59,110,106,118),
9406 (11,7,69,101,60,111,107,120),
9407 (11,7,70,103,61,113,109,122),
9408 (11,7,71,104,62,115,122,124),
9409 (11,7,72,106,63,117,124,127),
9410 (11,7,73,108,64,119,126,129),
9411 (11,7,74,110,65,122,128,131),
9412 (11,7,75,112,66,124,130,133),
9413 (11,7,76,114,67,126,133,136),
9414 (11,7,77,115,68,128,135,138),
9415 (11,7,78,117,69,130,137,140),
9416 (11,7,79,119,70,133,139,143),
9417 (11,7,80,121,71,135,141,145),
9418 (11,8,1,21,17,19,24,24),
9419 (11,8,2,21,17,19,25,25),
9420 (11,8,3,21,17,20,27,27),
9421 (11,8,4,21,17,20,28,28),
9422 (11,8,5,21,18,20,29,29),
9423 (11,8,6,21,18,20,31,31),
9424 (11,8,7,21,18,21,32,32),
9425 (11,8,8,22,18,21,34,33),
9426 (11,8,9,22,18,21,35,35),
9427 (11,8,10,22,19,22,37,36),
9428 (11,8,11,22,19,22,38,37),
9429 (11,8,12,22,19,22,40,39),
9430 (11,8,13,22,19,23,41,40),
9431 (11,8,14,22,19,23,43,42),
9432 (11,8,15,22,19,23,44,43),
9433 (11,8,16,22,20,24,46,45),
9434 (11,8,17,23,20,24,47,46),
9435 (11,8,18,23,20,24,49,48),
9436 (11,8,19,23,20,25,50,49),
9437 (11,8,20,23,21,25,52,51),
9438 (11,8,21,23,21,26,54,52),
9439 (11,8,22,23,21,26,55,54),
9440 (11,8,23,23,21,26,57,56),
9441 (11,8,24,24,21,27,59,57),
9442 (11,8,25,24,22,27,60,59),
9443 (11,8,26,24,22,27,62,60),
9444 (11,8,27,24,22,28,64,62),
9445 (11,8,28,24,22,28,65,64),
9446 (11,8,29,24,23,29,67,65),
9447 (11,8,30,24,23,29,69,67),
9448 (11,8,31,25,23,30,71,69),
9449 (11,8,32,25,23,30,73,71),
9450 (11,8,33,25,24,30,74,72),
9451 (11,8,34,25,24,31,76,74),
9452 (11,8,35,25,24,31,78,76),
9453 (11,8,36,26,24,32,80,78),
9454 (11,8,37,26,25,32,82,79),
9455 (11,8,38,26,25,33,84,81),
9456 (11,8,39,26,25,33,86,83),
9457 (11,8,40,26,26,34,87,85),
9458 (11,8,41,27,26,34,89,87),
9459 (11,8,42,27,26,35,91,89),
9460 (11,8,43,27,27,35,93,91),
9461 (11,8,44,27,27,36,95,92),
9462 (11,8,45,27,27,36,97,94),
9463 (11,8,46,28,27,37,99,96),
9464 (11,8,47,28,28,37,101,98),
9465 (11,8,48,28,28,38,103,100),
9466 (11,8,49,28,28,38,105,102),
9467 (11,8,50,29,29,39,107,104),
9468 (11,8,51,29,29,39,110,106),
9469 (11,8,52,29,29,40,112,108),
9470 (11,8,53,29,30,40,114,110),
9471 (11,8,54,30,30,41,116,112),
9472 (11,8,55,30,30,41,118,114),
9473 (11,8,56,30,31,42,120,116),
9474 (11,8,57,30,31,42,122,118),
9475 (11,8,58,31,31,43,125,121),
9476 (11,8,59,31,32,43,127,123),
9477 (11,8,60,31,32,44,129,125),
9478 (11,8,61,31,33,45,131,127),
9479 (11,8,62,32,33,45,133,129),
9480 (11,8,63,32,33,46,136,131),
9481 (11,8,64,32,34,46,138,134),
9482 (11,8,65,33,34,47,140,136),
9483 (11,8,66,33,34,48,143,138),
9484 (11,8,67,33,35,48,145,140),
9485 (11,8,68,33,35,49,147,142),
9486 (11,8,69,34,36,49,150,145),
9487 (11,8,70,34,36,50,152,147),
9488 (11,8,71,34,36,51,155,150),
9489 (11,8,72,34,37,52,161,153),
9490 (11,8,73,34,37,53,161,156),
9491 (11,8,74,35,38,53,164,158),
9492 (11,8,75,35,38,54,167,161),
9493 (11,8,76,35,38,55,170,164),
9494 (11,8,77,36,39,56,173,167),
9495 (11,8,78,36,39,56,176,170),
9496 (11,8,79,36,40,57,179,173),
9497 (11,8,80,37,40,58,182,176);
9498 /*!40000 ALTER TABLE `player_levelstats` ENABLE KEYS */;
9499 UNLOCK TABLES;
9501 -- ----------------------------
9502 -- Table structure for player_xp_for_level
9503 -- ----------------------------
9504 DROP TABLE IF EXISTS `player_xp_for_level`;
9505 CREATE TABLE `player_xp_for_level` (
9506   `lvl` int(3) unsigned NOT NULL,
9507   `xp_for_next_level` int(10) unsigned NOT NULL,
9508   PRIMARY KEY  (`lvl`)
9509 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9512 -- Dumping data for table `player_xp_for_level`
9515 LOCK TABLES `player_xp_for_level` WRITE;
9516 /*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
9517 INSERT INTO `player_xp_for_level` VALUES
9518 ('1', '400'),
9519 ('2', '900'),
9520 ('3', '1400'),
9521 ('4', '2100'),
9522 ('5', '2800'),
9523 ('6', '3600'),
9524 ('7', '4500'),
9525 ('8', '5400'),
9526 ('9', '6500'),
9527 ('10', '7600'),
9528 ('11', '8700'),
9529 ('12', '9800'),
9530 ('13', '11000'),
9531 ('14', '12300'),
9532 ('15', '13600'),
9533 ('16', '15000'),
9534 ('17', '16400'),
9535 ('18', '17800'),
9536 ('19', '19300'),
9537 ('20', '20800'),
9538 ('21', '22400'),
9539 ('22', '24000'),
9540 ('23', '25500'),
9541 ('24', '27200'),
9542 ('25', '28900'),
9543 ('26', '30500'),
9544 ('27', '32200'),
9545 ('28', '33900'),
9546 ('29', '36300'),
9547 ('30', '38800'),
9548 ('31', '41600'),
9549 ('32', '44600'),
9550 ('33', '48000'),
9551 ('34', '51400'),
9552 ('35', '55000'),
9553 ('36', '58700'),
9554 ('37', '62400'),
9555 ('38', '66200'),
9556 ('39', '70200'),
9557 ('40', '74300'),
9558 ('41', '78500'),
9559 ('42', '82800'),
9560 ('43', '87100'),
9561 ('44', '91600'),
9562 ('45', '96300'),
9563 ('46', '101000'),
9564 ('47', '105800'),
9565 ('48', '110700'),
9566 ('49', '115700'),
9567 ('50', '120900'),
9568 ('51', '126100'),
9569 ('52', '131500'),
9570 ('53', '137000'),
9571 ('54', '142500'),
9572 ('55', '148200'),
9573 ('56', '154000'),
9574 ('57', '159900'),
9575 ('58', '165800'),
9576 ('59', '172000'),
9577 ('60', '290000'),
9578 ('61', '317000'),
9579 ('62', '349000'),
9580 ('63', '386000'),
9581 ('64', '428000'),
9582 ('65', '475000'),
9583 ('66', '527000'),
9584 ('67', '585000'),
9585 ('68', '648000'),
9586 ('69', '717000'),
9587 ('70', '1523800'),
9588 ('71', '1539600'),
9589 ('72', '1555700'),
9590 ('73', '1571800'),
9591 ('74', '1587900'),
9592 ('75', '1604200'),
9593 ('76', '1620700'),
9594 ('77', '1637400'),
9595 ('78', '1653900'),
9596 ('79', '1670800');
9597 /*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
9598 UNLOCK TABLES;
9601 -- Table structure for table `playercreateinfo`
9604 DROP TABLE IF EXISTS `playercreateinfo`;
9605 CREATE TABLE `playercreateinfo` (
9606   `race` tinyint(3) unsigned NOT NULL default '0',
9607   `class` tinyint(3) unsigned NOT NULL default '0',
9608   `map` smallint(5) unsigned NOT NULL default '0',
9609   `zone` mediumint(8) unsigned NOT NULL default '0',
9610   `position_x` float NOT NULL default '0',
9611   `position_y` float NOT NULL default '0',
9612   `position_z` float NOT NULL default '0',
9613   PRIMARY KEY  (`race`,`class`)
9614 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9617 -- Dumping data for table `playercreateinfo`
9620 LOCK TABLES `playercreateinfo` WRITE;
9621 /*!40000 ALTER TABLE `playercreateinfo` DISABLE KEYS */;
9622 INSERT INTO `playercreateinfo` VALUES
9623 (1,1,0,12,-8949,-132,84),
9624 (1,2,0,12,-8949,-132,84),
9625 (1,4,0,12,-8949,-132,84),
9626 (1,5,0,12,-8949,-132,84),
9627 (1,6,609,4298,2355.84,-5664.77,426.028),
9628 (1,8,0,12,-8949,-132,84),
9629 (1,9,0,12,-8949,-132,84),
9630 (2,1,1,14,-618,-4251,39),
9631 (2,3,1,14,-618,-4251,39),
9632 (2,4,1,14,-618,-4251,39),
9633 (2,6,609,4298,2358.44,-5666.9,426.023),
9634 (2,7,1,14,-618,-4251,39),
9635 (2,9,1,14,-618,-4251,39),
9636 (3,1,0,1,-6240,331,383),
9637 (3,2,0,1,-6240,331,383),
9638 (3,3,0,1,-6240,331,383),
9639 (3,4,0,1,-6240,331,383),
9640 (3,5,0,1,-6240,331,383),
9641 (3,6,609,4298,2358.44,-5666.9,426.023),
9642 (4,1,1,141,10311,832,1327),
9643 (4,3,1,141,10311,832,1327),
9644 (4,4,1,141,10311,832,1327),
9645 (4,5,1,141,10311,832,1327),
9646 (4,6,609,4298,2356.21,-5662.21,426.026),
9647 (4,11,1,141,10311,832,1327),
9648 (5,1,0,85,1676,1677,122),
9649 (5,4,0,85,1676,1677,122),
9650 (5,5,0,85,1676,1677,122),
9651 (5,8,0,85,1676,1677,122),
9652 (5,9,0,85,1676,1677,122),
9653 (5,6,609,4298,2356.21,-5662.21,426.026),
9654 (6,1,1,215,-2917,-257,53),
9655 (6,3,1,215,-2917,-257,53),
9656 (6,6,609,4298,2358.17,-5663.21,426.027),
9657 (6,7,1,215,-2917,-257,53),
9658 (6,11,1,215,-2917,-257,53),
9659 (7,1,0,1,-6240,331,383),
9660 (7,4,0,1,-6240,331,383),
9661 (7,6,609,4298,2355.05,-5661.7, 426.026),
9662 (7,8,0,1,-6240,331,383),
9663 (7,9,0,1,-6240,331,383),
9664 (8,1,1,14,-618,-4251,39),
9665 (8,3,1,14,-618,-4251,39),
9666 (8,4,1,14,-618,-4251,39),
9667 (8,5,1,14,-618,-4251,39),
9668 (8,6,609,4298,2355.05,-5661.7, 426.026),
9669 (8,7,1,14,-618,-4251,39),
9670 (8,8,1,14,-618,-4251,39),
9671 (10,2,530,3431,10349.6,-6357.29,33.4026),
9672 (10,3,530,3431,10349.6,-6357.29,33.4026),
9673 (10,4,530,3431,10349.6,-6357.29,33.4026),
9674 (10,5,530,3431,10349.6,-6357.29,33.4026),
9675 (10,6,609,4298,2355.84,-5664.77,426.028),
9676 (10,8,530,3431,10349.6,-6357.29,33.4026),
9677 (10,9,530,3431,10349.6,-6357.29,33.4026),
9678 (11,1,530,3526,-3961.64,-13931.2,100.615),
9679 (11,2,530,3526,-3961.64,-13931.2,100.615),
9680 (11,3,530,3526,-3961.64,-13931.2,100.615),
9681 (11,5,530,3526,-3961.64,-13931.2,100.615),
9682 (11,6,609,4298,2358.17,-5663.21,426.027),
9683 (11,7,530,3526,-3961.64,-13931.2,100.615),
9684 (11,8,530,3526,-3961.64,-13931.2,100.615);
9685 /*!40000 ALTER TABLE `playercreateinfo` ENABLE KEYS */;
9686 UNLOCK TABLES;
9689 -- Table structure for table `playercreateinfo_action`
9692 DROP TABLE IF EXISTS `playercreateinfo_action`;
9693 CREATE TABLE `playercreateinfo_action` (
9694   `race` tinyint(3) unsigned NOT NULL default '0',
9695   `class` tinyint(3) unsigned NOT NULL default '0',
9696   `button` smallint(5) unsigned NOT NULL default '0',
9697   `action` smallint(5) unsigned NOT NULL default '0',
9698   `type` smallint(5) unsigned NOT NULL default '0',
9699   `misc` smallint(5) unsigned NOT NULL default '0',
9700   KEY `playercreateinfo_race_class_index` (`race`,`class`)
9701 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9704 -- Dumping data for table `playercreateinfo_action`
9707 LOCK TABLES `playercreateinfo_action` WRITE;
9708 /*!40000 ALTER TABLE `playercreateinfo_action` DISABLE KEYS */;
9709 INSERT INTO `playercreateinfo_action` VALUES
9710 (1,1,1,78,0,0),
9711 (1,1,0,6603,0,0),
9712 (1,1,11,117,128,0),
9713 (1,2,2,635,0,0),
9714 (1,2,0,6603,0,0),
9715 (1,2,1,21084,0,0),
9716 (1,2,10,159,128,0),
9717 (1,2,11,2070,128,0),
9718 (1,4,1,1752,0,0),
9719 (1,4,2,2098,0,0),
9720 (1,4,3,2764,0,0),
9721 (1,4,0,6603,0,0),
9722 (1,4,11,2070,128,0),
9723 (1,5,1,585,0,0),
9724 (1,5,2,2050,0,0),
9725 (1,5,0,6603,0,0),
9726 (1,5,10,159,128,0),
9727 (1,5,11,2070,128,0),
9728 (1,6,0,6603,0,0),
9729 (1,6,1,49576,0,0),
9730 (1,6,2,45477,0,0),
9731 (1,6,3,45462,0,0),
9732 (1,6,4,45902,0,0),
9733 (1,6,5,47541,0,0),
9734 (1,6,11,59752,0,0),
9735 (1,8,1,133,0,0),
9736 (1,8,2,168,0,0),
9737 (1,8,0,6603,0,0),
9738 (1,8,10,159,128,0),
9739 (1,8,11,2070,128,0),
9740 (1,9,1,686,0,0),
9741 (1,9,2,687,0,0),
9742 (1,9,0,6603,0,0),
9743 (1,9,10,159,128,0),
9744 (1,9,11,4604,128,0),
9745 (2,1,1,78,0,0),
9746 (2,1,0,6603,0,0),
9747 (2,1,11,117,128,0),
9748 (2,3,2,75,0,0),
9749 (2,3,1,2973,0,0),
9750 (2,3,0,6603,0,0),
9751 (2,3,11,117,128,0),
9752 (2,3,10,159,128,0),
9753 (2,4,10,0,128,0),
9754 (2,4,1,1752,0,0),
9755 (2,4,2,2098,0,0),
9756 (2,4,0,6603,0,0),
9757 (2,4,11,117,128,0),
9758 (2,6,0,6603,0,0),
9759 (2,6,1,49576,0,0),
9760 (2,6,2,45477,0,0),
9761 (2,6,3,45462,0,0),
9762 (2,6,4,45902,0,0),
9763 (2,6,5,47541,0,0),
9764 (2,6,10,20572,0,0),
9765 (2,7,2,331,0,0),
9766 (2,7,1,403,0,0),
9767 (2,7,0,6603,0,0),
9768 (2,7,11,117,128,0),
9769 (2,7,10,159,128,0),
9770 (2,9,1,686,0,0),
9771 (2,9,2,687,0,0),
9772 (2,9,0,6603,0,0),
9773 (2,9,11,117,128,0),
9774 (2,9,10,159,128,0),
9775 (3,1,1,78,0,0),
9776 (3,1,0,6603,0,0),
9777 (3,1,11,117,128,0),
9778 (3,2,2,635,0,0),
9779 (3,2,0,6603,0,0),
9780 (3,2,1,21084,0,0),
9781 (3,2,10,159,128,0),
9782 (3,2,11,4540,128,0),
9783 (3,3,2,75,0,0),
9784 (3,3,1,2973,0,0),
9785 (3,3,0,6603,0,0),
9786 (3,3,11,117,128,0),
9787 (3,3,10,159,128,0),
9788 (3,4,1,1752,0,0),
9789 (3,4,2,2098,0,0),
9790 (3,4,3,2764,0,0),
9791 (3,4,0,6603,0,0),
9792 (3,4,11,4540,128,0),
9793 (3,5,1,585,0,0),
9794 (3,5,2,2050,0,0),
9795 (3,5,0,6603,0,0),
9796 (3,5,10,159,128,0),
9797 (3,5,11,4540,128,0),
9798 (3,6,0,6603,0,0),
9799 (3,6,1,49576,0,0),
9800 (3,6,2,45477,0,0),
9801 (3,6,3,45462,0,0),
9802 (3,6,4,45902,0,0),
9803 (3,6,5,47541,0,0),
9804 (3,6,10,2481,0,0),
9805 (4,1,1,78,0,0),
9806 (4,1,0,6603,0,0),
9807 (4,1,11,117,128,0),
9808 (4,3,2,75,0,0),
9809 (4,3,1,2973,0,0),
9810 (4,3,0,6603,0,0),
9811 (4,3,11,117,128,0),
9812 (4,3,10,159,128,0),
9813 (4,4,1,1752,0,0),
9814 (4,4,2,2098,0,0),
9815 (4,4,3,2764,0,0),
9816 (4,4,0,6603,0,0),
9817 (4,4,11,4540,128,0),
9818 (4,5,1,585,0,0),
9819 (4,5,2,2050,0,0),
9820 (4,5,0,6603,0,0),
9821 (4,5,10,159,128,0),
9822 (4,5,11,2070,128,0),
9823 (4,6,0,6603,0,0),
9824 (4,6,1,49576,0,0),
9825 (4,6,2,45477,0,0),
9826 (4,6,3,45462,0,0),
9827 (4,6,4,45902,0,0),
9828 (4,6,5,47541,0,0),
9829 (4,6,10,58984,0,0),
9830 (4,6,83,58984,0,0),
9831 (4,11,1,5176,0,0),
9832 (4,11,2,5185,0,0),
9833 (4,11,0,6603,0,0),
9834 (4,11,10,159,128,0),
9835 (4,11,11,4536,128,0),
9836 (5,1,11,4604,128,0),
9837 (5,1,0,6603,0,0),
9838 (5,1,1,78,0,0),
9839 (5,4,11,4604,128,0),
9840 (5,4,3,2764,0,0),
9841 (5,4,2,2098,0,0),
9842 (5,4,1,1752,0,0),
9843 (5,4,0,6603,0,0),
9844 (5,5,10,159,128,0),
9845 (5,5,2,2050,0,0),
9846 (5,5,1,585,0,0),
9847 (5,5,11,4604,128,0),
9848 (5,5,0,6603,0,0),
9849 (5,6,0,6603,0,0),
9850 (5,6,1,49576,0,0),
9851 (5,6,2,45477,0,0),
9852 (5,6,3,45462,0,0),
9853 (5,6,4,45902,0,0),
9854 (5,6,5,47541,0,0),
9855 (5,6,10,20577,0,0),
9856 (5,8,11,4604,128,0),
9857 (5,8,10,159,128,0),
9858 (5,8,2,168,0,0),
9859 (5,8,1,133,0,0),
9860 (5,8,0,6603,0,0),
9861 (5,9,1,686,0,0),
9862 (5,9,10,159,128,0),
9863 (5,9,2,687,0,0),
9864 (5,9,11,4604,128,0),
9865 (5,9,0,6603,0,0),
9866 (6,1,1,78,0,0),
9867 (6,1,2,20549,0,0),
9868 (6,1,11,4540,128,0),
9869 (6,1,0,6603,0,0),
9870 (6,3,1,2973,0,0),
9871 (6,3,10,159,128,0),
9872 (6,3,2,75,0,0),
9873 (6,3,3,20549,0,0),
9874 (6,3,11,117,128,0),
9875 (6,3,0,6603,0,0),
9876 (6,6,0,6603,0,0),
9877 (6,6,1,49576,0,0),
9878 (6,6,2,45477,0,0),
9879 (6,6,3,45462,0,0),
9880 (6,6,4,45902,0,0),
9881 (6,6,5,47541,0,0),
9882 (6,6,10,20549,0,0),
9883 (6,6,75,20549,0,0),
9884 (6,7,1,403,0,0),
9885 (6,7,10,159,128,0),
9886 (6,7,2,331,0,0),
9887 (6,7,3,20549,0,0),
9888 (6,7,11,4604,128,0),
9889 (6,7,0,6603,0,0),
9890 (6,11,1,5176,0,0),
9891 (6,11,10,159,128,0),
9892 (6,11,2,5185,0,0),
9893 (6,11,3,20549,0,0),
9894 (6,11,11,4536,128,0),
9895 (6,11,0,6603,0,0),
9896 (7,1,11,117,128,0),
9897 (7,1,1,78,0,0),
9898 (7,1,0,6603,0,0),
9899 (7,4,11,117,128,0),
9900 (7,4,3,2764,0,0),
9901 (7,4,1,1752,0,0),
9902 (7,4,2,2098,0,0),
9903 (7,4,0,6603,0,0),
9904 (7,6,0,6603,0,0),
9905 (7,6,1,49576,0,0),
9906 (7,6,2,45477,0,0),
9907 (7,6,3,45462,0,0),
9908 (7,6,4,45902,0,0),
9909 (7,6,5,47541,0,0),
9910 (7,6,10,20589,0,0),
9911 (7,6,72,6603,0,0),
9912 (7,6,83,117,128,0),
9913 (7,6,84,6603,0,0),
9914 (7,6,96,6603,0,0),
9915 (7,6,108,6603,0,0),
9916 (7,8,11,4536,128,0),
9917 (7,8,1,133,0,0),
9918 (7,8,2,168,0,0),
9919 (7,8,10,159,128,0),
9920 (7,8,0,6603,0,0),
9921 (7,9,11,4604,128,0),
9922 (7,9,1,686,0,0),
9923 (7,9,2,687,0,0),
9924 (7,9,10,159,128,0),
9925 (7,9,0,6603,0,0),
9926 (8,1,11,117,128,0),
9927 (8,1,1,78,0,0),
9928 (8,1,3,2764,0,0),
9929 (8,1,0,6603,0,0),
9930 (8,3,10,159,128,0),
9931 (8,3,11,4604,128,0),
9932 (8,3,1,2973,0,0),
9933 (8,3,2,75,0,0),
9934 (8,3,0,6603,0,0),
9935 (8,4,1,1752,0,0),
9936 (8,4,3,2764,0,0),
9937 (8,4,2,2098,0,0),
9938 (8,4,11,117,128,0),
9939 (8,4,0,6603,0,0),
9940 (8,5,1,585,0,0),
9941 (8,5,10,159,128,0),
9942 (8,5,2,2050,0,0),
9943 (8,5,11,4540,128,0),
9944 (8,5,0,6603,0,0),
9945 (8,6,0,6603,0,0),
9946 (8,6,1,49576,0,0),
9947 (8,6,2,45477,0,0),
9948 (8,6,3,45462,0,0),
9949 (8,6,4,45902,0,0),
9950 (8,6,5,47541,0,0),
9951 (8,6,10,50621,0,0),
9952 (8,7,1,403,0,0),
9953 (8,7,10,159,128,0),
9954 (8,7,2,331,0,0),
9955 (8,7,11,117,128,0),
9956 (8,7,0,6603,0,0),
9957 (8,8,1,133,0,0),
9958 (8,8,10,159,128,0),
9959 (8,8,2,168,0,0),
9960 (8,8,11,117,128,0),
9961 (8,8,0,6603,0,0),
9962 (10,2,0,6603,0,0),
9963 (10,2,1,21084,0,0),
9964 (10,2,2,635,0,0),
9965 (10,2,3,28734,0,0),
9966 (10,2,4,28730,0,0),
9967 (10,2,10,159,128,0),
9968 (10,2,11,20857,128,0),
9969 (10,3,0,6603,0,0),
9970 (10,3,1,2973,0,0),
9971 (10,3,2,75,0,0),
9972 (10,3,3,28734,0,0),
9973 (10,3,4,28730,0,0),
9974 (10,3,10,159,128,0),
9975 (10,3,11,20857,128,0),
9976 (10,4,0,6603,0,0),
9977 (10,4,1,1752,0,0),
9978 (10,4,2,2098,0,0),
9979 (10,4,3,2764,0,0),
9980 (10,4,4,28734,0,0),
9981 (10,4,5,25046,0,0),
9982 (10,4,11,20857,128,0),
9983 (10,5,0,6603,0,0),
9984 (10,5,1,585,0,0),
9985 (10,5,2,2050,0,0),
9986 (10,5,3,28734,0,0),
9987 (10,5,4,28730,0,0),
9988 (10,5,10,159,128,0),
9989 (10,5,11,20857,128,0),
9990 (10,6,0,6603,0,0),
9991 (10,6,1,49576,0,0),
9992 (10,6,2,45477,0,0),
9993 (10,6,3,45462,0,0),
9994 (10,6,4,45902,0,0),
9995 (10,6,5,47541,0,0),
9996 (10,6,6,50613,0,0),
9997 (10,8,0,6603,0,0),
9998 (10,8,1,133,0,0),
9999 (10,8,2,168,0,0),
10000 (10,8,3,28734,0,0),
10001 (10,8,4,28730,0,0),
10002 (10,8,10,159,128,0),
10003 (10,8,11,20857,128,0),
10004 (10,9,11,20857,128,0),
10005 (10,9,10,159,128,0),
10006 (10,9,4,28730,0,0),
10007 (10,9,3,28734,0,0),
10008 (10,9,2,687,0,0),
10009 (10,9,1,686,0,0),
10010 (10,9,0,6603,0,0),
10011 (11,1,0,6603,0,0),
10012 (11,1,72,6603,0,0),
10013 (11,1,73,78,0,0),
10014 (11,1,74,28880,0,0),
10015 (11,1,83,4540,128,0),
10016 (11,1,84,6603,0,0),
10017 (11,1,96,6603,0,0),
10018 (11,1,108,6603,0,0),
10019 (11,2,0,6603,0,0),
10020 (11,2,1,21084,0,0),
10021 (11,2,2,635,0,0),
10022 (11,2,3,59542,0,0),
10023 (11,2,10,159,128,0),
10024 (11,2,11,4540,128,0),
10025 (11,2,83,4540,128,0),
10026 (11,3,0,6603,0,0),
10027 (11,3,1,2973,0,0),
10028 (11,3,2,75,0,0),
10029 (11,3,3,59543,0,0),
10030 (11,3,10,159,128,0),
10031 (11,3,11,4540,128,0),
10032 (11,3,72,6603,0,0),
10033 (11,3,73,2973,0,0),
10034 (11,3,74,75,0,0),
10035 (11,3,82,159,128,0),
10036 (11,3,83,4540,128,0),
10037 (11,5,0,6603,0,0),
10038 (11,5,1,585,0,0),
10039 (11,5,2,2050,0,0),
10040 (11,5,3,59544,0,0),
10041 (11,5,10,159,128,0),
10042 (11,5,11,4540,128,0),
10043 (11,5,83,4540,128,0),
10044 (11,6,0,6603,0,0),
10045 (11,6,1,49576,0,0),
10046 (11,6,2,45477,0,0),
10047 (11,6,3,45462,0,0),
10048 (11,6,4,45902,0,0),
10049 (11,6,5,47541,0,0),
10050 (11,6,6,59545,0,0),
10051 (11,7,0,6603,0,0),
10052 (11,7,1,403,0,0),
10053 (11,7,2,331,0,0),
10054 (11,7,3,59547,0,0),
10055 (11,7,10,159,128,0),
10056 (11,7,11,4540,128,0),
10057 (11,8,0,6603,0,0),
10058 (11,8,1,133,0,0),
10059 (11,8,2,168,0,0),
10060 (11,8,3,59548,0,0),
10061 (11,8,10,159,128,0),
10062 (11,8,11,4540,128,0),
10063 (11,8,83,4540,128,0);
10064 /*!40000 ALTER TABLE `playercreateinfo_action` ENABLE KEYS */;
10065 UNLOCK TABLES;
10068 -- Table structure for table `playercreateinfo_item`
10071 DROP TABLE IF EXISTS `playercreateinfo_item`;
10072 CREATE TABLE `playercreateinfo_item` (
10073   `race` tinyint(3) unsigned NOT NULL default '0',
10074   `class` tinyint(3) unsigned NOT NULL default '0',
10075   `itemid` mediumint(8) unsigned NOT NULL default '0',
10076   `amount` tinyint(3) unsigned NOT NULL default '1',
10077   KEY `playercreateinfo_race_class_index` (`race`,`class`)
10078 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10081 -- Dumping data for table `playercreateinfo_item`
10084 LOCK TABLES `playercreateinfo_item` WRITE;
10085 /*!40000 ALTER TABLE `playercreateinfo_item` DISABLE KEYS */;
10086 /*!40000 ALTER TABLE `playercreateinfo_item` ENABLE KEYS */;
10087 UNLOCK TABLES;
10090 -- Table structure for table `playercreateinfo_spell`
10093 DROP TABLE IF EXISTS `playercreateinfo_spell`;
10094 CREATE TABLE `playercreateinfo_spell` (
10095   `race` tinyint(3) unsigned NOT NULL default '0',
10096   `class` tinyint(3) unsigned NOT NULL default '0',
10097   `Spell` mediumint(8) unsigned NOT NULL default '0',
10098   `Note` varchar(255) default NULL,
10099   PRIMARY KEY  (`race`,`class`,`Spell`)
10100 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10103 -- Dumping data for table `playercreateinfo_spell`
10106 LOCK TABLES `playercreateinfo_spell` WRITE;
10107 /*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
10108 INSERT INTO `playercreateinfo_spell` VALUES
10109 (1,1,78,'Heroic Strike'),
10110 (1,1,81,'Dodge'),
10111 (1,1,107,'Block'),
10112 (1,1,196,'One-Handed Axes'),
10113 (1,1,198,'One-Handed Maces'),
10114 (1,1,201,'One-Handed Swords'),
10115 (1,1,203,'Unarmed'),
10116 (1,1,204,'Defense'),
10117 (1,1,522,'SPELLDEFENSE (DND)'),
10118 (1,1,668,'Language Common'),
10119 (1,1,1843,'Disarm'),
10120 (1,1,2382,'Generic'),
10121 (1,1,2457,'Battle Stance'),
10122 (1,1,2479,'Honorless Target'),
10123 (1,1,3050,'Detect'),
10124 (1,1,3365,'Opening'),
10125 (1,1,5301,'Defensive State (DND)'),
10126 (1,1,6233,'Closing'),
10127 (1,1,6246,'Closing'),
10128 (1,1,6247,'Opening'),
10129 (1,1,6477,'Opening'),
10130 (1,1,6478,'Opening'),
10131 (1,1,6603,'Attack'),
10132 (1,1,7266,'Duel'),
10133 (1,1,7267,'Grovel'),
10134 (1,1,7355,'Stuck'),
10135 (1,1,8386,'Attacking'),
10136 (1,1,8737,'Mail'),
10137 (1,1,9077,'Leather'),
10138 (1,1,9078,'Cloth'),
10139 (1,1,9116,'Shield'),
10140 (1,1,9125,'Generic'),
10141 (1,1,20597,'Sword Specialization'),
10142 (1,1,20598,'The Human Spirit'),
10143 (1,1,20599,'Diplomacy'),
10144 (1,1,20864,'Mace Specialization'),
10145 (1,1,21651,'Opening'),
10146 (1,1,21652,'Closing'),
10147 (1,1,22027,'Remove Insignia'),
10148 (1,1,22810,'Opening - No Text'),
10149 (1,1,32215,'Victorious State'),
10150 (1,1,45927,'Summon Friend'),
10151 (1,1,58985,'Perception'),
10152 (1,1,59752,'Every Man for Himself'),
10153 (1,1,61437,'Opening'),
10154 (1,2,81,'Dodge'),
10155 (1,2,107,'Block'),
10156 (1,2,198,'One-Handed Maces'),
10157 (1,2,199,'Two-Handed Maces'),
10158 (1,2,203,'Unarmed'),
10159 (1,2,204,'Defense'),
10160 (1,2,522,'SPELLDEFENSE (DND)'),
10161 (1,2,635,'Holy Light'),
10162 (1,2,668,'Language Common'),
10163 (1,2,1843,'Disarm'),
10164 (1,2,2382,'Generic'),
10165 (1,2,2479,'Honorless Target'),
10166 (1,2,3050,'Detect'),
10167 (1,2,3365,'Opening'),
10168 (1,2,6233,'Closing'),
10169 (1,2,6246,'Closing'),
10170 (1,2,6247,'Opening'),
10171 (1,2,6477,'Opening'),
10172 (1,2,6478,'Opening'),
10173 (1,2,6603,'Attack'),
10174 (1,2,7266,'Duel'),
10175 (1,2,7267,'Grovel'),
10176 (1,2,7355,'Stuck'),
10177 (1,2,8386,'Attacking'),
10178 (1,2,8737,'Mail'),
10179 (1,2,9077,'Leather'),
10180 (1,2,9078,'Cloth'),
10181 (1,2,9116,'Shield'),
10182 (1,2,9125,'Generic'),
10183 (1,2,20154,'Seal of Righteousness'),
10184 (1,2,20597,'Sword Specialization'),
10185 (1,2,20598,'The Human Spirit'),
10186 (1,2,20599,'Diplomacy'),
10187 (1,2,20864,'Mace Specialization'),
10188 (1,2,21651,'Opening'),
10189 (1,2,21652,'Closing'),
10190 (1,2,22027,'Remove Insignia'),
10191 (1,2,22810,'Opening - No Text'),
10192 (1,2,27762,'Libram'),
10193 (1,2,45927,'Summon Friend'),
10194 (1,2,58985,'Perception'),
10195 (1,2,59752,'Every Man for Himself'),
10196 (1,2,61437,'Opening'),
10197 (1,4,81,'Dodge'),
10198 (1,4,203,'Unarmed'),
10199 (1,4,204,'Defense'),
10200 (1,4,522,'SPELLDEFENSE (DND)'),
10201 (1,4,668,'Language Common'),
10202 (1,4,1180,'Daggers'),
10203 (1,4,1752,'Sinister Strike'),
10204 (1,4,1843,'Disarm'),
10205 (1,4,2098,'Eviscerate'),
10206 (1,4,2382,'Generic'),
10207 (1,4,2479,'Honorless Target'),
10208 (1,4,2567,'Thrown'),
10209 (1,4,2764,'Throw'),
10210 (1,4,3050,'Detect'),
10211 (1,4,3365,'Opening'),
10212 (1,4,6233,'Closing'),
10213 (1,4,6246,'Closing'),
10214 (1,4,6247,'Opening'),
10215 (1,4,6477,'Opening'),
10216 (1,4,6478,'Opening'),
10217 (1,4,6603,'Attack'),
10218 (1,4,7266,'Duel'),
10219 (1,4,7267,'Grovel'),
10220 (1,4,7355,'Stuck'),
10221 (1,4,8386,'Attacking'),
10222 (1,4,9077,'Leather'),
10223 (1,4,9078,'Cloth'),
10224 (1,4,9125,'Generic'),
10225 (1,4,16092,'Defensive State (DND)'),
10226 (1,4,20597,'Sword Specialization'),
10227 (1,4,20598,'The Human Spirit'),
10228 (1,4,20599,'Diplomacy'),
10229 (1,4,20864,'Mace Specialization'),
10230 (1,4,21184,'Rogue Passive (DND)'),
10231 (1,4,21651,'Opening'),
10232 (1,4,21652,'Closing'),
10233 (1,4,22027,'Remove Insignia'),
10234 (1,4,22810,'Opening - No Text'),
10235 (1,4,45927,'Summon Friend'),
10236 (1,4,58985,'Perception'),
10237 (1,4,59752,'Every Man for Himself'),
10238 (1,4,61437,'Opening'),
10239 (1,5,81,'Dodge'),
10240 (1,5,198,'One-Handed Maces'),
10241 (1,5,203,'Unarmed'),
10242 (1,5,204,'Defense'),
10243 (1,5,522,'SPELLDEFENSE (DND)'),
10244 (1,5,585,'Smite'),
10245 (1,5,668,'Language Common'),
10246 (1,5,1843,'Disarm'),
10247 (1,5,2050,'Lesser Heal'),
10248 (1,5,2382,'Generic'),
10249 (1,5,2479,'Honorless Target'),
10250 (1,5,3050,'Detect'),
10251 (1,5,3365,'Opening'),
10252 (1,5,5009,'Wands'),
10253 (1,5,5019,'Shoot'),
10254 (1,5,6233,'Closing'),
10255 (1,5,6246,'Closing'),
10256 (1,5,6247,'Opening'),
10257 (1,5,6477,'Opening'),
10258 (1,5,6478,'Opening'),
10259 (1,5,6603,'Attack'),
10260 (1,5,7266,'Duel'),
10261 (1,5,7267,'Grovel'),
10262 (1,5,7355,'Stuck'),
10263 (1,5,8386,'Attacking'),
10264 (1,5,9078,'Cloth'),
10265 (1,5,9125,'Generic'),
10266 (1,5,20597,'Sword Specialization'),
10267 (1,5,20598,'The Human Spirit'),
10268 (1,5,20599,'Diplomacy'),
10269 (1,5,20864,'Mace Specialization'),
10270 (1,5,21651,'Opening'),
10271 (1,5,21652,'Closing'),
10272 (1,5,22027,'Remove Insignia'),
10273 (1,5,22810,'Opening - No Text'),
10274 (1,5,45927,'Summon Friend'),
10275 (1,5,58985,'Perception'),
10276 (1,5,59752,'Every Man for Himself'),
10277 (1,5,61437,'Opening'),
10278 (1,6,81,'Dodge'),
10279 (1,6,196,'One-Handed Axes'),
10280 (1,6,197,'Two-Handed Axes'),
10281 (1,6,200,'Polearms'),
10282 (1,6,201,'One-Handed Swords'),
10283 (1,6,202,'Two-Handed Swords'),
10284 (1,6,203,'Unarmed'),
10285 (1,6,204,'Defense'),
10286 (1,6,522,'SPELLDEFENSE (DND)'),
10287 (1,6,668,'Language Common'),
10288 (1,6,674,'Dual Wield'),
10289 (1,6,750,'Plate Mail'),
10290 (1,6,1843,'Disarm'),
10291 (1,6,2382,'Generic'),
10292 (1,6,2479,'Honorless Target'),
10293 (1,6,3050,'Detect'),
10294 (1,6,3127,'Parry'),
10295 (1,6,3275,'Linen Bandage'),
10296 (1,6,3276,'Heavy Linen Bandage'),
10297 (1,6,3277,'Wool Bandage'),
10298 (1,6,3278,'Heavy Wool Bandage'),
10299 (1,6,3365,'Opening'),
10300 (1,6,6233,'Closing'),
10301 (1,6,6246,'Closing'),
10302 (1,6,6247,'Opening'),
10303 (1,6,6477,'Opening'),
10304 (1,6,6478,'Opening'),
10305 (1,6,6603,'Attack'),
10306 (1,6,7266,'Duel'),
10307 (1,6,7267,'Grovel'),
10308 (1,6,7355,'Stuck'),
10309 (1,6,7928,'Silk Bandage'),
10310 (1,6,7929,'Heavy Silk Bandage'),
10311 (1,6,7934,'Anti-Venom'),
10312 (1,6,8386,'Attacking'),
10313 (1,6,8737,'Mail'),
10314 (1,6,9077,'Leather'),
10315 (1,6,9078,'Cloth'),
10316 (1,6,9125,'Generic'),
10317 (1,6,10840,'Mageweave Bandage'),
10318 (1,6,10841,'Heavy Mageweave Bandage'),
10319 (1,6,10846,'First Aid'),
10320 (1,6,18629,'Runecloth Bandage'),
10321 (1,6,18630,'Heavy Runecloth Bandage'),
10322 (1,6,20597,'Sword Specialization'),
10323 (1,6,20598,'The Human Spirit'),
10324 (1,6,20599,'Diplomacy'),
10325 (1,6,20864,'Mace Specialization'),
10326 (1,6,21651,'Opening'),
10327 (1,6,21652,'Closing'),
10328 (1,6,22027,'Remove Insignia'),
10329 (1,6,22810,'Opening - No Text'),
10330 (1,6,33391,'Journeyman Riding'),
10331 (1,6,45462,'Plague Strike'),
10332 (1,6,45477,'Icy Touch'),
10333 (1,6,45902,'Blood Strike'),
10334 (1,6,45903,'Offensive State (DND)'),
10335 (1,6,45927,'Summon Friend'),
10336 (1,6,47541,'Death Coil'),
10337 (1,6,48266,'Blood Presence'),
10338 (1,6,49410,'Forceful Deflection'),
10339 (1,6,49576,'Death Grip'),
10340 (1,6,52665,'Sigil'),
10341 (1,6,58985,'Perception'),
10342 (1,6,59752,'Every Man for Himself'),
10343 (1,6,59879,'Blood Plague'),
10344 (1,6,59921,'Frost Fever'),
10345 (1,6,61437,'Opening'),
10346 (1,6,61455,'Runic Focus'),
10347 (1,8,81,'Dodge'),
10348 (1,8,133,'Fireball'),
10349 (1,8,168,'Frost Armor'),
10350 (1,8,203,'Unarmed'),
10351 (1,8,204,'Defense'),
10352 (1,8,227,'Staves'),
10353 (1,8,522,'SPELLDEFENSE (DND)'),
10354 (1,8,668,'Language Common'),
10355 (1,8,1843,'Disarm'),
10356 (1,8,2382,'Generic'),
10357 (1,8,2479,'Honorless Target'),
10358 (1,8,3050,'Detect'),
10359 (1,8,3365,'Opening'),
10360 (1,8,5009,'Wands'),
10361 (1,8,5019,'Shoot'),
10362 (1,8,6233,'Closing'),
10363 (1,8,6246,'Closing'),
10364 (1,8,6247,'Opening'),
10365 (1,8,6477,'Opening'),
10366 (1,8,6478,'Opening'),
10367 (1,8,6603,'Attack'),
10368 (1,8,7266,'Duel'),
10369 (1,8,7267,'Grovel'),
10370 (1,8,7355,'Stuck'),
10371 (1,8,8386,'Attacking'),
10372 (1,8,9078,'Cloth'),
10373 (1,8,9125,'Generic'),
10374 (1,8,20597,'Sword Specialization'),
10375 (1,8,20598,'The Human Spirit'),
10376 (1,8,20599,'Diplomacy'),
10377 (1,8,20864,'Mace Specialization'),
10378 (1,8,21651,'Opening'),
10379 (1,8,21652,'Closing'),
10380 (1,8,22027,'Remove Insignia'),
10381 (1,8,22810,'Opening - No Text'),
10382 (1,8,45927,'Summon Friend'),
10383 (1,8,58985,'Perception'),
10384 (1,8,59752,'Every Man for Himself'),
10385 (1,8,61437,'Opening'),
10386 (1,9,81,'Dodge'),
10387 (1,9,203,'Unarmed'),
10388 (1,9,204,'Defense'),
10389 (1,9,522,'SPELLDEFENSE (DND)'),
10390 (1,9,668,'Language Common'),
10391 (1,9,686,'Shadow Bolt'),
10392 (1,9,687,'Demon Skin'),
10393 (1,9,1180,'Daggers'),
10394 (1,9,1843,'Disarm'),
10395 (1,9,2382,'Generic'),
10396 (1,9,2479,'Honorless Target'),
10397 (1,9,3050,'Detect'),
10398 (1,9,3365,'Opening'),
10399 (1,9,5009,'Wands'),
10400 (1,9,5019,'Shoot'),
10401 (1,9,6233,'Closing'),
10402 (1,9,6246,'Closing'),
10403 (1,9,6247,'Opening'),
10404 (1,9,6477,'Opening'),
10405 (1,9,6478,'Opening'),
10406 (1,9,6603,'Attack'),
10407 (1,9,7266,'Duel'),
10408 (1,9,7267,'Grovel'),
10409 (1,9,7355,'Stuck'),
10410 (1,9,8386,'Attacking'),
10411 (1,9,9078,'Cloth'),
10412 (1,9,9125,'Generic'),
10413 (1,9,20597,'Sword Specialization'),
10414 (1,9,20598,'The Human Spirit'),
10415 (1,9,20599,'Diplomacy'),
10416 (1,9,20864,'Mace Specialization'),
10417 (1,9,21651,'Opening'),
10418 (1,9,21652,'Closing'),
10419 (1,9,22027,'Remove Insignia'),
10420 (1,9,22810,'Opening - No Text'),
10421 (1,9,45927,'Summon Friend'),
10422 (1,9,58284,'Chaos Bolt Passive'),
10423 (1,9,58985,'Perception'),
10424 (1,9,59752,'Every Man for Himself'),
10425 (1,9,61437,'Opening'),
10426 (2,1,78,'Heroic Strike'),
10427 (2,1,81,'Dodge'),
10428 (2,1,107,'Block'),
10429 (2,1,196,'One-Handed Axes'),
10430 (2,1,197,'Two-Handed Axes'),
10431 (2,1,201,'One-Handed Swords'),
10432 (2,1,203,'Unarmed'),
10433 (2,1,204,'Defense'),
10434 (2,1,522,'SPELLDEFENSE (DND)'),
10435 (2,1,669,'Language Orcish'),
10436 (2,1,1843,'Disarm'),
10437 (2,1,2382,'Generic'),
10438 (2,1,2457,'Battle Stance'),
10439 (2,1,2479,'Honorless Target'),
10440 (2,1,3050,'Detect'),
10441 (2,1,3365,'Opening'),
10442 (2,1,5301,'Defensive State (DND)'),
10443 (2,1,6233,'Closing'),
10444 (2,1,6246,'Closing'),
10445 (2,1,6247,'Opening'),
10446 (2,1,6477,'Opening'),
10447 (2,1,6478,'Opening'),
10448 (2,1,6603,'Attack'),
10449 (2,1,7266,'Duel'),
10450 (2,1,7267,'Grovel'),
10451 (2,1,7355,'Stuck'),
10452 (2,1,8386,'Attacking'),
10453 (2,1,8737,'Mail'),
10454 (2,1,9077,'Leather'),
10455 (2,1,9078,'Cloth'),
10456 (2,1,9116,'Shield'),
10457 (2,1,9125,'Generic'),
10458 (2,1,20572,'Blood Fury'),
10459 (2,1,20573,'Hardiness'),
10460 (2,1,20574,'Axe Specialization'),
10461 (2,1,21563,'Command'),
10462 (2,1,21651,'Opening'),
10463 (2,1,21652,'Closing'),
10464 (2,1,22027,'Remove Insignia'),
10465 (2,1,22810,'Opening - No Text'),
10466 (2,1,32215,'Victorious State'),
10467 (2,1,45927,'Summon Friend'),
10468 (2,1,61437,'Opening'),
10469 (2,3,75,'Auto Shot'),
10470 (2,3,81,'Dodge'),
10471 (2,3,196,'One-Handed Axes'),
10472 (2,3,203,'Unarmed'),
10473 (2,3,204,'Defense'),
10474 (2,3,264,'Bows'),
10475 (2,3,522,'SPELLDEFENSE (DND)'),
10476 (2,3,669,'Language Orcish'),
10477 (2,3,1843,'Disarm'),
10478 (2,3,2382,'Generic'),
10479 (2,3,2479,'Honorless Target'),
10480 (2,3,2973,'Raptor Strike'),
10481 (2,3,3050,'Detect'),
10482 (2,3,3365,'Opening'),
10483 (2,3,6233,'Closing'),
10484 (2,3,6246,'Closing'),
10485 (2,3,6247,'Opening'),
10486 (2,3,6477,'Opening'),
10487 (2,3,6478,'Opening'),
10488 (2,3,6603,'Attack'),
10489 (2,3,7266,'Duel'),
10490 (2,3,7267,'Grovel'),
10491 (2,3,7355,'Stuck'),
10492 (2,3,8386,'Attacking'),
10493 (2,3,9077,'Leather'),
10494 (2,3,9078,'Cloth'),
10495 (2,3,9125,'Generic'),
10496 (2,3,13358,'Defensive State (DND)'),
10497 (2,3,20572,'Blood Fury'),
10498 (2,3,20573,'Hardiness'),
10499 (2,3,20574,'Axe Specialization'),
10500 (2,3,20576,'Command'),
10501 (2,3,21651,'Opening'),
10502 (2,3,21652,'Closing'),
10503 (2,3,22027,'Remove Insignia'),
10504 (2,3,22810,'Opening - No Text'),
10505 (2,3,24949,'Defensive State 2 (DND)'),
10506 (2,3,34082,'Advantaged State (DND)'),
10507 (2,3,45927,'Summon Friend'),
10508 (2,3,61437,'Opening'),
10509 (2,4,81,'Dodge'),
10510 (2,4,203,'Unarmed'),
10511 (2,4,204,'Defense'),
10512 (2,4,522,'SPELLDEFENSE (DND)'),
10513 (2,4,669,'Language Orcish'),
10514 (2,4,1180,'Daggers'),
10515 (2,4,1752,'Sinister Strike'),
10516 (2,4,1843,'Disarm'),
10517 (2,4,2098,'Eviscerate'),
10518 (2,4,2382,'Generic'),
10519 (2,4,2479,'Honorless Target'),
10520 (2,4,2567,'Thrown'),
10521 (2,4,2764,'Throw'),
10522 (2,4,3050,'Detect'),
10523 (2,4,3365,'Opening'),
10524 (2,4,6233,'Closing'),
10525 (2,4,6246,'Closing'),
10526 (2,4,6247,'Opening'),
10527 (2,4,6477,'Opening'),
10528 (2,4,6478,'Opening'),
10529 (2,4,6603,'Attack'),
10530 (2,4,7266,'Duel'),
10531 (2,4,7267,'Grovel'),
10532 (2,4,7355,'Stuck'),
10533 (2,4,8386,'Attacking'),
10534 (2,4,9077,'Leather'),
10535 (2,4,9078,'Cloth'),
10536 (2,4,9125,'Generic'),
10537 (2,4,16092,'Defensive State (DND)'),
10538 (2,4,20572,'Blood Fury'),
10539 (2,4,20573,'Hardiness'),
10540 (2,4,20574,'Axe Specialization'),
10541 (2,4,21184,'Rogue Passive (DND)'),
10542 (2,4,21563,'Command'),
10543 (2,4,21651,'Opening'),
10544 (2,4,21652,'Closing'),
10545 (2,4,22027,'Remove Insignia'),
10546 (2,4,22810,'Opening - No Text'),
10547 (2,4,45927,'Summon Friend'),
10548 (2,4,61437,'Opening'),
10549 (2,6,81,'Dodge'),
10550 (2,6,196,'One-Handed Axes'),
10551 (2,6,197,'Two-Handed Axes'),
10552 (2,6,200,'Polearms'),
10553 (2,6,201,'One-Handed Swords'),
10554 (2,6,202,'Two-Handed Swords'),
10555 (2,6,203,'Unarmed'),
10556 (2,6,204,'Defense'),
10557 (2,6,522,'SPELLDEFENSE (DND)'),
10558 (2,6,669,'Language Orcish'),
10559 (2,6,674,'Dual Wield'),
10560 (2,6,750,'Plate Mail'),
10561 (2,6,1843,'Disarm'),
10562 (2,6,2382,'Generic'),
10563 (2,6,2479,'Honorless Target'),
10564 (2,6,3050,'Detect'),
10565 (2,6,3127,'Parry'),
10566 (2,6,3275,'Linen Bandage'),
10567 (2,6,3276,'Heavy Linen Bandage'),
10568 (2,6,3277,'Wool Bandage'),
10569 (2,6,3278,'Heavy Wool Bandage'),
10570 (2,6,3365,'Opening'),
10571 (2,6,6233,'Closing'),
10572 (2,6,6246,'Closing'),
10573 (2,6,6247,'Opening'),
10574 (2,6,6477,'Opening'),
10575 (2,6,6478,'Opening'),
10576 (2,6,6603,'Attack'),
10577 (2,6,7266,'Duel'),
10578 (2,6,7267,'Grovel'),
10579 (2,6,7355,'Stuck'),
10580 (2,6,7928,'Silk Bandage'),
10581 (2,6,7929,'Heavy Silk Bandage'),
10582 (2,6,7934,'Anti-Venom'),
10583 (2,6,8386,'Attacking'),
10584 (2,6,8737,'Mail'),
10585 (2,6,9077,'Leather'),
10586 (2,6,9078,'Cloth'),
10587 (2,6,9125,'Generic'),
10588 (2,6,10840,'Mageweave Bandage'),
10589 (2,6,10841,'Heavy Mageweave Bandage'),
10590 (2,6,10846,'First Aid'),
10591 (2,6,18629,'Runecloth Bandage'),
10592 (2,6,18630,'Heavy Runecloth Bandage'),
10593 (2,6,20572,'Blood Fury'),
10594 (2,6,20573,'Hardiness'),
10595 (2,6,20574,'Axe Specialization'),
10596 (2,6,21651,'Opening'),
10597 (2,6,21652,'Closing'),
10598 (2,6,22027,'Remove Insignia'),
10599 (2,6,22810,'Opening - No Text'),
10600 (2,6,33391,'Journeyman Riding'),
10601 (2,6,45462,'Plague Strike'),
10602 (2,6,45477,'Icy Touch'),
10603 (2,6,45902,'Blood Strike'),
10604 (2,6,45903,'Offensive State (DND)'),
10605 (2,6,45927,'Summon Friend'),
10606 (2,6,47541,'Death Coil'),
10607 (2,6,48266,'Blood Presence'),
10608 (2,6,49410,'Forceful Deflection'),
10609 (2,6,49576,'Death Grip'),
10610 (2,6,52665,'Sigil'),
10611 (2,6,54562,'Command'),
10612 (2,6,59879,'Blood Plague'),
10613 (2,6,59921,'Frost Fever'),
10614 (2,6,61437,'Opening'),
10615 (2,6,61455,'Runic Focus'),
10616 (2,7,81,'Dodge'),
10617 (2,7,107,'Block'),
10618 (2,7,198,'One-Handed Maces'),
10619 (2,7,203,'Unarmed'),
10620 (2,7,204,'Defense'),
10621 (2,7,227,'Staves'),
10622 (2,7,331,'Healing Wave'),
10623 (2,7,403,'Lightning Bolt'),
10624 (2,7,522,'SPELLDEFENSE (DND)'),
10625 (2,7,669,'Language Orcish'),
10626 (2,7,1843,'Disarm'),
10627 (2,7,2382,'Generic'),
10628 (2,7,2479,'Honorless Target'),
10629 (2,7,3050,'Detect'),
10630 (2,7,3365,'Opening'),
10631 (2,7,6233,'Closing'),
10632 (2,7,6246,'Closing'),
10633 (2,7,6247,'Opening'),
10634 (2,7,6477,'Opening'),
10635 (2,7,6478,'Opening'),
10636 (2,7,6603,'Attack'),
10637 (2,7,7266,'Duel'),
10638 (2,7,7267,'Grovel'),
10639 (2,7,7355,'Stuck'),
10640 (2,7,8386,'Attacking'),
10641 (2,7,9077,'Leather'),
10642 (2,7,9078,'Cloth'),
10643 (2,7,9116,'Shield'),
10644 (2,7,9125,'Generic'),
10645 (2,7,20573,'Hardiness'),
10646 (2,7,20574,'Axe Specialization'),
10647 (2,7,21563,'Command'),
10648 (2,7,21651,'Opening'),
10649 (2,7,21652,'Closing'),
10650 (2,7,22027,'Remove Insignia'),
10651 (2,7,22810,'Opening - No Text'),
10652 (2,7,27763,'Totem'),
10653 (2,7,33697,'Blood Fury'),
10654 (2,7,45927,'Summon Friend'),
10655 (2,7,61437,'Opening'),
10656 (2,9,81,'Dodge'),
10657 (2,9,203,'Unarmed'),
10658 (2,9,204,'Defense'),
10659 (2,9,522,'SPELLDEFENSE (DND)'),
10660 (2,9,669,'Language Orcish'),
10661 (2,9,686,'Shadow Bolt'),
10662 (2,9,687,'Demon Skin'),
10663 (2,9,1180,'Daggers'),
10664 (2,9,1843,'Disarm'),
10665 (2,9,2382,'Generic'),
10666 (2,9,2479,'Honorless Target'),
10667 (2,9,3050,'Detect'),
10668 (2,9,3365,'Opening'),
10669 (2,9,5009,'Wands'),
10670 (2,9,5019,'Shoot'),
10671 (2,9,6233,'Closing'),
10672 (2,9,6246,'Closing'),
10673 (2,9,6247,'Opening'),
10674 (2,9,6477,'Opening'),
10675 (2,9,6478,'Opening'),
10676 (2,9,6603,'Attack'),
10677 (2,9,7266,'Duel'),
10678 (2,9,7267,'Grovel'),
10679 (2,9,7355,'Stuck'),
10680 (2,9,8386,'Attacking'),
10681 (2,9,9078,'Cloth'),
10682 (2,9,9125,'Generic'),
10683 (2,9,20573,'Hardiness'),
10684 (2,9,20574,'Axe Specialization'),
10685 (2,9,20575,'Command'),
10686 (2,9,21651,'Opening'),
10687 (2,9,21652,'Closing'),
10688 (2,9,22027,'Remove Insignia'),
10689 (2,9,22810,'Opening - No Text'),
10690 (2,9,33702,'Blood Fury'),
10691 (2,9,45927,'Summon Friend'),
10692 (2,9,58284,'Chaos Bolt Passive'),
10693 (2,9,61437,'Opening'),
10694 (3,1,78,'Heroic Strike'),
10695 (3,1,81,'Dodge'),
10696 (3,1,107,'Block'),
10697 (3,1,196,'One-Handed Axes'),
10698 (3,1,197,'Two-Handed Axes'),
10699 (3,1,198,'One-Handed Maces'),
10700 (3,1,203,'Unarmed'),
10701 (3,1,204,'Defense'),
10702 (3,1,522,'SPELLDEFENSE (DND)'),
10703 (3,1,668,'Language Common'),
10704 (3,1,672,'Language Dwarven'),
10705 (3,1,1843,'Disarm'),
10706 (3,1,2382,'Generic'),
10707 (3,1,2457,'Battle Stance'),
10708 (3,1,2479,'Honorless Target'),
10709 (3,1,2481,'Find Treasure'),
10710 (3,1,3050,'Detect'),
10711 (3,1,3365,'Opening'),
10712 (3,1,5301,'Defensive State (DND)'),
10713 (3,1,6233,'Closing'),
10714 (3,1,6246,'Closing'),
10715 (3,1,6247,'Opening'),
10716 (3,1,6477,'Opening'),
10717 (3,1,6478,'Opening'),
10718 (3,1,6603,'Attack'),
10719 (3,1,7266,'Duel'),
10720 (3,1,7267,'Grovel'),
10721 (3,1,7355,'Stuck'),
10722 (3,1,8386,'Attacking'),
10723 (3,1,8737,'Mail'),
10724 (3,1,9077,'Leather'),
10725 (3,1,9078,'Cloth'),
10726 (3,1,9116,'Shield'),
10727 (3,1,9125,'Generic'),
10728 (3,1,20594,'Stoneform'),
10729 (3,1,20595,'Gun Specialization'),
10730 (3,1,20596,'Frost Resistance'),
10731 (3,1,21651,'Opening'),
10732 (3,1,21652,'Closing'),
10733 (3,1,22027,'Remove Insignia'),
10734 (3,1,22810,'Opening - No Text'),
10735 (3,1,32215,'Victorious State'),
10736 (3,1,45927,'Summon Friend'),
10737 (3,1,59224,'Mace Specialization'),
10738 (3,1,61437,'Opening'),
10739 (3,2,81,'Dodge'),
10740 (3,2,107,'Block'),
10741 (3,2,198,'One-Handed Maces'),
10742 (3,2,199,'Two-Handed Maces'),
10743 (3,2,203,'Unarmed'),
10744 (3,2,204,'Defense'),
10745 (3,2,522,'SPELLDEFENSE (DND)'),
10746 (3,2,635,'Holy Light'),
10747 (3,2,668,'Language Common'),
10748 (3,2,672,'Language Dwarven'),
10749 (3,2,1843,'Disarm'),
10750 (3,2,2382,'Generic'),
10751 (3,2,2479,'Honorless Target'),
10752 (3,2,2481,'Find Treasure'),
10753 (3,2,3050,'Detect'),
10754 (3,2,3365,'Opening'),
10755 (3,2,6233,'Closing'),
10756 (3,2,6246,'Closing'),
10757 (3,2,6247,'Opening'),
10758 (3,2,6477,'Opening'),
10759 (3,2,6478,'Opening'),
10760 (3,2,6603,'Attack'),
10761 (3,2,7266,'Duel'),
10762 (3,2,7267,'Grovel'),
10763 (3,2,7355,'Stuck'),
10764 (3,2,8386,'Attacking'),
10765 (3,2,8737,'Mail'),
10766 (3,2,9077,'Leather'),
10767 (3,2,9078,'Cloth'),
10768 (3,2,9116,'Shield'),
10769 (3,2,9125,'Generic'),
10770 (3,2,20154,'Seal of Righteousness'),
10771 (3,2,20594,'Stoneform'),
10772 (3,2,20595,'Gun Specialization'),
10773 (3,2,20596,'Frost Resistance'),
10774 (3,2,21651,'Opening'),
10775 (3,2,21652,'Closing'),
10776 (3,2,22027,'Remove Insignia'),
10777 (3,2,22810,'Opening - No Text'),
10778 (3,2,27762,'Libram'),
10779 (3,2,45927,'Summon Friend'),
10780 (3,2,59224,'Mace Specialization'),
10781 (3,2,61437,'Opening'),
10782 (3,3,75,'Auto Shot'),
10783 (3,3,81,'Dodge'),
10784 (3,3,196,'One-Handed Axes'),
10785 (3,3,203,'Unarmed'),
10786 (3,3,204,'Defense'),
10787 (3,3,266,'Guns'),
10788 (3,3,522,'SPELLDEFENSE (DND)'),
10789 (3,3,668,'Language Common'),
10790 (3,3,672,'Language Dwarven'),
10791 (3,3,1843,'Disarm'),
10792 (3,3,2382,'Generic'),
10793 (3,3,2479,'Honorless Target'),
10794 (3,3,2481,'Find Treasure'),
10795 (3,3,2973,'Raptor Strike'),
10796 (3,3,3050,'Detect'),
10797 (3,3,3365,'Opening'),
10798 (3,3,6233,'Closing'),
10799 (3,3,6246,'Closing'),
10800 (3,3,6247,'Opening'),
10801 (3,3,6477,'Opening'),
10802 (3,3,6478,'Opening'),
10803 (3,3,6603,'Attack'),
10804 (3,3,7266,'Duel'),
10805 (3,3,7267,'Grovel'),
10806 (3,3,7355,'Stuck'),
10807 (3,3,8386,'Attacking'),
10808 (3,3,9077,'Leather'),
10809 (3,3,9078,'Cloth'),
10810 (3,3,9125,'Generic'),
10811 (3,3,13358,'Defensive State (DND)'),
10812 (3,3,20594,'Stoneform'),
10813 (3,3,20595,'Gun Specialization'),
10814 (3,3,20596,'Frost Resistance'),
10815 (3,3,21651,'Opening'),
10816 (3,3,21652,'Closing'),
10817 (3,3,22027,'Remove Insignia'),
10818 (3,3,22810,'Opening - No Text'),
10819 (3,3,24949,'Defensive State 2 (DND)'),
10820 (3,3,34082,'Advantaged State (DND)'),
10821 (3,3,45927,'Summon Friend'),
10822 (3,3,59224,'Mace Specialization'),
10823 (3,3,61437,'Opening'),
10824 (3,4,81,'Dodge'),
10825 (3,4,203,'Unarmed'),
10826 (3,4,204,'Defense'),
10827 (3,4,522,'SPELLDEFENSE (DND)'),
10828 (3,4,668,'Language Common'),
10829 (3,4,672,'Language Dwarven'),
10830 (3,4,1180,'Daggers'),
10831 (3,4,1752,'Sinister Strike'),
10832 (3,4,1843,'Disarm'),
10833 (3,4,2098,'Eviscerate'),
10834 (3,4,2382,'Generic'),
10835 (3,4,2479,'Honorless Target'),
10836 (3,4,2481,'Find Treasure'),
10837 (3,4,2567,'Thrown'),
10838 (3,4,2764,'Throw'),
10839 (3,4,3050,'Detect'),
10840 (3,4,3365,'Opening'),
10841 (3,4,6233,'Closing'),
10842 (3,4,6246,'Closing'),
10843 (3,4,6247,'Opening'),
10844 (3,4,6477,'Opening'),
10845 (3,4,6478,'Opening'),
10846 (3,4,6603,'Attack'),
10847 (3,4,7266,'Duel'),
10848 (3,4,7267,'Grovel'),
10849 (3,4,7355,'Stuck'),
10850 (3,4,8386,'Attacking'),
10851 (3,4,9077,'Leather'),
10852 (3,4,9078,'Cloth'),
10853 (3,4,9125,'Generic'),
10854 (3,4,16092,'Defensive State (DND)'),
10855 (3,4,20594,'Stoneform'),
10856 (3,4,20595,'Gun Specialization'),
10857 (3,4,20596,'Frost Resistance'),
10858 (3,4,21184,'Rogue Passive (DND)'),
10859 (3,4,21651,'Opening'),
10860 (3,4,21652,'Closing'),
10861 (3,4,22027,'Remove Insignia'),
10862 (3,4,22810,'Opening - No Text'),
10863 (3,4,45927,'Summon Friend'),
10864 (3,4,59224,'Mace Specialization'),
10865 (3,4,61437,'Opening'),
10866 (3,5,81,'Dodge'),
10867 (3,5,198,'One-Handed Maces'),
10868 (3,5,203,'Unarmed'),
10869 (3,5,204,'Defense'),
10870 (3,5,522,'SPELLDEFENSE (DND)'),
10871 (3,5,585,'Smite'),
10872 (3,5,668,'Language Common'),
10873 (3,5,672,'Language Dwarven'),
10874 (3,5,1843,'Disarm'),
10875 (3,5,2050,'Lesser Heal'),
10876 (3,5,2382,'Generic'),
10877 (3,5,2479,'Honorless Target'),
10878 (3,5,2481,'Find Treasure'),
10879 (3,5,3050,'Detect'),
10880 (3,5,3365,'Opening'),
10881 (3,5,5009,'Wands'),
10882 (3,5,5019,'Shoot'),
10883 (3,5,6233,'Closing'),
10884 (3,5,6246,'Closing'),
10885 (3,5,6247,'Opening'),
10886 (3,5,6477,'Opening'),
10887 (3,5,6478,'Opening'),
10888 (3,5,6603,'Attack'),
10889 (3,5,7266,'Duel'),
10890 (3,5,7267,'Grovel'),
10891 (3,5,7355,'Stuck'),
10892 (3,5,8386,'Attacking'),
10893 (3,5,9078,'Cloth'),
10894 (3,5,9125,'Generic'),
10895 (3,5,20594,'Stoneform'),
10896 (3,5,20595,'Gun Specialization'),
10897 (3,5,20596,'Frost Resistance'),
10898 (3,5,21651,'Opening'),
10899 (3,5,21652,'Closing'),
10900 (3,5,22027,'Remove Insignia'),
10901 (3,5,22810,'Opening - No Text'),
10902 (3,5,45927,'Summon Friend'),
10903 (3,5,59224,'Mace Specialization'),
10904 (3,5,61437,'Opening'),
10905 (3,6,81,'Dodge'),
10906 (3,6,196,'One-Handed Axes'),
10907 (3,6,197,'Two-Handed Axes'),
10908 (3,6,200,'Polearms'),
10909 (3,6,201,'One-Handed Swords'),
10910 (3,6,202,'Two-Handed Swords'),
10911 (3,6,203,'Unarmed'),
10912 (3,6,204,'Defense'),
10913 (3,6,522,'SPELLDEFENSE (DND)'),
10914 (3,6,668,'Language Common'),
10915 (3,6,672,'Language Dwarven'),
10916 (3,6,674,'Dual Wield'),
10917 (3,6,750,'Plate Mail'),
10918 (3,6,1843,'Disarm'),
10919 (3,6,2382,'Generic'),
10920 (3,6,2479,'Honorless Target'),
10921 (3,6,2481,'Find Treasure'),
10922 (3,6,3050,'Detect'),
10923 (3,6,3127,'Parry'),
10924 (3,6,3275,'Linen Bandage'),
10925 (3,6,3276,'Heavy Linen Bandage'),
10926 (3,6,3277,'Wool Bandage'),
10927 (3,6,3278,'Heavy Wool Bandage'),
10928 (3,6,3365,'Opening'),
10929 (3,6,6233,'Closing'),
10930 (3,6,6246,'Closing'),
10931 (3,6,6247,'Opening'),
10932 (3,6,6477,'Opening'),
10933 (3,6,6478,'Opening'),
10934 (3,6,6603,'Attack'),
10935 (3,6,7266,'Duel'),
10936 (3,6,7267,'Grovel'),
10937 (3,6,7355,'Stuck'),
10938 (3,6,7928,'Silk Bandage'),
10939 (3,6,7929,'Heavy Silk Bandage'),
10940 (3,6,7934,'Anti-Venom'),
10941 (3,6,8386,'Attacking'),
10942 (3,6,8737,'Mail'),
10943 (3,6,9077,'Leather'),
10944 (3,6,9078,'Cloth'),
10945 (3,6,9125,'Generic'),
10946 (3,6,10840,'Mageweave Bandage'),
10947 (3,6,10841,'Heavy Mageweave Bandage'),
10948 (3,6,10846,'First Aid'),
10949 (3,6,18629,'Runecloth Bandage'),
10950 (3,6,18630,'Heavy Runecloth Bandage'),
10951 (3,6,20594,'Stoneform'),
10952 (3,6,20595,'Gun Specialization'),
10953 (3,6,20596,'Frost Resistance'),
10954 (3,6,21651,'Opening'),
10955 (3,6,21652,'Closing'),
10956 (3,6,22027,'Remove Insignia'),
10957 (3,6,22810,'Opening - No Text'),
10958 (3,6,33391,'Journeyman Riding'),
10959 (3,6,45462,'Plague Strike'),
10960 (3,6,45477,'Icy Touch'),
10961 (3,6,45902,'Blood Strike'),
10962 (3,6,45903,'Offensive State (DND)'),
10963 (3,6,45927,'Summon Friend'),
10964 (3,6,47541,'Death Coil'),
10965 (3,6,48266,'Blood Presence'),
10966 (3,6,49410,'Forceful Deflection'),
10967 (3,6,49576,'Death Grip'),
10968 (3,6,52665,'Sigil'),
10969 (3,6,59224,'Mace Specialization'),
10970 (3,6,59879,'Blood Plague'),
10971 (3,6,59921,'Frost Fever'),
10972 (3,6,61437,'Opening'),
10973 (3,6,61455,'Runic Focus'),
10974 (4,1,78,'Heroic Strike'),
10975 (4,1,81,'Dodge'),
10976 (4,1,107,'Block'),
10977 (4,1,198,'One-Handed Maces'),
10978 (4,1,201,'One-Handed Swords'),
10979 (4,1,203,'Unarmed'),
10980 (4,1,204,'Defense'),
10981 (4,1,522,'SPELLDEFENSE (DND)'),
10982 (4,1,668,'Language Common'),
10983 (4,1,671,'Language Darnassian'),
10984 (4,1,1180,'Daggers'),
10985 (4,1,1843,'Disarm'),
10986 (4,1,2382,'Generic'),
10987 (4,1,2457,'Battle Stance'),
10988 (4,1,2479,'Honorless Target'),
10989 (4,1,3050,'Detect'),
10990 (4,1,3365,'Opening'),
10991 (4,1,5301,'Defensive State (DND)'),
10992 (4,1,6233,'Closing'),
10993 (4,1,6246,'Closing'),
10994 (4,1,6247,'Opening'),
10995 (4,1,6477,'Opening'),
10996 (4,1,6478,'Opening'),
10997 (4,1,6603,'Attack'),
10998 (4,1,7266,'Duel'),
10999 (4,1,7267,'Grovel'),
11000 (4,1,7355,'Stuck'),
11001 (4,1,8386,'Attacking'),
11002 (4,1,8737,'Mail'),
11003 (4,1,9077,'Leather'),
11004 (4,1,9078,'Cloth'),
11005 (4,1,9116,'Shield'),
11006 (4,1,9125,'Generic'),
11007 (4,1,20582,'Quickness'),
11008 (4,1,20583,'Nature Resistance'),
11009 (4,1,20585,'Wisp Spirit'),
11010 (4,1,21651,'Opening'),
11011 (4,1,21652,'Closing'),
11012 (4,1,22027,'Remove Insignia'),
11013 (4,1,22810,'Opening - No Text'),
11014 (4,1,32215,'Victorious State'),
11015 (4,1,45927,'Summon Friend'),
11016 (4,1,58984,'Shadowmelt'),
11017 (4,1,61437,'Opening'),
11018 (4,3,75,'Auto Shot'),
11019 (4,3,81,'Dodge'),
11020 (4,3,203,'Unarmed'),
11021 (4,3,204,'Defense'),
11022 (4,3,264,'Bows'),
11023 (4,3,522,'SPELLDEFENSE (DND)'),
11024 (4,3,668,'Language Common'),
11025 (4,3,671,'Language Darnassian'),
11026 (4,3,1180,'Daggers'),
11027 (4,3,1843,'Disarm'),
11028 (4,3,2382,'Generic'),
11029 (4,3,2479,'Honorless Target'),
11030 (4,3,2973,'Raptor Strike'),
11031 (4,3,3050,'Detect'),
11032 (4,3,3365,'Opening'),
11033 (4,3,6233,'Closing'),
11034 (4,3,6246,'Closing'),
11035 (4,3,6247,'Opening'),
11036 (4,3,6477,'Opening'),
11037 (4,3,6478,'Opening'),
11038 (4,3,6603,'Attack'),
11039 (4,3,7266,'Duel'),
11040 (4,3,7267,'Grovel'),
11041 (4,3,7355,'Stuck'),
11042 (4,3,8386,'Attacking'),
11043 (4,3,9077,'Leather'),
11044 (4,3,9078,'Cloth'),
11045 (4,3,9125,'Generic'),
11046 (4,3,13358,'Defensive State (DND)'),
11047 (4,3,20582,'Quickness'),
11048 (4,3,20583,'Nature Resistance'),
11049 (4,3,20585,'Wisp Spirit'),
11050 (4,3,21651,'Opening'),
11051 (4,3,21652,'Closing'),
11052 (4,3,22027,'Remove Insignia'),
11053 (4,3,22810,'Opening - No Text'),
11054 (4,3,24949,'Defensive State 2 (DND)'),
11055 (4,3,34082,'Advantaged State (DND)'),
11056 (4,3,45927,'Summon Friend'),
11057 (4,3,58984,'Shadowmelt'),
11058 (4,3,61437,'Opening'),
11059 (4,4,81,'Dodge'),
11060 (4,4,203,'Unarmed'),
11061 (4,4,204,'Defense'),
11062 (4,4,522,'SPELLDEFENSE (DND)'),
11063 (4,4,668,'Language Common'),
11064 (4,4,671,'Language Darnassian'),
11065 (4,4,1180,'Daggers'),
11066 (4,4,1752,'Sinister Strike'),
11067 (4,4,1843,'Disarm'),
11068 (4,4,2098,'Eviscerate'),
11069 (4,4,2382,'Generic'),
11070 (4,4,2479,'Honorless Target'),
11071 (4,4,2567,'Thrown'),
11072 (4,4,2764,'Throw'),
11073 (4,4,3050,'Detect'),
11074 (4,4,3365,'Opening'),
11075 (4,4,6233,'Closing'),
11076 (4,4,6246,'Closing'),
11077 (4,4,6247,'Opening'),
11078 (4,4,6477,'Opening'),
11079 (4,4,6478,'Opening'),
11080 (4,4,6603,'Attack'),
11081 (4,4,7266,'Duel'),
11082 (4,4,7267,'Grovel'),
11083 (4,4,7355,'Stuck'),
11084 (4,4,8386,'Attacking'),
11085 (4,4,9077,'Leather'),
11086 (4,4,9078,'Cloth'),
11087 (4,4,9125,'Generic'),
11088 (4,4,16092,'Defensive State (DND)'),
11089 (4,4,20582,'Quickness'),
11090 (4,4,20583,'Nature Resistance'),
11091 (4,4,20585,'Wisp Spirit'),
11092 (4,4,21184,'Rogue Passive (DND)'),
11093 (4,4,21651,'Opening'),
11094 (4,4,21652,'Closing'),
11095 (4,4,22027,'Remove Insignia'),
11096 (4,4,22810,'Opening - No Text'),
11097 (4,4,45927,'Summon Friend'),
11098 (4,4,58984,'Shadowmelt'),
11099 (4,4,61437,'Opening'),
11100 (4,5,81,'Dodge'),
11101 (4,5,198,'One-Handed Maces'),
11102 (4,5,203,'Unarmed'),
11103 (4,5,204,'Defense'),
11104 (4,5,522,'SPELLDEFENSE (DND)'),
11105 (4,5,585,'Smite'),
11106 (4,5,668,'Language Common'),
11107 (4,5,671,'Language Darnassian'),
11108 (4,5,1843,'Disarm'),
11109 (4,5,2050,'Lesser Heal'),
11110 (4,5,2382,'Generic'),
11111 (4,5,2479,'Honorless Target'),
11112 (4,5,3050,'Detect'),
11113 (4,5,3365,'Opening'),
11114 (4,5,5009,'Wands'),
11115 (4,5,5019,'Shoot'),
11116 (4,5,6233,'Closing'),
11117 (4,5,6246,'Closing'),
11118 (4,5,6247,'Opening'),
11119 (4,5,6477,'Opening'),
11120 (4,5,6478,'Opening'),
11121 (4,5,6603,'Attack'),
11122 (4,5,7266,'Duel'),
11123 (4,5,7267,'Grovel'),
11124 (4,5,7355,'Stuck'),
11125 (4,5,8386,'Attacking'),
11126 (4,5,9078,'Cloth'),
11127 (4,5,9125,'Generic'),
11128 (4,5,20582,'Quickness'),
11129 (4,5,20583,'Nature Resistance'),
11130 (4,5,20585,'Wisp Spirit'),
11131 (4,5,21651,'Opening'),
11132 (4,5,21652,'Closing'),
11133 (4,5,22027,'Remove Insignia'),
11134 (4,5,22810,'Opening - No Text'),
11135 (4,5,45927,'Summon Friend'),
11136 (4,5,58984,'Shadowmelt'),
11137 (4,5,61437,'Opening'),
11138 (4,6,81,'Dodge'),
11139 (4,6,196,'One-Handed Axes'),
11140 (4,6,197,'Two-Handed Axes'),
11141 (4,6,200,'Polearms'),
11142 (4,6,201,'One-Handed Swords'),
11143 (4,6,202,'Two-Handed Swords'),
11144 (4,6,203,'Unarmed'),
11145 (4,6,204,'Defense'),
11146 (4,6,522,'SPELLDEFENSE (DND)'),
11147 (4,6,668,'Language Common'),
11148 (4,6,671,'Language Darnassian'),
11149 (4,6,674,'Dual Wield'),
11150 (4,6,750,'Plate Mail'),
11151 (4,6,1843,'Disarm'),
11152 (4,6,2382,'Generic'),
11153 (4,6,2479,'Honorless Target'),
11154 (4,6,3050,'Detect'),
11155 (4,6,3127,'Parry'),
11156 (4,6,3275,'Linen Bandage'),
11157 (4,6,3276,'Heavy Linen Bandage'),
11158 (4,6,3277,'Wool Bandage'),
11159 (4,6,3278,'Heavy Wool Bandage'),
11160 (4,6,3365,'Opening'),
11161 (4,6,6233,'Closing'),
11162 (4,6,6246,'Closing'),
11163 (4,6,6247,'Opening'),
11164 (4,6,6477,'Opening'),
11165 (4,6,6478,'Opening'),
11166 (4,6,6603,'Attack'),
11167 (4,6,7266,'Duel'),
11168 (4,6,7267,'Grovel'),
11169 (4,6,7355,'Stuck'),
11170 (4,6,7928,'Silk Bandage'),
11171 (4,6,7929,'Heavy Silk Bandage'),
11172 (4,6,7934,'Anti-Venom'),
11173 (4,6,8386,'Attacking'),
11174 (4,6,8737,'Mail'),
11175 (4,6,9077,'Leather'),
11176 (4,6,9078,'Cloth'),
11177 (4,6,9125,'Generic'),
11178 (4,6,10840,'Mageweave Bandage'),
11179 (4,6,10841,'Heavy Mageweave Bandage'),
11180 (4,6,10846,'First Aid'),
11181 (4,6,18629,'Runecloth Bandage'),
11182 (4,6,18630,'Heavy Runecloth Bandage'),
11183 (4,6,20582,'Quickness'),
11184 (4,6,20583,'Nature Resistance'),
11185 (4,6,20585,'Wisp Spirit'),
11186 (4,6,21651,'Opening'),
11187 (4,6,21652,'Closing'),
11188 (4,6,22027,'Remove Insignia'),
11189 (4,6,22810,'Opening - No Text'),
11190 (4,6,33391,'Journeyman Riding'),
11191 (4,6,45462,'Plague Strike'),
11192 (4,6,45477,'Icy Touch'),
11193 (4,6,45902,'Blood Strike'),
11194 (4,6,45903,'Offensive State (DND)'),
11195 (4,6,45927,'Summon Friend'),
11196 (4,6,47541,'Death Coil'),
11197 (4,6,48266,'Blood Presence'),
11198 (4,6,49410,'Forceful Deflection'),
11199 (4,6,49576,'Death Grip'),
11200 (4,6,52665,'Sigil'),
11201 (4,6,58984,'Shadowmeld'),
11202 (4,6,59879,'Blood Plague'),
11203 (4,6,59921,'Frost Fever'),
11204 (4,6,61437,'Opening'),
11205 (4,6,61455,'Runic Focus'),
11206 (4,11,81,'Dodge'),
11207 (4,11,203,'Unarmed'),
11208 (4,11,204,'Defense'),
11209 (4,11,227,'Staves'),
11210 (4,11,522,'SPELLDEFENSE (DND)'),
11211 (4,11,668,'Language Common'),
11212 (4,11,671,'Language Darnassian'),
11213 (4,11,1180,'Daggers'),
11214 (4,11,1843,'Disarm'),
11215 (4,11,2382,'Generic'),
11216 (4,11,2479,'Honorless Target'),
11217 (4,11,3050,'Detect'),
11218 (4,11,3365,'Opening'),
11219 (4,11,5176,'Wrath'),
11220 (4,11,5185,'Healing Touch'),
11221 (4,11,6233,'Closing'),
11222 (4,11,6246,'Closing'),
11223 (4,11,6247,'Opening'),
11224 (4,11,6477,'Opening'),
11225 (4,11,6478,'Opening'),
11226 (4,11,6603,'Attack'),
11227 (4,11,7266,'Duel'),
11228 (4,11,7267,'Grovel'),
11229 (4,11,7355,'Stuck'),
11230 (4,11,8386,'Attacking'),
11231 (4,11,9077,'Leather'),
11232 (4,11,9078,'Cloth'),
11233 (4,11,9125,'Generic'),
11234 (4,11,20582,'Quickness'),
11235 (4,11,20583,'Nature Resistance'),
11236 (4,11,20585,'Wisp Spirit'),
11237 (4,11,21651,'Opening'),
11238 (4,11,21652,'Closing'),
11239 (4,11,22027,'Remove Insignia'),
11240 (4,11,22810,'Opening - No Text'),
11241 (4,11,27764,'Fetish'),
11242 (4,11,45927,'Summon Friend'),
11243 (4,11,58984,'Shadowmelt'),
11244 (4,11,61437,'Opening'),
11245 (5,1,78,'Heroic Strike'),
11246 (5,1,81,'Dodge'),
11247 (5,1,107,'Block'),
11248 (5,1,201,'One-Handed Swords'),
11249 (5,1,202,'Two-Handed Swords'),
11250 (5,1,203,'Unarmed'),
11251 (5,1,204,'Defense'),
11252 (5,1,522,'SPELLDEFENSE (DND)'),
11253 (5,1,669,'Language Orcish'),
11254 (5,1,1180,'Daggers'),
11255 (5,1,1843,'Disarm'),
11256 (5,1,2382,'Generic'),
11257 (5,1,2457,'Battle Stance'),
11258 (5,1,2479,'Honorless Target'),
11259 (5,1,3050,'Detect'),
11260 (5,1,3365,'Opening'),
11261 (5,1,5227,'Underwater Breathing'),
11262 (5,1,5301,'Defensive State (DND)'),
11263 (5,1,6233,'Closing'),
11264 (5,1,6246,'Closing'),
11265 (5,1,6247,'Opening'),
11266 (5,1,6477,'Opening'),
11267 (5,1,6478,'Opening'),
11268 (5,1,6603,'Attack'),
11269 (5,1,7266,'Duel'),
11270 (5,1,7267,'Grovel'),
11271 (5,1,7355,'Stuck'),
11272 (5,1,7744,'Will of the Forsaken'),
11273 (5,1,8386,'Attacking'),
11274 (5,1,8737,'Mail'),
11275 (5,1,9077,'Leather'),
11276 (5,1,9078,'Cloth'),
11277 (5,1,9116,'Shield'),
11278 (5,1,9125,'Generic'),
11279 (5,1,17737,'Language Gutterspeak'),
11280 (5,1,20577,'Cannibalize'),
11281 (5,1,20579,'Shadow Resistance'),
11282 (5,1,21651,'Opening'),
11283 (5,1,21652,'Closing'),
11284 (5,1,22027,'Remove Insignia'),
11285 (5,1,22810,'Opening - No Text'),
11286 (5,1,32215,'Victorious State'),
11287 (5,1,45927,'Summon Friend'),
11288 (5,1,61437,'Opening'),
11289 (5,4,81,'Dodge'),
11290 (5,4,203,'Unarmed'),
11291 (5,4,204,'Defense'),
11292 (5,4,522,'SPELLDEFENSE (DND)'),
11293 (5,4,669,'Language Orcish'),
11294 (5,4,1180,'Daggers'),
11295 (5,4,1752,'Sinister Strike'),
11296 (5,4,1843,'Disarm'),
11297 (5,4,2098,'Eviscerate'),
11298 (5,4,2382,'Generic'),
11299 (5,4,2479,'Honorless Target'),
11300 (5,4,2567,'Thrown'),
11301 (5,4,2764,'Throw'),
11302 (5,4,3050,'Detect'),
11303 (5,4,3365,'Opening'),
11304 (5,4,5227,'Underwater Breathing'),
11305 (5,4,6233,'Closing'),
11306 (5,4,6246,'Closing'),
11307 (5,4,6247,'Opening'),
11308 (5,4,6477,'Opening'),
11309 (5,4,6478,'Opening'),
11310 (5,4,6603,'Attack'),
11311 (5,4,7266,'Duel'),
11312 (5,4,7267,'Grovel'),
11313 (5,4,7355,'Stuck'),
11314 (5,4,7744,'Will of the Forsaken'),
11315 (5,4,8386,'Attacking'),
11316 (5,4,9077,'Leather'),
11317 (5,4,9078,'Cloth'),
11318 (5,4,9125,'Generic'),
11319 (5,4,16092,'Defensive State (DND)'),
11320 (5,4,17737,'Language Gutterspeak'),
11321 (5,4,20577,'Cannibalize'),
11322 (5,4,20579,'Shadow Resistance'),
11323 (5,4,21184,'Rogue Passive (DND)'),
11324 (5,4,21651,'Opening'),
11325 (5,4,21652,'Closing'),
11326 (5,4,22027,'Remove Insignia'),
11327 (5,4,22810,'Opening - No Text'),
11328 (5,4,45927,'Summon Friend'),
11329 (5,4,61437,'Opening'),
11330 (5,5,81,'Dodge'),
11331 (5,5,198,'One-Handed Maces'),
11332 (5,5,203,'Unarmed'),
11333 (5,5,204,'Defense'),
11334 (5,5,522,'SPELLDEFENSE (DND)'),
11335 (5,5,585,'Smite'),
11336 (5,5,669,'Language Orcish'),
11337 (5,5,1843,'Disarm'),
11338 (5,5,2050,'Lesser Heal'),
11339 (5,5,2382,'Generic'),
11340 (5,5,2479,'Honorless Target'),
11341 (5,5,3050,'Detect'),
11342 (5,5,3365,'Opening'),
11343 (5,5,5009,'Wands'),
11344 (5,5,5019,'Shoot'),
11345 (5,5,5227,'Underwater Breathing'),
11346 (5,5,6233,'Closing'),
11347 (5,5,6246,'Closing'),
11348 (5,5,6247,'Opening'),
11349 (5,5,6477,'Opening'),
11350 (5,5,6478,'Opening'),
11351 (5,5,6603,'Attack'),
11352 (5,5,7266,'Duel'),
11353 (5,5,7267,'Grovel'),
11354 (5,5,7355,'Stuck'),
11355 (5,5,7744,'Will of the Forsaken'),
11356 (5,5,8386,'Attacking'),
11357 (5,5,9078,'Cloth'),
11358 (5,5,9125,'Generic'),
11359 (5,5,17737,'Language Gutterspeak'),
11360 (5,5,20577,'Cannibalize'),
11361 (5,5,20579,'Shadow Resistance'),
11362 (5,5,21651,'Opening'),
11363 (5,5,21652,'Closing'),
11364 (5,5,22027,'Remove Insignia'),
11365 (5,5,22810,'Opening - No Text'),
11366 (5,5,45927,'Summon Friend'),
11367 (5,5,61437,'Opening'),
11368 (5,6,81,'Dodge'),
11369 (5,6,196,'One-Handed Axes'),
11370 (5,6,197,'Two-Handed Axes'),
11371 (5,6,200,'Polearms'),
11372 (5,6,201,'One-Handed Swords'),
11373 (5,6,202,'Two-Handed Swords'),
11374 (5,6,203,'Unarmed'),
11375 (5,6,204,'Defense'),
11376 (5,6,522,'SPELLDEFENSE (DND)'),
11377 (5,6,669,'Language Orcish'),
11378 (5,6,674,'Dual Wield'),
11379 (5,6,750,'Plate Mail'),
11380 (5,6,1843,'Disarm'),
11381 (5,6,2382,'Generic'),
11382 (5,6,2479,'Honorless Target'),
11383 (5,6,3050,'Detect'),
11384 (5,6,3127,'Parry'),
11385 (5,6,3275,'Linen Bandage'),
11386 (5,6,3276,'Heavy Linen Bandage'),
11387 (5,6,3277,'Wool Bandage'),
11388 (5,6,3278,'Heavy Wool Bandage'),
11389 (5,6,3365,'Opening'),
11390 (5,6,5227,'Underwater Breathing'),
11391 (5,6,6233,'Closing'),
11392 (5,6,6246,'Closing'),
11393 (5,6,6247,'Opening'),
11394 (5,6,6477,'Opening'),
11395 (5,6,6478,'Opening'),
11396 (5,6,6603,'Attack'),
11397 (5,6,7266,'Duel'),
11398 (5,6,7267,'Grovel'),
11399 (5,6,7355,'Stuck'),
11400 (5,6,7744,'Will of the Forsaken'),
11401 (5,6,7928,'Silk Bandage'),
11402 (5,6,7929,'Heavy Silk Bandage'),
11403 (5,6,7934,'Anti-Venom'),
11404 (5,6,8386,'Attacking'),
11405 (5,6,8737,'Mail'),
11406 (5,6,9077,'Leather'),
11407 (5,6,9078,'Cloth'),
11408 (5,6,9125,'Generic'),
11409 (5,6,10840,'Mageweave Bandage'),
11410 (5,6,10841,'Heavy Mageweave Bandage'),
11411 (5,6,10846,'First Aid'),
11412 (5,6,17737,'Language Gutterspeak'),
11413 (5,6,18629,'Runecloth Bandage'),
11414 (5,6,18630,'Heavy Runecloth Bandage'),
11415 (5,6,20577,'Cannibalize'),
11416 (5,6,20579,'Shadow Resistance'),
11417 (5,6,21651,'Opening'),
11418 (5,6,21652,'Closing'),
11419 (5,6,22027,'Remove Insignia'),
11420 (5,6,22810,'Opening - No Text'),
11421 (5,6,33391,'Journeyman Riding'),
11422 (5,6,45462,'Plague Strike'),
11423 (5,6,45477,'Icy Touch'),
11424 (5,6,45902,'Blood Strike'),
11425 (5,6,45903,'Offensive State (DND)'),
11426 (5,6,45927,'Summon Friend'),
11427 (5,6,47541,'Death Coil'),
11428 (5,6,48266,'Blood Presence'),
11429 (5,6,49410,'Forceful Deflection'),
11430 (5,6,49576,'Death Grip'),
11431 (5,6,52665,'Sigil'),
11432 (5,6,59879,'Blood Plague'),
11433 (5,6,59921,'Frost Fever'),
11434 (5,6,61437,'Opening'),
11435 (5,6,61455,'Runic Focus'),
11436 (5,8,81,'Dodge'),
11437 (5,8,133,'Fireball'),
11438 (5,8,168,'Frost Armor'),
11439 (5,8,203,'Unarmed'),
11440 (5,8,204,'Defense'),
11441 (5,8,227,'Staves'),
11442 (5,8,522,'SPELLDEFENSE (DND)'),
11443 (5,8,669,'Language Orcish'),
11444 (5,8,1843,'Disarm'),
11445 (5,8,2382,'Generic'),
11446 (5,8,2479,'Honorless Target'),
11447 (5,8,3050,'Detect'),
11448 (5,8,3365,'Opening'),
11449 (5,8,5009,'Wands'),
11450 (5,8,5019,'Shoot'),
11451 (5,8,5227,'Underwater Breathing'),
11452 (5,8,6233,'Closing'),
11453 (5,8,6246,'Closing'),
11454 (5,8,6247,'Opening'),
11455 (5,8,6477,'Opening'),
11456 (5,8,6478,'Opening'),
11457 (5,8,6603,'Attack'),
11458 (5,8,7266,'Duel'),
11459 (5,8,7267,'Grovel'),
11460 (5,8,7355,'Stuck'),
11461 (5,8,7744,'Will of the Forsaken'),
11462 (5,8,8386,'Attacking'),
11463 (5,8,9078,'Cloth'),
11464 (5,8,9125,'Generic'),
11465 (5,8,17737,'Language Gutterspeak'),
11466 (5,8,20577,'Cannibalize'),
11467 (5,8,20579,'Shadow Resistance'),
11468 (5,8,21651,'Opening'),
11469 (5,8,21652,'Closing'),
11470 (5,8,22027,'Remove Insignia'),
11471 (5,8,22810,'Opening - No Text'),
11472 (5,8,45927,'Summon Friend'),
11473 (5,8,61437,'Opening'),
11474 (5,9,81,'Dodge'),
11475 (5,9,203,'Unarmed'),
11476 (5,9,204,'Defense'),
11477 (5,9,522,'SPELLDEFENSE (DND)'),
11478 (5,9,669,'Language Orcish'),
11479 (5,9,686,'Shadow Bolt'),
11480 (5,9,687,'Demon Skin'),
11481 (5,9,1180,'Daggers'),
11482 (5,9,1843,'Disarm'),
11483 (5,9,2382,'Generic'),
11484 (5,9,2479,'Honorless Target'),
11485 (5,9,3050,'Detect'),
11486 (5,9,3365,'Opening'),
11487 (5,9,5009,'Wands'),
11488 (5,9,5019,'Shoot'),
11489 (5,9,5227,'Underwater Breathing'),
11490 (5,9,6233,'Closing'),
11491 (5,9,6246,'Closing'),
11492 (5,9,6247,'Opening'),
11493 (5,9,6477,'Opening'),
11494 (5,9,6478,'Opening'),
11495 (5,9,6603,'Attack'),
11496 (5,9,7266,'Duel'),
11497 (5,9,7267,'Grovel'),
11498 (5,9,7355,'Stuck'),
11499 (5,9,7744,'Will of the Forsaken'),
11500 (5,9,8386,'Attacking'),
11501 (5,9,9078,'Cloth'),
11502 (5,9,9125,'Generic'),
11503 (5,9,17737,'Language Gutterspeak'),
11504 (5,9,20577,'Cannibalize'),
11505 (5,9,20579,'Shadow Resistance'),
11506 (5,9,21651,'Opening'),
11507 (5,9,21652,'Closing'),
11508 (5,9,22027,'Remove Insignia'),
11509 (5,9,22810,'Opening - No Text'),
11510 (5,9,45927,'Summon Friend'),
11511 (5,9,58284,'Chaos Bolt Passive'),
11512 (5,9,61437,'Opening'),
11513 (6,1,78,'Heroic Strike'),
11514 (6,1,81,'Dodge'),
11515 (6,1,107,'Block'),
11516 (6,1,196,'One-Handed Axes'),
11517 (6,1,198,'One-Handed Maces'),
11518 (6,1,199,'Two-Handed Maces'),
11519 (6,1,203,'Unarmed'),
11520 (6,1,204,'Defense'),
11521 (6,1,522,'SPELLDEFENSE (DND)'),
11522 (6,1,669,'Language Orcish'),
11523 (6,1,670,'Language Taurahe'),
11524 (6,1,1843,'Disarm'),
11525 (6,1,2382,'Generic'),
11526 (6,1,2457,'Battle Stance'),
11527 (6,1,2479,'Honorless Target'),
11528 (6,1,3050,'Detect'),
11529 (6,1,3365,'Opening'),
11530 (6,1,5301,'Defensive State (DND)'),
11531 (6,1,6233,'Closing'),
11532 (6,1,6246,'Closing'),
11533 (6,1,6247,'Opening'),
11534 (6,1,6477,'Opening'),
11535 (6,1,6478,'Opening'),
11536 (6,1,6603,'Attack'),
11537 (6,1,7266,'Duel'),
11538 (6,1,7267,'Grovel'),
11539 (6,1,7355,'Stuck'),
11540 (6,1,8386,'Attacking'),
11541 (6,1,8737,'Mail'),
11542 (6,1,9077,'Leather'),
11543 (6,1,9078,'Cloth'),
11544 (6,1,9116,'Shield'),
11545 (6,1,9125,'Generic'),
11546 (6,1,20549,'War Stomp'),
11547 (6,1,20550,'Endurance'),
11548 (6,1,20551,'Nature Resistance'),
11549 (6,1,20552,'Cultivation'),
11550 (6,1,21651,'Opening'),
11551 (6,1,21652,'Closing'),
11552 (6,1,22027,'Remove Insignia'),
11553 (6,1,22810,'Opening - No Text'),
11554 (6,1,32215,'Victorious State'),
11555 (6,1,45927,'Summon Friend'),
11556 (6,1,61437,'Opening'),
11557 (6,3,75,'Auto Shot'),
11558 (6,3,81,'Dodge'),
11559 (6,3,196,'One-Handed Axes'),
11560 (6,3,203,'Unarmed'),
11561 (6,3,204,'Defense'),
11562 (6,3,266,'Guns'),
11563 (6,3,522,'SPELLDEFENSE (DND)'),
11564 (6,3,669,'Language Orcish'),
11565 (6,3,670,'Language Taurahe'),
11566 (6,3,1843,'Disarm'),
11567 (6,3,2382,'Generic'),
11568 (6,3,2479,'Honorless Target'),
11569 (6,3,2973,'Raptor Strike'),
11570 (6,3,3050,'Detect'),
11571 (6,3,3365,'Opening'),
11572 (6,3,6233,'Closing'),
11573 (6,3,6246,'Closing'),
11574 (6,3,6247,'Opening'),
11575 (6,3,6477,'Opening'),
11576 (6,3,6478,'Opening'),
11577 (6,3,6603,'Attack'),
11578 (6,3,7266,'Duel'),
11579 (6,3,7267,'Grovel'),
11580 (6,3,7355,'Stuck'),
11581 (6,3,8386,'Attacking'),
11582 (6,3,9077,'Leather'),
11583 (6,3,9078,'Cloth'),
11584 (6,3,9125,'Generic'),
11585 (6,3,13358,'Defensive State (DND)'),
11586 (6,3,20549,'War Stomp'),
11587 (6,3,20550,'Endurance'),
11588 (6,3,20551,'Nature Resistance'),
11589 (6,3,20552,'Cultivation'),
11590 (6,3,21651,'Opening'),
11591 (6,3,21652,'Closing'),
11592 (6,3,22027,'Remove Insignia'),
11593 (6,3,22810,'Opening - No Text'),
11594 (6,3,24949,'Defensive State 2 (DND)'),
11595 (6,3,34082,'Advantaged State (DND)'),
11596 (6,3,45927,'Summon Friend'),
11597 (6,3,61437,'Opening'),
11598 (6,6,81,'Dodge'),
11599 (6,6,196,'One-Handed Axes'),
11600 (6,6,197,'Two-Handed Axes'),
11601 (6,6,200,'Polearms'),
11602 (6,6,201,'One-Handed Swords'),
11603 (6,6,202,'Two-Handed Swords'),
11604 (6,6,203,'Unarmed'),
11605 (6,6,204,'Defense'),
11606 (6,6,522,'SPELLDEFENSE (DND)'),
11607 (6,6,669,'Language Orcish'),
11608 (6,6,670,'Language Taurahe'),
11609 (6,6,674,'Dual Wield'),
11610 (6,6,750,'Plate Mail'),
11611 (6,6,1843,'Disarm'),
11612 (6,6,2382,'Generic'),
11613 (6,6,2479,'Honorless Target'),
11614 (6,6,3050,'Detect'),
11615 (6,6,3127,'Parry'),
11616 (6,6,3275,'Linen Bandage'),
11617 (6,6,3276,'Heavy Linen Bandage'),
11618 (6,6,3277,'Wool Bandage'),
11619 (6,6,3278,'Heavy Wool Bandage'),
11620 (6,6,3365,'Opening'),
11621 (6,6,6233,'Closing'),
11622 (6,6,6246,'Closing'),
11623 (6,6,6247,'Opening'),
11624 (6,6,6477,'Opening'),
11625 (6,6,6478,'Opening'),
11626 (6,6,6603,'Attack'),
11627 (6,6,7266,'Duel'),
11628 (6,6,7267,'Grovel'),
11629 (6,6,7355,'Stuck'),
11630 (6,6,7928,'Silk Bandage'),
11631 (6,6,7929,'Heavy Silk Bandage'),
11632 (6,6,7934,'Anti-Venom'),
11633 (6,6,8386,'Attacking'),
11634 (6,6,8737,'Mail'),
11635 (6,6,9077,'Leather'),
11636 (6,6,9078,'Cloth'),
11637 (6,6,9125,'Generic'),
11638 (6,6,10840,'Mageweave Bandage'),
11639 (6,6,10841,'Heavy Mageweave Bandage'),
11640 (6,6,10846,'First Aid'),
11641 (6,6,18629,'Runecloth Bandage'),
11642 (6,6,18630,'Heavy Runecloth Bandage'),
11643 (6,6,20549,'War Stomp'),
11644 (6,6,20550,'Endurance'),
11645 (6,6,20551,'Nature Resistance'),
11646 (6,6,20552,'Cultivation'),
11647 (6,6,21651,'Opening'),
11648 (6,6,21652,'Closing'),
11649 (6,6,22027,'Remove Insignia'),
11650 (6,6,22810,'Opening - No Text'),
11651 (6,6,33391,'Journeyman Riding'),
11652 (6,6,45462,'Plague Strike'),
11653 (6,6,45477,'Icy Touch'),
11654 (6,6,45902,'Blood Strike'),
11655 (6,6,45903,'Offensive State (DND)'),
11656 (6,6,45927,'Summon Friend'),
11657 (6,6,47541,'Death Coil'),
11658 (6,6,48266,'Blood Presence'),
11659 (6,6,49410,'Forceful Deflection'),
11660 (6,6,49576,'Death Grip'),
11661 (6,6,52665,'Sigil'),
11662 (6,6,59879,'Blood Plague'),
11663 (6,6,59921,'Frost Fever'),
11664 (6,6,61437,'Opening'),
11665 (6,6,61455,'Runic Focus'),
11666 (6,7,81,'Dodge'),
11667 (6,7,107,'Block'),
11668 (6,7,198,'One-Handed Maces'),
11669 (6,7,203,'Unarmed'),
11670 (6,7,204,'Defense'),
11671 (6,7,227,'Staves'),
11672 (6,7,331,'Healing Wave'),
11673 (6,7,403,'Lightning Bolt'),
11674 (6,7,522,'SPELLDEFENSE (DND)'),
11675 (6,7,669,'Language Orcish'),
11676 (6,7,670,'Language Taurahe'),
11677 (6,7,1843,'Disarm'),
11678 (6,7,2382,'Generic'),
11679 (6,7,2479,'Honorless Target'),
11680 (6,7,3050,'Detect'),
11681 (6,7,3365,'Opening'),
11682 (6,7,6233,'Closing'),
11683 (6,7,6246,'Closing'),
11684 (6,7,6247,'Opening'),
11685 (6,7,6477,'Opening'),
11686 (6,7,6478,'Opening'),
11687 (6,7,6603,'Attack'),
11688 (6,7,7266,'Duel'),
11689 (6,7,7267,'Grovel'),
11690 (6,7,7355,'Stuck'),
11691 (6,7,8386,'Attacking'),
11692 (6,7,9077,'Leather'),
11693 (6,7,9078,'Cloth'),
11694 (6,7,9116,'Shield'),
11695 (6,7,9125,'Generic'),
11696 (6,7,20549,'War Stomp'),
11697 (6,7,20550,'Endurance'),
11698 (6,7,20551,'Nature Resistance'),
11699 (6,7,20552,'Cultivation'),
11700 (6,7,21651,'Opening'),
11701 (6,7,21652,'Closing'),
11702 (6,7,22027,'Remove Insignia'),
11703 (6,7,22810,'Opening - No Text'),
11704 (6,7,27763,'Totem'),
11705 (6,7,45927,'Summon Friend'),
11706 (6,7,61437,'Opening'),
11707 (6,11,81,'Dodge'),
11708 (6,11,198,'One-Handed Maces'),
11709 (6,11,203,'Unarmed'),
11710 (6,11,204,'Defense'),
11711 (6,11,227,'Staves'),
11712 (6,11,522,'SPELLDEFENSE (DND)'),
11713 (6,11,669,'Language Orcish'),
11714 (6,11,670,'Language Taurahe'),
11715 (6,11,1843,'Disarm'),
11716 (6,11,2382,'Generic'),
11717 (6,11,2479,'Honorless Target'),
11718 (6,11,3050,'Detect'),
11719 (6,11,3365,'Opening'),
11720 (6,11,5176,'Wrath'),
11721 (6,11,5185,'Healing Touch'),
11722 (6,11,6233,'Closing'),
11723 (6,11,6246,'Closing'),
11724 (6,11,6247,'Opening'),
11725 (6,11,6477,'Opening'),
11726 (6,11,6478,'Opening'),
11727 (6,11,6603,'Attack'),
11728 (6,11,7266,'Duel'),
11729 (6,11,7267,'Grovel'),
11730 (6,11,7355,'Stuck'),
11731 (6,11,8386,'Attacking'),
11732 (6,11,9077,'Leather'),
11733 (6,11,9078,'Cloth'),
11734 (6,11,9125,'Generic'),
11735 (6,11,20549,'War Stomp'),
11736 (6,11,20550,'Endurance'),
11737 (6,11,20551,'Nature Resistance'),
11738 (6,11,20552,'Cultivation'),
11739 (6,11,21651,'Opening'),
11740 (6,11,21652,'Closing'),
11741 (6,11,22027,'Remove Insignia'),
11742 (6,11,22810,'Opening - No Text'),
11743 (6,11,27764,'Fetish'),
11744 (6,11,45927,'Summon Friend'),
11745 (6,11,61437,'Opening'),
11746 (7,1,78,'Heroic Strike'),
11747 (7,1,81,'Dodge'),
11748 (7,1,107,'Block'),
11749 (7,1,198,'One-Handed Maces'),
11750 (7,1,201,'One-Handed Swords'),
11751 (7,1,203,'Unarmed'),
11752 (7,1,204,'Defense'),
11753 (7,1,522,'SPELLDEFENSE (DND)'),
11754 (7,1,668,'Language Common'),
11755 (7,1,1180,'Daggers'),
11756 (7,1,1843,'Disarm'),
11757 (7,1,2382,'Generic'),
11758 (7,1,2457,'Battle Stance'),
11759 (7,1,2479,'Honorless Target'),
11760 (7,1,3050,'Detect'),
11761 (7,1,3365,'Opening'),
11762 (7,1,5301,'Defensive State (DND)'),
11763 (7,1,6233,'Closing'),
11764 (7,1,6246,'Closing'),
11765 (7,1,6247,'Opening'),
11766 (7,1,6477,'Opening'),
11767 (7,1,6478,'Opening'),
11768 (7,1,6603,'Attack'),
11769 (7,1,7266,'Duel'),
11770 (7,1,7267,'Grovel'),
11771 (7,1,7340,'Language Gnomish'),
11772 (7,1,7355,'Stuck'),
11773 (7,1,8386,'Attacking'),
11774 (7,1,8737,'Mail'),
11775 (7,1,9077,'Leather'),
11776 (7,1,9078,'Cloth'),
11777 (7,1,9116,'Shield'),
11778 (7,1,9125,'Generic'),
11779 (7,1,20589,'Escape Artist'),
11780 (7,1,20591,'Expansive Mind'),
11781 (7,1,20592,'Arcane Resistance'),
11782 (7,1,20593,'Engineering Specialization'),
11783 (7,1,21651,'Opening'),
11784 (7,1,21652,'Closing'),
11785 (7,1,22027,'Remove Insignia'),
11786 (7,1,22810,'Opening - No Text'),
11787 (7,1,32215,'Victorious State'),
11788 (7,1,45927,'Summon Friend'),
11789 (7,1,61437,'Opening'),
11790 (7,4,81,'Dodge'),
11791 (7,4,203,'Unarmed'),
11792 (7,4,204,'Defense'),
11793 (7,4,522,'SPELLDEFENSE (DND)'),
11794 (7,4,668,'Language Common'),
11795 (7,4,1180,'Daggers'),
11796 (7,4,1752,'Sinister Strike'),
11797 (7,4,1843,'Disarm'),
11798 (7,4,2098,'Eviscerate'),
11799 (7,4,2382,'Generic'),
11800 (7,4,2479,'Honorless Target'),
11801 (7,4,2567,'Thrown'),
11802 (7,4,2764,'Throw'),
11803 (7,4,3050,'Detect'),
11804 (7,4,3365,'Opening'),
11805 (7,4,6233,'Closing'),
11806 (7,4,6246,'Closing'),
11807 (7,4,6247,'Opening'),
11808 (7,4,6477,'Opening'),
11809 (7,4,6478,'Opening'),
11810 (7,4,6603,'Attack'),
11811 (7,4,7266,'Duel'),
11812 (7,4,7267,'Grovel'),
11813 (7,4,7340,'Language Gnomish'),
11814 (7,4,7355,'Stuck'),
11815 (7,4,8386,'Attacking'),
11816 (7,4,9077,'Leather'),
11817 (7,4,9078,'Cloth'),
11818 (7,4,9125,'Generic'),
11819 (7,4,16092,'Defensive State (DND)'),
11820 (7,4,20589,'Escape Artist'),
11821 (7,4,20591,'Expansive Mind'),
11822 (7,4,20592,'Arcane Resistance'),
11823 (7,4,20593,'Engineering Specialization'),
11824 (7,4,21184,'Rogue Passive (DND)'),
11825 (7,4,21651,'Opening'),
11826 (7,4,21652,'Closing'),
11827 (7,4,22027,'Remove Insignia'),
11828 (7,4,22810,'Opening - No Text'),
11829 (7,4,45927,'Summon Friend'),
11830 (7,4,61437,'Opening'),
11831 (7,6,81,'Dodge'),
11832 (7,6,196,'One-Handed Axes'),
11833 (7,6,197,'Two-Handed Axes'),
11834 (7,6,200,'Polearms'),
11835 (7,6,201,'One-Handed Swords'),
11836 (7,6,202,'Two-Handed Swords'),
11837 (7,6,203,'Unarmed'),
11838 (7,6,204,'Defense'),
11839 (7,6,522,'SPELLDEFENSE (DND)'),
11840 (7,6,668,'Language Common'),
11841 (7,6,674,'Dual Wield'),
11842 (7,6,750,'Plate Mail'),
11843 (7,6,1843,'Disarm'),
11844 (7,6,2382,'Generic'),
11845 (7,6,2479,'Honorless Target'),
11846 (7,6,3050,'Detect'),
11847 (7,6,3127,'Parry'),
11848 (7,6,3275,'Linen Bandage'),
11849 (7,6,3276,'Heavy Linen Bandage'),
11850 (7,6,3277,'Wool Bandage'),
11851 (7,6,3278,'Heavy Wool Bandage'),
11852 (7,6,3365,'Opening'),
11853 (7,6,6233,'Closing'),
11854 (7,6,6246,'Closing'),
11855 (7,6,6247,'Opening'),
11856 (7,6,6477,'Opening'),
11857 (7,6,6478,'Opening'),
11858 (7,6,6603,'Attack'),
11859 (7,6,7266,'Duel'),
11860 (7,6,7267,'Grovel'),
11861 (7,6,7340,'Language Gnomish'),
11862 (7,6,7355,'Stuck'),
11863 (7,6,7928,'Silk Bandage'),
11864 (7,6,7929,'Heavy Silk Bandage'),
11865 (7,6,7934,'Anti-Venom'),
11866 (7,6,8386,'Attacking'),
11867 (7,6,8737,'Mail'),
11868 (7,6,9077,'Leather'),
11869 (7,6,9078,'Cloth'),
11870 (7,6,9125,'Generic'),
11871 (7,6,10840,'Mageweave Bandage'),
11872 (7,6,10841,'Heavy Mageweave Bandage'),
11873 (7,6,10846,'First Aid'),
11874 (7,6,18629,'Runecloth Bandage'),
11875 (7,6,18630,'Heavy Runecloth Bandage'),
11876 (7,6,20589,'Escape Artist'),
11877 (7,6,20591,'Expansive Mind'),
11878 (7,6,20592,'Arcane Resistance'),
11879 (7,6,20593,'Engineering Specialization'),
11880 (7,6,21651,'Opening'),
11881 (7,6,21652,'Closing'),
11882 (7,6,22027,'Remove Insignia'),
11883 (7,6,22810,'Opening - No Text'),
11884 (7,6,33391,'Journeyman Riding'),
11885 (7,6,45462,'Plague Strike'),
11886 (7,6,45477,'Icy Touch'),
11887 (7,6,45902,'Blood Strike'),
11888 (7,6,45903,'Offensive State (DND)'),
11889 (7,6,45927,'Summon Friend'),
11890 (7,6,47541,'Death Coil'),
11891 (7,6,48266,'Blood Presence'),
11892 (7,6,49410,'Forceful Deflection'),
11893 (7,6,49576,'Death Grip'),
11894 (7,6,52665,'Sigil'),
11895 (7,6,59879,'Blood Plague'),
11896 (7,6,59921,'Frost Fever'),
11897 (7,6,61437,'Opening'),
11898 (7,6,61455,'Runic Focus'),
11899 (7,8,81,'Dodge'),
11900 (7,8,133,'Fireball'),
11901 (7,8,168,'Frost Armor'),
11902 (7,8,203,'Unarmed'),
11903 (7,8,204,'Defense'),
11904 (7,8,227,'Staves'),
11905 (7,8,522,'SPELLDEFENSE (DND)'),
11906 (7,8,668,'Language Common'),
11907 (7,8,1843,'Disarm'),
11908 (7,8,2382,'Generic'),
11909 (7,8,2479,'Honorless Target'),
11910 (7,8,3050,'Detect'),
11911 (7,8,3365,'Opening'),
11912 (7,8,5009,'Wands'),
11913 (7,8,5019,'Shoot'),
11914 (7,8,6233,'Closing'),
11915 (7,8,6246,'Closing'),
11916 (7,8,6247,'Opening'),
11917 (7,8,6477,'Opening'),
11918 (7,8,6478,'Opening'),
11919 (7,8,6603,'Attack'),
11920 (7,8,7266,'Duel'),
11921 (7,8,7267,'Grovel'),
11922 (7,8,7340,'Language Gnomish'),
11923 (7,8,7355,'Stuck'),
11924 (7,8,8386,'Attacking'),
11925 (7,8,9078,'Cloth'),
11926 (7,8,9125,'Generic'),
11927 (7,8,20589,'Escape Artist'),
11928 (7,8,20591,'Expansive Mind'),
11929 (7,8,20592,'Arcane Resistance'),
11930 (7,8,20593,'Engineering Specialization'),
11931 (7,8,21651,'Opening'),
11932 (7,8,21652,'Closing'),
11933 (7,8,22027,'Remove Insignia'),
11934 (7,8,22810,'Opening - No Text'),
11935 (7,8,45927,'Summon Friend'),
11936 (7,8,61437,'Opening'),
11937 (7,9,81,'Dodge'),
11938 (7,9,203,'Unarmed'),
11939 (7,9,204,'Defense'),
11940 (7,9,522,'SPELLDEFENSE (DND)'),
11941 (7,9,668,'Language Common'),
11942 (7,9,686,'Shadow Bolt'),
11943 (7,9,687,'Demon Skin'),
11944 (7,9,1180,'Daggers'),
11945 (7,9,1843,'Disarm'),
11946 (7,9,2382,'Generic'),
11947 (7,9,2479,'Honorless Target'),
11948 (7,9,3050,'Detect'),
11949 (7,9,3365,'Opening'),
11950 (7,9,5009,'Wands'),
11951 (7,9,5019,'Shoot'),
11952 (7,9,6233,'Closing'),
11953 (7,9,6246,'Closing'),
11954 (7,9,6247,'Opening'),
11955 (7,9,6477,'Opening'),
11956 (7,9,6478,'Opening'),
11957 (7,9,6603,'Attack'),
11958 (7,9,7266,'Duel'),
11959 (7,9,7267,'Grovel'),
11960 (7,9,7340,'Language Gnomish'),
11961 (7,9,7355,'Stuck'),
11962 (7,9,8386,'Attacking'),
11963 (7,9,9078,'Cloth'),
11964 (7,9,9125,'Generic'),
11965 (7,9,20589,'Escape Artist'),
11966 (7,9,20591,'Expansive Mind'),
11967 (7,9,20592,'Arcane Resistance'),
11968 (7,9,20593,'Engineering Specialization'),
11969 (7,9,21651,'Opening'),
11970 (7,9,21652,'Closing'),
11971 (7,9,22027,'Remove Insignia'),
11972 (7,9,22810,'Opening - No Text'),
11973 (7,9,45927,'Summon Friend'),
11974 (7,9,58284,'Chaos Bolt Passive'),
11975 (7,9,61437,'Opening'),
11976 (8,1,78,'Heroic Strike'),
11977 (8,1,81,'Dodge'),
11978 (8,1,107,'Block'),
11979 (8,1,196,'One-Handed Axes'),
11980 (8,1,203,'Unarmed'),
11981 (8,1,204,'Defense'),
11982 (8,1,522,'SPELLDEFENSE (DND)'),
11983 (8,1,669,'Language Orcish'),
11984 (8,1,1180,'Daggers'),
11985 (8,1,1843,'Disarm'),
11986 (8,1,2382,'Generic'),
11987 (8,1,2457,'Battle Stance'),
11988 (8,1,2479,'Honorless Target'),
11989 (8,1,2567,'Thrown'),
11990 (8,1,2764,'Throw'),
11991 (8,1,3050,'Detect'),
11992 (8,1,3365,'Opening'),
11993 (8,1,5301,'Defensive State (DND)'),
11994 (8,1,6233,'Closing'),
11995 (8,1,6246,'Closing'),
11996 (8,1,6247,'Opening'),
11997 (8,1,6477,'Opening'),
11998 (8,1,6478,'Opening'),
11999 (8,1,6603,'Attack'),
12000 (8,1,7266,'Duel'),
12001 (8,1,7267,'Grovel'),
12002 (8,1,7341,'Language Troll'),
12003 (8,1,7355,'Stuck'),
12004 (8,1,8386,'Attacking'),
12005 (8,1,8737,'Mail'),
12006 (8,1,9077,'Leather'),
12007 (8,1,9078,'Cloth'),
12008 (8,1,9116,'Shield'),
12009 (8,1,9125,'Generic'),
12010 (8,1,20555,'Regeneration'),
12011 (8,1,20557,'Beast Slaying'),
12012 (8,1,20558,'Throwing Specialization'),
12013 (8,1,21651,'Opening'),
12014 (8,1,21652,'Closing'),
12015 (8,1,22027,'Remove Insignia'),
12016 (8,1,22810,'Opening - No Text'),
12017 (8,1,26290,'Bow Specialization'),
12018 (8,1,26296,'Berserking'),
12019 (8,1,32215,'Victorious State'),
12020 (8,1,45927,'Summon Friend'),
12021 (8,1,58943,'Da Voodoo Shuffle'),
12022 (8,1,61437,'Opening'),
12023 (8,3,75,'Auto Shot'),
12024 (8,3,81,'Dodge'),
12025 (8,3,196,'One-Handed Axes'),
12026 (8,3,203,'Unarmed'),
12027 (8,3,204,'Defense'),
12028 (8,3,264,'Bows'),
12029 (8,3,522,'SPELLDEFENSE (DND)'),
12030 (8,3,669,'Language Orcish'),
12031 (8,3,1843,'Disarm'),
12032 (8,3,2382,'Generic'),
12033 (8,3,2479,'Honorless Target'),
12034 (8,3,2973,'Raptor Strike'),
12035 (8,3,3050,'Detect'),
12036 (8,3,3365,'Opening'),
12037 (8,3,6233,'Closing'),
12038 (8,3,6246,'Closing'),
12039 (8,3,6247,'Opening'),
12040 (8,3,6477,'Opening'),
12041 (8,3,6478,'Opening'),
12042 (8,3,6603,'Attack'),
12043 (8,3,7266,'Duel'),
12044 (8,3,7267,'Grovel'),
12045 (8,3,7341,'Language Troll'),
12046 (8,3,7355,'Stuck'),
12047 (8,3,8386,'Attacking'),
12048 (8,3,9077,'Leather'),
12049 (8,3,9078,'Cloth'),
12050 (8,3,9125,'Generic'),
12051 (8,3,13358,'Defensive State (DND)'),
12052 (8,3,20554,'Berserking'),
12053 (8,3,20555,'Regeneration'),
12054 (8,3,20557,'Beast Slaying'),
12055 (8,3,20558,'Throwing Specialization'),
12056 (8,3,21651,'Opening'),
12057 (8,3,21652,'Closing'),
12058 (8,3,22027,'Remove Insignia'),
12059 (8,3,22810,'Opening - No Text'),
12060 (8,3,24949,'Defensive State 2 (DND)'),
12061 (8,3,26290,'Bow Specialization'),
12062 (8,3,34082,'Advantaged State (DND)'),
12063 (8,3,45927,'Summon Friend'),
12064 (8,3,58943,'Da Voodoo Shuffle'),
12065 (8,3,61437,'Opening'),
12066 (8,4,81,'Dodge'),
12067 (8,4,203,'Unarmed'),
12068 (8,4,204,'Defense'),
12069 (8,4,522,'SPELLDEFENSE (DND)'),
12070 (8,4,669,'Language Orcish'),
12071 (8,4,1180,'Daggers'),
12072 (8,4,1752,'Sinister Strike'),
12073 (8,4,1843,'Disarm'),
12074 (8,4,2098,'Eviscerate'),
12075 (8,4,2382,'Generic'),
12076 (8,4,2479,'Honorless Target'),
12077 (8,4,2567,'Thrown'),
12078 (8,4,2764,'Throw'),
12079 (8,4,3050,'Detect'),
12080 (8,4,3365,'Opening'),
12081 (8,4,6233,'Closing'),
12082 (8,4,6246,'Closing'),
12083 (8,4,6247,'Opening'),
12084 (8,4,6477,'Opening'),
12085 (8,4,6478,'Opening'),
12086 (8,4,6603,'Attack'),
12087 (8,4,7266,'Duel'),
12088 (8,4,7267,'Grovel'),
12089 (8,4,7341,'Language Troll'),
12090 (8,4,7355,'Stuck'),
12091 (8,4,8386,'Attacking'),
12092 (8,4,9077,'Leather'),
12093 (8,4,9078,'Cloth'),
12094 (8,4,9125,'Generic'),
12095 (8,4,16092,'Defensive State (DND)'),
12096 (8,4,20555,'Regeneration'),
12097 (8,4,20557,'Beast Slaying'),
12098 (8,4,20558,'Throwing Specialization'),
12099 (8,4,21184,'Rogue Passive (DND)'),
12100 (8,4,21651,'Opening'),
12101 (8,4,21652,'Closing'),
12102 (8,4,22027,'Remove Insignia'),
12103 (8,4,22810,'Opening - No Text'),
12104 (8,4,26290,'Bow Specialization'),
12105 (8,4,26297,'Berserking'),
12106 (8,4,45927,'Summon Friend'),
12107 (8,4,58943,'Da Voodoo Shuffle'),
12108 (8,4,61437,'Opening'),
12109 (8,5,81,'Dodge'),
12110 (8,5,198,'One-Handed Maces'),
12111 (8,5,203,'Unarmed'),
12112 (8,5,204,'Defense'),
12113 (8,5,522,'SPELLDEFENSE (DND)'),
12114 (8,5,585,'Smite'),
12115 (8,5,669,'Language Orcish'),
12116 (8,5,1843,'Disarm'),
12117 (8,5,2050,'Lesser Heal'),
12118 (8,5,2382,'Generic'),
12119 (8,5,2479,'Honorless Target'),
12120 (8,5,3050,'Detect'),
12121 (8,5,3365,'Opening'),
12122 (8,5,5009,'Wands'),
12123 (8,5,5019,'Shoot'),
12124 (8,5,6233,'Closing'),
12125 (8,5,6246,'Closing'),
12126 (8,5,6247,'Opening'),
12127 (8,5,6477,'Opening'),
12128 (8,5,6478,'Opening'),
12129 (8,5,6603,'Attack'),
12130 (8,5,7266,'Duel'),
12131 (8,5,7267,'Grovel'),
12132 (8,5,7341,'Language Troll'),
12133 (8,5,7355,'Stuck'),
12134 (8,5,8386,'Attacking'),
12135 (8,5,9078,'Cloth'),
12136 (8,5,9125,'Generic'),
12137 (8,5,20554,'Berserking'),
12138 (8,5,20555,'Regeneration'),
12139 (8,5,20557,'Beast Slaying'),
12140 (8,5,20558,'Throwing Specialization'),
12141 (8,5,21651,'Opening'),
12142 (8,5,21652,'Closing'),
12143 (8,5,22027,'Remove Insignia'),
12144 (8,5,22810,'Opening - No Text'),
12145 (8,5,26290,'Bow Specialization'),
12146 (8,5,45927,'Summon Friend'),
12147 (8,5,58943,'Da Voodoo Shuffle'),
12148 (8,5,61437,'Opening'),
12149 (8,6,81,'Dodge'),
12150 (8,6,196,'One-Handed Axes'),
12151 (8,6,197,'Two-Handed Axes'),
12152 (8,6,200,'Polearms'),
12153 (8,6,201,'One-Handed Swords'),
12154 (8,6,202,'Two-Handed Swords'),
12155 (8,6,203,'Unarmed'),
12156 (8,6,204,'Defense'),
12157 (8,6,522,'SPELLDEFENSE (DND)'),
12158 (8,6,669,'Language Orcish'),
12159 (8,6,674,'Dual Wield'),
12160 (8,6,750,'Plate Mail'),
12161 (8,6,1843,'Disarm'),
12162 (8,6,2382,'Generic'),
12163 (8,6,2479,'Honorless Target'),
12164 (8,6,3050,'Detect'),
12165 (8,6,3127,'Parry'),
12166 (8,6,3275,'Linen Bandage'),
12167 (8,6,3276,'Heavy Linen Bandage'),
12168 (8,6,3277,'Wool Bandage'),
12169 (8,6,3278,'Heavy Wool Bandage'),
12170 (8,6,3365,'Opening'),
12171 (8,6,6233,'Closing'),
12172 (8,6,6246,'Closing'),
12173 (8,6,6247,'Opening'),
12174 (8,6,6477,'Opening'),
12175 (8,6,6478,'Opening'),
12176 (8,6,6603,'Attack'),
12177 (8,6,7266,'Duel'),
12178 (8,6,7267,'Grovel'),
12179 (8,6,7341,'Language Troll'),
12180 (8,6,7355,'Stuck'),
12181 (8,6,7928,'Silk Bandage'),
12182 (8,6,7929,'Heavy Silk Bandage'),
12183 (8,6,7934,'Anti-Venom'),
12184 (8,6,8386,'Attacking'),
12185 (8,6,8737,'Mail'),
12186 (8,6,9077,'Leather'),
12187 (8,6,9078,'Cloth'),
12188 (8,6,9125,'Generic'),
12189 (8,6,10840,'Mageweave Bandage'),
12190 (8,6,10841,'Heavy Mageweave Bandage'),
12191 (8,6,10846,'First Aid'),
12192 (8,6,18629,'Runecloth Bandage'),
12193 (8,6,18630,'Heavy Runecloth Bandage'),
12194 (8,6,20555,'Regeneration'),
12195 (8,6,20557,'Beast Slaying'),
12196 (8,6,20558,'Throwing Specialization'),
12197 (8,6,21651,'Opening'),
12198 (8,6,21652,'Closing'),
12199 (8,6,22027,'Remove Insignia'),
12200 (8,6,22810,'Opening - No Text'),
12201 (8,6,26290,'Bow Specialization'),
12202 (8,6,33391,'Journeyman Riding'),
12203 (8,6,45462,'Plague Strike'),
12204 (8,6,45477,'Icy Touch'),
12205 (8,6,45902,'Blood Strike'),
12206 (8,6,45903,'Offensive State (DND)'),
12207 (8,6,45927,'Summon Friend'),
12208 (8,6,47541,'Death Coil'),
12209 (8,6,48266,'Blood Presence'),
12210 (8,6,49410,'Forceful Deflection'),
12211 (8,6,49576,'Death Grip'),
12212 (8,6,50621,'Berserking'),
12213 (8,6,52665,'Sigil'),
12214 (8,6,58943,'Da Voodoo Shuffle'),
12215 (8,6,59879,'Blood Plague'),
12216 (8,6,59921,'Frost Fever'),
12217 (8,6,61437,'Opening'),
12218 (8,6,61455,'Runic Focus'),
12219 (8,7,81,'Dodge'),
12220 (8,7,107,'Block'),
12221 (8,7,198,'One-Handed Maces'),
12222 (8,7,203,'Unarmed'),
12223 (8,7,204,'Defense'),
12224 (8,7,227,'Staves'),
12225 (8,7,331,'Healing Wave'),
12226 (8,7,403,'Lightning Bolt'),
12227 (8,7,522,'SPELLDEFENSE (DND)'),
12228 (8,7,669,'Language Orcish'),
12229 (8,7,1843,'Disarm'),
12230 (8,7,2382,'Generic'),
12231 (8,7,2479,'Honorless Target'),
12232 (8,7,3050,'Detect'),
12233 (8,7,3365,'Opening'),
12234 (8,7,6233,'Closing'),
12235 (8,7,6246,'Closing'),
12236 (8,7,6247,'Opening'),
12237 (8,7,6477,'Opening'),
12238 (8,7,6478,'Opening'),
12239 (8,7,6603,'Attack'),
12240 (8,7,7266,'Duel'),
12241 (8,7,7267,'Grovel'),
12242 (8,7,7341,'Language Troll'),
12243 (8,7,7355,'Stuck'),
12244 (8,7,8386,'Attacking'),
12245 (8,7,9077,'Leather'),
12246 (8,7,9078,'Cloth'),
12247 (8,7,9116,'Shield'),
12248 (8,7,9125,'Generic'),
12249 (8,7,20554,'Berserking'),
12250 (8,7,20555,'Regeneration'),
12251 (8,7,20557,'Beast Slaying'),
12252 (8,7,20558,'Throwing Specialization'),
12253 (8,7,21651,'Opening'),
12254 (8,7,21652,'Closing'),
12255 (8,7,22027,'Remove Insignia'),
12256 (8,7,22810,'Opening - No Text'),
12257 (8,7,26290,'Bow Specialization'),
12258 (8,7,27763,'Totem'),
12259 (8,7,45927,'Summon Friend'),
12260 (8,7,58943,'Da Voodoo Shuffle'),
12261 (8,7,61437,'Opening'),
12262 (8,8,81,'Dodge'),
12263 (8,8,133,'Fireball'),
12264 (8,8,168,'Frost Armor'),
12265 (8,8,203,'Unarmed'),
12266 (8,8,204,'Defense'),
12267 (8,8,227,'Staves'),
12268 (8,8,522,'SPELLDEFENSE (DND)'),
12269 (8,8,669,'Language Orcish'),
12270 (8,8,1843,'Disarm'),
12271 (8,8,2382,'Generic'),
12272 (8,8,2479,'Honorless Target'),
12273 (8,8,3050,'Detect'),
12274 (8,8,3365,'Opening'),
12275 (8,8,5009,'Wands'),
12276 (8,8,5019,'Shoot'),
12277 (8,8,6233,'Closing'),
12278 (8,8,6246,'Closing'),
12279 (8,8,6247,'Opening'),
12280 (8,8,6477,'Opening'),
12281 (8,8,6478,'Opening'),
12282 (8,8,6603,'Attack'),
12283 (8,8,7266,'Duel'),
12284 (8,8,7267,'Grovel'),
12285 (8,8,7341,'Language Troll'),
12286 (8,8,7355,'Stuck'),
12287 (8,8,8386,'Attacking'),
12288 (8,8,9078,'Cloth'),
12289 (8,8,9125,'Generic'),
12290 (8,8,20554,'Berserking'),
12291 (8,8,20555,'Regeneration'),
12292 (8,8,20557,'Beast Slaying'),
12293 (8,8,20558,'Throwing Specialization'),
12294 (8,8,21651,'Opening'),
12295 (8,8,21652,'Closing'),
12296 (8,8,22027,'Remove Insignia'),
12297 (8,8,22810,'Opening - No Text'),
12298 (8,8,26290,'Bow Specialization'),
12299 (8,8,45927,'Summon Friend'),
12300 (8,8,58943,'Da Voodoo Shuffle'),
12301 (8,8,61437,'Opening'),
12302 (10,2,81,'Dodge'),
12303 (10,2,107,'Block'),
12304 (10,2,201,'One-Handed Swords'),
12305 (10,2,202,'Two-Handed Swords'),
12306 (10,2,203,'Unarmed'),
12307 (10,2,204,'Defense'),
12308 (10,2,522,'SPELLDEFENSE (DND)'),
12309 (10,2,635,'Holy Light'),
12310 (10,2,669,'Language Orcish'),
12311 (10,2,813,'Language Thalassian'),
12312 (10,2,822,'Magic Resistance'),
12313 (10,2,2382,'Generic'),
12314 (10,2,2479,'Honorless Target'),
12315 (10,2,3050,'Detect'),
12316 (10,2,3365,'Opening'),
12317 (10,2,6233,'Closing'),
12318 (10,2,6246,'Closing'),
12319 (10,2,6247,'Opening'),
12320 (10,2,6477,'Opening'),
12321 (10,2,6478,'Opening'),
12322 (10,2,6603,'Attack'),
12323 (10,2,7266,'Duel'),
12324 (10,2,7267,'Grovel'),
12325 (10,2,7355,'Stuck'),
12326 (10,2,8386,'Attacking'),
12327 (10,2,8737,'Mail'),
12328 (10,2,9077,'Leather'),
12329 (10,2,9078,'Cloth'),
12330 (10,2,9116,'Shield'),
12331 (10,2,9125,'Generic'),
12332 (10,2,21084,'Seal of Righteousness'),
12333 (10,2,21651,'Opening'),
12334 (10,2,21652,'Closing'),
12335 (10,2,22027,'Remove Insignia'),
12336 (10,2,22810,'Opening - No Text'),
12337 (10,2,27762,'Libram'),
12338 (10,2,28730,'Arcane Torrent'),
12339 (10,2,28734,'Mana Tap'),
12340 (10,2,28877,'Arcane Affinity'),
12341 (10,3,75,'Auto Shot'),
12342 (10,3,81,'Dodge'),
12343 (10,3,203,'Unarmed'),
12344 (10,3,204,'Defense'),
12345 (10,3,264,'Bows'),
12346 (10,3,522,'SPELLDEFENSE (DND)'),
12347 (10,3,669,'Language Orcish'),
12348 (10,3,813,'Language Thalassian'),
12349 (10,3,822,'Magic Resistance'),
12350 (10,3,1180,'Daggers'),
12351 (10,3,2382,'Generic'),
12352 (10,3,2479,'Honorless Target'),
12353 (10,3,2973,'Raptor Strike'),
12354 (10,3,3050,'Detect'),
12355 (10,3,3365,'Opening'),
12356 (10,3,6233,'Closing'),
12357 (10,3,6246,'Closing'),
12358 (10,3,6247,'Opening'),
12359 (10,3,6477,'Opening'),
12360 (10,3,6478,'Opening'),
12361 (10,3,6603,'Attack'),
12362 (10,3,7266,'Duel'),
12363 (10,3,7267,'Grovel'),
12364 (10,3,7355,'Stuck'),
12365 (10,3,8386,'Attacking'),
12366 (10,3,9077,'Leather'),
12367 (10,3,9078,'Cloth'),
12368 (10,3,9125,'Generic'),
12369 (10,3,13358,'Defensive State (DND)'),
12370 (10,3,21651,'Opening'),
12371 (10,3,21652,'Closing'),
12372 (10,3,22027,'Remove Insignia'),
12373 (10,3,22810,'Opening - No Text'),
12374 (10,3,24949,'Defensive State 2 (DND)'),
12375 (10,3,28730,'Arcane Torrent'),
12376 (10,3,28734,'Mana Tap'),
12377 (10,3,28877,'Arcane Affinity'),
12378 (10,3,34082,'Advantaged State (DND)'),
12379 (10,4,81,'Dodge'),
12380 (10,4,203,'Unarmed'),
12381 (10,4,204,'Defense'),
12382 (10,4,522,'SPELLDEFENSE (DND)'),
12383 (10,4,669,'Language Orcish'),
12384 (10,4,813,'Language Thalassian'),
12385 (10,4,822,'Magic Resistance'),
12386 (10,4,1180,'Daggers'),
12387 (10,4,1752,'Sinister Strike'),
12388 (10,4,2098,'Eviscerate'),
12389 (10,4,2382,'Generic'),
12390 (10,4,2479,'Honorless Target'),
12391 (10,4,2567,'Thrown'),
12392 (10,4,2764,'Throw'),
12393 (10,4,3050,'Detect'),
12394 (10,4,3365,'Opening'),
12395 (10,4,6233,'Closing'),
12396 (10,4,6246,'Closing'),
12397 (10,4,6247,'Opening'),
12398 (10,4,6477,'Opening'),
12399 (10,4,6478,'Opening'),
12400 (10,4,6603,'Attack'),
12401 (10,4,7266,'Duel'),
12402 (10,4,7267,'Grovel'),
12403 (10,4,7355,'Stuck'),
12404 (10,4,8386,'Attacking'),
12405 (10,4,9077,'Leather'),
12406 (10,4,9078,'Cloth'),
12407 (10,4,9125,'Generic'),
12408 (10,4,16092,'Defensive State (DND)'),
12409 (10,4,21184,'Rogue Passive (DND)'),
12410 (10,4,21651,'Opening'),
12411 (10,4,21652,'Closing'),
12412 (10,4,22027,'Remove Insignia'),
12413 (10,4,22810,'Opening - No Text'),
12414 (10,4,25046,'Arcane Torrent'),
12415 (10,4,28734,'Mana Tap'),
12416 (10,4,28877,'Arcane Affinity'),
12417 (10,5,81,'Dodge'),
12418 (10,5,198,'One-Handed Maces'),
12419 (10,5,203,'Unarmed'),
12420 (10,5,204,'Defense'),
12421 (10,5,522,'SPELLDEFENSE (DND)'),
12422 (10,5,585,'Smite'),
12423 (10,5,669,'Language Orcish'),
12424 (10,5,813,'Language Thalassian'),
12425 (10,5,822,'Magic Resistance'),
12426 (10,5,2050,'Lesser Heal'),
12427 (10,5,2382,'Generic'),
12428 (10,5,2479,'Honorless Target'),
12429 (10,5,3050,'Detect'),
12430 (10,5,3365,'Opening'),
12431 (10,5,5009,'Wands'),
12432 (10,5,5019,'Shoot'),
12433 (10,5,6233,'Closing'),
12434 (10,5,6246,'Closing'),
12435 (10,5,6247,'Opening'),
12436 (10,5,6477,'Opening'),
12437 (10,5,6478,'Opening'),
12438 (10,5,6603,'Attack'),
12439 (10,5,7266,'Duel'),
12440 (10,5,7267,'Grovel'),
12441 (10,5,7355,'Stuck'),
12442 (10,5,8386,'Attacking'),
12443 (10,5,9078,'Cloth'),
12444 (10,5,9125,'Generic'),
12445 (10,5,21651,'Opening'),
12446 (10,5,21652,'Closing'),
12447 (10,5,22027,'Remove Insignia'),
12448 (10,5,22810,'Opening - No Text'),
12449 (10,5,28730,'Arcane Torrent'),
12450 (10,5,28734,'Mana Tap'),
12451 (10,5,28877,'Arcane Affinity'),
12452 (10,6,81,'Dodge'),
12453 (10,6,196,'One-Handed Axes'),
12454 (10,6,197,'Two-Handed Axes'),
12455 (10,6,200,'Polearms'),
12456 (10,6,201,'One-Handed Swords'),
12457 (10,6,202,'Two-Handed Swords'),
12458 (10,6,203,'Unarmed'),
12459 (10,6,204,'Defense'),
12460 (10,6,522,'SPELLDEFENSE (DND)'),
12461 (10,6,669,'Language Orcish'),
12462 (10,6,674,'Dual Wield'),
12463 (10,6,750,'Plate Mail'),
12464 (10,6,813,'Language Thalassian'),
12465 (10,6,822,'Magic Resistance'),
12466 (10,6,1843,'Disarm'),
12467 (10,6,2382,'Generic'),
12468 (10,6,2479,'Honorless Target'),
12469 (10,6,3050,'Detect'),
12470 (10,6,3127,'Parry'),
12471 (10,6,3275,'Linen Bandage'),
12472 (10,6,3276,'Heavy Linen Bandage'),
12473 (10,6,3277,'Wool Bandage'),
12474 (10,6,3278,'Heavy Wool Bandage'),
12475 (10,6,3365,'Opening'),
12476 (10,6,6233,'Closing'),
12477 (10,6,6246,'Closing'),
12478 (10,6,6247,'Opening'),
12479 (10,6,6477,'Opening'),
12480 (10,6,6478,'Opening'),
12481 (10,6,6603,'Attack'),
12482 (10,6,7266,'Duel'),
12483 (10,6,7267,'Grovel'),
12484 (10,6,7355,'Stuck'),
12485 (10,6,7928,'Silk Bandage'),
12486 (10,6,7929,'Heavy Silk Bandage'),
12487 (10,6,7934,'Anti-Venom'),
12488 (10,6,8386,'Attacking'),
12489 (10,6,8737,'Mail'),
12490 (10,6,9077,'Leather'),
12491 (10,6,9078,'Cloth'),
12492 (10,6,9125,'Generic'),
12493 (10,6,10840,'Mageweave Bandage'),
12494 (10,6,10841,'Heavy Mageweave Bandage'),
12495 (10,6,10846,'First Aid'),
12496 (10,6,18629,'Runecloth Bandage'),
12497 (10,6,18630,'Heavy Runecloth Bandage'),
12498 (10,6,21651,'Opening'),
12499 (10,6,21652,'Closing'),
12500 (10,6,22027,'Remove Insignia'),
12501 (10,6,22810,'Opening - No Text'),
12502 (10,6,28877,'Arcane Affinity'),
12503 (10,6,33391,'Journeyman Riding'),
12504 (10,6,45462,'Plague Strike'),
12505 (10,6,45477,'Icy Touch'),
12506 (10,6,45902,'Blood Strike'),
12507 (10,6,45903,'Offensive State (DND)'),
12508 (10,6,45927,'Summon Friend'),
12509 (10,6,47541,'Death Coil'),
12510 (10,6,48266,'Blood Presence'),
12511 (10,6,49410,'Forceful Deflection'),
12512 (10,6,49576,'Death Grip'),
12513 (10,6,50613,'Arcane Torrent'),
12514 (10,6,52665,'Sigil'),
12515 (10,6,59879,'Blood Plague'),
12516 (10,6,59921,'Frost Fever'),
12517 (10,6,61437,'Opening'),
12518 (10,6,61455,'Runic Focus'),
12519 (10,8,81,'Dodge'),
12520 (10,8,133,'Fireball'),
12521 (10,8,168,'Frost Armor'),
12522 (10,8,203,'Unarmed'),
12523 (10,8,204,'Defense'),
12524 (10,8,227,'Staves'),
12525 (10,8,522,'SPELLDEFENSE (DND)'),
12526 (10,8,669,'Language Orcish'),
12527 (10,8,813,'Language Thalassian'),
12528 (10,8,822,'Magic Resistance'),
12529 (10,8,2382,'Generic'),
12530 (10,8,2479,'Honorless Target'),
12531 (10,8,3050,'Detect'),
12532 (10,8,3365,'Opening'),
12533 (10,8,5009,'Wands'),
12534 (10,8,5019,'Shoot'),
12535 (10,8,6233,'Closing'),
12536 (10,8,6246,'Closing'),
12537 (10,8,6247,'Opening'),
12538 (10,8,6477,'Opening'),
12539 (10,8,6478,'Opening'),
12540 (10,8,6603,'Attack'),
12541 (10,8,7266,'Duel'),
12542 (10,8,7267,'Grovel'),
12543 (10,8,7355,'Stuck'),
12544 (10,8,8386,'Attacking'),
12545 (10,8,9078,'Cloth'),
12546 (10,8,9125,'Generic'),
12547 (10,8,21651,'Opening'),
12548 (10,8,21652,'Closing'),
12549 (10,8,22027,'Remove Insignia'),
12550 (10,8,22810,'Opening - No Text'),
12551 (10,8,28730,'Arcane Torrent'),
12552 (10,8,28734,'Mana Tap'),
12553 (10,8,28877,'Arcane Affinity'),
12554 (10,9,81,'Dodge'),
12555 (10,9,203,'Unarmed'),
12556 (10,9,204,'Defense'),
12557 (10,9,522,'SPELLDEFENSE (DND)'),
12558 (10,9,669,'Language Orcish'),
12559 (10,9,686,'Shadow Bolt'),
12560 (10,9,687,'Demon Skin'),
12561 (10,9,813,'Language Thalassian'),
12562 (10,9,822,'Magic Resistance'),
12563 (10,9,1180,'Daggers'),
12564 (10,9,2382,'Generic'),
12565 (10,9,2479,'Honorless Target'),
12566 (10,9,3050,'Detect'),
12567 (10,9,3365,'Opening'),
12568 (10,9,5009,'Wands'),
12569 (10,9,5019,'Shoot'),
12570 (10,9,6233,'Closing'),
12571 (10,9,6246,'Closing'),
12572 (10,9,6247,'Opening'),
12573 (10,9,6477,'Opening'),
12574 (10,9,6478,'Opening'),
12575 (10,9,6603,'Attack'),
12576 (10,9,7266,'Duel'),
12577 (10,9,7267,'Grovel'),
12578 (10,9,7355,'Stuck'),
12579 (10,9,8386,'Attacking'),
12580 (10,9,9078,'Cloth'),
12581 (10,9,9125,'Generic'),
12582 (10,9,21651,'Opening'),
12583 (10,9,21652,'Closing'),
12584 (10,9,22027,'Remove Insignia'),
12585 (10,9,22810,'Opening - No Text'),
12586 (10,9,28730,'Arcane Torrent'),
12587 (10,9,28734,'Mana Tap'),
12588 (10,9,28877,'Arcane Affinity'),
12589 (10,9,58284,'Chaos Bolt Passive'),
12590 (11,1,78,'Heroic Strike'),
12591 (11,1,81,'Dodge'),
12592 (11,1,107,'Block'),
12593 (11,1,198,'One-Handed Maces'),
12594 (11,1,201,'One-Handed Swords'),
12595 (11,1,202,'Two-Handed Swords'),
12596 (11,1,203,'Unarmed'),
12597 (11,1,204,'Defense'),
12598 (11,1,522,'SPELLDEFENSE (DND)'),
12599 (11,1,668,'Language Common'),
12600 (11,1,1843,'Disarm'),
12601 (11,1,2382,'Generic'),
12602 (11,1,2457,'Battle Stance'),
12603 (11,1,2479,'Honorless Target'),
12604 (11,1,3050,'Detect'),
12605 (11,1,3365,'Opening'),
12606 (11,1,5301,'Defensive State (DND)'),
12607 (11,1,6233,'Closing'),
12608 (11,1,6246,'Closing'),
12609 (11,1,6247,'Opening'),
12610 (11,1,6477,'Opening'),
12611 (11,1,6478,'Opening'),
12612 (11,1,6562,'Heroic Presence'),
12613 (11,1,6603,'Attack'),
12614 (11,1,7266,'Duel'),
12615 (11,1,7267,'Grovel'),
12616 (11,1,7355,'Stuck'),
12617 (11,1,8386,'Attacking'),
12618 (11,1,8737,'Mail'),
12619 (11,1,9077,'Leather'),
12620 (11,1,9078,'Cloth'),
12621 (11,1,9116,'Shield'),
12622 (11,1,9125,'Generic'),
12623 (11,1,21651,'Opening'),
12624 (11,1,21652,'Closing'),
12625 (11,1,22027,'Remove Insignia'),
12626 (11,1,22810,'Opening - No Text'),
12627 (11,1,28875,'Gemcutting'),
12628 (11,1,28880,'Gift of the Naaru'),
12629 (11,1,29932,'Language Draenei'),
12630 (11,1,32215,'Victorious State'),
12631 (11,1,45927,'Summon Friend'),
12632 (11,1,59221,'Shadow Resistance'),
12633 (11,1,61437,'Opening'),
12634 (11,2,81,'Dodge'),
12635 (11,2,107,'Block'),
12636 (11,2,198,'One-Handed Maces'),
12637 (11,2,199,'Two-Handed Maces'),
12638 (11,2,203,'Unarmed'),
12639 (11,2,204,'Defense'),
12640 (11,2,522,'SPELLDEFENSE (DND)'),
12641 (11,2,635,'Holy Light'),
12642 (11,2,668,'Language Common'),
12643 (11,2,1843,'Disarm'),
12644 (11,2,2382,'Generic'),
12645 (11,2,2479,'Honorless Target'),
12646 (11,2,3050,'Detect'),
12647 (11,2,3365,'Opening'),
12648 (11,2,6233,'Closing'),
12649 (11,2,6246,'Closing'),
12650 (11,2,6247,'Opening'),
12651 (11,2,6477,'Opening'),
12652 (11,2,6478,'Opening'),
12653 (11,2,6562,'Heroic Presence'),
12654 (11,2,6603,'Attack'),
12655 (11,2,7266,'Duel'),
12656 (11,2,7267,'Grovel'),
12657 (11,2,7355,'Stuck'),
12658 (11,2,8386,'Attacking'),
12659 (11,2,8737,'Mail'),
12660 (11,2,9077,'Leather'),
12661 (11,2,9078,'Cloth'),
12662 (11,2,9116,'Shield'),
12663 (11,2,9125,'Generic'),
12664 (11,2,21084,'Seal of Righteousness'),
12665 (11,2,21651,'Opening'),
12666 (11,2,21652,'Closing'),
12667 (11,2,22027,'Remove Insignia'),
12668 (11,2,22810,'Opening - No Text'),
12669 (11,2,27762,'Libram'),
12670 (11,2,28875,'Gemcutting'),
12671 (11,2,29932,'Language Draenei'),
12672 (11,2,45927,'Summon Friend'),
12673 (11,2,59221,'Shadow Resistance'),
12674 (11,2,59542,'Gift of the Naaru'),
12675 (11,2,61437,'Opening'),
12676 (11,3,75,'Auto Shot'),
12677 (11,3,81,'Dodge'),
12678 (11,3,201,'One-Handed Swords'),
12679 (11,3,203,'Unarmed'),
12680 (11,3,204,'Defense'),
12681 (11,3,522,'SPELLDEFENSE (DND)'),
12682 (11,3,668,'Language Common'),
12683 (11,3,1843,'Disarm'),
12684 (11,3,2382,'Generic'),
12685 (11,3,2479,'Honorless Target'),
12686 (11,3,2973,'Raptor Strike'),
12687 (11,3,3050,'Detect'),
12688 (11,3,3365,'Opening'),
12689 (11,3,5011,'Crossbows'),
12690 (11,3,6233,'Closing'),
12691 (11,3,6246,'Closing'),
12692 (11,3,6247,'Opening'),
12693 (11,3,6477,'Opening'),
12694 (11,3,6478,'Opening'),
12695 (11,3,6562,'Heroic Presence'),
12696 (11,3,6603,'Attack'),
12697 (11,3,7266,'Duel'),
12698 (11,3,7267,'Grovel'),
12699 (11,3,7355,'Stuck'),
12700 (11,3,8386,'Attacking'),
12701 (11,3,9077,'Leather'),
12702 (11,3,9078,'Cloth'),
12703 (11,3,9125,'Generic'),
12704 (11,3,13358,'Defensive State (DND)'),
12705 (11,3,21651,'Opening'),
12706 (11,3,21652,'Closing'),
12707 (11,3,22027,'Remove Insignia'),
12708 (11,3,22810,'Opening - No Text'),
12709 (11,3,24949,'Defensive State 2 (DND)'),
12710 (11,3,28875,'Gemcutting'),
12711 (11,3,29932,'Language Draenei'),
12712 (11,3,34082,'Advantaged State (DND)'),
12713 (11,3,45927,'Summon Friend'),
12714 (11,3,59221,'Shadow Resistance'),
12715 (11,3,59543,'Gift of the Naaru'),
12716 (11,3,61437,'Opening'),
12717 (11,5,81,'Dodge'),
12718 (11,5,198,'One-Handed Maces'),
12719 (11,5,203,'Unarmed'),
12720 (11,5,204,'Defense'),
12721 (11,5,522,'SPELLDEFENSE (DND)'),
12722 (11,5,585,'Smite'),
12723 (11,5,668,'Language Common'),
12724 (11,5,1843,'Disarm'),
12725 (11,5,2050,'Lesser Heal'),
12726 (11,5,2382,'Generic'),
12727 (11,5,2479,'Honorless Target'),
12728 (11,5,3050,'Detect'),
12729 (11,5,3365,'Opening'),
12730 (11,5,5009,'Wands'),
12731 (11,5,5019,'Shoot'),
12732 (11,5,6233,'Closing'),
12733 (11,5,6246,'Closing'),
12734 (11,5,6247,'Opening'),
12735 (11,5,6477,'Opening'),
12736 (11,5,6478,'Opening'),
12737 (11,5,6603,'Attack'),
12738 (11,5,7266,'Duel'),
12739 (11,5,7267,'Grovel'),
12740 (11,5,7355,'Stuck'),
12741 (11,5,8386,'Attacking'),
12742 (11,5,9078,'Cloth'),
12743 (11,5,9125,'Generic'),
12744 (11,5,21651,'Opening'),
12745 (11,5,21652,'Closing'),
12746 (11,5,22027,'Remove Insignia'),
12747 (11,5,22810,'Opening - No Text'),
12748 (11,5,28875,'Gemcutting'),
12749 (11,5,28878,'Inspiring Presence'),
12750 (11,5,29932,'Language Draenei'),
12751 (11,5,45927,'Summon Friend'),
12752 (11,5,59221,'Shadow Resistance'),
12753 (11,5,59544,'Gift of the Naaru'),
12754 (11,5,61437,'Opening'),
12755 (11,6,81,'Dodge'),
12756 (11,6,196,'One-Handed Axes'),
12757 (11,6,197,'Two-Handed Axes'),
12758 (11,6,200,'Polearms'),
12759 (11,6,201,'One-Handed Swords'),
12760 (11,6,202,'Two-Handed Swords'),
12761 (11,6,203,'Unarmed'),
12762 (11,6,204,'Defense'),
12763 (11,6,522,'SPELLDEFENSE (DND)'),
12764 (11,6,668,'Language Common'),
12765 (11,6,674,'Dual Wield'),
12766 (11,6,750,'Plate Mail'),
12767 (11,6,1843,'Disarm'),
12768 (11,6,2382,'Generic'),
12769 (11,6,2479,'Honorless Target'),
12770 (11,6,3050,'Detect'),
12771 (11,6,3127,'Parry'),
12772 (11,6,3275,'Linen Bandage'),
12773 (11,6,3276,'Heavy Linen Bandage'),
12774 (11,6,3277,'Wool Bandage'),
12775 (11,6,3278,'Heavy Wool Bandage'),
12776 (11,6,3365,'Opening'),
12777 (11,6,6233,'Closing'),
12778 (11,6,6246,'Closing'),
12779 (11,6,6247,'Opening'),
12780 (11,6,6477,'Opening'),
12781 (11,6,6478,'Opening'),
12782 (11,6,6562,'Heroic Presence'),
12783 (11,6,6603,'Attack'),
12784 (11,6,7266,'Duel'),
12785 (11,6,7267,'Grovel'),
12786 (11,6,7355,'Stuck'),
12787 (11,6,7928,'Silk Bandage'),
12788 (11,6,7929,'Heavy Silk Bandage'),
12789 (11,6,7934,'Anti-Venom'),
12790 (11,6,8386,'Attacking'),
12791 (11,6,8737,'Mail'),
12792 (11,6,9077,'Leather'),
12793 (11,6,9078,'Cloth'),
12794 (11,6,9125,'Generic'),
12795 (11,6,10840,'Mageweave Bandage'),
12796 (11,6,10841,'Heavy Mageweave Bandage'),
12797 (11,6,10846,'First Aid'),
12798 (11,6,18629,'Runecloth Bandage'),
12799 (11,6,18630,'Heavy Runecloth Bandage'),
12800 (11,6,21651,'Opening'),
12801 (11,6,21652,'Closing'),
12802 (11,6,22027,'Remove Insignia'),
12803 (11,6,22810,'Opening - No Text'),
12804 (11,6,28875,'Gemcutting'),
12805 (11,6,29932,'Language Draenei'),
12806 (11,6,33391,'Journeyman Riding'),
12807 (11,6,45462,'Plague Strike'),
12808 (11,6,45477,'Icy Touch'),
12809 (11,6,45902,'Blood Strike'),
12810 (11,6,45903,'Offensive State (DND)'),
12811 (11,6,45927,'Summon Friend'),
12812 (11,6,47541,'Death Coil'),
12813 (11,6,48266,'Blood Presence'),
12814 (11,6,49410,'Forceful Deflection'),
12815 (11,6,49576,'Death Grip'),
12816 (11,6,52665,'Sigil'),
12817 (11,6,59221,'Shadow Resistance'),
12818 (11,6,59539,'Shadow Resistance'),
12819 (11,6,59545,'Gift of the Naaru'),
12820 (11,6,59879,'Blood Plague'),
12821 (11,6,59921,'Frost Fever'),
12822 (11,6,61437,'Opening'),
12823 (11,6,61455,'Runic Focus'),
12824 (11,7,81,'Dodge'),
12825 (11,7,107,'Block'),
12826 (11,7,198,'One-Handed Maces'),
12827 (11,7,203,'Unarmed'),
12828 (11,7,204,'Defense'),
12829 (11,7,227,'Staves'),
12830 (11,7,331,'Healing Wave'),
12831 (11,7,403,'Lightning Bolt'),
12832 (11,7,522,'SPELLDEFENSE (DND)'),
12833 (11,7,668,'Language Common'),
12834 (11,7,1843,'Disarm'),
12835 (11,7,2382,'Generic'),
12836 (11,7,2479,'Honorless Target'),
12837 (11,7,3050,'Detect'),
12838 (11,7,3365,'Opening'),
12839 (11,7,6233,'Closing'),
12840 (11,7,6246,'Closing'),
12841 (11,7,6247,'Opening'),
12842 (11,7,6477,'Opening'),
12843 (11,7,6478,'Opening'),
12844 (11,7,6603,'Attack'),
12845 (11,7,7266,'Duel'),
12846 (11,7,7267,'Grovel'),
12847 (11,7,7355,'Stuck'),
12848 (11,7,8386,'Attacking'),
12849 (11,7,9077,'Leather'),
12850 (11,7,9078,'Cloth'),
12851 (11,7,9116,'Shield'),
12852 (11,7,9125,'Generic'),
12853 (11,7,21651,'Opening'),
12854 (11,7,21652,'Closing'),
12855 (11,7,22027,'Remove Insignia'),
12856 (11,7,22810,'Opening - No Text'),
12857 (11,7,27763,'Totem'),
12858 (11,7,28875,'Gemcutting'),
12859 (11,7,28878,'Inspiring Presence'),
12860 (11,7,29932,'Language Draenei'),
12861 (11,7,45927,'Summon Friend'),
12862 (11,7,59221,'Shadow Resistance'),
12863 (11,7,59547,'Gift of the Naaru'),
12864 (11,7,61437,'Opening'),
12865 (11,8,81,'Dodge'),
12866 (11,8,133,'Fireball'),
12867 (11,8,168,'Frost Armor'),
12868 (11,8,203,'Unarmed'),
12869 (11,8,204,'Defense'),
12870 (11,8,227,'Staves'),
12871 (11,8,522,'SPELLDEFENSE (DND)'),
12872 (11,8,668,'Language Common'),
12873 (11,8,1843,'Disarm'),
12874 (11,8,2382,'Generic'),
12875 (11,8,2479,'Honorless Target'),
12876 (11,8,3050,'Detect'),
12877 (11,8,3365,'Opening'),
12878 (11,8,5009,'Wands'),
12879 (11,8,5019,'Shoot'),
12880 (11,8,6233,'Closing'),
12881 (11,8,6246,'Closing'),
12882 (11,8,6247,'Opening'),
12883 (11,8,6477,'Opening'),
12884 (11,8,6478,'Opening'),
12885 (11,8,6603,'Attack'),
12886 (11,8,7266,'Duel'),
12887 (11,8,7267,'Grovel'),
12888 (11,8,7355,'Stuck'),
12889 (11,8,8386,'Attacking'),
12890 (11,8,9078,'Cloth'),
12891 (11,8,9125,'Generic'),
12892 (11,8,21651,'Opening'),
12893 (11,8,21652,'Closing'),
12894 (11,8,22027,'Remove Insignia'),
12895 (11,8,22810,'Opening - No Text'),
12896 (11,8,28875,'Gemcutting'),
12897 (11,8,28878,'Inspiring Presence'),
12898 (11,8,29932,'Language Draenei'),
12899 (11,8,45927,'Summon Friend'),
12900 (11,8,59221,'Shadow Resistance'),
12901 (11,8,59548,'Gift of the Naaru'),
12902 (11,8,61437,'Opening');
12903 /*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
12904 UNLOCK TABLES;
12907 -- Table structure for table `points_of_interest`
12910 DROP TABLE IF EXISTS `points_of_interest`;
12911 CREATE TABLE `points_of_interest` (
12912   `entry` mediumint(8) unsigned NOT NULL default '0',
12913   `x` float NOT NULL default '0',
12914   `y` float NOT NULL default '0',
12915   `icon` mediumint(8) unsigned NOT NULL default '0',
12916   `flags` mediumint(8) unsigned NOT NULL default '0',
12917   `data` mediumint(8) unsigned NOT NULL default '0',
12918   `icon_name` text NOT NULL,
12919   PRIMARY KEY  (`entry`)
12920 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
12923 -- Dumping data for table `points_of_interest`
12926 LOCK TABLES `points_of_interest` WRITE;
12927 /*!40000 ALTER TABLE `points_of_interest` DISABLE KEYS */;
12928 /*!40000 ALTER TABLE `points_of_interest` ENABLE KEYS */;
12929 UNLOCK TABLES;
12933 -- Table structure for table `pool_creature`
12936 DROP TABLE IF EXISTS `pool_creature`;
12937 CREATE TABLE `pool_creature` (
12938   `guid` int(10) unsigned NOT NULL default '0',
12939   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
12940   `chance` float unsigned NOT NULL default '0',
12941   PRIMARY KEY  (`pool_entry`,`guid`)
12942 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
12946 -- Dumping data for table `pool_creature`
12949 LOCK TABLES `pool_creature` WRITE;
12950 /*!40000 ALTER TABLE `pool_creature` DISABLE KEYS */;
12951 /*!40000 ALTER TABLE `pool_creature` ENABLE KEYS */;
12952 UNLOCK TABLES;
12955 -- Table structure for table `pool_gameobject`
12958 DROP TABLE IF EXISTS `pool_gameobject`;
12959 CREATE TABLE `pool_gameobject` (
12960   `guid` int(10) unsigned NOT NULL default '0',
12961   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
12962   `chance` float unsigned NOT NULL default '0',
12963   PRIMARY KEY  (`guid`,`pool_entry`)
12964 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
12967 -- Dumping data for table `pool_gameobject`
12970 LOCK TABLES `pool_gameobject` WRITE;
12971 /*!40000 ALTER TABLE `pool_gameobject` DISABLE KEYS */;
12972 /*!40000 ALTER TABLE `pool_gameobject` ENABLE KEYS */;
12973 UNLOCK TABLES;
12976 -- Table structure for table `pool_pool`
12979 DROP TABLE IF EXISTS `pool_pool`;
12980 CREATE TABLE `pool_pool` (
12981   `pool_id` mediumint(8) unsigned NOT NULL default '0',
12982   `mother_pool` mediumint(8) unsigned NOT NULL default '0',
12983   `chance` float NOT NULL default '0',
12984   PRIMARY KEY  (`pool_id`,`mother_pool`)
12985 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
12988 -- Dumping data for table `pool_pool`
12991 LOCK TABLES `pool_pool` WRITE;
12992 /*!40000 ALTER TABLE `pool_pool` DISABLE KEYS */;
12993 /*!40000 ALTER TABLE `pool_pool` ENABLE KEYS */;
12994 UNLOCK TABLES;
12997 -- Table structure for table `pool_template`
13000 DROP TABLE IF EXISTS `pool_template`;
13001 CREATE TABLE `pool_template` (
13002   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Pool entry',
13003   `max_limit` int(10) unsigned NOT NULL default '0' COMMENT 'Max number of objects (0) is no limit',
13004   PRIMARY KEY  (`entry`)
13005 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13008 -- Dumping data for table `pool_template`
13011 LOCK TABLES `pool_template` WRITE;
13012 /*!40000 ALTER TABLE `pool_template` DISABLE KEYS */;
13013 /*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
13014 UNLOCK TABLES;
13017 -- Table structure for table `game_event_pool`
13020 DROP TABLE IF EXISTS `game_event_pool`;
13021 CREATE TABLE `game_event_pool` (
13022   `pool_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Id of the pool',
13023   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
13024   PRIMARY KEY  (`pool_entry`)
13025 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13028 -- Dumping data for table `game_event_pool`
13031 LOCK TABLES `game_event_pool` WRITE;
13032 /*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
13033 /*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
13034 UNLOCK TABLES;
13037 -- Table structure for table `prospecting_loot_template`
13040 DROP TABLE IF EXISTS `prospecting_loot_template`;
13041 CREATE TABLE `prospecting_loot_template` (
13042   `entry` mediumint(8) unsigned NOT NULL default '0',
13043   `item` mediumint(8) unsigned NOT NULL default '0',
13044   `ChanceOrQuestChance` float NOT NULL default '100',
13045   `groupid` tinyint(3) unsigned NOT NULL default '0',
13046   `mincountOrRef` mediumint(9) NOT NULL default '1',
13047   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13048   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13049   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13050   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13051   PRIMARY KEY  (`entry`,`item`)
13052 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13055 -- Dumping data for table `prospecting_loot_template`
13058 LOCK TABLES `prospecting_loot_template` WRITE;
13059 /*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
13060 /*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
13061 UNLOCK TABLES;
13064 -- Table structure for table `quest_end_scripts`
13067 DROP TABLE IF EXISTS `quest_end_scripts`;
13068 CREATE TABLE `quest_end_scripts` (
13069   `id` mediumint(8) unsigned NOT NULL default '0',
13070   `delay` int(10) unsigned NOT NULL default '0',
13071   `command` mediumint(8) unsigned NOT NULL default '0',
13072   `datalong` mediumint(8) unsigned NOT NULL default '0',
13073   `datalong2` int(10) unsigned NOT NULL default '0',
13074   `dataint` int(11) NOT NULL default '0',
13075   `x` float NOT NULL default '0',
13076   `y` float NOT NULL default '0',
13077   `z` float NOT NULL default '0',
13078   `o` float NOT NULL default '0'
13079 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13082 -- Dumping data for table `quest_end_scripts`
13085 LOCK TABLES `quest_end_scripts` WRITE;
13086 /*!40000 ALTER TABLE `quest_end_scripts` DISABLE KEYS */;
13087 /*!40000 ALTER TABLE `quest_end_scripts` ENABLE KEYS */;
13088 UNLOCK TABLES;
13091 -- Table structure for table `quest_start_scripts`
13094 DROP TABLE IF EXISTS `quest_start_scripts`;
13095 CREATE TABLE `quest_start_scripts` (
13096   `id` mediumint(8) unsigned NOT NULL default '0',
13097   `delay` int(10) unsigned NOT NULL default '0',
13098   `command` mediumint(8) unsigned NOT NULL default '0',
13099   `datalong` mediumint(8) unsigned NOT NULL default '0',
13100   `datalong2` int(10) unsigned NOT NULL default '0',
13101   `dataint` int(11) NOT NULL default '0',
13102   `x` float NOT NULL default '0',
13103   `y` float NOT NULL default '0',
13104   `z` float NOT NULL default '0',
13105   `o` float NOT NULL default '0'
13106 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13109 -- Dumping data for table `quest_start_scripts`
13112 LOCK TABLES `quest_start_scripts` WRITE;
13113 /*!40000 ALTER TABLE `quest_start_scripts` DISABLE KEYS */;
13114 /*!40000 ALTER TABLE `quest_start_scripts` ENABLE KEYS */;
13115 UNLOCK TABLES;
13118 -- Table structure for table `quest_mail_loot_template`
13121 DROP TABLE IF EXISTS `quest_mail_loot_template`;
13122 CREATE TABLE `quest_mail_loot_template` (
13123   `entry` mediumint(8) unsigned NOT NULL default '0',
13124   `item` mediumint(8) unsigned NOT NULL default '0',
13125   `ChanceOrQuestChance` float NOT NULL default '100',
13126   `groupid` tinyint(3) unsigned NOT NULL default '0',
13127   `mincountOrRef` mediumint(9) NOT NULL default '1',
13128   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13129   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13130   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13131   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13132   PRIMARY KEY  (`entry`,`item`)
13133 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13136 -- Dumping data for table `quest_mail_loot_template`
13139 LOCK TABLES `quest_mail_loot_template` WRITE;
13140 /*!40000 ALTER TABLE `quest_mail_loot_template` DISABLE KEYS */;
13141 /*!40000 ALTER TABLE `quest_mail_loot_template` ENABLE KEYS */;
13142 UNLOCK TABLES;
13145 -- Table structure for table `quest_template`
13148 DROP TABLE IF EXISTS `quest_template`;
13149 CREATE TABLE `quest_template` (
13150   `entry` mediumint(8) unsigned NOT NULL default '0',
13151   `Method` tinyint(3) unsigned NOT NULL default '2',
13152   `ZoneOrSort` smallint(6) NOT NULL default '0',
13153   `SkillOrClass` smallint(6) NOT NULL default '0',
13154   `MinLevel` tinyint(3) unsigned NOT NULL default '0',
13155   `QuestLevel` tinyint(3) unsigned NOT NULL default '0',
13156   `Type` smallint(5) unsigned NOT NULL default '0',
13157   `RequiredRaces` smallint(5) unsigned NOT NULL default '0',
13158   `RequiredSkillValue` smallint(5) unsigned NOT NULL default '0',
13159   `RepObjectiveFaction` smallint(5) unsigned NOT NULL default '0',
13160   `RepObjectiveValue` mediumint(9) NOT NULL default '0',
13161   `RequiredMinRepFaction` smallint(5) unsigned NOT NULL default '0',
13162   `RequiredMinRepValue` mediumint(9) NOT NULL default '0',
13163   `RequiredMaxRepFaction` smallint(5) unsigned NOT NULL default '0',
13164   `RequiredMaxRepValue` mediumint(9) NOT NULL default '0',
13165   `SuggestedPlayers` tinyint(3) unsigned NOT NULL default '0',
13166   `LimitTime` int(10) unsigned NOT NULL default '0',
13167   `QuestFlags` smallint(5) unsigned NOT NULL default '0',
13168   `SpecialFlags` tinyint(3) unsigned NOT NULL default '0',
13169   `CharTitleId` tinyint(3) unsigned NOT NULL default '0',
13170   `PlayersSlain` tinyint(3) unsigned NOT NULL default '0',
13171   `BonusTalents` tinyint(3) unsigned NOT NULL default '0',
13172   `PrevQuestId` mediumint(9) NOT NULL default '0',
13173   `NextQuestId` mediumint(9) NOT NULL default '0',
13174   `ExclusiveGroup` mediumint(9) NOT NULL default '0',
13175   `NextQuestInChain` mediumint(8) unsigned NOT NULL default '0',
13176   `SrcItemId` mediumint(8) unsigned NOT NULL default '0',
13177   `SrcItemCount` tinyint(3) unsigned NOT NULL default '0',
13178   `SrcSpell` mediumint(8) unsigned NOT NULL default '0',
13179   `Title` text,
13180   `Details` text,
13181   `Objectives` text,
13182   `OfferRewardText` text,
13183   `RequestItemsText` text,
13184   `EndText` text,
13185   `ObjectiveText1` text,
13186   `ObjectiveText2` text,
13187   `ObjectiveText3` text,
13188   `ObjectiveText4` text,
13189   `ReqItemId1` mediumint(8) unsigned NOT NULL default '0',
13190   `ReqItemId2` mediumint(8) unsigned NOT NULL default '0',
13191   `ReqItemId3` mediumint(8) unsigned NOT NULL default '0',
13192   `ReqItemId4` mediumint(8) unsigned NOT NULL default '0',
13193   `ReqItemCount1` smallint(5) unsigned NOT NULL default '0',
13194   `ReqItemCount2` smallint(5) unsigned NOT NULL default '0',
13195   `ReqItemCount3` smallint(5) unsigned NOT NULL default '0',
13196   `ReqItemCount4` smallint(5) unsigned NOT NULL default '0',
13197   `ReqSourceId1` mediumint(8) unsigned NOT NULL default '0',
13198   `ReqSourceId2` mediumint(8) unsigned NOT NULL default '0',
13199   `ReqSourceId3` mediumint(8) unsigned NOT NULL default '0',
13200   `ReqSourceId4` mediumint(8) unsigned NOT NULL default '0',
13201   `ReqSourceCount1` smallint(5) unsigned NOT NULL default '0',
13202   `ReqSourceCount2` smallint(5) unsigned NOT NULL default '0',
13203   `ReqSourceCount3` smallint(5) unsigned NOT NULL default '0',
13204   `ReqSourceCount4` smallint(5) unsigned NOT NULL default '0',
13205   `ReqCreatureOrGOId1` mediumint(9) NOT NULL default '0',
13206   `ReqCreatureOrGOId2` mediumint(9) NOT NULL default '0',
13207   `ReqCreatureOrGOId3` mediumint(9) NOT NULL default '0',
13208   `ReqCreatureOrGOId4` mediumint(9) NOT NULL default '0',
13209   `ReqCreatureOrGOCount1` smallint(5) unsigned NOT NULL default '0',
13210   `ReqCreatureOrGOCount2` smallint(5) unsigned NOT NULL default '0',
13211   `ReqCreatureOrGOCount3` smallint(5) unsigned NOT NULL default '0',
13212   `ReqCreatureOrGOCount4` smallint(5) unsigned NOT NULL default '0',
13213   `ReqSpellCast1` mediumint(8) unsigned NOT NULL default '0',
13214   `ReqSpellCast2` mediumint(8) unsigned NOT NULL default '0',
13215   `ReqSpellCast3` mediumint(8) unsigned NOT NULL default '0',
13216   `ReqSpellCast4` mediumint(8) unsigned NOT NULL default '0',
13217   `RewChoiceItemId1` mediumint(8) unsigned NOT NULL default '0',
13218   `RewChoiceItemId2` mediumint(8) unsigned NOT NULL default '0',
13219   `RewChoiceItemId3` mediumint(8) unsigned NOT NULL default '0',
13220   `RewChoiceItemId4` mediumint(8) unsigned NOT NULL default '0',
13221   `RewChoiceItemId5` mediumint(8) unsigned NOT NULL default '0',
13222   `RewChoiceItemId6` mediumint(8) unsigned NOT NULL default '0',
13223   `RewChoiceItemCount1` smallint(5) unsigned NOT NULL default '0',
13224   `RewChoiceItemCount2` smallint(5) unsigned NOT NULL default '0',
13225   `RewChoiceItemCount3` smallint(5) unsigned NOT NULL default '0',
13226   `RewChoiceItemCount4` smallint(5) unsigned NOT NULL default '0',
13227   `RewChoiceItemCount5` smallint(5) unsigned NOT NULL default '0',
13228   `RewChoiceItemCount6` smallint(5) unsigned NOT NULL default '0',
13229   `RewItemId1` mediumint(8) unsigned NOT NULL default '0',
13230   `RewItemId2` mediumint(8) unsigned NOT NULL default '0',
13231   `RewItemId3` mediumint(8) unsigned NOT NULL default '0',
13232   `RewItemId4` mediumint(8) unsigned NOT NULL default '0',
13233   `RewItemCount1` smallint(5) unsigned NOT NULL default '0',
13234   `RewItemCount2` smallint(5) unsigned NOT NULL default '0',
13235   `RewItemCount3` smallint(5) unsigned NOT NULL default '0',
13236   `RewItemCount4` smallint(5) unsigned NOT NULL default '0',
13237   `RewRepFaction1` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13238   `RewRepFaction2` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13239   `RewRepFaction3` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13240   `RewRepFaction4` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13241   `RewRepFaction5` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13242   `RewRepValue1` mediumint(9) NOT NULL default '0',
13243   `RewRepValue2` mediumint(9) NOT NULL default '0',
13244   `RewRepValue3` mediumint(9) NOT NULL default '0',
13245   `RewRepValue4` mediumint(9) NOT NULL default '0',
13246   `RewRepValue5` mediumint(9) NOT NULL default '0',
13247   `RewHonorableKills` int unsigned NOT NULL default '0',
13248   `RewOrReqMoney` int(11) NOT NULL default '0',
13249   `RewMoneyMaxLevel` int(10) unsigned NOT NULL default '0',
13250   `RewSpell` mediumint(8) unsigned NOT NULL default '0',
13251   `RewSpellCast` mediumint(8) unsigned NOT NULL default '0',
13252   `RewMailTemplateId` mediumint(8) unsigned NOT NULL default '0',
13253   `RewMailDelaySecs` int(11) unsigned NOT NULL default '0',
13254   `PointMapId` smallint(5) unsigned NOT NULL default '0',
13255   `PointX` float NOT NULL default '0',
13256   `PointY` float NOT NULL default '0',
13257   `PointOpt` mediumint(8) unsigned NOT NULL default '0',
13258   `DetailsEmote1` smallint(5) unsigned NOT NULL default '0',
13259   `DetailsEmote2` smallint(5) unsigned NOT NULL default '0',
13260   `DetailsEmote3` smallint(5) unsigned NOT NULL default '0',
13261   `DetailsEmote4` smallint(5) unsigned NOT NULL default '0',
13262   `IncompleteEmote` smallint(5) unsigned NOT NULL default '0',
13263   `CompleteEmote` smallint(5) unsigned NOT NULL default '0',
13264   `OfferRewardEmote1` smallint(5) unsigned NOT NULL default '0',
13265   `OfferRewardEmote2` smallint(5) unsigned NOT NULL default '0',
13266   `OfferRewardEmote3` smallint(5) unsigned NOT NULL default '0',
13267   `OfferRewardEmote4` smallint(5) unsigned NOT NULL default '0',
13268   `StartScript` mediumint(8) unsigned NOT NULL default '0',
13269   `CompleteScript` mediumint(8) unsigned NOT NULL default '0',
13270   PRIMARY KEY  (`entry`)
13271 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
13274 -- Dumping data for table `quest_template`
13277 LOCK TABLES `quest_template` WRITE;
13278 /*!40000 ALTER TABLE `quest_template` DISABLE KEYS */;
13279 /*!40000 ALTER TABLE `quest_template` ENABLE KEYS */;
13280 UNLOCK TABLES;
13283 -- Table structure for table `reference_loot_template`
13286 DROP TABLE IF EXISTS `reference_loot_template`;
13287 CREATE TABLE `reference_loot_template` (
13288   `entry` mediumint(8) unsigned NOT NULL default '0',
13289   `item` mediumint(8) unsigned NOT NULL default '0',
13290   `ChanceOrQuestChance` float NOT NULL default '100',
13291   `groupid` tinyint(3) unsigned NOT NULL default '0',
13292   `mincountOrRef` mediumint(9) NOT NULL default '1',
13293   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13294   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13295   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13296   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13297   PRIMARY KEY  (`entry`,`item`)
13298 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13301 -- Dumping data for table `reference_loot_template`
13304 LOCK TABLES `reference_loot_template` WRITE;
13305 /*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
13306 /*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
13307 UNLOCK TABLES;
13310 -- Table structure for table `reserved_name`
13313 DROP TABLE IF EXISTS `reserved_name`;
13314 CREATE TABLE `reserved_name` (
13315   `name` varchar(12) NOT NULL default '',
13316   PRIMARY KEY  (`name`)
13317 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Reserved Names';
13320 -- Dumping data for table `reserved_name`
13323 LOCK TABLES `reserved_name` WRITE;
13324 /*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
13325 /*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
13326 UNLOCK TABLES;
13329 -- Table structure for table `skill_discovery_template`
13332 DROP TABLE IF EXISTS `skill_discovery_template`;
13333 CREATE TABLE `skill_discovery_template` (
13334   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the discoverable spell',
13335   `reqSpell` mediumint(8) unsigned NOT NULL default '0' COMMENT 'spell requirement',
13336   `reqSkillValue` smallint(5) unsigned NOT NULL default '0' COMMENT 'skill points requirement',
13337   `chance` float NOT NULL default '0' COMMENT 'chance to discover',
13338   PRIMARY KEY (`spellId`,`reqSpell`)
13339 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';
13342 -- Dumping data for table `skill_discovery_template`
13345 LOCK TABLES `skill_discovery_template` WRITE;
13346 /*!40000 ALTER TABLE `skill_discovery_template` DISABLE KEYS */;
13347 /*!40000 ALTER TABLE `skill_discovery_template` ENABLE KEYS */;
13348 UNLOCK TABLES;
13351 -- Table structure for table `skill_extra_item_template`
13354 DROP TABLE IF EXISTS `skill_extra_item_template`;
13355 CREATE TABLE `skill_extra_item_template` (
13356   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the item creation spell',
13357   `requiredSpecialization` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Specialization spell id',
13358   `additionalCreateChance` float NOT NULL default '0' COMMENT 'chance to create add',
13359   `additionalMaxNum` tinyint(3) unsigned NOT NULL default '0' COMMENT 'max num of adds',
13360   PRIMARY KEY  (`spellId`)
13361 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';
13364 -- Dumping data for table `skill_extra_item_template`
13367 LOCK TABLES `skill_extra_item_template` WRITE;
13368 /*!40000 ALTER TABLE `skill_extra_item_template` DISABLE KEYS */;
13369 /*!40000 ALTER TABLE `skill_extra_item_template` ENABLE KEYS */;
13370 UNLOCK TABLES;
13373 -- Table structure for table `skill_fishing_base_level`
13376 DROP TABLE IF EXISTS `skill_fishing_base_level`;
13377 CREATE TABLE `skill_fishing_base_level` (
13378   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Area identifier',
13379   `skill` smallint(6) NOT NULL default '0' COMMENT 'Base skill level requirement',
13380   PRIMARY KEY  (`entry`)
13381 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Fishing system';
13384 -- Dumping data for table `skill_fishing_base_level`
13387 LOCK TABLES `skill_fishing_base_level` WRITE;
13388 /*!40000 ALTER TABLE `skill_fishing_base_level` DISABLE KEYS */;
13389 /*!40000 ALTER TABLE `skill_fishing_base_level` ENABLE KEYS */;
13390 UNLOCK TABLES;
13393 -- Table structure for table `skinning_loot_template`
13396 DROP TABLE IF EXISTS `skinning_loot_template`;
13397 CREATE TABLE `skinning_loot_template` (
13398   `entry` mediumint(8) unsigned NOT NULL default '0',
13399   `item` mediumint(8) unsigned NOT NULL default '0',
13400   `ChanceOrQuestChance` float NOT NULL default '100',
13401   `groupid` tinyint(3) unsigned NOT NULL default '0',
13402   `mincountOrRef` mediumint(9) NOT NULL default '1',
13403   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13404   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13405   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13406   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13407   PRIMARY KEY  (`entry`,`item`)
13408 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13411 -- Dumping data for table `skinning_loot_template`
13414 LOCK TABLES `skinning_loot_template` WRITE;
13415 /*!40000 ALTER TABLE `skinning_loot_template` DISABLE KEYS */;
13416 /*!40000 ALTER TABLE `skinning_loot_template` ENABLE KEYS */;
13417 UNLOCK TABLES;
13420 -- Table structure for table `spell_affect`
13423 DROP TABLE IF EXISTS `spell_affect`;
13424 CREATE TABLE `spell_affect` (
13425   `entry` smallint(5) unsigned NOT NULL default '0',
13426   `effectId` tinyint(3) unsigned NOT NULL default '0',
13427   `SpellClassMask0` int(5) unsigned NOT NULL default '0',
13428   `SpellClassMask1` int(5) unsigned NOT NULL default '0',
13429   `SpellClassMask2` int(5) unsigned NOT NULL default '0',
13430   PRIMARY KEY  (`entry`,`effectId`)
13431 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13434 -- Dumping data for table `spell_affect`
13437 LOCK TABLES `spell_affect` WRITE;
13438 /*!40000 ALTER TABLE `spell_affect` DISABLE KEYS */;
13439 /*!40000 ALTER TABLE `spell_affect` ENABLE KEYS */;
13440 UNLOCK TABLES;
13443 -- Table structure for table `spell_area`
13446 DROP TABLE IF EXISTS `spell_area`;
13447 CREATE TABLE `spell_area` (
13448   `spell`              mediumint(8) unsigned NOT NULL default '0',
13449   `area`               mediumint(8) unsigned NOT NULL default '0',
13450   `quest_start`        mediumint(8) unsigned NOT NULL default '0',
13451   `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
13452   `quest_end`          mediumint(8) unsigned NOT NULL default '0',
13453   `aura_spell`         mediumint(8) NOT NULL default '0',
13454   `racemask`           mediumint(8) unsigned NOT NULL default '0',
13455   `gender`             tinyint(1) unsigned NOT NULL default '2',
13456   `autocast`           tinyint(1) unsigned NOT NULL default '0',
13457   PRIMARY KEY  (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`)
13458 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13461 -- Dumping data for table `spell_area`
13464 LOCK TABLES `spell_area` WRITE;
13465 /*!40000 ALTER TABLE `spell_area` DISABLE KEYS */;
13466 /*!40000 ALTER TABLE `spell_area` ENABLE KEYS */;
13467 UNLOCK TABLES;
13470 -- Table structure for table `spell_chain`
13473 DROP TABLE IF EXISTS `spell_chain`;
13474 CREATE TABLE `spell_chain` (
13475   `spell_id` mediumint(9) NOT NULL default '0',
13476   `prev_spell` mediumint(9) NOT NULL default '0',
13477   `first_spell` mediumint(9) NOT NULL default '0',
13478   `rank` tinyint(4) NOT NULL default '0',
13479   `req_spell` mediumint(9) NOT NULL default '0',
13480   PRIMARY KEY  (`spell_id`)
13481 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data';
13484 -- Dumping data for table `spell_chain`
13487 LOCK TABLES `spell_chain` WRITE;
13488 /*!40000 ALTER TABLE `spell_chain` DISABLE KEYS */;
13489 INSERT INTO spell_chain VALUES
13490 /*------------------
13491 --(6) Frost
13492 ------------------*/
13493 /*Blizzard*/
13494 (10,0,10,1,0),
13495 (6141,10,10,2,0),
13496 (8427,6141,10,3,0),
13497 (10185,8427,10,4,0),
13498 (10186,10185,10,5,0),
13499 (10187,10186,10,6,0),
13500 (27085,10187,10,7,0),
13501 (42939,27085,10,8,0),
13502 (42940,42939,10,9,0),
13503 /*ConeofCold*/
13504 (120,0,120,1,0),
13505 (8492,120,120,2,0),
13506 (10159,8492,120,3,0),
13507 (10160,10159,120,4,0),
13508 (10161,10160,120,5,0),
13509 (27087,10161,120,6,0),
13510 (42930,27087,120,7,0),
13511 (42931,42930,120,8,0),
13512 /*FrostArmor*/
13513 (168,0,168,1,0),
13514 (7300,168,168,2,0),
13515 (7301,7300,168,3,0),
13516 /*FrostNova*/
13517 (122,0,122,1,0),
13518 (865,122,122,2,0),
13519 (6131,865,122,3,0),
13520 (10230,6131,122,4,0),
13521 (27088,10230,122,5,0),
13522 (42917,27088,122,6,0),
13523 /*FrostWard*/
13524 (6143,0,6143,1,0),
13525 (8461,6143,6143,2,0),
13526 (8462,8461,6143,3,0),
13527 (10177,8462,6143,4,0),
13528 (28609,10177,6143,5,0),
13529 (32796,28609,6143,6,0),
13530 (43012,32796,6143,7,0),
13531 /*Frostbolt*/
13532 (116,0,116,1,0),
13533 (205,116,116,2,0),
13534 (837,205,116,3,0),
13535 (7322,837,116,4,0),
13536 (8406,7322,116,5,0),
13537 (8407,8406,116,6,0),
13538 (8408,8407,116,7,0),
13539 (10179,8408,116,8,0),
13540 (10180,10179,116,9,0),
13541 (10181,10180,116,10,0),
13542 (25304,10181,116,11,0),
13543 (27071,25304,116,12,0),
13544 (27072,27071,116,13,0),
13545 (38697,27072,116,14,0),
13546 (42841,38697,116,15,0),
13547 (42842,42841,116,16,0),
13548 /*IceArmor*/
13549 (7302,0,7302,1,0),
13550 (7320,7302,7302,2,0),
13551 (10219,7320,7302,3,0),
13552 (10220,10219,7302,4,0),
13553 (27124,10220,7302,5,0),
13554 (43008,27124,7302,6,0),
13555 /*IceBarrier*/
13556 (11426,0,11426,1,0),
13557 (13031,11426,11426,2,0),
13558 (13032,13031,11426,3,0),
13559 (13033,13032,11426,4,0),
13560 (27134,13033,11426,5,0),
13561 (33405,27134,11426,6,0),
13562 (43038,33405,11426,7,0),
13563 (43039,43038,11426,8,0),
13564 /*IceLance*/
13565 (30455,0,30455,1,0),
13566 (42913,30455,30455,2,0),
13567 (42914,42913,30455,3,0),
13568 /*------------------
13569 --(8)Fire
13570 ------------------*/
13571 /*BlastWave*/
13572 (11113,0,11113,1,0),
13573 (13018,11113,11113,2,0),
13574 (13019,13018,11113,3,0),
13575 (13020,13019,11113,4,0),
13576 (13021,13020,11113,5,0),
13577 (27133,13021,11113,6,0),
13578 (33933,27133,11113,7,0),
13579 (42944,33933,11113,8,0),
13580 (42945,42944,11113,9,0),
13581 /*Dragon'sBreath*/
13582 (31661,0,31661,1,0),
13583 (33041,31661,31661,2,0),
13584 (33042,33041,31661,3,0),
13585 (33043,33042,31661,4,0),
13586 (42949,33043,31661,5,0),
13587 (42950,42949,31661,6,0),
13588 /*FireBlast*/
13589 (2136,0,2136,1,0),
13590 (2137,2136,2136,2,0),
13591 (2138,2137,2136,3,0),
13592 (8412,2138,2136,4,0),
13593 (8413,8412,2136,5,0),
13594 (10197,8413,2136,6,0),
13595 (10199,10197,2136,7,0),
13596 (27078,10199,2136,8,0),
13597 (27079,27078,2136,9,0),
13598 (42872,27079,2136,10,0),
13599 (42873,42872,2136,11,0),
13600 /*FireWard*/
13601 (543,0,543,1,0),
13602 (8457,543,543,2,0),
13603 (8458,8457,543,3,0),
13604 (10223,8458,543,4,0),
13605 (10225,10223,543,5,0),
13606 (27128,10225,543,6,0),
13607 (43010,27128,543,7,0),
13608 /*Fireball*/
13609 (133,0,133,1,0),
13610 (143,133,133,2,0),
13611 (145,143,133,3,0),
13612 (3140,145,133,4,0),
13613 (8400,3140,133,5,0),
13614 (8401,8400,133,6,0),
13615 (8402,8401,133,7,0),
13616 (10148,8402,133,8,0),
13617 (10149,10148,133,9,0),
13618 (10150,10149,133,10,0),
13619 (10151,10150,133,11,0),
13620 (25306,10151,133,12,0),
13621 (27070,25306,133,13,0),
13622 (38692,27070,133,14,0),
13623 (42832,38692,133,15,0),
13624 (42833,42832,133,16,0),
13625 /*Flamestrike*/
13626 (2120,0,2120,1,0),
13627 (2121,2120,2120,2,0),
13628 (8422,2121,2120,3,0),
13629 (8423,8422,2120,4,0),
13630 (10215,8423,2120,5,0),
13631 (10216,10215,2120,6,0),
13632 (27086,10216,2120,7,0),
13633 (42925,27086,2120,8,0),
13634 (42926,42925,2120,9,0),
13635 /*FrostfireBolt*/
13636 (44614,0,44614,1,0),
13637 (47610,44614,44614,2,0),
13638 /*LivingBomb*/
13639 (44457,0,44457,1,0),
13640 (55359,44457,44457,2,0),
13641 (55360,55359,44457,3,0),
13642 /*MoltenArmor*/
13643 (30482,0,30482,1,0),
13644 (43045,30482,30482,2,0),
13645 (43046,43045,30482,3,0),
13646 /*Pyroblast*/
13647 (11366,0,11366,1,0),
13648 (12505,11366,11366,2,0),
13649 (12522,12505,11366,3,0),
13650 (12523,12522,11366,4,0),
13651 (12524,12523,11366,5,0),
13652 (12525,12524,11366,6,0),
13653 (12526,12525,11366,7,0),
13654 (18809,12526,11366,8,0),
13655 (27132,18809,11366,9,0),
13656 (33938,27132,11366,10,0),
13657 (42890,33938,11366,11,0),
13658 (42891,42890,11366,12,0),
13659 /*Scorch*/
13660 (2948,0,2948,1,0),
13661 (8444,2948,2948,2,0),
13662 (8445,8444,2948,3,0),
13663 (8446,8445,2948,4,0),
13664 (10205,8446,2948,5,0),
13665 (10206,10205,2948,6,0),
13666 (10207,10206,2948,7,0),
13667 (27073,10207,2948,8,0),
13668 (27074,27073,2948,9,0),
13669 (42858,27074,2948,10,0),
13670 (42859,42858,2948,11,0),
13671 /*------------------
13672 --(26)Arms
13673 ------------------*/
13674 /*Charge*/
13675 (100,0,100,1,0),
13676 (6178,100,100,2,0),
13677 (11578,6178,100,3,0),
13678 /*HeroicStrike*/
13679 (78,0,78,1,0),
13680 (284,78,78,2,0),
13681 (285,284,78,3,0),
13682 (1608,285,78,4,0),
13683 (11564,1608,78,5,0),
13684 (11565,11564,78,6,0),
13685 (11566,11565,78,7,0),
13686 (11567,11566,78,8,0),
13687 (25286,11567,78,9,0),
13688 (29707,25286,78,10,0),
13689 (30324,29707,78,11,0),
13690 (47449,30324,78,12,0),
13691 (47450,47449,78,13,0),
13692 /*MortalStrike*/
13693 (12294,0,12294,1,0),
13694 (21551,12294,12294,2,0),
13695 (21552,21551,12294,3,0),
13696 (21553,21552,12294,4,0),
13697 (25248,21553,12294,5,0),
13698 (30330,25248,12294,6,0),
13699 (47485,30330,12294,7,0),
13700 (47486,47485,12294,8,0),
13701 /*Rend*/
13702 (772,0,772,1,0),
13703 (6546,772,772,2,0),
13704 (6547,6546,772,3,0),
13705 (6548,6547,772,4,0),
13706 (11572,6548,772,5,0),
13707 (11573,11572,772,6,0),
13708 (11574,11573,772,7,0),
13709 (25208,11574,772,8,0),
13710 (46845,25208,772,9,0),
13711 (47465,46845,772,10,0),
13712 /*ThunderClap*/
13713 (6343,0,6343,1,0),
13714 (8198,6343,6343,2,0),
13715 (8204,8198,6343,3,0),
13716 (8205,8204,6343,4,0),
13717 (11580,8205,6343,5,0),
13718 (11581,11580,6343,6,0),
13719 (25264,11581,6343,7,0),
13720 (47501,25264,6343,8,0),
13721 (47502,47501,6343,9,0),
13722 /*------------------
13723 -- (38) Combat (Rogue)
13724 ------------------*/
13725 /*Backstab*/
13726 (53,0,53,1,0),
13727 (2589,53,53,2,0),
13728 (2590,2589,53,3,0),
13729 (2591,2590,53,4,0),
13730 (8721,2591,53,5,0),
13731 (11279,8721,53,6,0),
13732 (11280,11279,53,7,0),
13733 (11281,11280,53,8,0),
13734 (25300,11281,53,9,0),
13735 (26863,25300,53,10,0),
13736 (48656,26863,53,11,0),
13737 (48657,48656,53,12,0),
13738 /*Evasion*/
13739 (5277,0,5277,1,0),
13740 (26669,5277,5277,2,0),
13741 /*Feint*/
13742 (1966,0,1966,1,0),
13743 (6768,1966,1966,2,0),
13744 (8637,6768,1966,3,0),
13745 (11303,8637,1966,4,0),
13746 (25302,11303,1966,5,0),
13747 (27448,25302,1966,6,0),
13748 (48658,27448,1966,7,0),
13749 (48659,48658,1966,8,0),
13750 /*Sinister Strike*/
13751 (1752,0,1752,1,0),
13752 (1757,1752,1752,2,0),
13753 (1758,1757,1752,3,0),
13754 (1759,1758,1752,4,0),
13755 (1760,1759,1752,5,0),
13756 (8621,1760,1752,6,0),
13757 (11293,8621,1752,7,0),
13758 (11294,11293,1752,8,0),
13759 (26861,11294,1752,9,0),
13760 (26862,26861,1752,10,0),
13761 (48637,26862,1752,11,0),
13762 (48638,48637,1752,12,0),
13763 /*Sprint*/
13764 (2983,0,2983,1,0),
13765 (8696,2983,2983,2,0),
13766 (11305,8696,2983,3,0),
13767 /*------------------
13768 --(39)Subtlety
13769 ------------------*/
13770 /*Hemorrhage*/
13771 (16511,0,16511,1,0),
13772 (17347,16511,16511,2,0),
13773 (17348,17347,16511,3,0),
13774 (26864,17348,16511,4,0),
13775 (48660,26864,16511,5,0),
13776 /*Sap*/
13777 (6770,0,6770,1,0),
13778 (2070,6770,6770,2,0),
13779 (11297,2070,6770,3,0),
13780 (51724,11297,6770,4,0),
13781 /*Stealth*/
13782 (1784,0,1784,1,0),
13783 (1785,1784,1784,2,0),
13784 (1786,1785,1784,3,0),
13785 (1787,1786,1784,4,0),
13786 /*Vanish*/
13787 (1856,0,1856,1,0),
13788 (1857,1856,1856,2,0),
13789 (26889,1857,1856,3,0),
13790 /*------------------
13791 -- (50) Beast Mastery
13792 ------------------*/
13793 /*Aspect of the Hawk*/
13794 (13165,0,13165,1,0),
13795 (14318,13165,13165,2,0),
13796 (14319,14318,13165,3,0),
13797 (14320,14319,13165,4,0),
13798 (14321,14320,13165,5,0),
13799 (14322,14321,13165,6,0),
13800 (25296,14322,13165,7,0),
13801 (27044,25296,13165,8,0),
13802 /*Aspect of the Wild*/
13803 (20043,0,20043,1,0),
13804 (20190,20043,20043,2,0),
13805 (27045,20190,20043,3,0),
13806 (49071,27045,20043,4,0),
13807 /*MendPet*/
13808 (136,0,136,1,0),
13809 (3111,136,136,2,0),
13810 (3661,3111,136,3,0),
13811 (3662,3661,136,4,0),
13812 (13542,3662,136,5,0),
13813 (13543,13542,136,6,0),
13814 (13544,13543,136,7,0),
13815 (27046,13544,136,8,0),
13816 (48989,27046,136,9,0),
13817 (48990,48989,136,10,0),
13818 /*ScareBeast*/
13819 (1513,0,1513,1,0),
13820 (14326,1513,1513,2,0),
13821 (14327,14326,1513,3,0),
13822 /*------------------
13823 --(51)Survival
13824 ------------------*/
13825 /*Counterattack*/
13826 (19306,0,19306,1,0),
13827 (20909,19306,19306,2,0),
13828 (20910,20909,19306,3,0),
13829 (27067,20910,19306,4,0),
13830 (48998,27067,19306,5,0),
13831 (48999,48998,19306,6,0),
13832 /*ExplosiveShot*/
13833 (53301,0,53301,1,0),
13834 (60051,53301,53301,2,0),
13835 (60052,60051,53301,3,0),
13836 (60053,60052,53301,4,0),
13837 /*ExplosiveTrap*/
13838 (13813,0,13813,1,0),
13839 (14316,13813,13813,2,0),
13840 (14317,14316,13813,3,0),
13841 (27025,14317,13813,4,0),
13842 (49066,27025,13813,5,0),
13843 (49067,49066,13813,6,0),
13844 /*FreezingTrap*/
13845 (1499,0,1499,1,0),
13846 (14310,1499,1499,2,0),
13847 (14311,14310,1499,3,0),
13848 /*ImmolationTrap*/
13849 (13795,0,13795,1,0),
13850 (14302,13795,13795,2,0),
13851 (14303,14302,13795,3,0),
13852 (14304,14303,13795,4,0),
13853 (14305,14304,13795,5,0),
13854 (27023,14305,13795,6,0),
13855 (49055,27023,13795,7,0),
13856 (49056,49055,13795,8,0),
13857 /*MongooseBite*/
13858 (1495,0,1495,1,0),
13859 (14269,1495,1495,2,0),
13860 (14270,14269,1495,3,0),
13861 (14271,14270,1495,4,0),
13862 (36916,14271,1495,5,0),
13863 (53339,36916,1495,6,0),
13864 /*RaptorStrike*/
13865 (2973,0,2973,1,0),
13866 (14260,2973,2973,2,0),
13867 (14261,14260,2973,3,0),
13868 (14262,14261,2973,4,0),
13869 (14263,14262,2973,5,0),
13870 (14264,14263,2973,6,0),
13871 (14265,14264,2973,7,0),
13872 (14266,14265,2973,8,0),
13873 (27014,14266,2973,9,0),
13874 (48995,27014,2973,10,0),
13875 (48996,48995,2973,11,0),
13876 /*WyvernSting*/
13877 (19386,0,19386,1,0),
13878 (24132,19386,19386,2,0),
13879 (24133,24132,19386,3,0),
13880 (27068,24133,19386,4,0),
13881 (49011,27068,19386,5,0),
13882 (49012,49011,19386,6,0),
13883 /*------------------
13884 -- (56) Holy (Priest)
13885 ------------------*/
13886 /*Binding Heal*/
13887 (32546,0,32546,1,0),
13888 (48119,32546,32546,2,0),
13889 (48120,48119,32546,3,0),
13890 /*Circle of Healing*/
13891 (34861,0,34861,1,0),
13892 (34863,34861,34861,2,0),
13893 (34864,34863,34861,3,0),
13894 (34865,34864,34861,4,0),
13895 (34866,34865,34861,5,0),
13896 (48088,34866,34861,6,0),
13897 (48089,48088,34861,7,0),
13898 /*DesperatePrayer*/
13899 (19236,0,19236,1,0),
13900 (19238,19236,19236,2,0),
13901 (19240,19238,19236,3,0),
13902 (19241,19240,19236,4,0),
13903 (19242,19241,19236,5,0),
13904 (19243,19242,19236,6,0),
13905 (25437,19243,19236,7,0),
13906 (48172,25437,19236,8,0),
13907 (48173,48172,19236,9,0),
13908 /*FlashHeal*/
13909 (2061,0,2061,1,0),
13910 (9472,2061,2061,2,0),
13911 (9473,9472,2061,3,0),
13912 (9474,9473,2061,4,0),
13913 (10915,9474,2061,5,0),
13914 (10916,10915,2061,6,0),
13915 (10917,10916,2061,7,0),
13916 (25233,10917,2061,8,0),
13917 (25235,25233,2061,9,0),
13918 (48070,25235,2061,10,0),
13919 (48071,48070,2061,11,0),
13920 /*GreaterHeal*/
13921 (2060,0,2060,1,0),
13922 (10963,2060,2060,2,0),
13923 (10964,10963,2060,3,0),
13924 (10965,10964,2060,4,0),
13925 (25314,10965,2060,5,0),
13926 (25210,25314,2060,6,0),
13927 (25213,25210,2060,7,0),
13928 (48062,25213,2060,8,0),
13929 (48063,48062,2060,9,0),
13930 /*Heal*/
13931 (2054,0,2054,1,0),
13932 (2055,2054,2054,2,0),
13933 (6063,2055,2054,3,0),
13934 (6064,6063,2054,4,0),
13935 /*Holy Fire*/
13936 (14914,0,14914,1,0),
13937 (15262,14914,14914,2,0),
13938 (15263,15262,14914,3,0),
13939 (15264,15263,14914,4,0),
13940 (15265,15264,14914,5,0),
13941 (15266,15265,14914,6,0),
13942 (15267,15266,14914,7,0),
13943 (15261,15267,14914,8,0),
13944 (25384,15261,14914,9,0),
13945 (48134,25384,14914,10,0),
13946 (48135,48134,14914,11,0),
13947 /*Holy Nova*/
13948 (15237,0,15237,1,0),
13949 (15430,15237,15237,2,0),
13950 (15431,15430,15237,3,0),
13951 (27799,15431,15237,4,0),
13952 (27800,27799,15237,5,0),
13953 (27801,27800,15237,6,0),
13954 (25331,27801,15237,7,0),
13955 (48077,25331,15237,8,0),
13956 (48078,48077,15237,9,0),
13957 /*LesserHeal*/
13958 (2050,0,2050,1,0),
13959 (2052,2050,2050,2,0),
13960 (2053,2052,2050,3,0),
13961 /*Lightwell*/
13962 (724,0,724,1,0),
13963 (27870,724,724,2,0),
13964 (27871,27870,724,3,0),
13965 (28275,27871,724,4,0),
13966 (48086,28275,724,5,0),
13967 (48087,48086,724,6,0),
13968 /*Prayer of Healing*/
13969 (596,0,596,1,0),
13970 (996,596,596,2,0),
13971 (10960,996,596,3,0),
13972 (10961,10960,596,4,0),
13973 (25316,10961,596,5,0),
13974 (25308,25316,596,6,0),
13975 (48072,25308,596,7,0),
13976 /*Prayer of Mending*/
13977 (33076,0,33076,1,0),
13978 (48112,33076,33076,2,0),
13979 (48113,48112,33076,3,0),
13980 /*Renew*/
13981 (139,0,139,1,0),
13982 (6074,139,139,2,0),
13983 (6075,6074,139,3,0),
13984 (6076,6075,139,4,0),
13985 (6077,6076,139,5,0),
13986 (6078,6077,139,6,0),
13987 (10927,6078,139,7,0),
13988 (10928,10927,139,8,0),
13989 (10929,10928,139,9,0),
13990 (25315,10929,139,10,0),
13991 (25221,25315,139,11,0),
13992 (25222,25221,139,12,0),
13993 (48067,25222,139,13,0),
13994 (48068,48067,139,14,0),
13995 /*Resurrection*/
13996 (2006,0,2006,1,0),
13997 (2010,2006,2006,2,0),
13998 (10880,2010,2006,3,0),
13999 (10881,10880,2006,4,0),
14000 (20770,10881,2006,5,0),
14001 (25435,20770,2006,6,0),
14002 (48171,25435,2006,7,0),
14003 /*Smite*/
14004 (585,0,585,1,0),
14005 (591,585,585,2,0),
14006 (598,591,585,3,0),
14007 (984,598,585,4,0),
14008 (1004,984,585,5,0),
14009 (6060,1004,585,6,0),
14010 (10933,6060,585,7,0),
14011 (10934,10933,585,8,0),
14012 (25363,10934,585,9,0),
14013 (25364,25363,585,10,0),
14014 (48122,25364,585,11,0),
14015 (48123,48122,585,12,0),
14016 /*------------------
14017 -- (78) Shadow Magic
14018 ------------------*/
14019 /*Devouring Plague*/
14020 (2944,0,2944,1,0),
14021 (19276,2944,2944,2,0),
14022 (19277,19276,2944,3,0),
14023 (19278,19277,2944,4,0),
14024 (19279,19278,2944,5,0),
14025 (19280,19279,2944,6,0),
14026 (25467,19280,2944,7,0),
14027 (48299,25467,2944,8,0),
14028 (48300,48299,2944,9,0),
14029 /*Mind Blast*/
14030 (8092,0,8092,1,0),
14031 (8102,8092,8092,2,0),
14032 (8103,8102,8092,3,0),
14033 (8104,8103,8092,4,0),
14034 (8105,8104,8092,5,0),
14035 (8106,8105,8092,6,0),
14036 (10945,8106,8092,7,0),
14037 (10946,10945,8092,8,0),
14038 (10947,10946,8092,9,0),
14039 (25372,10947,8092,10,0),
14040 (25375,25372,8092,11,0),
14041 (48126,25375,8092,12,0),
14042 (48127,48126,8092,13,0),
14043 /*MindFlay*/
14044 (15407,0,15407,1,0),
14045 (17311,15407,15407,2,0),
14046 (17312,17311,15407,3,0),
14047 (17313,17312,15407,4,0),
14048 (17314,17313,15407,5,0),
14049 (18807,17314,15407,6,0),
14050 (25387,18807,15407,7,0),
14051 (48155,25387,15407,8,0),
14052 (48156,48155,15407,9,0),
14053 /*MindSear*/
14054 (48045,0,48045,1,0),
14055 (53023,48045,48045,2,0),
14056 /*MindVision*/
14057 (2096,0,2096,1,0),
14058 (10909,2096,2096,2,0),
14059 /*Prayer of Shadow Protection*/
14060 (27683,0,27683,1,0),
14061 (39374,27683,27683,2,0),
14062 (48170,39374,27683,3,0),
14063 /*PsychicScream*/
14064 (8122,0,8122,1,0),
14065 (8124,8122,8122,2,0),
14066 (10888,8124,8122,3,0),
14067 (10890,10888,8122,4,0),
14068 /*Shadow Protection*/
14069 (976,0,976,1,0),
14070 (10957,976,976,2,0),
14071 (10958,10957,976,3,0),
14072 (25433,10958,976,4,0),
14073 (48169,25433,976,5,0),
14074 /*ShadowWord:Death*/
14075 (32379,0,32379,1,0),
14076 (32996,32379,32379,2,0),
14077 (48157,32996,32379,3,0),
14078 (48158,48157,32379,4,0),
14079 /*ShadowWord:Pain*/
14080 (589,0,589,1,0),
14081 (594,589,589,2,0),
14082 (970,594,589,3,0),
14083 (992,970,589,4,0),
14084 (2767,992,589,5,0),
14085 (10892,2767,589,6,0),
14086 (10893,10892,589,7,0),
14087 (10894,10893,589,8,0),
14088 (25367,10894,589,9,0),
14089 (25368,25367,589,10,0),
14090 (48124,25368,589,11,0),
14091 (48125,48124,589,12,0),
14092 /*Vampiric Touch*/
14093 (34914,0,34914,1,0),
14094 (34916,34914,34914,2,0),
14095 (34917,34916,34914,3,0),
14096 (48159,34917,34914,4,0),
14097 (48160,48159,34914,5,0),
14098 /*------------------
14099 -- (129) First Aid
14100 ------------------*/
14101 /*First Aid*/
14102 (3273,0,3273,1,0),
14103 (3274,3273,3273,2,0),
14104 (7924,3274,3273,3,0),
14105 (10846,7924,3273,4,0),
14106 (27028,10846,3273,5,0),
14107 (45542,27028,3273,6,0),
14108 /*------------------
14109 -- (134) Feral Combat (Druid)
14110 ------------------*/
14111 /*Bash*/
14112 (5211,0,5211,1,0),
14113 (6798,5211,5211,2,0),
14114 (8983,6798,5211,3,0),
14115 /*Bear Form*/
14116 (5487,0,5487,1,0),
14117 (9634,5487,5487,2,0),
14118 /*Claw*/
14119 (1082,0,1082,1,0),
14120 (3029,1082,1082,2,0),
14121 (5201,3029,1082,3,0),
14122 (9849,5201,1082,4,0),
14123 (9850,9849,1082,5,0),
14124 (27000,9850,1082,6,0),
14125 (48569,27000,1082,7,0),
14126 (48570,48569,1082,8,0),
14127 /*Cower*/
14128 (8998,0,8998,1,0),
14129 (9000,8998,8998,2,0),
14130 (9892,9000,8998,3,0),
14131 (31709,9892,8998,4,0),
14132 (27004,31709,8998,5,0),
14133 (48575,27004,8998,6,0),
14134 /*Dash*/
14135 (1850,0,1850,1,0),
14136 (9821,1850,1850,2,0),
14137 (33357,9821,1850,3,0),
14138 /*Demoralizing Roar*/
14139 (99,0,99,1,0),
14140 (1735,99,99,2,0),
14141 (9490,1735,99,3,0),
14142 (9747,9490,99,4,0),
14143 (9898,9747,99,5,0),
14144 (26998,9898,99,6,0),
14145 (48559,26998,99,7,0),
14146 (48560,48559,99,8,0),
14147 /*Faerie Fire (Feral)*/
14148 (16857,0,16857,1,0),
14149 (17390,16857,16857,2,0),
14150 (17391,17390,16857,3,0),
14151 (17392,17391,16857,4,0),
14152 (27011,17392,16857,5,0),
14153 (48475,27011,16857,6,0),
14154 /*Ferocious Bite*/
14155 (22568,0,22568,1,0),
14156 (22827,22568,22568,2,0),
14157 (22828,22827,22568,3,0),
14158 (22829,22828,22568,4,0),
14159 (31018,22829,22568,5,0),
14160 (24248,31018,22568,6,0),
14161 (48576,24248,22568,7,0),
14162 (48577,48576,22568,8,0),
14163 /*Flight Form*/
14164 (33943,0,33943,1,0),
14165 (40120,33943,33943,2,0),
14166 /*Lacerate*/
14167 (33745,0,33745,1,0),
14168 (48567,33745,33745,2,0),
14169 (48568,48567,33745,3,0),
14170 /*Maim*/
14171 (22570,0,22570,1,0),
14172 (49802,22570,22570,2,0),
14173 /*Mangle-Bear*/
14174 (33878,0,33878,1,0),
14175 (33986,33878,33878,2,0),
14176 (33987,33986,33878,3,0),
14177 (48563,33987,33878,4,0),
14178 (48564,48563,33878,5,0),
14179 /*Mangle-Cat*/
14180 (33876,0,33876,1,0),
14181 (33982,33876,33876,2,0),
14182 (33983,33982,33876,3,0),
14183 (48565,33983,33876,4,0),
14184 (48566,48565,33876,5,0),
14185 /*Maul*/
14186 (6807,0,6807,1,0),
14187 (6808,6807,6807,2,0),
14188 (6809,6808,6807,3,0),
14189 (8972,6809,6807,4,0),
14190 (9745,8972,6807,5,0),
14191 (9880,9745,6807,6,0),
14192 (9881,9880,6807,7,0),
14193 (26996,9881,6807,8,0),
14194 (48479,26996,6807,9,0),
14195 (48480,48479,6807,10,0),
14196 /*Pounce*/
14197 (9005,0,9005,1,0),
14198 (9823,9005,9005,2,0),
14199 (9827,9823,9005,3,0),
14200 (27006,9827,9005,4,0),
14201 (49803,27006,9005,5,0),
14202 /*Prowl*/
14203 (5215,0,5215,1,0),
14204 (6783,5215,5215,2,0),
14205 (9913,6783,5215,3,0),
14206 /*Rake*/
14207 (1822,0,1822,1,0),
14208 (1823,1822,1822,2,0),
14209 (1824,1823,1822,3,0),
14210 (9904,1824,1822,4,0),
14211 (27003,9904,1822,5,0),
14212 (48573,27003,1822,6,0),
14213 (48574,48573,1822,7,0),
14214 /*Ravage*/
14215 (6785,0,6785,1,0),
14216 (6787,6785,6785,2,0),
14217 (9866,6787,6785,3,0),
14218 (9867,9866,6785,4,0),
14219 (27005,9867,6785,5,0),
14220 (48578,27005,6785,6,0),
14221 (48579,48578,6785,7,0),
14222 /*Rip*/
14223 (1079,0,1079,1,0),
14224 (9492,1079,1079,2,0),
14225 (9493,9492,1079,3,0),
14226 (9752,9493,1079,4,0),
14227 (9894,9752,1079,5,0),
14228 (9896,9894,1079,6,0),
14229 (27008,9896,1079,7,0),
14230 (49799,27008,1079,8,0),
14231 (49800,49799,1079,9,0),
14232 /*Shred*/
14233 (5221,0,5221,1,0),
14234 (6800,5221,5221,2,0),
14235 (8992,6800,5221,3,0),
14236 (9829,8992,5221,4,0),
14237 (9830,9829,5221,5,0),
14238 (27001,9830,5221,6,0),
14239 (27002,27001,5221,7,0),
14240 (48571,27002,5221,8,0),
14241 (48572,48571,5221,9,0),
14242 /*Swipe*/
14243 (779,0,779,1,0),
14244 (780,779,779,2,0),
14245 (769,780,779,3,0),
14246 (9754,769,779,4,0),
14247 (9908,9754,779,5,0),
14248 (26997,9908,779,6,0),
14249 (48561,26997,779,7,0),
14250 (48562,48561,779,8,0),
14251 /*Tiger's Fury*/
14252 (5217,0,5217,1,0),
14253 (6793,5217,5217,2,0),
14254 (9845,6793,5217,3,0),
14255 (9846,9845,5217,4,0),
14256 (50212,9846,5217,5,0),
14257 (50213,50212,5217,6,0),
14258 /*------------------
14259 --(163)Marksmanship
14260 ------------------*/
14261 /*AimedShot*/
14262 (19434,0,19434,1,0),
14263 (20900,19434,19434,2,0),
14264 (20901,20900,19434,3,0),
14265 (20902,20901,19434,4,0),
14266 (20903,20902,19434,5,0),
14267 (20904,20903,19434,6,0),
14268 (27065,20904,19434,7,0),
14269 (49049,27065,19434,8,0),
14270 (49050,49049,19434,9,0),
14271 /*ArcaneShot*/
14272 (3044,0,3044,1,0),
14273 (14281,3044,3044,2,0),
14274 (14282,14281,3044,3,0),
14275 (14283,14282,3044,4,0),
14276 (14284,14283,3044,5,0),
14277 (14285,14284,3044,6,0),
14278 (14286,14285,3044,7,0),
14279 (14287,14286,3044,8,0),
14280 (27019,14287,3044,9,0),
14281 (49044,27019,3044,10,0),
14282 (49045,49044,3044,11,0),
14283 /*Hunter'sMark*/
14284 (1130,0,1130,1,0),
14285 (14323,1130,1130,2,0),
14286 (14324,14323,1130,3,0),
14287 (14325,14324,1130,4,0),
14288 (53338,14325,1130,5,0),
14289 /*KillShot*/
14290 (53351,0,53351,1,0),
14291 (61005,53351,53351,2,0),
14292 (61006,61005,53351,3,0),
14293 /*Multi-Shot*/
14294 (2643,0,2643,1,0),
14295 (14288,2643,2643,2,0),
14296 (14289,14288,2643,3,0),
14297 (14290,14289,2643,4,0),
14298 (25294,14290,2643,5,0),
14299 (27021,25294,2643,6,0),
14300 (49047,27021,2643,7,0),
14301 (49048,49047,2643,8,0),
14302 /*SerpentSting*/
14303 (1978,0,1978,1,0),
14304 (13549,1978,1978,2,0),
14305 (13550,13549,1978,3,0),
14306 (13551,13550,1978,4,0),
14307 (13552,13551,1978,5,0),
14308 (13553,13552,1978,6,0),
14309 (13554,13553,1978,7,0),
14310 (13555,13554,1978,8,0),
14311 (25295,13555,1978,9,0),
14312 (27016,25295,1978,10,0),
14313 (49000,27016,1978,11,0),
14314 (49001,49000,1978,12,0),
14315 /*SteadyShot*/
14316 (56641,0,56641,1,0),
14317 (34120,56641,56641,2,0),
14318 (49051,34120,56641,3,0),
14319 (49052,49051,56641,4,0),
14320 /*Volley*/
14321 (1510,0,1510,1,0),
14322 (14294,1510,1510,2,0),
14323 (14295,14294,1510,3,0),
14324 (27022,14295,1510,4,0),
14325 (58431,27022,1510,5,0),
14326 (58434,58431,1510,6,0),
14327 /*------------------
14328 -- (164) Blacksmithing
14329 ------------------*/
14330 /*Blacksmithing*/
14331 (2018,0,2018,1,0),
14332 (3100,2018,2018,2,0),
14333 (3538,3100,2018,3,0),
14334 (9785,3538,2018,4,0),
14335 (9787,9785,2018,5,0),
14336 (9788,9785,2018,5,0),
14337 (29844,9785,2018,5,0),
14338 (17039,9787,2018,6,0),
14339 (17040,9787,2018,6,0),
14340 (17041,9787,2018,6,0),
14341 (51300,29844,2018,6,0),
14342 /*------------------
14343 -- (165) Leatherworking
14344 ------------------*/
14345 /*Leatherworking*/
14346 (2108,0,2108,1,0),
14347 (3104,2108,2108,2,0),
14348 (3811,3104,2108,3,0),
14349 (10662,3811,2108,4,0),
14350 (10656,10662,2108,5,0),
14351 (10658,10662,2108,5,0),
14352 (10660,10662,2108,5,0),
14353 (32549,10662,2108,5,0),
14354 (51302,32549,2108,6,0),
14355 /*------------------
14356 -- (171) Alchemy
14357 ------------------*/
14358 /* Alchemy */
14359 (2259,0,2259,1,0),
14360 (3101,2259,2259,2,0),
14361 (3464,3101,2259,3,0),
14362 (11611,3464,2259,4,0),
14363 (28596,11611,2259,5,0),
14364 (28672,11611,2259,5,0),
14365 (28675,11611,2259,5,0),
14366 (28677,11611,2259,5,0),
14367 (51304,28596,2259,6,0),
14368 /*------------------
14369 -- (182) Herbalizm
14370 ------------------*/
14371 /*Herb Gathering*/
14372 (2366,0,2366,1,0),
14373 (2368,2366,2366,2,0),
14374 (3570,2368,2366,3,0),
14375 (11993,3570,2366,4,0),
14376 (28695,11993,2366,5,0),
14377 (50300,28695,2366,6,0),
14378 /*Lifeblood*/
14379 (55428,0,55428,1,0),
14380 (55480,55428,55428,2,0),
14381 (55500,55480,55428,3,0),
14382 (55501,55500,55428,4,0),
14383 (55502,55501,55428,5,0),
14384 (55503,55502,55428,6,0),
14385 /*------------------
14386 -- (184) Retribution (Paladin)
14387 ------------------*/
14388 /*Blessingof Might*/
14389 (19740,0,19740,1,0),
14390 (19834,19740,19740,2,0),
14391 (19835,19834,19740,3,0),
14392 (19836,19835,19740,4,0),
14393 (19837,19836,19740,5,0),
14394 (19838,19837,19740,6,0),
14395 (25291,19838,19740,7,0),
14396 (27140,25291,19740,8,0),
14397 (48931,27140,19740,9,0),
14398 (48932,48931,19740,10,0),
14399 /*Greater Blessing of Might*/
14400 (25782,0,25782,1,19838),
14401 (25916,25782,25782,2,25291),
14402 (27141,25916,25782,3,27140),
14403 (48933,27141,25782,4,48931),
14404 (48934,48933,25782,5,48932),
14405 /*Hammer of Wrath*/
14406 (24275,0,24275,1,0),
14407 (24274,24275,24275,2,0),
14408 (24239,24274,24275,3,0),
14409 (27180,24239,24275,4,0),
14410 (48805,27180,24275,5,0),
14411 (48806,48805,24275,6,0),
14412 /*Retribution Aura*/
14413 (7294,0,7294,1,0),
14414 (10298,7294,7294,2,0),
14415 (10299,10298,7294,3,0),
14416 (10300,10299,7294,4,0),
14417 (10301,10300,7294,5,0),
14418 (27150,10301,7294,6,0),
14419 (54043,27150,7294,7,0),
14420 /*------------------
14421 -- (185) Cooking
14422 ------------------*/
14423 /*Cooking*/
14424 (2550,0,2550,1,0),
14425 (3102,2550,2550,2,0),
14426 (3413,3102,2550,3,0),
14427 (18260,3413,2550,4,0),
14428 (33359,18260,2550,5,0),
14429 (51296,33359,2550,6,0),
14430 /*------------------
14431 -- (186) Mining
14432 ------------------*/
14433 /*Mining*/
14434 (2575,0,2575,1,0),
14435 (2576,2575,2575,2,0),
14436 (3564,2576,2575,3,0),
14437 (10248,3564,2575,4,0),
14438 (29354,10248,2575,5,0),
14439 (50310,29354,2575,6,0),
14440 /*Toughness*/
14441 (53120,0,53120,1,0),
14442 (53121,53120,53120,2,0),
14443 (53122,53121,53120,3,0),
14444 (53123,53122,53120,4,0),
14445 (53124,53123,53120,5,0),
14446 (53040,53124,53120,6,0),
14447 /*------------------
14448 -- (188) Pet - Imp
14449 ------------------*/
14450 /*Blood Pact*/
14451 (6307,0,6307,1,0),
14452 (7804,6307,6307,2,0),
14453 (7805,7804,6307,3,0),
14454 (11766,7805,6307,4,0),
14455 (11767,11766,6307,5,0),
14456 (27268,11767,6307,6,0),
14457 (47982,27268,6307,7,0),
14458 /*FireShield*/
14459 (2947,0,2947,1,0),
14460 (8316,2947,2947,2,0),
14461 (8317,8316,2947,3,0),
14462 (11770,8317,2947,4,0),
14463 (11771,11770,2947,5,0),
14464 (27269,11771,2947,6,0),
14465 (47983,27269,2947,7,0),
14466 /*Firebolt*/
14467 (3110,0,3110,1,0),
14468 (7799,3110,3110,2,0),
14469 (7800,7799,3110,3,0),
14470 (7801,7800,3110,4,0),
14471 (7802,7801,3110,5,0),
14472 (11762,7802,3110,6,0),
14473 (11763,11762,3110,7,0),
14474 (27267,11763,3110,8,0),
14475 (47964,27267,3110,9,0),
14476 /*------------------
14477 --(189)Pet-Felhunter
14478 ------------------*/
14479 /*DevourMagic*/
14480 (19505,0,19505,1,0),
14481 (19731,19505,19505,2,0),
14482 (19734,19731,19505,3,0),
14483 (19736,19734,19505,4,0),
14484 (27276,19736,19505,5,0),
14485 (27277,27276,19505,6,0),
14486 (48011,27277,19505,7,0),
14487 /*ShadowBite*/
14488 (54049,0,54049,1,0),
14489 (54050,54049,54049,2,0),
14490 (54051,54050,54049,3,0),
14491 (54052,54051,54049,4,0),
14492 (54053,54052,54049,5,0),
14493 /*SpellLock*/
14494 (19244,0,19244,1,0),
14495 (19647,19244,19244,2,0),
14496 /*------------------
14497 -- (197) Tailoring
14498 ------------------*/
14499 /*Tailoring*/
14500 (3908,0,3908,1,0),
14501 (3909,3908,3908,2,0),
14502 (3910,3909,3908,3,0),
14503 (12180,3910,3908,4,0),
14504 (26790,12180,3908,5,0),
14505 (26797,12180,3908,5,0),
14506 (26798,12180,3908,5,0),
14507 (26801,12180,3908,5,0),
14508 (51309,26790,3908,6,0),
14509 /*------------------
14510 --(203)Pet-Spider
14511 --(208)Pet-Wolf
14512 --(212)Pet-Crocolisk
14513 --(251)Pet-Turtle
14514 --(653)Pet-Bat
14515 --(766)Pet-WarpStalker
14516 --(767)Pet-Ravager
14517 ------------------*/
14518 /*Bite*/
14519 (17253,0,17253,1,0),
14520 (17255,17253,17253,2,0),
14521 (17256,17255,17253,3,0),
14522 (17257,17256,17253,4,0),
14523 (17258,17257,17253,5,0),
14524 (17259,17258,17253,6,0),
14525 (17260,17259,17253,7,0),
14526 (17261,17260,17253,8,0),
14527 (27050,17261,17253,9,0),
14528 (52473,27050,17253,10,0),
14529 (52474,52473,17253,11,0),
14530 /*------------------
14531 -- (202) Engineering
14532 ------------------*/
14533 /*Engineering*/
14534 (4036,0,4036,1,0),
14535 (4037,4036,4036,2,0),
14536 (4038,4037,4036,3,0),
14537 (12656,4038,4036,4,0),
14538 (20219,12656,4036,5,0),
14539 (20222,12656,4036,5,0),
14540 (30350,12656,4036,5,0),
14541 (51306,30350,4036,6,0),
14542 /*------------------
14543 -- (204) Pet - Voidwalker
14544 ------------------*/
14545 /*Consume Shadows*/
14546 (17767,0,17767,1,0),
14547 (17850,17767,17767,2,0),
14548 (17851,17850,17767,3,0),
14549 (17852,17851,17767,4,0),
14550 (17853,17852,17767,5,0),
14551 (17854,17853,17767,6,0),
14552 (27272,17854,17767,7,0),
14553 (47987,27272,17767,8,0),
14554 (47988,47987,17767,9,0),
14555 /*Sacrifice*/
14556 (7812,0,7812,1,0),
14557 (19438,7812,7812,2,0),
14558 (19440,19438,7812,3,0),
14559 (19441,19440,7812,4,0),
14560 (19442,19441,7812,5,0),
14561 (19443,19442,7812,6,0),
14562 (27273,19443,7812,7,0),
14563 (47985,27273,7812,8,0),
14564 (47986,47985,7812,9,0),
14565 /*Suffering*/
14566 (17735,0,17735,1,0),
14567 (17750,17735,17735,2,0),
14568 (17751,17750,17735,3,0),
14569 (17752,17751,17735,4,0),
14570 (27271,17752,17735,5,0),
14571 (33701,27271,17735,6,0),
14572 (47989,33701,17735,7,0),
14573 (47990,47989,17735,8,0),
14574 /*Torment*/
14575 (3716,0,3716,1,0),
14576 (7809,3716,3716,2,0),
14577 (7810,7809,3716,3,0),
14578 (7811,7810,3716,4,0),
14579 (11774,7811,3716,5,0),
14580 (11775,11774,3716,6,0),
14581 (27270,11775,3716,7,0),
14582 (47984,27270,3716,8,0),
14583 /*------------------
14584 --(205)Pet-Succubus
14585 ------------------*/
14586 /*LashofPain*/
14587 (7814,0,7814,1,0),
14588 (7815,7814,7814,2,0),
14589 (7816,7815,7814,3,0),
14590 (11778,7816,7814,4,0),
14591 (11779,11778,7814,5,0),
14592 (11780,11779,7814,6,0),
14593 (27274,11780,7814,7,0),
14594 (47991,27274,7814,8,0),
14595 (47992,47991,7814,9,0),
14596 /*SoothingKiss*/
14597 (6360,0,6360,1,0),
14598 (7813,6360,6360,2,0),
14599 (11784,7813,6360,3,0),
14600 (11785,11784,6360,4,0),
14601 (27275,11785,6360,5,0),
14602 /*------------------
14603 -- (209) Pet - Cat
14604 ------------------*/
14605 /*Prowl*/
14606 (24450,0,24450,1,0),
14607 (24452,24450,24450,2,0),
14608 (24453,24452,24450,3,0),
14609 /*Rake*/
14610 (59881,0,59881,1,0),
14611 (59882,59881,59881,2,0),
14612 (59883,59882,59881,3,0),
14613 (59884,59883,59881,4,0),
14614 (59885,59884,59881,5,0),
14615 (59886,59885,59881,6,0),
14616 /*------------------
14617 --(210)Pet-Bear
14618 ------------------*/
14619 /*Swipe*/
14620 (50256,0,50256,1,0),
14621 (53526,50256,50256,2,0),
14622 (53528,53526,50256,3,0),
14623 (53529,53528,50256,4,0),
14624 (53532,53529,50256,5,0),
14625 (53533,53532,50256,6,0),
14626 /*------------------
14627 --(211)Pet-Boar
14628 ------------------*/
14629 /*Gore*/
14630 (35290,0,35290,1,0),
14631 (35291,35290,35290,2,0),
14632 (35292,35291,35290,3,0),
14633 (35293,35292,35290,4,0),
14634 (35294,35293,35290,5,0),
14635 (35295,35294,35290,6,0),
14636 /*------------------
14637 --(213)Pet-CarrionBird
14638 ------------------*/
14639 /*DemoralizingScreech*/
14640 (24423,0,24423,1,0),
14641 (24577,24423,24423,2,0),
14642 (24578,24577,24423,3,0),
14643 (24579,24578,24423,4,0),
14644 (27051,24579,24423,5,0),
14645 (55487,27051,24423,6,0),
14646 /*------------------
14647 --(215)Pet-Gorilla
14648 --(786)Pet-ExoticRhino
14649 --(775)Pet-Moth
14650 ------------------*/
14651 /*Smack*/
14652 (49966,0,49966,1,0),
14653 (49967,49966,49966,2,0),
14654 (49968,49967,49966,3,0),
14655 (49969,49968,49966,4,0),
14656 (49970,49969,49966,5,0),
14657 (49971,49970,49966,6,0),
14658 (49972,49971,49966,7,0),
14659 (49973,49972,49966,8,0),
14660 (49974,49973,49966,9,0),
14661 (52475,49974,49966,10,0),
14662 (52476,52475,49966,11,0),
14663 /*Thunderstomp*/
14664 (26090,0,26090,1,0),
14665 (26187,26090,26090,2,0),
14666 (26188,26187,26090,3,0),
14667 (27063,26188,26090,4,0),
14668 (55572,27063,26090,5,0),
14669 (55573,55572,26090,6,0),
14670 /*------------------
14671 --(217)Pet-Raptor
14672 ------------------*/
14673 /*SavageRend*/
14674 (50498,0,50498,1,0),
14675 (53578,50498,50498,2,0),
14676 (53579,53578,50498,3,0),
14677 (53580,53579,50498,4,0),
14678 (53581,53580,50498,5,0),
14679 (53582,53581,50498,6,0),
14680 /*------------------
14681 --(214)Pet-Crab
14682 --(218)Pet-Tallstrider
14683 --(783)Pet-ExoticSilithid
14684 ------------------*/
14685 /*Claw*/
14686 (16827,0,16827,1,0),
14687 (16828,16827,16827,2,0),
14688 (16829,16828,16827,3,0),
14689 (16830,16829,16827,4,0),
14690 (16831,16830,16827,5,0),
14691 (16832,16831,16827,6,0),
14692 (3010,16832,16827,7,0),
14693 (3009,3010,16827,8,0),
14694 (27049,3009,16827,9,0),
14695 (52471,27049,16827,10,0),
14696 (52472,52471,16827,11,0),
14697 /*------------------
14698 --(236)Pet-Scorpid
14699 ------------------*/
14700 /*ScorpidPoison*/
14701 (24640,0,24640,1,0),
14702 (24583,24640,24640,2,0),
14703 (24586,24583,24640,3,0),
14704 (24587,24586,24640,4,0),
14705 (27060,24587,24640,5,0),
14706 (55728,27060,24640,6,0),
14707 /*------------------
14708 --(237)Arcane
14709 ------------------*/
14710 /*AmplifyMagic*/
14711 (1008,0,1008,1,0),
14712 (8455,1008,1008,2,0),
14713 (10169,8455,1008,3,0),
14714 (10170,10169,1008,4,0),
14715 (27130,10170,1008,5,0),
14716 (33946,27130,1008,6,0),
14717 (43017,33946,1008,7,0),
14718 /*ArcaneBarrage*/
14719 (44425,0,44425,1,0),
14720 (44780,44425,44425,2,0),
14721 (44781,44780,44425,3,0),
14722 /*ArcaneBlast*/
14723 (30451,0,30451,1,0),
14724 (42894,30451,30451,2,0),
14725 (42896,42894,30451,3,0),
14726 (42897,42896,30451,4,0),
14727 /*ArcaneBrilliance*/
14728 (23028,0,23028,1,0),
14729 (27127,23028,23028,2,0),
14730 (43002,27127,23028,3,0),
14731 /*ArcaneExplosion*/
14732 (1449,0,1449,1,0),
14733 (8437,1449,1449,2,0),
14734 (8438,8437,1449,3,0),
14735 (8439,8438,1449,4,0),
14736 (10201,8439,1449,5,0),
14737 (10202,10201,1449,6,0),
14738 (27080,10202,1449,7,0),
14739 (27082,27080,1449,8,0),
14740 (42920,27082,1449,9,0),
14741 (42921,42920,1449,10,0),
14742 /*ArcaneIntellect*/
14743 (1459,0,1459,1,0),
14744 (1460,1459,1459,2,0),
14745 (1461,1460,1459,3,0),
14746 (10156,1461,1459,4,0),
14747 (10157,10156,1459,5,0),
14748 (27126,10157,1459,6,0),
14749 (42995,27126,1459,7,0),
14750 /*ArcaneMissiles*/
14751 (5143,0,5143,1,0),
14752 (5144,5143,5143,2,0),
14753 (5145,5144,5143,3,0),
14754 (8416,5145,5143,4,0),
14755 (8417,8416,5143,5,0),
14756 (10211,8417,5143,6,0),
14757 (10212,10211,5143,7,0),
14758 (25345,10212,5143,8,0),
14759 (27075,25345,5143,9,0),
14760 (38699,27075,5143,10,0),
14761 (38704,38699,5143,11,0),
14762 (42843,38704,5143,12,0),
14763 (42846,42843,5143,13,0),
14764 /*ConjureFood*/
14765 (587,0,587,1,0),
14766 (597,587,587,2,0),
14767 (990,597,587,3,0),
14768 (6129,990,587,4,0),
14769 (10144,6129,587,5,0),
14770 (10145,10144,587,6,0),
14771 (28612,10145,587,7,0),
14772 (33717,28612,587,8,0),
14773 /*ConjureManaGem*/
14774 (759,0,759,1,0),
14775 (3552,759,759,2,0),
14776 (10053,3552,759,3,0),
14777 (10054,10053,759,4,0),
14778 (27101,10054,759,5,0),
14779 (42985,27101,759,6,0),
14780 /*ConjureRefreshment*/
14781 (42955,0,42955,1,0),
14782 (42956,42955,42955,2,0),
14783 /*ConjureWater*/
14784 (5504,0,5504,1,0),
14785 (5505,5504,5504,2,0),
14786 (5506,5505,5504,3,0),
14787 (6127,5506,5504,4,0),
14788 (10138,6127,5504,5,0),
14789 (10139,10138,5504,6,0),
14790 (10140,10139,5504,7,0),
14791 (37420,10140,5504,8,0),
14792 (27090,37420,5504,9,0),
14793 /*DampenMagic*/
14794 (604,0,604,1,0),
14795 (8450,604,604,2,0),
14796 (8451,8450,604,3,0),
14797 (10173,8451,604,4,0),
14798 (10174,10173,604,5,0),
14799 (33944,10174,604,6,0),
14800 (43015,33944,604,7,0),
14801 /*MageArmor*/
14802 (6117,0,6117,1,0),
14803 (22782,6117,6117,2,0),
14804 (22783,22782,6117,3,0),
14805 (27125,22783,6117,4,0),
14806 (43023,27125,6117,5,0),
14807 (43024,43023,6117,6,0),
14808 /*ManaShield*/
14809 (1463,0,1463,1,0),
14810 (8494,1463,1463,2,0),
14811 (8495,8494,1463,3,0),
14812 (10191,8495,1463,4,0),
14813 (10192,10191,1463,5,0),
14814 (10193,10192,1463,6,0),
14815 (27131,10193,1463,7,0),
14816 (43019,27131,1463,8,0),
14817 (43020,43019,1463,9,0),
14818 /*Polymorph*/
14819 (118,0,118,1,0),
14820 (12824,118,118,2,0),
14821 (12825,12824,118,3,0),
14822 (12826,12825,118,4,0),
14823 /*RitualofRefreshment*/
14824 (43987,0,43987,1,0),
14825 (58659,43987,43987,2,0),
14826 /*------------------
14827 --(253)Assassination
14828 ------------------*/
14829 /*Ambush*/
14830 (8676,0,8676,1,0),
14831 (8724,8676,8676,2,0),
14832 (8725,8724,8676,3,0),
14833 (11267,8725,8676,4,0),
14834 (11268,11267,8676,5,0),
14835 (11269,11268,8676,6,0),
14836 (27441,11269,8676,7,0),
14837 (48689,27441,8676,8,0),
14838 (48690,48689,8676,9,0),
14839 (48691,48690,8676,10,0),
14840 /*DeadlyThrow*/
14841 (26679,0,26679,1,0),
14842 (48673,26679,26679,2,0),
14843 (48674,48673,26679,3,0),
14844 /*Envenom*/
14845 (32645,0,32645,1,0),
14846 (32684,32645,32645,2,0),
14847 (57992,32684,32645,3,0),
14848 (57993,57992,32645,4,0),
14849 /*Eviscerate*/
14850 (2098,0,2098,1,0),
14851 (6760,2098,2098,2,0),
14852 (6761,6760,2098,3,0),
14853 (6762,6761,2098,4,0),
14854 (8623,6762,2098,5,0),
14855 (8624,8623,2098,6,0),
14856 (11299,8624,2098,7,0),
14857 (11300,11299,2098,8,0),
14858 (31016,11300,2098,9,0),
14859 (26865,31016,2098,10,0),
14860 (48667,26865,2098,11,0),
14861 (48668,48667,2098,12,0),
14862 /*ExposeArmor*/
14863 (8647,0,8647,1,0),
14864 (8649,8647,8647,2,0),
14865 (8650,8649,8647,3,0),
14866 (11197,8650,8647,4,0),
14867 (11198,11197,8647,5,0),
14868 (26866,11198,8647,6,0),
14869 (48669,26866,8647,7,0),
14870 /*Garrote*/
14871 (703,0,703,1,0),
14872 (8631,703,703,2,0),
14873 (8632,8631,703,3,0),
14874 (8633,8632,703,4,0),
14875 (11289,8633,703,5,0),
14876 (11290,11289,703,6,0),
14877 (26839,11290,703,7,0),
14878 (26884,26839,703,8,0),
14879 (48675,26884,703,9,0),
14880 (48676,48675,703,10,0),
14881 /*KidneyShot*/
14882 (408,0,408,1,0),
14883 (8643,408,408,2,0),
14884 /*Mutilate*/
14885 (1329,0,1329,1,0),
14886 (34411,1329,1329,2,0),
14887 (34412,34411,1329,3,0),
14888 (34413,34412,1329,4,0),
14889 (48663,34413,1329,5,0),
14890 (48666,48663,1329,6,0),
14891 /*Rupture*/
14892 (1943,0,1943,1,0),
14893 (8639,1943,1943,2,0),
14894 (8640,8639,1943,3,0),
14895 (11273,8640,1943,4,0),
14896 (11274,11273,1943,5,0),
14897 (11275,11274,1943,6,0),
14898 (26867,11275,1943,7,0),
14899 (48671,26867,1943,8,0),
14900 (48672,48671,1943,9,0),
14901 /*SliceandDice*/
14902 (5171,0,5171,1,0),
14903 (6774,5171,5171,2,0),
14904 /*------------------
14905 --(256)Fury
14906 ------------------*/
14907 /*BattleShout*/
14908 (6673,0,6673,1,0),
14909 (5242,6673,6673,2,0),
14910 (6192,5242,6673,3,0),
14911 (11549,6192,6673,4,0),
14912 (11550,11549,6673,5,0),
14913 (11551,11550,6673,6,0),
14914 (25289,11551,6673,7,0),
14915 (2048,25289,6673,8,0),
14916 (47436,2048,6673,9,0),
14917 /*Cleave*/
14918 (845,0,845,1,0),
14919 (7369,845,845,2,0),
14920 (11608,7369,845,3,0),
14921 (11609,11608,845,4,0),
14922 (20569,11609,845,5,0),
14923 (25231,20569,845,6,0),
14924 (47519,25231,845,7,0),
14925 (47520,47519,845,8,0),
14926 /*CommandingShout*/
14927 (469,0,469,1,0),
14928 (47439,469,469,2,0),
14929 (47440,47439,469,3,0),
14930 /*DemoralizingShout*/
14931 (1160,0,1160,1,0),
14932 (6190,1160,1160,2,0),
14933 (11554,6190,1160,3,0),
14934 (11555,11554,1160,4,0),
14935 (11556,11555,1160,5,0),
14936 (25202,11556,1160,6,0),
14937 (25203,25202,1160,7,0),
14938 (47437,25203,1160,8,0),
14939 /*Execute*/
14940 (5308,0,5308,1,0),
14941 (20658,5308,5308,2,0),
14942 (20660,20658,5308,3,0),
14943 (20661,20660,5308,4,0),
14944 (20662,20661,5308,5,0),
14945 (25234,20662,5308,6,0),
14946 (25236,25234,5308,7,0),
14947 (47470,25236,5308,8,0),
14948 (47471,47470,5308,9,0),
14949 /*Slam*/
14950 (1464,0,1464,1,0),
14951 (8820,1464,1464,2,0),
14952 (11604,8820,1464,3,0),
14953 (11605,11604,1464,4,0),
14954 (25241,11605,1464,5,0),
14955 (25242,25241,1464,6,0),
14956 (47474,25242,1464,7,0),
14957 (47475,47474,1464,8,0),
14958 /*------------------
14959 --(257) Protection (Warrior)
14960 ------------------*/
14961 /*Devastate*/
14962 (20243,0,20243,1,0),
14963 (30016,20243,20243,2,0),
14964 (30022,30016,20243,3,0),
14965 (47497,30022,20243,4,0),
14966 (47498,47497,20243,5,0),
14967 /*Revenge*/
14968 (6572,0,6572,1,0),
14969 (6574,6572,6572,2,0),
14970 (7379,6574,6572,3,0),
14971 (11600,7379,6572,4,0),
14972 (11601,11600,6572,5,0),
14973 (25288,11601,6572,6,0),
14974 (25269,25288,6572,7,0),
14975 (30357,25269,6572,8,0),
14976 (57823,30357,6572,9,0),
14977 /*ShieldSlam*/
14978 (23922,0,23922,1,0),
14979 (23923,23922,23922,2,0),
14980 (23924,23923,23922,3,0),
14981 (23925,23924,23922,4,0),
14982 (25258,23925,23922,5,0),
14983 (30356,25258,23922,6,0),
14984 (47487,30356,23922,7,0),
14985 (47488,47487,23922,8,0),
14986 /*SunderArmor*/
14987 (7386,0,7386,1,0),
14988 (7405,7386,7386,2,0),
14989 (8380,7405,7386,3,0),
14990 (11596,8380,7386,4,0),
14991 (11597,11596,7386,5,0),
14992 (25225,11597,7386,6,0),
14993 (47467,25225,7386,7,0),
14994 /*------------------
14995 -- (267) Protection (Paladin)
14996 ------------------*/
14997 /*Avenger'sShield*/
14998 (31935,0,31935,1,0),
14999 (32699,31935,31935,2,0),
15000 (32700,32699,31935,3,0),
15001 (48826,32700,31935,4,0),
15002 (48827,48826,31935,5,0),
15003 /*Devotion Aura*/
15004 (465,0,465,1,0),
15005 (10290,465,465,2,0),
15006 (643,10290,465,3,0),
15007 (10291,643,465,4,0),
15008 (1032,10291,465,5,0),
15009 (10292,1032,465,6,0),
15010 (10293,10292,465,7,0),
15011 (27149,10293,465,8,0),
15012 (48941,27149,465,9,0),
15013 (48942,48941,465,10,0),
15014 /*Fire Resistance Aura*/
15015 (19891,0,19891,1,0),
15016 (19899,19891,19891,2,0),
15017 (19900,19899,19891,3,0),
15018 (27153,19900,19891,4,0),
15019 (48947,27153,19891,5,0),
15020 /*Frost Resistance Aura*/
15021 (19888,0,19888,1,0),
15022 (19897,19888,19888,2,0),
15023 (19898,19897,19888,3,0),
15024 (27152,19898,19888,4,0),
15025 (48945,27152,19888,5,0),
15026 /*Greater Blessing of Kings*/
15027 (20217,0,20217,1,0),
15028 (25898,20217,20217,2,0),
15029 /*Greater Blessing of Sanctuary*/
15030 (20911,0,20911,1,0),
15031 (25899,20911,20911,2,0),
15032 /*HammerofJustice*/
15033 (853,0,853,1,0),
15034 (5588,853,853,2,0),
15035 (5589,5588,853,3,0),
15036 (10308,5589,853,4,0),
15037 /*HandofProtection*/
15038 (1022,0,1022,1,0),
15039 (5599,1022,1022,2,0),
15040 (10278,5599,1022,3,0),
15041 /*Holy Shield*/
15042 (20925,0,20925,1,0),
15043 (20927,20925,20925,2,0),
15044 (20928,20927,20925,3,0),
15045 (27179,20928,20925,4,0),
15046 (48951,27179,20925,5,0),
15047 (48952,48951,20925,6,0),
15048 /*Shadow Resistance Aura*/
15049 (19876,0,19876,1,0),
15050 (19895,19876,19876,2,0),
15051 (19896,19895,19876,3,0),
15052 (27151,19896,19876,4,0),
15053 (48943,27151,19876,5,0),
15054 /*Shield of Righteousness*/
15055 (53600,0,53600,1,0),
15056 (61411,53600,53600,2,0),
15057 /*Spiritual Attunement*/
15058 (31785,0,31785,1,0),
15059 (33776,31785,31785,2,0),
15060 /*------------------
15061 --(270)Pet-GenericHunter
15062 ------------------*/
15063 /*Cower*/
15064 (1742,0,1742,1,0),
15065 (1753,1742,1742,2,0),
15066 (1754,1753,1742,3,0),
15067 (1755,1754,1742,4,0),
15068 (1756,1755,1742,5,0),
15069 (16697,1756,1742,6,0),
15070 (27048,16697,1742,7,0),
15071 /*GreatResistance*/
15072 (53427,0,53427,1,0),
15073 (53429,53427,53427,2,0),
15074 (53430,53429,53427,3,0),
15075 /*Growl*/
15076 (2649,0,2649,1,0),
15077 (14916,2649,2649,2,0),
15078 (14917,14916,2649,3,0),
15079 (14918,14917,2649,4,0),
15080 (14919,14918,2649,5,0),
15081 (14920,14919,2649,6,0),
15082 (14921,14920,2649,7,0),
15083 (27047,14921,2649,8,0),
15084 (61676,27047,2649,9,0),
15085 /*------------------
15086 -- (333) Enchanting
15087 ------------------*/
15088 /*Enchanting*/
15089 (7411,0,7411,1,0),
15090 (7412,7411,7411,2,0),
15091 (7413,7412,7411,3,0),
15092 (13920,7413,7411,4,0),
15093 (28029,13920,7411,5,0),
15094 (51313,28029,7411,6,0),
15095 /*------------------
15096 --(354)Demonology
15097 ------------------*/
15098 /*Banish*/
15099 (710,0,710,1,0),
15100 (18647,710,710,2,0),
15101 /*CreateFirestone*/
15102 (6366,0,6366,1,0),
15103 (17951,6366,6366,2,0),
15104 (17952,17951,6366,3,0),
15105 (17953,17952,6366,4,0),
15106 (27250,17953,6366,5,0),
15107 (60219,27250,6366,6,0),
15108 (60220,60219,6366,7,0),
15109 /*CreateHealthstone*/
15110 (6201,0,6201,1,0),
15111 (6202,6201,6201,2,0),
15112 (5699,6202,6201,3,0),
15113 (11729,5699,6201,4,0),
15114 (11730,11729,6201,5,0),
15115 (27230,11730,6201,6,0),
15116 (47871,27230,6201,7,0),
15117 (47878,47871,6201,8,0),
15118 /*CreateSoulstone*/
15119 (693,0,693,1,0),
15120 (20752,693,693,2,0),
15121 (20755,20752,693,3,0),
15122 (20756,20755,693,4,0),
15123 (20757,20756,693,5,0),
15124 (27238,20757,693,6,0),
15125 (47884,27238,693,7,0),
15126 /*CreateSpellstone*/
15127 (2362,0,2362,1,0),
15128 (17727,2362,2362,2,0),
15129 (17728,17727,2362,3,0),
15130 (28172,17728,2362,4,0),
15131 (47886,28172,2362,5,0),
15132 (47888,47886,2362,6,0),
15133 /*DemonArmor*/
15134 (706,0,706,1,0),
15135 (1086,706,706,2,0),
15136 (11733,1086,706,3,0),
15137 (11734,11733,706,4,0),
15138 (11735,11734,706,5,0),
15139 (27260,11735,706,6,0),
15140 (47793,27260,706,7,0),
15141 (47889,47793,706,8,0),
15142 /*DemonSkin*/
15143 (687,0,687,1,0),
15144 (696,687,687,2,0),
15145 /*EnslaveDemon*/
15146 (1098,0,1098,1,0),
15147 (11725,1098,1098,2,0),
15148 (11726,11725,1098,3,0),
15149 (61191,11726,1098,4,0),
15150 /*FelArmor*/
15151 (28176,0,28176,1,0),
15152 (28189,28176,28176,2,0),
15153 (47892,28189,28176,3,0),
15154 (47893,47892,28176,4,0),
15155 /*HealthFunnel*/
15156 (755,0,755,1,0),
15157 (3698,755,755,2,0),
15158 (3699,3698,755,3,0),
15159 (3700,3699,755,4,0),
15160 (11693,3700,755,5,0),
15161 (11694,11693,755,6,0),
15162 (11695,11694,755,7,0),
15163 (27259,11695,755,8,0),
15164 (47856,27259,755,9,0),
15165 /*RitualofSouls*/
15166 (29893,0,29893,1,0),
15167 (58887,29893,29893,2,0),
15168 /*ShadowWard*/
15169 (6229,0,6229,1,0),
15170 (11739,6229,6229,2,0),
15171 (11740,11739,6229,3,0),
15172 (28610,11740,6229,4,0),
15173 (47890,28610,6229,5,0),
15174 (47891,47890,6229,6,0),
15175 /*------------------
15176 --(355)Affliction
15177 ------------------*/
15178 /*Corruption*/
15179 (172,0,172,1,0),
15180 (6222,172,172,2,0),
15181 (6223,6222,172,3,0),
15182 (7648,6223,172,4,0),
15183 (11671,7648,172,5,0),
15184 (11672,11671,172,6,0),
15185 (25311,11672,172,7,0),
15186 (27216,25311,172,8,0),
15187 (47812,27216,172,9,0),
15188 (47813,47812,172,10,0),
15189 /*Curse of Agony*/
15190 (980,0,980,1,0),
15191 (1014,980,980,2,0),
15192 (6217,1014,980,3,0),
15193 (11711,6217,980,4,0),
15194 (11712,11711,980,5,0),
15195 (11713,11712,980,6,0),
15196 (27218,11713,980,7,0),
15197 (47863,27218,980,8,0),
15198 (47864,47863,980,9,0),
15199 /*Curse of Doom*/
15200 (603,0,603,1,0),
15201 (30910,603,603,2,0),
15202 (47867,30910,603,3,0),
15203 /*Curse of Recklessness*/
15204 (704,0,704,1,0),
15205 (7658,704,704,2,0),
15206 (7659,7658,704,3,0),
15207 (11717,7659,704,4,0),
15208 (27226,11717,704,5,0),
15209 (57595,27226,704,6,0),
15210 /*Curse of the Elements*/
15211 (1490,0,1490,1,0),
15212 (11721,1490,1490,2,0),
15213 (11722,11721,1490,3,0),
15214 (27228,11722,1490,4,0),
15215 (47865,27228,1490,5,0),
15216 /*Curse of Tongues*/
15217 (1714,0,1714,1,0),
15218 (11719,1714,1714,2,0),
15219 /*Curse of Weakness*/
15220 (702,0,702,1,0),
15221 (1108,702,702,2,0),
15222 (6205,1108,702,3,0),
15223 (7646,6205,702,4,0),
15224 (11707,7646,702,5,0),
15225 (11708,11707,702,6,0),
15226 (27224,11708,702,7,0),
15227 (30909,27224,702,8,0),
15228 (50511,30909,702,9,0),
15229 /*Dark Pact*/
15230 (18220,0,    18220,1,0),
15231 (18937,18220,18220,2,0),
15232 (18938,18937,18220,3,0),
15233 (27265,18938,18220,4,0),
15234 (59092,27265,18220,5,0),
15235 /*Death Coil*/
15236 (6789,0,6789,1,0),
15237 (17925,6789,6789,2,0),
15238 (17926,17925,6789,3,0),
15239 (27223,17926,6789,4,0),
15240 (47859,27223,6789,5,0),
15241 (47860,47859,6789,6,0),
15242 /*Drain Life*/
15243 (689,0,689,1,0),
15244 (699,689,689,2,0),
15245 (709,699,689,3,0),
15246 (7651,709,689,4,0),
15247 (11699,7651,689,5,0),
15248 (11700,11699,689,6,0),
15249 (27219,11700,689,7,0),
15250 (27220,27219,689,8,0),
15251 (47857,27220,689,9,0),
15252 /*DrainSoul*/
15253 (1120,0,1120,1,0),
15254 (8288,1120,1120,2,0),
15255 (8289,8288,1120,3,0),
15256 (11675,8289,1120,4,0),
15257 (27217,11675,1120,5,0),
15258 (47855,27217,1120,6,0),
15259 /*Fear*/
15260 (5782,0,5782,1,0),
15261 (6213,5782,5782,2,0),
15262 (6215,6213,5782,3,0),
15263 /*Haunt*/
15264 (48181,0,48181,1,0),
15265 (59161,48181,48181,2,0),
15266 (59163,59161,48181,3,0),
15267 (59164,59163,48181,4,0),
15268 /*HowlofTerror*/
15269 (5484,0,5484,1,0),
15270 (17928,5484,5484,2,0),
15271 /*SeedofCorruption*/
15272 (27243,0,27243,1,0),
15273 (47835,27243,27243,2,0),
15274 (47836,47835,27243,3,0),
15275 /*SiphonLife*/
15276 (18265,0,18265,1,0),
15277 (18879,18265,18265,2,0),
15278 (18880,18879,18265,3,0),
15279 (18881,18880,18265,4,0),
15280 (27264,18881,18265,5,0),
15281 (30911,27264,18265,6,0),
15282 (47861,30911,18265,7,0),
15283 (47862,47861,18265,8,0),
15284 /*UnstableAffliction*/
15285 (30108,0,30108,1,0),
15286 (30404,30108,30108,2,0),
15287 (30405,30404,30108,3,0),
15288 (47841,30405,30108,4,0),
15289 (47843,47841,30108,5,0),
15290 /*------------------
15291 -- (356) Fishing
15292 ------------------*/
15293 /*Fishing*/
15294 (7620,0,7620,1,0),
15295 (7731,7620,7620,2,0),
15296 (7732,7731,7620,3,0),
15297 (18248,7732,7620,4,0),
15298 (33095,18248,7620,5,0),
15299 (51294,33095,7620,6,0),
15300 /*------------------
15301 --(373) Enhancement
15302 ------------------*/
15303 /*Fire Resistance Totem*/
15304 (8184,0,8184,1,0),
15305 (10537,8184,8184,2,0),
15306 (10538,10537,8184,3,0),
15307 (25563,10538,8184,4,0),
15308 (58737,25563,8184,5,0),
15309 (58739,58737,8184,6,0),
15310 /*Flametongue Totem*/
15311 (8227,0,8227,1,0),
15312 (8249,8227,8227,2,0),
15313 (10526,8249,8227,3,0),
15314 (16387,10526,8227,4,0),
15315 (25557,16387,8227,5,0),
15316 (58649,25557,8227,6,0),
15317 (58652,58649,8227,7,0),
15318 (58656,58652,8227,8,0),
15319 /*Flametongue Weapon*/
15320 (8024,0,8024,1,0),
15321 (8027,8024,8024,2,0),
15322 (8030,8027,8024,3,0),
15323 (16339,8030,8024,4,0),
15324 (16341,16339,8024,5,0),
15325 (16342,16341,8024,6,0),
15326 (25489,16342,8024,7,0),
15327 (58785,25489,8024,8,0),
15328 (58789,58785,8024,9,0),
15329 (58790,58789,8024,10,0),
15330 /*Frost Resistance Totem*/
15331 (8181,0,8181,1,0),
15332 (10478,8181,8181,2,0),
15333 (10479,10478,8181,3,0),
15334 (25560,10479,8181,4,0),
15335 (58741,25560,8181,5,0),
15336 (58745,58741,8181,6,0),
15337 /*Frostbrand Weapon*/
15338 (8033,0,8033,1,0),
15339 (8038,8033,8033,2,0),
15340 (10456,8038,8033,3,0),
15341 (16355,10456,8033,4,0),
15342 (16356,16355,8033,5,0),
15343 (25500,16356,8033,6,0),
15344 (58794,25500,8033,7,0),
15345 (58795,58794,8033,8,0),
15346 (58796,58795,8033,9,0),
15347 /*Life Tap*/
15348 (1454,0,1454,1,0),
15349 (1455,1454,1454,2,0),
15350 (1456,1455,1454,3,0),
15351 (11687,1456,1454,4,0),
15352 (11688,11687,1454,5,0),
15353 (11689,11688,1454,6,0),
15354 (27222,11689,1454,7,0),
15355 (57946,27222,1454,8,0),
15356 /*Lightning Shield*/
15357 (324,0,324,1,0),
15358 (325,324,324,2,0),
15359 (905,325,324,3,0),
15360 (945,905,324,4,0),
15361 (8134,945,324,5,0),
15362 (10431,8134,324,6,0),
15363 (10432,10431,324,7,0),
15364 (25469,10432,324,8,0),
15365 (25472,25469,324,9,0),
15366 (49280,25472,324,10,0),
15367 (49281,49280,324,11,0),
15368 /*Nature Resistance Totem*/
15369 (10595,0,10595,1,0),
15370 (10600,10595,10595,2,0),
15371 (10601,10600,10595,3,0),
15372 (25574,10601,10595,4,0),
15373 (58746,25574,10595,5,0),
15374 (58749,58746,10595,6,0),
15375 /*Rockbiter Weapon*/
15376 (8017,0,8017,1,0),
15377 (8018,8017,8017,2,0),
15378 (8019,8018,8017,3,0),
15379 (10399,8019,8017,4,0),
15380 /*Stoneskin Totem*/
15381 (8071,0,8071,1,0),
15382 (8154,8071,8071,2,0),
15383 (8155,8154,8071,3,0),
15384 (10406,8155,8071,4,0),
15385 (10407,10406,8071,5,0),
15386 (10408,10407,8071,6,0),
15387 (25508,10408,8071,7,0),
15388 (25509,25508,8071,8,0),
15389 (58751,25509,8071,9,0),
15390 (58753,58751,8071,10,0),
15391 /*Strength of Earth Totem*/
15392 (8075,0,8075,1,0),
15393 (8160,8075,8075,2,0),
15394 (8161,8160,8075,3,0),
15395 (10442,8161,8075,4,0),
15396 (25361,10442,8075,5,0),
15397 (25528,25361,8075,6,0),
15398 (57622,25528,8075,7,0),
15399 (58643,57622,8075,8,0),
15400 /*WindfuryWeapon*/
15401 (8232,0,8232,1,0),
15402 (8235,8232,8232,2,0),
15403 (10486,8235,8232,3,0),
15404 (16362,10486,8232,4,0),
15405 (25505,16362,8232,5,0),
15406 (58801,25505,8232,6,0),
15407 (58803,58801,8232,7,0),
15408 (58804,58803,8232,8,0),
15409 /*------------------
15410 -- (374) Restoration (Shaman)
15411 ------------------*/
15412 /*AncestralSpirit*/
15413 (2008,0,2008,1,0),
15414 (20609,2008,2008,2,0),
15415 (20610,20609,2008,3,0),
15416 (20776,20610,2008,4,0),
15417 (20777,20776,2008,5,0),
15418 (25590,20777,2008,6,0),
15419 (49277,25590,2008,7,0),
15420 /*ChainHeal*/
15421 (1064,0,1064,1,0),
15422 (10622,1064,1064,2,0),
15423 (10623,10622,1064,3,0),
15424 (25422,10623,1064,4,0),
15425 (25423,25422,1064,5,0),
15426 (55458,25423,1064,6,0),
15427 (55459,55458,1064,7,0),
15428 /*EarthShield*/
15429 (974,0,974,1,0),
15430 (32593,974,974,2,0),
15431 (32594,32593,974,3,0),
15432 (49283,32594,974,4,0),
15433 (49284,49283,974,5,0),
15434 /*EarthlivingWeapon*/
15435 (51730,0,51730,1,0),
15436 (51988,51730,51730,2,0),
15437 (51991,51988,51730,3,0),
15438 (51992,51991,51730,4,0),
15439 (51993,51992,51730,5,0),
15440 (51994,51993,51730,6,0),
15441 /*HealingStreamTotem*/
15442 (5394,0,5394,1,0),
15443 (6375,5394,5394,2,0),
15444 (6377,6375,5394,3,0),
15445 (10462,6377,5394,4,0),
15446 (10463,10462,5394,5,0),
15447 (25567,10463,5394,6,0),
15448 (58755,25567,5394,7,0),
15449 (58756,58755,5394,8,0),
15450 (58757,58756,5394,9,0),
15451 /*HealingWave*/
15452 (331,0,331,1,0),
15453 (332,331,331,2,0),
15454 (547,332,331,3,0),
15455 (913,547,331,4,0),
15456 (939,913,331,5,0),
15457 (959,939,331,6,0),
15458 (8005,959,331,7,0),
15459 (10395,8005,331,8,0),
15460 (10396,10395,331,9,0),
15461 (25357,10396,331,10,0),
15462 (25391,25357,331,11,0),
15463 (25396,25391,331,12,0),
15464 (49272,25396,331,13,0),
15465 (49273,49272,331,14,0),
15466 /*LesserHealingWave*/
15467 (8004,0,8004,1,0),
15468 (8008,8004,8004,2,0),
15469 (8010,8008,8004,3,0),
15470 (10466,8010,8004,4,0),
15471 (10467,10466,8004,5,0),
15472 (10468,10467,8004,6,0),
15473 (25420,10468,8004,7,0),
15474 (49275,25420,8004,8,0),
15475 (49276,49275,8004,9,0),
15476 /*Mana Spring Totem*/
15477 (5675,0,5675,1,0),
15478 (10495,5675,5675,2,0),
15479 (10496,10495,5675,3,0),
15480 (10497,10496,5675,4,0),
15481 (25570,10497,5675,5,0),
15482 (58771,25570,5675,6,0),
15483 (58773,58771,5675,7,0),
15484 (58774,58773,5675,8,0),
15485 /*Riptide*/
15486 (61295,0,61295,1,0),
15487 (61299,61295,61295,2,0),
15488 (61300,61299,61295,3,0),
15489 (61301,61300,61295,4,0),
15490 /*Water Shield*/
15491 (52127,0,52127,1,0),
15492 (52129,52127,52127,2,0),
15493 (52131,52129,52127,3,0),
15494 (52134,52131,52127,4,0),
15495 (52136,52134,52127,5,0),
15496 (52138,52136,52127,6,0),
15497 (24398,52138,52127,7,0),
15498 (33736,24398,52127,8,0),
15499 (57960,33736,52127,9,0),
15500 /*------------------
15501 -- (375) Elemental Combat
15502 ------------------*/
15503 /*Chain Lightning*/
15504 (421,0,421,1,0),
15505 (930,421,421,2,0),
15506 (2860,930,421,3,0),
15507 (10605,2860,421,4,0),
15508 (25439,10605,421,5,0),
15509 (25442,25439,421,6,0),
15510 (49270,25442,421,7,0),
15511 (49271,49270,421,8,0),
15512 /*Earth Shock*/
15513 (8042,0,8042,1,0),
15514 (8044,8042,8042,2,0),
15515 (8045,8044,8042,3,0),
15516 (8046,8045,8042,4,0),
15517 (10412,8046,8042,5,0),
15518 (10413,10412,8042,6,0),
15519 (10414,10413,8042,7,0),
15520 (25454,10414,8042,8,0),
15521 (49230,25454,8042,9,0),
15522 (49231,49230,8042,10,0),
15523 /*Fire Nova Totem*/
15524 (1535,0,1535,1,0),
15525 (8498,1535,1535,2,0),
15526 (8499,8498,1535,3,0),
15527 (11314,8499,1535,4,0),
15528 (11315,11314,1535,5,0),
15529 (25546,11315,1535,6,0),
15530 (25547,25546,1535,7,0),
15531 (61649,25547,1535,8,0),
15532 (61657,61649,1535,9,0),
15533 /*Flame Shock*/
15534 (8050,0,8050,1,0),
15535 (8052,8050,8050,2,0),
15536 (8053,8052,8050,3,0),
15537 (10447,8053,8050,4,0),
15538 (10448,10447,8050,5,0),
15539 (29228,10448,8050,6,0),
15540 (25457,29228,8050,7,0),
15541 (49232,25457,8050,8,0),
15542 (49233,49232,8050,9,0),
15543 /*Frost Shock*/
15544 (8056,0,8056,1,0),
15545 (8058,8056,8056,2,0),
15546 (10472,8058,8056,3,0),
15547 (10473,10472,8056,4,0),
15548 (25464,10473,8056,5,0),
15549 (49235,25464,8056,6,0),
15550 (49236,49235,8056,7,0),
15551 /*Lava Burst*/
15552 (51505,0,51505,1,0),
15553 (60043,51505,51505,2,0),
15554 /*Lightning Bolt*/
15555 (403,0,403,1,0),
15556 (529,403,403,2,0),
15557 (548,529,403,3,0),
15558 (915,548,403,4,0),
15559 (943,915,403,5,0),
15560 (6041,943,403,6,0),
15561 (10391,6041,403,7,0),
15562 (10392,10391,403,8,0),
15563 (15207,10392,403,9,0),
15564 (15208,15207,403,10,0),
15565 (25448,15208,403,11,0),
15566 (25449,25448,403,12,0),
15567 (49237,25449,403,13,0),
15568 (49238,49237,403,14,0),
15569 /*Magma Totem*/
15570 (8190,0,8190,1,0),
15571 (10585,8190,8190,2,0),
15572 (10586,10585,8190,3,0),
15573 (10587,10586,8190,4,0),
15574 (25552,10587,8190,5,0),
15575 (58731,25552,8190,6,0),
15576 (58734,58731,8190,7,0),
15577 /*Purge*/
15578 (370,0,370,1,0),
15579 (8012,370,370,2,0),
15580 /*Searing Totem*/
15581 (3599,0,3599,1,0),
15582 (6363,3599,3599,2,0),
15583 (6364,6363,3599,3,0),
15584 (6365,6364,3599,4,0),
15585 (10437,6365,3599,5,0),
15586 (10438,10437,3599,6,0),
15587 (25533,10438,3599,7,0),
15588 (58699,25533,3599,8,0),
15589 (58703,58699,3599,9,0),
15590 (58704,58703,3599,10,0),
15591 /*Stoneclaw Totem*/
15592 (5730,0,5730,1,0),
15593 (6390,5730,5730,2,0),
15594 (6391,6390,5730,3,0),
15595 (6392,6391,5730,4,0),
15596 (10427,6392,5730,5,0),
15597 (10428,10427,5730,6,0),
15598 (25525,10428,5730,7,0),
15599 (58580,25525,5730,8,0),
15600 (58581,58580,5730,9,0),
15601 (58582,58581,5730,10,0),
15602 /*Totemof Wrath*/
15603 (30706,0,30706,1,0),
15604 (57720,30706,30706,2,0),
15605 (57721,57720,30706,3,0),
15606 (57722,57721,30706,4,0),
15607 /*Thunderstorm*/
15608 (51490,0,51490,1,0),
15609 (59156,51490,51490,2,0),
15610 (59158,59156,51490,3,0),
15611 (59159,59158,51490,4,0),
15612 /*------------------
15613 -- (393) Skinning
15614 ------------------*/
15615 /*Skinning*/
15616 (8613,0,8613,1,0),
15617 (8617,8613,8613,2,0),
15618 (8618,8617,8613,3,0),
15619 (10768,8618,8613,4,0),
15620 (32678,10768,8613,5,0),
15621 (50305,32678,8613,6,0),
15622 /*Master of Anatomy*/
15623 (53125,0,53125,1,0),
15624 (53662,53125,53125,2,0),
15625 (53663,53662,53125,3,0),
15626 (53664,53663,53125,4,0),
15627 (53665,53664,53125,5,0),
15628 (53666,53665,53125,6,0),
15629 /*------------------
15630 --(573)Restoration
15631 ------------------*/
15632 /*GiftoftheWild*/
15633 (21849,0,21849,1,0),
15634 (21850,21849,21849,2,0),
15635 (26991,21850,21849,3,0),
15636 (48470,26991,21849,4,0),
15637 /*HealingTouch*/
15638 (5185,0,5185,1,0),
15639 (5186,5185,5185,2,0),
15640 (5187,5186,5185,3,0),
15641 (5188,5187,5185,4,0),
15642 (5189,5188,5185,5,0),
15643 (6778,5189,5185,6,0),
15644 (8903,6778,5185,7,0),
15645 (9758,8903,5185,8,0),
15646 (9888,9758,5185,9,0),
15647 (9889,9888,5185,10,0),
15648 (25297,9889,5185,11,0),
15649 (26978,25297,5185,12,0),
15650 (26979,26978,5185,13,0),
15651 (48377,26979,5185,14,0),
15652 (48378,48377,5185,15,0),
15653 /*Lifebloom*/
15654 (33763,0,33763,1,0),
15655 (48450,33763,33763,2,0),
15656 (48451,48450,33763,3,0),
15657 /*MarkoftheWild*/
15658 (1126,0,1126,1,0),
15659 (5232,1126,1126,2,0),
15660 (6756,5232,1126,3,0),
15661 (5234,6756,1126,4,0),
15662 (8907,5234,1126,5,0),
15663 (9884,8907,1126,6,0),
15664 (9885,9884,1126,7,0),
15665 (26990,9885,1126,8,0),
15666 (48469,26990,1126,9,0),
15667 /*Nourish*/
15668 (50464,0,50464,1,0),
15669 /*Rebirth*/
15670 (20484,0,20484,1,0),
15671 (20739,20484,20484,2,0),
15672 (20742,20739,20484,3,0),
15673 (20747,20742,20484,4,0),
15674 (20748,20747,20484,5,0),
15675 (26994,20748,20484,6,0),
15676 (48477,26994,20484,7,0),
15677 /*Regrowth*/
15678 (8936,0,8936,1,0),
15679 (8938,8936,8936,2,0),
15680 (8939,8938,8936,3,0),
15681 (8940,8939,8936,4,0),
15682 (8941,8940,8936,5,0),
15683 (9750,8941,8936,6,0),
15684 (9856,9750,8936,7,0),
15685 (9857,9856,8936,8,0),
15686 (9858,9857,8936,9,0),
15687 (26980,9858,8936,10,0),
15688 (48442,26980,8936,11,0),
15689 (48443,48442,8936,12,0),
15690 /*Rejuvenation*/
15691 (774,0,774,1,0),
15692 (1058,774,774,2,0),
15693 (1430,1058,774,3,0),
15694 (2090,1430,774,4,0),
15695 (2091,2090,774,5,0),
15696 (3627,2091,774,6,0),
15697 (8910,3627,774,7,0),
15698 (9839,8910,774,8,0),
15699 (9840,9839,774,9,0),
15700 (9841,9840,774,10,0),
15701 (25299,9841,774,11,0),
15702 (26981,25299,774,12,0),
15703 (26982,26981,774,13,0),
15704 (48440,26982,774,14,0),
15705 (48441,48440,774,15,0),
15706 /*Revive*/
15707 (50769,0,50769,1,0),
15708 (50768,50769,50769,2,0),
15709 (50767,50768,50769,3,0),
15710 (50766,50767,50769,4,0),
15711 (50765,50766,50769,5,0),
15712 (50764,50765,50769,6,0),
15713 (50763,50764,50769,7,0),
15714 /*Tranquility*/
15715 (740,0,740,1,0),
15716 (8918,740,740,2,0),
15717 (9862,8918,740,3,0),
15718 (9863,9862,740,4,0),
15719 (26983,9863,740,5,0),
15720 (48446,26983,740,6,0),
15721 (48447,48446,740,7,0),
15722 /*WildGrowth*/
15723 (48438,0,48438,1,0),
15724 (53248,48438,48438,2,0),
15725 (53249,53248,48438,3,0),
15726 (53251,53249,48438,4,0),
15727 /*------------------
15728 --(574)Balance
15729 ------------------*/
15730 /*EntanglingRoots*/
15731 (339,0,339,1,0),
15732 (1062,339,339,2,0),
15733 (5195,1062,339,3,0),
15734 (5196,5195,339,4,0),
15735 (9852,5196,339,5,0),
15736 (9853,9852,339,6,0),
15737 (26989,9853,339,7,0),
15738 (53308,26989,339,8,0),
15739 /*Nature'sGrasp*/
15740 (16689,0,16689,1,339),
15741 (16810,16689,16689,2,1062),
15742 (16811,16810,16689,3,5195),
15743 (16812,16811,16689,4,5196),
15744 (16813,16812,16689,5,9852),
15745 (17329,16813,16689,6,9853),
15746 (27009,17329,16689,7,26989),
15747 (53312,27009,16689,8,53308),
15748 /*FaerieFire*/
15749 (770,0,770,1,0),
15750 (778,770,770,2,0),
15751 (9749,778,770,3,0),
15752 (9907,9749,770,4,0),
15753 (26993,9907,770,5,0),
15754 (48476,26993,770,6,0),
15755 /*Hibernate*/
15756 (2637,0,2637,1,0),
15757 (18657,2637,2637,2,0),
15758 (18658,18657,2637,3,0),
15759 /*Hurricane*/
15760 (16914,0,16914,1,0),
15761 (17401,16914,16914,2,0),
15762 (17402,17401,16914,3,0),
15763 (27012,17402,16914,4,0),
15764 (48467,27012,16914,5,0),
15765 /*InsectSwarm*/
15766 (5570,0,5570,1,0),
15767 (24974,5570,5570,2,0),
15768 (24975,24974,5570,3,0),
15769 (24976,24975,5570,4,0),
15770 (24977,24976,5570,5,0),
15771 (27013,24977,5570,6,0),
15772 (48468,27013,5570,7,0),
15773 /*Moonfire*/
15774 (8921,0,8921,1,0),
15775 (8924,8921,8921,2,0),
15776 (8925,8924,8921,3,0),
15777 (8926,8925,8921,4,0),
15778 (8927,8926,8921,5,0),
15779 (8928,8927,8921,6,0),
15780 (8929,8928,8921,7,0),
15781 (9833,8929,8921,8,0),
15782 (9834,9833,8921,9,0),
15783 (9835,9834,8921,10,0),
15784 (26987,9835,8921,11,0),
15785 (26988,26987,8921,12,0),
15786 (48462,26988,8921,13,0),
15787 (48463,48462,8921,14,0),
15788 /*SootheAnimal*/
15789 (2908,0,2908,1,0),
15790 (8955,2908,2908,2,0),
15791 (9901,8955,2908,3,0),
15792 (26995,9901,2908,4,0),
15793 /*Starfall*/
15794 (48505,0,48505,1,0),
15795 (53199,48505,48505,2,0),
15796 (53200,53199,48505,3,0),
15797 (53201,53200,48505,4,0),
15798 /*Starfall AOE*/
15799 (50294,0,50294,1,0),
15800 (53188,50294,50294,2,0),
15801 (53189,53188,50294,3,0),
15802 (53190,53189,50294,4,0),
15803 /*Starfall Direct*/
15804 (50288,0,50288,1,0),
15805 (53191,50288,50288,2,0),
15806 (53194,53191,50288,3,0),
15807 (53195,53194,50288,4,0),
15808 /*Starfire*/
15809 (2912,0,2912,1,0),
15810 (8949,2912,2912,2,0),
15811 (8950,8949,2912,3,0),
15812 (8951,8950,2912,4,0),
15813 (9875,8951,2912,5,0),
15814 (9876,9875,2912,6,0),
15815 (25298,9876,2912,7,0),
15816 (26986,25298,2912,8,0),
15817 (48464,26986,2912,9,0),
15818 (48465,48464,2912,10,0),
15819 /*Thorns*/
15820 (467,0,467,1,0),
15821 (782,467,467,2,0),
15822 (1075,782,467,3,0),
15823 (8914,1075,467,4,0),
15824 (9756,8914,467,5,0),
15825 (9910,9756,467,6,0),
15826 (26992,9910,467,7,0),
15827 (53307,26992,467,8,0),
15828 /*Typhoon*/
15829 (50516,0,50516,1,0),
15830 (53223,50516,50516,2,0),
15831 (53225,53223,50516,3,0),
15832 (53226,53225,50516,4,0),
15833 (61384,53226,50516,5,0),
15834 /*Wrath*/
15835 (5176,0,5176,1,0),
15836 (5177,5176,5176,2,0),
15837 (5178,5177,5176,3,0),
15838 (5179,5178,5176,4,0),
15839 (5180,5179,5176,5,0),
15840 (6780,5180,5176,6,0),
15841 (8905,6780,5176,7,0),
15842 (9912,8905,5176,8,0),
15843 (26984,9912,5176,9,0),
15844 (26985,26984,5176,10,0),
15845 (48459,26985,5176,11,0),
15846 (48461,48459,5176,12,0),
15847 /*------------------
15848 --(593)Destruction
15849 ------------------*/
15850 /*ChaosBolt*/
15851 (50796,0,50796,1,0),
15852 (59170,50796,50796,2,0),
15853 (59171,59170,50796,3,0),
15854 (59172,59171,50796,4,0),
15855 /*Conflagrate*/
15856 (17962,0,17962,1,0),
15857 (18930,17962,17962,2,0),
15858 (18931,18930,17962,3,0),
15859 (18932,18931,17962,4,0),
15860 (27266,18932,17962,5,0),
15861 (30912,27266,17962,6,0),
15862 (47828,30912,17962,7,0),
15863 (47829,47828,17962,8,0),
15864 /*Hellfire*/
15865 (1949,0,1949,1,0),
15866 (11683,1949,1949,2,0),
15867 (11684,11683,1949,3,0),
15868 (27213,11684,1949,4,0),
15869 (47823,27213,1949,5,0),
15870 /*Immolate*/
15871 (348,0,348,1,0),
15872 (707,348,348,2,0),
15873 (1094,707,348,3,0),
15874 (2941,1094,348,4,0),
15875 (11665,2941,348,5,0),
15876 (11667,11665,348,6,0),
15877 (11668,11667,348,7,0),
15878 (25309,11668,348,8,0),
15879 (27215,25309,348,9,0),
15880 (47810,27215,348,10,0),
15881 (47811,47810,348,11,0),
15882 /*Incinerate*/
15883 (29722,0,29722,1,0),
15884 (32231,29722,29722,2,0),
15885 (47837,32231,29722,3,0),
15886 (47838,47837,29722,4,0),
15887 /*RainofFire*/
15888 (5740,0,5740,1,0),
15889 (6219,5740,5740,2,0),
15890 (11677,6219,5740,3,0),
15891 (11678,11677,5740,4,0),
15892 (27212,11678,5740,5,0),
15893 (47819,27212,5740,6,0),
15894 (47820,47819,5740,7,0),
15895 /*SearingPain*/
15896 (5676,0,5676,1,0),
15897 (17919,5676,5676,2,0),
15898 (17920,17919,5676,3,0),
15899 (17921,17920,5676,4,0),
15900 (17922,17921,5676,5,0),
15901 (17923,17922,5676,6,0),
15902 (27210,17923,5676,7,0),
15903 (30459,27210,5676,8,0),
15904 (47814,30459,5676,9,0),
15905 (47815,47814,5676,10,0),
15906 /*ShadowBolt*/
15907 (686,0,686,1,0),
15908 (695,686,686,2,0),
15909 (705,695,686,3,0),
15910 (1088,705,686,4,0),
15911 (1106,1088,686,5,0),
15912 (7641,1106,686,6,0),
15913 (11659,7641,686,7,0),
15914 (11660,11659,686,8,0),
15915 (11661,11660,686,9,0),
15916 (25307,11661,686,10,0),
15917 (27209,25307,686,11,0),
15918 (47808,27209,686,12,0),
15919 (47809,47808,686,13,0),
15920 /*Shadowburn*/
15921 (17877,0,17877,1,0),
15922 (18867,17877,17877,2,0),
15923 (18868,18867,17877,3,0),
15924 (18869,18868,17877,4,0),
15925 (18870,18869,17877,5,0),
15926 (18871,18870,17877,6,0),
15927 (27263,18871,17877,7,0),
15928 (30546,27263,17877,8,0),
15929 (47826,30546,17877,9,0),
15930 (47827,47826,17877,10,0),
15931 /*Shadowflame*/
15932 (47897,0,47897,1,0),
15933 (61290,47897,47897,2,0),
15934 /*Shadowfury*/
15935 (30283,0,30283,1,0),
15936 (30413,30283,30283,2,0),
15937 (30414,30413,30283,3,0),
15938 (47846,30414,30283,4,0),
15939 (47847,47846,30283,5,0),
15940 /*SoulFire*/
15941 (6353,0,6353,1,0),
15942 (17924,6353,6353,2,0),
15943 (27211,17924,6353,3,0),
15944 (30545,27211,6353,4,0),
15945 (47824,30545,6353,5,0),
15946 (47825,47824,6353,6,0),
15947 /*------------------
15948 --(594) Holy (Paladin)
15949 ------------------*/
15950 /*Blessing of Wisdom*/
15951 (19742,0,19742,1,0),
15952 (19850,19742,19742,2,0),
15953 (19852,19850,19742,3,0),
15954 (19853,19852,19742,4,0),
15955 (19854,19853,19742,5,0),
15956 (25290,19854,19742,6,0),
15957 (27142,25290,19742,7,0),
15958 (48935,27142,19742,8,0),
15959 (48936,48935,19742,9,0),
15960 /*Consecration*/
15961 (26573,0,26573,1,0),
15962 (20116,26573,26573,2,0),
15963 (20922,20116,26573,3,0),
15964 (20923,20922,26573,4,0),
15965 (20924,20923,26573,5,0),
15966 (27173,20924,26573,6,0),
15967 (48818,27173,26573,7,0),
15968 (48819,48818,26573,8,0),
15969 /*Exorcism*/
15970 (879,0,879,1,0),
15971 (5614,879,879,2,0),
15972 (5615,5614,879,3,0),
15973 (10312,5615,879,4,0),
15974 (10313,10312,879,5,0),
15975 (10314,10313,879,6,0),
15976 (27138,10314,879,7,0),
15977 (48800,27138,879,8,0),
15978 (48801,48800,879,9,0),
15979 /*Flash of Light*/
15980 (19750,0,19750,1,0),
15981 (19939,19750,19750,2,0),
15982 (19940,19939,19750,3,0),
15983 (19941,19940,19750,4,0),
15984 (19942,19941,19750,5,0),
15985 (19943,19942,19750,6,0),
15986 (27137,19943,19750,7,0),
15987 (48784,27137,19750,8,0),
15988 (48785,48784,19750,9,0),
15989 /*Greater Blessing of Wisdom*/
15990 (25894,0,25894,1,19854),
15991 (25918,25894,25894,2,25290),
15992 (27143,25918,25894,3,27142),
15993 (48937,27143,25894,4,48935),
15994 (48938,48937,25894,5,48936),
15995 /*Holy Light*/
15996 (635,0,635,1,0),
15997 (639,635,635,2,0),
15998 (647,639,635,3,0),
15999 (1026,647,635,4,0),
16000 (1042,1026,635,5,0),
16001 (3472,1042,635,6,0),
16002 (10328,3472,635,7,0),
16003 (10329,10328,635,8,0),
16004 (25292,10329,635,9,0),
16005 (27135,25292,635,10,0),
16006 (27136,27135,635,11,0),
16007 (48781,27136,635,12,0),
16008 (48782,48781,635,13,0),
16009 /*HolyShock*/
16010 (20473,0,20473,1,0),
16011 (20929,20473,20473,2,0),
16012 (20930,20929,20473,3,0),
16013 (27174,20930,20473,4,0),
16014 (33072,27174,20473,5,0),
16015 (48824,33072,20473,6,0),
16016 (48825,48824,20473,7,0),
16017 /*HolyWrath*/
16018 (2812,0,2812,1,0),
16019 (10318,2812,2812,2,0),
16020 (27139,10318,2812,3,0),
16021 (48816,27139,2812,4,0),
16022 (48817,48816,2812,5,0),
16023 /*Lay on Hands*/
16024 (633,0,633,1,0),
16025 (2800,633,633,2,0),
16026 (10310,2800,633,3,0),
16027 (27154,10310,633,4,0),
16028 (48788,27154,633,5,0),
16029 /*Redemption*/
16030 (7328,0,7328,1,0),
16031 (10322,7328,7328,2,0),
16032 (10324,10322,7328,3,0),
16033 (20772,10324,7328,4,0),
16034 (20773,20772,7328,5,0),
16035 (48949,20773,7328,6,0),
16036 (48950,48949,7328,7,0),
16037 /*------------------
16038 --(613)Discipline
16039 ------------------*/
16040 /*DispelMagic*/
16041 (527,0,527,1,0),
16042 (988,527,527,2,0),
16043 /*DivineSpirit*/
16044 (14752,0,14752,1,0),
16045 (14818,14752,14752,2,0),
16046 (14819,14818,14752,3,0),
16047 (27841,14819,14752,4,0),
16048 (25312,27841,14752,5,0),
16049 (48073,25312,14752,6,0),
16050 /*InnerFire*/
16051 (588,0,588,1,0),
16052 (7128,588,588,2,0),
16053 (602,7128,588,3,0),
16054 (1006,602,588,4,0),
16055 (10951,1006,588,5,0),
16056 (10952,10951,588,6,0),
16057 (25431,10952,588,7,0),
16058 (48040,25431,588,8,0),
16059 (48168,48040,588,9,0),
16060 /*Penance*/
16061 (47540,0,47540,1,0),
16062 (53005,47540,47540,2,0),
16063 (53006,53005,47540,3,0),
16064 (53007,53006,47540,4,0),
16065 /*PowerWord:Fortitude*/
16066 (1243,0,1243,1,0),
16067 (1244,1243,1243,2,0),
16068 (1245,1244,1243,3,0),
16069 (2791,1245,1243,4,0),
16070 (10937,2791,1243,5,0),
16071 (10938,10937,1243,6,0),
16072 (25389,10938,1243,7,0),
16073 (48161,25389,1243,8,0),
16074 /*PowerWord:Shield*/
16075 (17,0,17,1,0),
16076 (592,17,17,2,0),
16077 (600,592,17,3,0),
16078 (3747,600,17,4,0),
16079 (6065,3747,17,5,0),
16080 (6066,6065,17,6,0),
16081 (10898,6066,17,7,0),
16082 (10899,10898,17,8,0),
16083 (10900,10899,17,9,0),
16084 (10901,10900,17,10,0),
16085 (25217,10901,17,11,0),
16086 (25218,25217,17,12,0),
16087 (48065,25218,17,13,0),
16088 (48066,48065,17,14,0),
16089 /*PrayerofFortitude*/
16090 (21562,0,21562,1,0),
16091 (21564,21562,21562,2,0),
16092 (25392,21564,21562,3,0),
16093 (48162,25392,21562,4,0),
16094 /*Prayer of Spirit*/
16095 (27681,0,27681,1,14752),
16096 (32999,27681,27681,2,0),
16097 (48074,32999,27681,3,0),
16098 /*ShackleUndead*/
16099 (9484,0,9484,1,0),
16100 (9485,9484,9484,2,0),
16101 (10955,9485,9484,3,0),
16102 /*------------------
16103 --(654)Pet-Hyena
16104 ------------------*/
16105 /*TendonRip*/
16106 (50271,0,50271,1,0),
16107 (53571,50271,50271,2,0),
16108 (53572,53571,50271,3,0),
16109 (53573,53572,50271,4,0),
16110 (53574,53573,50271,5,0),
16111 (53575,53574,50271,6,0),
16112 /*------------------
16113 --(655)Pet-BirdofPrey
16114 ------------------*/
16115 /*Snatch*/
16116 (50541,0,50541,1,0),
16117 (53537,50541,50541,2,0),
16118 (53538,53537,50541,3,0),
16119 (53540,53538,50541,4,0),
16120 (53542,53540,50541,5,0),
16121 (53543,53542,50541,6,0),
16122 /*------------------
16123 --(656)Pet-WindSerpent
16124 ------------------*/
16125 /*LightningBreath*/
16126 (24844,0,24844,1,0),
16127 (25008,24844,24844,2,0),
16128 (25009,25008,24844,3,0),
16129 (25010,25009,24844,4,0),
16130 (25011,25010,24844,5,0),
16131 (25012,25011,24844,6,0),
16132 /*------------------
16133 -- (755) Jewelcrafting
16134 ------------------*/
16135 /*Jewelcrafting*/
16136 (25229,0,25229,1,0),
16137 (25230,25229,25229,2,0),
16138 (28894,25230,25229,3,0),
16139 (28895,28894,25229,4,0),
16140 (28897,28895,25229,5,0),
16141 (51311,28897,25229,6,0),
16142 /*------------------
16143 --(761)Pet-Felguard
16144 ------------------*/
16145 /*Anguish*/
16146 (33698,0,33698,1,0),
16147 (33699,33698,33698,2,0),
16148 (33700,33699,33698,3,0),
16149 (47993,33700,33698,4,0),
16150 /*Cleave*/
16151 (30213,0,30213,1,0),
16152 (30219,30213,30213,2,0),
16153 (30223,30219,30213,3,0),
16154 (47994,30223,30213,4,0),
16155 /*Intercept*/
16156 (30151,0,30151,1,0),
16157 (30194,30151,30151,2,0),
16158 (30198,30194,30151,3,0),
16159 (47996,30198,30151,4,0),
16160 /*------------------
16161 -- (762) Riding
16162 ------------------*/
16163 /*Riding*/
16164 (33388,0,33388,1,0),
16165 (33391,33388,33388,2,0),
16166 (34090,33391,33388,3,0),
16167 (34091,34090,33388,4,0),
16168 /*------------------
16169 --(763)Pet-Dragonhawk
16170 ------------------*/
16171 /*FireBreath*/
16172 (34889,0,34889,1,0),
16173 (35323,34889,34889,2,0),
16174 (55482,35323,34889,3,0),
16175 (55483,55482,34889,4,0),
16176 (55484,55483,34889,5,0),
16177 (55485,55484,34889,6,0),
16178 /*------------------
16179 --(764)Pet-NetherRay
16180 --(765)Pet-Sporebat
16181 ------------------*/
16182 /*SporeCloud*/
16183 (50274,0,50274,1,0),
16184 (53593,50274,50274,2,0),
16185 (53594,53593,50274,3,0),
16186 (53596,53594,50274,4,0),
16187 (53597,53596,50274,5,0),
16188 (53598,53597,50274,6,0),
16189 /*------------------
16190 --(768)Pet-Serpent
16191 ------------------*/
16192 /*PoisonSpit*/
16193 (35387,0,35387,1,0),
16194 (35389,35387,35387,2,0),
16195 (35392,35389,35387,3,0),
16196 (55555,35392,35387,4,0),
16197 (55556,55555,35387,5,0),
16198 (55557,55556,35387,6,0),
16199 /*------------------
16200 --(770)Blood
16201 ------------------*/
16202 /*BloodBoil*/
16203 (48721,0,48721,1,0),
16204 (49939,48721,48721,2,0),
16205 (49940,49939,48721,3,0),
16206 (49941,49940,48721,4,0),
16207 /*BloodStrike*/
16208 (45902,0,45902,1,0),
16209 (49926,45902,45902,2,0),
16210 (49927,49926,45902,3,0),
16211 (49928,49927,45902,4,0),
16212 (49929,49928,45902,5,0),
16213 (49930,49929,45902,6,0),
16214 /*HeartStrike*/
16215 (55050,0,55050,1,0),
16216 (55258,55050,55050,2,0),
16217 (55259,55258,55050,3,0),
16218 (55260,55259,55050,4,0),
16219 (55261,55260,55050,5,0),
16220 (55262,55261,55050,6,0),
16221 /*ImprovedRuneTap*/
16222 (48985,0,48985,1,0),
16223 (49488,48985,48985,2,0),
16224 (49489,49488,48985,3,0),
16225 /*Pestilence*/
16226 (50842,0,50842,1,0),
16227 (51426,50842,50842,2,0),
16228 (51427,51426,50842,3,0),
16229 (51428,51427,50842,4,0),
16230 (51429,51428,50842,5,0),
16231 /*Strangulate*/
16232 (47476,0,47476,1,0),
16233 (49913,47476,47476,2,0),
16234 (49914,49913,47476,3,0),
16235 (49915,49914,47476,4,0),
16236 (49916,49915,47476,5,0),
16237 /*Vendetta*/
16238 (49015,0,49015,1,0),
16239 (50154,49015,49015,2,0),
16240 (55136,50154,49015,3,0),
16241 /*------------------
16242 --(771)Frost
16243 ------------------*/
16244 /*FrostStrike*/
16245 (49143,0,49143,1,0),
16246 (51416,49143,49143,2,0),
16247 (51417,51416,49143,3,0),
16248 (51418,51417,49143,4,0),
16249 (51419,51418,49143,5,0),
16250 (55268,51419,49143,6,0),
16251 /*HornofWinter*/
16252 (57330,0,57330,1,0),
16253 (57623,57330,57330,2,0),
16254 /*HowlingBlast*/
16255 (49184,0,49184,1,0),
16256 (51408,49184,49184,2,0),
16257 (51409,51408,49184,3,0),
16258 (51410,51409,49184,4,0),
16259 (51411,51410,49184,5,0),
16260 /*IcyTalons*/
16261 (50880,0,50880,1,0),
16262 (50884,50880,50880,2,0),
16263 (50885,50884,50880,3,0),
16264 (50886,50885,50880,4,0),
16265 (50887,50886,50880,5,0),
16266 /*IcyTouch*/
16267 (45477,0,45477,1,0),
16268 (49896,45477,45477,2,0),
16269 (49903,49896,45477,3,0),
16270 (49904,49903,45477,4,0),
16271 (49909,49904,45477,5,0),
16272 /*ImprovedIcyTouch*/
16273 (49175,0,49175,1,0),
16274 (50031,49175,49175,2,0),
16275 (51456,50031,49175,3,0),
16276 /*Obliterate*/
16277 (49020,0,49020,1,0),
16278 (51423,49020,49020,2,0),
16279 (51424,51423,49020,3,0),
16280 (51425,51424,49020,4,0),
16281 /*------------------
16282 --(772)Unholy
16283 ------------------*/
16284 /*CorpseExplosion*/
16285 (49158,0,49158,1,0),
16286 (51325,49158,49158,2,0),
16287 (51326,51325,49158,3,0),
16288 (51327,51326,49158,4,0),
16289 (51328,51327,49158,5,0),
16290 /*DeathandDecay*/
16291 (43265,0,43265,1,0),
16292 (49936,43265,43265,2,0),
16293 (49937,49936,43265,3,0),
16294 (49938,49937,43265,4,0),
16295 /*DeathCoil*/
16296 (47541,0,47541,1,0),
16297 (49892,47541,47541,2,0),
16298 (49893,49892,47541,3,0),
16299 (49894,49893,47541,4,0),
16300 (49895,49894,47541,5,0),
16301 /*DeathStrike*/
16302 (49998,0,49998,1,0),
16303 (49999,49998,49998,2,0),
16304 (45463,49999,49998,3,0),
16305 (49923,45463,49998,4,0),
16306 (49924,49923,49998,5,0),
16307 /*MagicSuppression*/
16308 (49224,0,49224,1,0),
16309 (49610,49224,49224,2,0),
16310 (49611,49610,49224,3,0),
16311 (49612,49611,49224,4,0),
16312 (49614,49612,49224,5,0),
16313 /*Outbreak*/
16314 (49013,0,49013,1,0),
16315 (55236,49013,49013,2,0),
16316 (55237,55236,49013,3,0),
16317 /*PlagueStrike*/
16318 (45462,0,45462,1,0),
16319 (49917,45462,45462,2,0),
16320 (49918,49917,45462,3,0),
16321 (49919,49918,45462,4,0),
16322 (49920,49919,45462,5,0),
16323 (49921,49920,45462,6,0),
16324 /*ScourgeStrike*/
16325 (55090,0,55090,1,0),
16326 (55265,55090,55090,2,0),
16327 (55270,55265,55090,3,0),
16328 (55271,55270,55090,4,0),
16329 /*UnholyBlight*/
16330 (49194,0,49194,1,0),
16331 (51376,49194,49194,2,0),
16332 (51378,51376,49194,3,0),
16333 (51379,51378,49194,4,0),
16334 /*------------------
16335 -- (773) Inscription
16336 ------------------*/
16337 /*Inscription*/
16338 (45357,0,45357,1,0),
16339 (45358,45357,45357,2,0),
16340 (45359,45358,45357,3,0),
16341 (45360,45359,45357,4,0),
16342 (45361,45360,45357,5,0),
16343 (45363,45361,45357,6,0),
16344 /*------------------
16345 -- (777) Mounts
16346 ------------------*/
16347 (13819,0,13819,1,0),
16348 (23214,13819,13819,2,33391),
16349 (34769,0,34769,1,0),
16350 (34767,34769,34769,2,33391),
16351 /*------------------
16352 --(780)Pet-ExoticChimaera
16353 ------------------*/
16354 /*FroststormBreath*/
16355 (54644,0,54644,1,0),
16356 (55488,54644,54644,2,0),
16357 (55489,55488,54644,3,0),
16358 (55490,55489,54644,4,0),
16359 (55491,55490,54644,5,0),
16360 (55492,55491,54644,6,0),
16361 /*------------------
16362 --(781)Pet-ExoticDevlisaur
16363 ------------------*/
16364 /*MonstrousBite*/
16365 (54680,0,54680,1,0),
16366 (55495,54680,54680,2,0),
16367 (55496,55495,54680,3,0),
16368 (55497,55496,54680,4,0),
16369 (55498,55497,54680,5,0),
16370 (55499,55498,54680,6,0),
16371 /*------------------
16372 --(784)Pet-ExoticWorm
16373 ------------------*/
16374 /*AcidSpit*/
16375 (55749,0,55749,1,0),
16376 (55750,55749,55749,2,0),
16377 (55751,55750,55749,3,0),
16378 (55752,55751,55749,4,0),
16379 (55753,55752,55749,5,0),
16380 (55754,55753,55749,6,0),
16381 /*------------------
16382 --(785)Pet-Wasp
16383 ------------------*/
16384 /*Sting*/
16385 (56626,0,56626,1,0),
16386 (56627,56626,56626,2,0),
16387 (56628,56627,56626,3,0),
16388 (56629,56628,56626,4,0),
16389 (56630,56629,56626,5,0),
16390 (56631,56630,56626,6,0),
16391 /*------------------
16392 --(787)Pet-ExoticCoreHound
16393 ------------------*/
16394 /*LavaBreath*/
16395 (58604,0,58604,1,0),
16396 (58607,58604,58604,2,0),
16397 (58608,58607,58604,3,0),
16398 (58609,58608,58604,4,0),
16399 (58610,58609,58604,5,0),
16400 (58611,58610,58604,6,0),
16401 /*------------------
16402 --(788)Pet-ExoticSpiritBeast
16403 ------------------*/
16404 /*SpiritStrike*/
16405 (61193,0,61193,1,0),
16406 (61194,61193,61193,2,0),
16407 (61195,61194,61193,3,0),
16408 (61196,61195,61193,4,0),
16409 (61197,61196,61193,5,0),
16410 (61198,61197,61193,6,0),
16412 /*Tranquility*/
16413 (44203,    0,44203,1,0),
16414 (44205,44203,44203,2,0),
16415 (44206,44205,44203,3,0),
16416 (44207,44206,44203,4,0),
16417 (44208,44207,44203,5,0),
16418 (48444,44208,44203,6,0),
16419 (48445,48444,44203,7,0),
16420 /*Hurricane*/
16421 (42231,    0,42231,1,0),
16422 (42232,42231,42231,2,0),
16423 (42233,42232,42231,3,0),
16424 (42230,42233,42231,4,0),
16425 (48466,42230,42231,5,0);
16426 /*!40000 ALTER TABLE `spell_chain` ENABLE KEYS */;
16427 UNLOCK TABLES;
16430 -- Table structure for table `spell_elixir`
16433 DROP TABLE IF EXISTS `spell_elixir`;
16434 CREATE TABLE `spell_elixir` (
16435   `entry` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of potion',
16436   `mask` tinyint(1) unsigned NOT NULL default '0' COMMENT 'Mask 0x1 battle 0x2 guardian 0x3 flask 0x7 unstable flasks 0xB shattrath flasks',
16437   PRIMARY KEY  (`entry`)
16438 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
16441 -- Dumping data for table `spell_elixir`
16444 LOCK TABLES `spell_elixir` WRITE;
16445 /*!40000 ALTER TABLE `spell_elixir` DISABLE KEYS */;
16446 INSERT INTO `spell_elixir` VALUES
16447 (  673,0x2),
16448 ( 2367,0x1),
16449 ( 2374,0x1),
16450 ( 2378,0x2),
16451 ( 2380,0x2),
16452 ( 3160,0x1),
16453 ( 3164,0x1),
16454 ( 3166,0x2),
16455 ( 3219,0x2),
16456 ( 3220,0x2),
16457 ( 3222,0x2),
16458 ( 3223,0x2),
16459 ( 3593,0x2),
16460 ( 7844,0x1),
16461 ( 8212,0x1),
16462 (10667,0x1),
16463 (10668,0x2),
16464 (10669,0x1),
16465 (10692,0x2),
16466 (10693,0x2),
16467 (11319,0x2),
16468 (11328,0x1),
16469 (11334,0x1),
16470 (11348,0x2),
16471 (11349,0x2),
16472 (11364,0x2),
16473 (11371,0x2),
16474 (11390,0x1),
16475 (11396,0x2),
16476 (11405,0x1),
16477 (11406,0x1),
16478 (11474,0x1),
16479 (15231,0x2),
16480 (15233,0x2),
16481 (16321,0x2),
16482 (16322,0x1),
16483 (16323,0x1),
16484 (16325,0x2),
16485 (16326,0x2),
16486 (16327,0x2),
16487 (16329,0x1),
16488 (17038,0x1),
16489 (17535,0x2),
16490 (17537,0x1),
16491 (17538,0x1),
16492 (17539,0x1),
16493 (17624,0x3),
16494 (17626,0x3),
16495 (17627,0x3),
16496 (17629,0x3),
16497 (17628,0x3),
16498 (21920,0x1),
16499 (24361,0x2),
16500 (24363,0x2),
16501 (24382,0x2),
16502 (24383,0x2),
16503 (24417,0x2),
16504 (26276,0x1),
16505 (27652,0x2),
16506 (27653,0x2),
16507 (28486,0x1),
16508 (28488,0x1),
16509 (28490,0x1),
16510 (28491,0x1),
16511 (28493,0x1),
16512 (28497,0x1),
16513 (28501,0x1),
16514 (28502,0x2),
16515 (28503,0x1),
16516 (28509,0x2),
16517 (28514,0x2),
16518 (28518,0x3),
16519 (28519,0x3),
16520 (28520,0x3),
16521 (28521,0x3),
16522 (28540,0x3),
16523 (29348,0x2),
16524 (33720,0x1),
16525 (33721,0x1),
16526 (33726,0x1),
16527 (38954,0x1),
16528 (39625,0x2),
16529 (39626,0x2),
16530 (39627,0x2),
16531 (39628,0x2),
16532 (40567,0x7),
16533 (40568,0x7),
16534 (40572,0x7),
16535 (40573,0x7),
16536 (40575,0x7),
16537 (40576,0x7),
16538 (41608,0xB),
16539 (41609,0xB),
16540 (41610,0xB),
16541 (41611,0xB),
16542 (42735,0x3),
16543 (45373,0x1),
16544 (46837,0xB),
16545 (46839,0xB);
16546 /*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
16547 UNLOCK TABLES;
16550 -- Table structure for table `spell_learn_spell`
16553 DROP TABLE IF EXISTS `spell_learn_spell`;
16554 CREATE TABLE `spell_learn_spell` (
16555   `entry` smallint(5) unsigned NOT NULL default '0',
16556   `SpellID` smallint(5) unsigned NOT NULL default '0',
16557   `Active` tinyint(3) unsigned NOT NULL default '1',
16558   PRIMARY KEY  (`entry`,`SpellID`)
16559 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
16562 -- Dumping data for table `spell_learn_spell`
16565 LOCK TABLES `spell_learn_spell` WRITE;
16566 /*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
16567 INSERT INTO `spell_learn_spell` VALUES
16568 (71,7376,0),
16569 (768,3025,0),
16570 (783,5419,0),
16571 (1066,5421,0),
16572 (2457,21156,0),
16573 (2458,7381,0),
16574 (5487,1178,0),
16575 (5487,21178,0),
16576 (5784,33388,1),
16577 (9634,9635,0),
16578 (9634,21178,0),
16579 (13819,33388,1),
16580 (17002,24867,0),
16581 (23161,33391,1),
16582 (23214,33391,1),
16583 (24858,24905,0),
16584 (24866,24864,0),
16585 (33872,47179,0),
16586 (33873,47180,0),
16587 (33891,5420,0),
16588 (33891,34123,0),
16589 (33943,33948,0),
16590 (33943,34090,1),
16591 (33943,34764,0),
16592 (34767,33391,1),
16593 (34769,33388,1),
16594 (40123,40121,0),
16595 (40123,40122,0),
16596 (53428,53341,1),
16597 (53428,53343,1),
16598 (58984,21009,1);
16601 /*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
16602 UNLOCK TABLES;
16605 -- Table structure for table `spell_loot_template`
16608 DROP TABLE IF EXISTS `spell_loot_template`;
16609 CREATE TABLE `spell_loot_template` (
16610   `entry` mediumint(8) unsigned NOT NULL default '0',
16611   `item` mediumint(8) unsigned NOT NULL default '0',
16612   `ChanceOrQuestChance` float NOT NULL default '100',
16613   `groupid` tinyint(3) unsigned NOT NULL default '0',
16614   `mincountOrRef` mediumint(9) NOT NULL default '1',
16615   `maxcount` tinyint(3) unsigned NOT NULL default '1',
16616   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
16617   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
16618   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
16619   PRIMARY KEY  (`entry`,`item`)
16620 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
16623 -- Dumping data for table `spell_loot_template`
16626 LOCK TABLES `spell_loot_template` WRITE;
16627 /*!40000 ALTER TABLE `spell_loot_template` DISABLE KEYS */;
16628 /*!40000 ALTER TABLE `spell_loot_template` ENABLE KEYS */;
16629 UNLOCK TABLES;
16632 -- Table structure for table `spell_pet_auras`
16635 DROP TABLE IF EXISTS `spell_pet_auras`;
16636 CREATE TABLE `spell_pet_auras` (
16637   `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
16638   `pet` mediumint(8) unsigned NOT NULL default '0' COMMENT 'pet id; 0 = all',
16639   `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
16640   PRIMARY KEY  (`spell`,`pet`)
16641 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
16644 -- Dumping data for table `spell_pet_auras`
16647 LOCK TABLES `spell_pet_auras` WRITE;
16648 /*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
16649 INSERT INTO `spell_pet_auras` VALUES
16650 (19028, 0, 25228),
16651 (19578, 0, 19579),
16652 (20895, 0, 24529),
16653 (28757, 0, 28758),
16654 (35029, 0, 35060),
16655 (35030, 0, 35061),
16656 (35691, 0, 35696),
16657 (35692, 0, 35696),
16658 (35693, 0, 35696),
16659 (23785, 416, 23759),
16660 (23822, 416, 23826),
16661 (23823, 416, 23827),
16662 (23824, 416, 23828),
16663 (23825, 416, 23829),
16664 (23785, 417, 23762),
16665 (23822, 417, 23837),
16666 (23823, 417, 23838),
16667 (23824, 417, 23839),
16668 (23825, 417, 23840),
16669 (23785, 1860, 23760),
16670 (23822, 1860, 23841),
16671 (23823, 1860, 23842),
16672 (23824, 1860, 23843),
16673 (23825, 1860, 23844),
16674 (23785, 1863, 23761),
16675 (23822, 1863, 23833),
16676 (23823, 1863, 23834),
16677 (23824, 1863, 23835),
16678 (23825, 1863, 23836),
16679 (23785, 17252, 35702),
16680 (23822, 17252, 35703),
16681 (23823, 17252, 35704),
16682 (23824, 17252, 35705),
16683 (23825, 17252, 35706);
16685 /*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
16686 UNLOCK TABLES;
16689 -- Table structure for table `spell_proc_event`
16692 DROP TABLE IF EXISTS `spell_proc_event`;
16693 CREATE TABLE `spell_proc_event` (
16694   `entry` smallint(5) unsigned NOT NULL default '0',
16695   `SchoolMask` tinyint(4) NOT NULL default '0',
16696   `SpellFamilyName` smallint(5) unsigned NOT NULL default '0',
16697   `SpellFamilyMask0` int(10) unsigned NOT NULL default '0',
16698   `SpellFamilyMask1` int(10) unsigned NOT NULL default '0',
16699   `SpellFamilyMask2` int(10) unsigned NOT NULL default '0',
16700   `procFlags` int(10) unsigned NOT NULL default '0',
16701   `procEx` int(10) unsigned NOT NULL default '0',
16702   `ppmRate` float NOT NULL default '0',
16703   `CustomChance` float NOT NULL default '0',
16704   `Cooldown` int(10) unsigned NOT NULL default '0',
16705   PRIMARY KEY  (`entry`)
16706 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
16709 -- Dumping data for table `spell_proc_event`
16712 LOCK TABLES `spell_proc_event` WRITE;
16713 /*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
16714 INSERT INTO `spell_proc_event` VALUES
16715 (  324, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16716 (  325, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16717 (  905, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16718 (  945, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16719 (  974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16720 ( 1463, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16721 ( 3232, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16722 ( 5952, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16723 ( 6346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
16724 ( 7383, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
16725 ( 7434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16726 ( 8134, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16727 ( 8178, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16728 ( 8494, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16729 ( 8495, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16730 ( 9452, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16731 ( 9782, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16732 ( 9784, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16733 ( 9799, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16734 (10191, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16735 (10192, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16736 (10193, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16737 (10431, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16738 (10432, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16739 (11095, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16740 (11119, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16741 (11120, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16742 (11129, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16743 (11180, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16744 (11185, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
16745 (11255, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16746 (12169, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16747 (12281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
16748 (12289, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16749 (12298, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16750 (12311, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16751 (12317, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16752 (12319, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16753 (12322, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
16754 (12487, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
16755 (12488, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
16756 (12598, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16757 (12668, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16758 (12724, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16759 (12725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16760 (12726, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16761 (12727, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16762 (12797, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16763 (12799, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16764 (12812, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
16765 (12813, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
16766 (12814, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
16767 (12815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
16768 (12834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16769 (12846, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16770 (12847, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16771 (12848, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16772 (12849, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16773 (12867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16774 (12872, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16775 (12873, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16776 (12958, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16777 (12966, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16778 (12967, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16779 (12968, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16780 (12969, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16781 (12970, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16782 (12971, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16783 (12972, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16784 (12973, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16785 (12974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16786 (12999, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
16787 (13000, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
16788 (13001, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000,  0),
16789 (13002, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.000000, 0.000000,  0),
16790 (13045, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16791 (13046, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16792 (13047, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16793 (13048, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16794 (13163, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
16795 (13165, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16796 (13754, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16797 (13867, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16798 (13983, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
16799 (14070, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
16800 (14071, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
16801 (14156, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16802 (14160, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16803 (14161, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16804 (14186, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16805 (14190, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16806 (14193, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16807 (14194, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16808 (14195, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16809 (14318, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16810 (14319, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16811 (14320, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16812 (14321, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16813 (14322, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16814 (14531, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16815 (14774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16816 (14892, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16817 (15088, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16818 (15128, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16819 (15268, 0x00000020,  6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16820 (15277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
16821 (15286, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16822 (15323, 0x00000020,  6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16823 (15324, 0x00000020,  6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16824 (15325, 0x00000020,  6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16825 (15326, 0x00000020,  6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16826 (15337, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16827 (15338, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16828 (15346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
16829 (15362, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16830 (15363, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16831 (15600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
16832 (16164, 0x00000000, 11, 0x901000C3, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16833 (16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16834 (16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16835 (16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16836 (16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16837 (16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16838 (16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16839 (16256, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16840 (16257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16841 (16277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16842 (16278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16843 (16279, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16844 (16280, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16845 (16281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16846 (16282, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16847 (16283, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16848 (16284, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16849 (16487, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16850 (16489, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16851 (16492, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16852 (16550, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16853 (16620, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
16854 (16624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16855 (16850, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16856 (16864, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
16857 (16880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16858 (16923, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16859 (16924, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16860 (16952, 0x00000000,  7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16861 (16954, 0x00000000,  7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16862 (16958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16863 (16961, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16864 (17106, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16865 (17107, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16866 (17108, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16867 (17364, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16868 (17495, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16869 (17793, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16870 (17794, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000,  0),
16871 (17796, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16872 (17797, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16873 (17798, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16874 (17799, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16875 (17800, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16876 (17801, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16877 (17802, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16878 (17803, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16879 (18073, 0x00000000,  5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16880 (18094, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16881 (18095, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16882 (18096, 0x00000000,  5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16883 (18119, 0x00000000,  5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16884 (18120, 0x00000000,  5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16885 (18820, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16886 (19184, 0x00000000,  9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16887 (19228, 0x00000000,  0, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16888 (19232, 0x00000000,  9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16889 (19233, 0x00000000,  9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16890 (19387, 0x00000000,  9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16891 (19388, 0x00000000,  9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16892 (19572, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
16893 (19573, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
16894 (20049, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16895 (20056, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16896 (20057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16897 (20128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16898 (20131, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16899 (20132, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16900 (20164, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
16901 (20165, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000,  0),
16902 (20166, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000,  0),
16903 (20182, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16904 (20210, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16905 (20212, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16906 (20213, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16907 (20214, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16908 (20215, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16909 (20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16910 (20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16911 (20375, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
16912 (20500, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16913 (20501, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16914 (20705, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16915 (20911, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
16916 (20925, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16917 (20927, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16918 (20928, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16919 (21185, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
16920 (21882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16921 (21890, 0x00000000,  4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16922 (22007, 0x00000000,  3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16923 (22618, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16924 (22648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16925 (23547, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
16926 (23548, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16927 (23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16928 (23552, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16929 (23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16930 (23578, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
16931 (23581, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
16932 (23602, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16933 (23686, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
16934 (23688, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16935 (23689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
16936 (23695, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16937 (23721, 0x00000000,  9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16938 (23920, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
16939 (24353, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16940 (24389, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16941 (24398, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16942 (24658, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000,  0),
16943 (24905, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 15.000000, 0.000000,  0),
16944 (24932, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  6),
16945 (25050, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16946 (25296, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16947 (25469, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16948 (25472, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
16949 (25669, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
16950 (25899, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
16951 (25988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16952 (26016, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
16953 (26107, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000,  0),
16954 (26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16955 (26128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
16956 (26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16957 (26480, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16958 (26605, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16959 (27044, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16960 (27131, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
16961 (27179, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16962 (27419, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16963 (27498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16964 (27521, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16965 (27656, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16966 (27774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16967 (27787, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16968 (27811, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16969 (27815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16970 (27816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16971 (28592, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16972 (28593, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16973 (28716, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000,  0),
16974 (28719, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16975 (28744, 0x00000000,  7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000,  0),
16976 (28752, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16977 (28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16978 (28802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
16979 (28809, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16980 (28812, 0x00000000,  8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16981 (28816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16982 (28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16983 (28847, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16984 (28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
16985 (29074, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16986 (29075, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16987 (29076, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16988 (29150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16989 (29179, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16990 (29180, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
16991 (29385, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
16992 (29441, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
16993 (29444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
16994 (29455, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
16995 (29501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16996 (29593, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
16997 (29594, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
16998 (29624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
16999 (29625, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17000 (29626, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17001 (29632, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17002 (29633, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17003 (29634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17004 (29635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17005 (29636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17006 (29637, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17007 (29801, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17008 (29834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17009 (29838, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17010 (29977, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17011 (30003, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17012 (30160, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17013 (30293, 0x00000000,  5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17014 (30295, 0x00000000,  5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17015 (30296, 0x00000000,  5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17016 (30299, 0x00000024,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17017 (30301, 0x00000024,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17018 (30302, 0x00000024,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17019 (30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17020 (30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17021 (30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17022 (30680, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17023 (30681, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17024 (30701, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17025 (30705, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17026 (30802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17027 (30803, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17028 (30804, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17029 (30805, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17030 (30806, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17031 (30807, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17032 (30808, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17033 (30809, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17034 (30810, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17035 (30811, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17036 (30823, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000,  0),
17037 (30881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17038 (30883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17039 (30884, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17040 (30885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17041 (30886, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17042 (30937, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17043 (31124, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17044 (31126, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17045 (31244, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000,  0),
17046 (31245, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000,  0),
17047 (31394, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17048 (31569, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17049 (31570, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17050 (31785, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000,  0),
17051 (31794, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17052 (31801, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000,  0),
17053 (31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17054 (31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17055 (31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17056 (31871, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17057 (31872, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17058 (31876, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17059 (31877, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17060 (31878, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17061 (31904, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17062 (32385, 0x00000000,  5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17063 (32387, 0x00000000,  5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17064 (32392, 0x00000000,  5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17065 (32393, 0x00000000,  5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17066 (32394, 0x00000000,  5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17067 (32409, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17068 (32587, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17069 (32593, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17070 (32594, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17071 (32642, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17072 (32734, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17073 (32748, 0x00000000,  8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000,  0),
17074 (32776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17075 (32777, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17076 (32837, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
17077 (32844, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17078 (32885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17079 (33076, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17080 (33089, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17081 (33127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17082 (33142, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17083 (33145, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17084 (33146, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17085 (33150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17086 (33151, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17087 (33154, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17088 (33191, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17089 (33192, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17090 (33193, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17091 (33299, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17092 (33510, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
17093 (33648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17094 (33719, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17095 (33736, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17096 (33746, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17097 (33757, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17098 (33759, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17099 (33776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000,  0),
17100 (33881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17101 (33882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17102 (33883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17103 (33953, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
17104 (34080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
17105 (34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17106 (34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17107 (34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17108 (34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17109 (34320, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17110 (34355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17111 (34497, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17112 (34498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17113 (34499, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17114 (34500, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17115 (34502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17116 (34503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17117 (34584, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17118 (34586, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000,  0),
17119 (34598, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17120 (34749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
17121 (34753, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17122 (34774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20),
17123 (34783, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17124 (34827, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17125 (34859, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17126 (34860, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17127 (34914, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17128 (34916, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17129 (34917, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17130 (34935, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
17131 (34938, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
17132 (34939, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
17133 (34950, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17134 (34954, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17135 (35077, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17136 (35080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60),
17137 (35083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17138 (35086, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17139 (35100, 0x00000000,  9, 0x00003001, 0x00000000, 0x00000000, 0x00010140, 0x00000000, 0.000000, 0.000000,  0),
17140 (35102, 0x00000000,  9, 0x00003001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17141 (35103, 0x00000000,  9, 0x00003001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17142 (35121, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17143 (36096, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17144 (36111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17145 (36541, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17146 (37165, 0x00000000,  8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17147 (37168, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17148 (37170, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
17149 (37173, 0x00000000,  8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17150 (37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
17151 (37193, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17152 (37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17153 (37197, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
17154 (37213, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17155 (37214, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17156 (37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
17157 (37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17158 (37247, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
17159 (37377, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17160 (37379, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17161 (37384, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17162 (37443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17163 (37514, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17164 (37516, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17165 (37519, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000,  0),
17166 (37523, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17167 (37528, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17168 (37536, 0x00000000,  4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17169 (37568, 0x00000000,  6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17170 (37594, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17171 (37600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17172 (37601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17173 (37603, 0x00000000,  6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17174 (37655, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17175 (37657, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  3),
17176 (38026, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17177 (38031, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17178 (38290, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000,  0),
17179 (38326, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17180 (38327, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17181 (38334, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17182 (38347, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17183 (38350, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17184 (38394, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17185 (38857, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17186 (39027, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17187 (39372, 0x00000030,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17188 (39437, 0x00000004,  5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17189 (39442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000,  0),
17190 (39443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17191 (39530, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17192 (39958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40),
17193 (40407, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17194 (40438, 0x00000000,  6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17195 (40442, 0x00000000,  7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17196 (40444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17197 (40458, 0x00000000,  4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17198 (40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17199 (40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17200 (40475, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17201 (40478, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17202 (40482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17203 (40485, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17204 (40899, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17205 (41034, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17206 (41260, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17207 (41262, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17208 (41381, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17209 (41393, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17210 (41434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45),
17211 (41469, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17212 (41635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17213 (41989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000,  0),
17214 (42083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
17215 (42135, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
17216 (42136, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
17217 (42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17218 (42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17219 (42770, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17220 (43019, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17221 (43020, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17222 (43338, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17223 (43443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17224 (43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17225 (43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17226 (43737, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17227 (43739, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17228 (43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17229 (43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17230 (43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17231 (43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17232 (43819, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17233 (44394, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17234 (44395, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17235 (44396, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17236 (44401, 0x00000000,  3, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000FFF, 0.000000, 0.000000,  0),
17237 (44404, 0x00000000,  3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17238 (44442, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
17239 (44443, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
17240 (44445, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17241 (44446, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17242 (44448, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17243 (44449, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17244 (44469, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17245 (44470, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17246 (44471, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17247 (44472, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17248 (44546, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17249 (44548, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17250 (44549, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17251 (44835, 0x00000000,  7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000,  0),
17252 (45054, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
17253 (45057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17254 (45234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17255 (45243, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17256 (45244, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17257 (45354, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17258 (45481, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17259 (45482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17260 (45483, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17261 (45484, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
17262 (46025, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17263 (46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17264 (46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17265 (46569, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17266 (46662, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20),
17267 (46832, 0x00000000,  7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17268 (46854, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17269 (46855, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17270 (46867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17271 (46913, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17272 (46914, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17273 (46915, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17274 (46916, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17275 (46951, 0x00000000,  4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17276 (46952, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17277 (46953, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17278 (47195, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17279 (47196, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17280 (47197, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17281 (47201, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17282 (47202, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17283 (47203, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17284 (47204, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17285 (47205, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17286 (47232, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17287 (47234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17288 (47235, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17289 (47245, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17290 (47246, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17291 (47247, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17292 (47258, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17293 (47259, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17294 (47260, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17295 (47263, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
17296 (47264, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
17297 (47265, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
17298 (47509, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17299 (47511, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17300 (47515, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17301 (47516, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17302 (47517, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17303 (47535, 0x00000000,  6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17304 (47536, 0x00000000,  6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17305 (47537, 0x00000000,  6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17306 (47538, 0x00000000,  6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17307 (47539, 0x00000000,  6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17308 (47549, 0x00000000,  6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17309 (47551, 0x00000000,  6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17310 (47552, 0x00000000,  6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17311 (47555, 0x00000000,  6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17312 (47556, 0x00000000,  6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17313 (47557, 0x00000000,  6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17314 (47572, 0x00000000,  6, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17315 (47580, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17316 (47581, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17317 (47582, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17318 (48110, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17319 (48111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17320 (48112, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17321 (48113, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17322 (48159, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17323 (48160, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17324 (48483, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17325 (48484, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17326 (48485, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17327 (48496, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17328 (48499, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17329 (48500, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17330 (48506, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17331 (48510, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17332 (48511, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17333 (48516, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
17334 (48521, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
17335 (48525, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
17336 (48833, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17337 (48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17338 (48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17339 (48951, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17340 (48952, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17341 (48988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17342 (49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17343 (49137, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17344 (49188, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17345 (49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17346 (49222, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17347 (49280, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17348 (49281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17349 (49283, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17350 (49284, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17351 (49503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17352 (49504, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17353 (49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17354 (49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17355 (49531, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17356 (49532, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17357 (49622, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17358 (49657, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17359 (50781, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17360 (51123, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17361 (51127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17362 (51128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17363 (51129, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17364 (51130, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17365 (51346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17366 (51349, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17367 (51352, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17368 (51359, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17369 (51466, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17370 (51470, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17371 (51474, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17372 (51478, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17373 (51479, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17374 (51556, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17375 (51557, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17376 (51558, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17377 (51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17378 (51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17379 (51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17380 (51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17381 (51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17382 (51625, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17383 (51626, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17384 (51627, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17385 (51628, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17386 (51629, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17387 (51634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17388 (51635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17389 (51636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17390 (51664, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17391 (51665, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17392 (51667, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17393 (51668, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17394 (51669, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17395 (51672, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
17396 (51674, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
17397 (51679, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17398 (51692, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17399 (51696, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17400 (51698, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
17401 (51700, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
17402 (51701, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
17403 (51940, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000,  0),
17404 (51989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000,  0),
17405 (52004, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000,  0),
17406 (52005, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000,  0),
17407 (52007, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000,  0),
17408 (52008, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000,  0),
17409 (52020, 0x00000000,  7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17410 (52127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17411 (52129, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17412 (52131, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17413 (52134, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17414 (52136, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17415 (52138, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17416 (52420, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17417 (52423, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17418 (52795, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17419 (52797, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17420 (52798, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17421 (52799, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17422 (52800, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17423 (52898, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17424 (53137, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17425 (53138, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17426 (53215, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17427 (53216, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17428 (53217, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17429 (53221, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17430 (53222, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17431 (53224, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17432 (53228, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17433 (53232, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17434 (53256, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17435 (53259, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17436 (53260, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17437 (53290, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17438 (53291, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17439 (53292, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17440 (53293, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17441 (53294, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17442 (53380, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17443 (53381, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17444 (53382, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17445 (53383, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17446 (53384, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17447 (53486, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17448 (53488, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17449 (53501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17450 (53502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17451 (53503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17452 (53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17453 (53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17454 (53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17455 (53569, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17456 (53576, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17457 (53601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17458 (53671, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17459 (53673, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17460 (54149, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17461 (54151, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17462 (54154, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17463 (54155, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17464 (54278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17465 (54486, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17466 (54488, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17467 (54489, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17468 (54490, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17469 (54738, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17470 (54747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17471 (54749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17472 (54754, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17473 (54841, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17474 (54936, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17475 (54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17476 (54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17477 (55380, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17478 (55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17479 (55620, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17480 (55623, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17481 (55640, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17482 (55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17483 (55667, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17484 (55668, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17485 (55669, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17486 (55670, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17487 (55677, 0x00000000,  6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17488 (55680, 0x00000000,  6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17489 (55689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17490 (55768, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17491 (55776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17492 (56218, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17493 (56333, 0x00000000,  9, 0x00000004, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17494 (56336, 0x00000000,  9, 0x00000004, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17495 (56337, 0x00000000,  9, 0x00000004, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17496 (56342, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17497 (56343, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17498 (56344, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17499 (56355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17500 (56364, 0x00000000,  3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17501 (56451, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17502 (56611, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17503 (56612, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17504 (56613, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17505 (56614, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17506 (56636, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17507 (56637, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17508 (56638, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17509 (56821, 0x00000000,  8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17510 (56822, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17511 (56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17512 (56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17513 (57878, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
17514 (57880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
17515 (57881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
17516 (57960, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17517 (58357, 0x00000000,  4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17518 (58364, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17519 (58372, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17520 (58386, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17521 (58435, 0x00000000,  5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17522 (58436, 0x00000000,  5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17523 (58437, 0x00000000,  5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17524 (58616, 0x00000000, 15, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17525 (58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17526 (58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17527 (58631, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17528 (58642, 0x00000000, 15, 0x00000000, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17529 (58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17530 (58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17531 (58676, 0x00000000, 15, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17532 (58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17533 (58872, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17534 (58874, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17535 (58901, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17536 (59057, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17537 (59176, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17538 (59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17539 (59725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17540 (60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17541 (60170, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17542 (60172, 0x00000000,  5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17543 (60493, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17544 (60503, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17545 (60537, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17546 (60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17547 (60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17548 (60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17549 (60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17550 (60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17551 (60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17552 (60617, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17553 (60710, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17554 (60717, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17555 (60719, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17556 (60722, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17557 (60724, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17558 (60726, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17559 (60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17560 (60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17561 (60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17562 (61188, 0x00000000,  5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17563 (61257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000202A8, 0x00010000, 0.000000, 0.000000,  0),
17564 (61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17565 (61345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17566 (61346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17567 (61356, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17568 (61846, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
17569 (61847, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0);
17570 /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
17571 UNLOCK TABLES;
17574 -- Table structure for spell_bonus_data
17576 DROP TABLE IF EXISTS `spell_bonus_data`;
17577 CREATE TABLE `spell_bonus_data` (
17578   `entry` smallint(5) unsigned NOT NULL,
17579   `direct_bonus` float NOT NULL default '0',
17580   `dot_bonus` float NOT NULL default '0',
17581   `ap_bonus` float NOT NULL default '0',
17582   `comments` varchar(255) default NULL,
17583   PRIMARY KEY  (`entry`)
17584 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17586 LOCK TABLES `spell_bonus_data` WRITE;
17587 /*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
17588 INSERT INTO `spell_bonus_data` VALUES
17589 ('5185', '1.6104', '0', '0', 'Druid - Healing Touch'),
17590 ('33763', '0', '0.09518', '0', 'Druid - Lifebloom'),
17591 ('774', '0', '0.37604', '0', 'Druid - Rejuvenation'),
17592 ('8936', '0.539', '0.188', '0', 'Druid - Regrowth'),
17593 ('50288', '0.05', '0', '0', 'Druid - Starfall'),
17594 ('50294', '0.012', '0', '0', 'Druid - Starfall AOE'),
17595 ('18562', '0', '0', '0', 'Druid - Swiftmend'),
17596 ('44203', '0.538', '0', '0', 'Druid - Tranquility Triggered'),
17597 ('48438', '0', '0.11505', '0', 'Druid - Wild Growth'),
17598 ('50464', '0.6611', '0', '0', 'Druid - Nourish'),
17599 ('339', '0', '0.1', '0', 'Druid - Entangling Roots'),
17600 ('42231', '0.12898', '0', '0', 'Druid - Hurricane Triggered'),
17601 ('5570', '0', '0.127', '0', 'Druid - Insect Swarm'),
17602 ('8921', '0.1515', '0.13', '0', 'Druid - Moonfire'),
17603 ('2912', '1', '0', '0', 'Druid - Starfire'),
17604 ('5176', '0.5714', '0', '0', 'Druid - Wrath'),
17605 ('30451', '0.7143', '0', '0', 'Mage - Arcane Blast'),
17606 ('1449', '0.2128', '0', '0', 'Mage - Arcane Explosion'),
17607 ('7268', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 1'),
17608 ('7269', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 2'),
17609 ('7270', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 3'),
17610 ('8419', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 4'),
17611 ('8418', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 5'),
17612 ('10273', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 6'),
17613 ('10274', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 7'),
17614 ('25346', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 8'),
17615 ('27076', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 9'),
17616 ('38700', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 10'),
17617 ('38703', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 11'),
17618 ('42844', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 12'),
17619 ('42845', '0.2857', '0', '0', 'Mage - Arcane Missiles Triggered Spell Rank 13'),
17620 ('1463', '0.8053', '0', '0', 'Mage - Mana Shield'),
17621 ('44425', '0.8571', '0', '0', 'Mage - Arcane Barrage'),
17622 ('11113', '0.1357', '0', '0', 'Mage - Blast Wave Rank'),
17623 ('31661', '0.1357', '0', '0', 'Mage - Dragons Breath'),
17624 ('2136', '0.4286', '0', '0', 'Mage - Fire Blast'),
17625 ('133', '1', '0', '0', 'Mage - Fire Ball'),
17626 ('2120', '0.2357', '0.122', '0', 'Mage - Flamestrike'),
17627 ('11366', '1.15', '0.05', '0', 'Mage - Pyroblast'),
17628 ('2948', '0.4286', '0', '0', 'Mage - Scorch'),
17629 ('44614', '0.8571', '0', '0', 'Mage - Frostfire Bolt'),
17630 ('44457', '0.4', '0.2', '0', 'Mage - Living Bomb'),
17631 ('42208', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 1'),
17632 ('42209', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 2'),
17633 ('42210', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 3'),
17634 ('42211', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 4'),
17635 ('42212', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 5'),
17636 ('42213', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 6'),
17637 ('42198', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 7'),
17638 ('42937', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 8'),
17639 ('42938', '0.0952', '0', '0', 'Mage - Blizzard Triggered Spell Rank 9'),
17640 ('120', '0.1357', '0', '0', 'Mage - Cone of Cold'),
17641 ('122', '0.193', '0', '0', 'Mage - Frost Nova'),
17642 ('116', '0.8143', '0', '0', 'Mage - Frost Bolt'),
17643 ('11426', '0.8053', '0', '0', 'Mage - Ice Barrier'),
17644 ('30455', '0.1429', '0', '0', 'Mage - Ice Lance'),
17645 ('34913','0', '0', '0', 'Mage - Molten Armor Triggered Rank 1'),
17646 ('43043','0', '0', '0', 'Mage - Molten Armor Triggered Rank 2'),
17647 ('43044','0', '0', '0', 'Mage - Molten Armor Triggered Rank 3'),
17648 ('19750','0.4286', '0', '0', 'Paladin - Flash of Light'),
17649 ('635', '0.7143', '0', '0', 'Paladin - Holy Light'),
17650 ('25912', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 1'),
17651 ('25911', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 2'),
17652 ('25902', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 3'),
17653 ('27176', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 4'),
17654 ('33073', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 5'),
17655 ('48822', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 6'),
17656 ('48823', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Hurt Rank 7'),
17657 ('25914', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 1'),
17658 ('25913', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 2'),
17659 ('25903', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 3'),
17660 ('27175', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 4'),
17661 ('33074', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 5'),
17662 ('48820', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 6'),
17663 ('48821', '0.4286', '0', '0', 'Paladin - Holy Shock Triggered Heal Rank 7'),
17664 ('31935', '0.07', '0', '0.07', 'Paladin - Avengers Shiled'),
17665 ('26573', '0', '0.04', '0.04', 'Paladin - Consecration'),
17666 ('879', '0.15', '0', '0.15', 'Paladin - Exorcism'),
17667 ('24275', '0.15', '0', '0.15', 'Paladin - Hammer of Wrath'),
17668 ('20925', '0.09', '0', '0.056', 'Paladin - Holy Shield'),
17669 ('2812', '0.07', '0', '0.07', 'Paladin - Holy Wrath'),
17670 ('31893', '0.25', '0', '0.16', 'Paladin - Seal of Blood Enemy Proc'),
17671 ('32221', '0.25', '0', '0.16', 'Paladin - Seal of Blood Self Proc'),
17672 ('20424', '0.25', '0', '0.16', 'Paladin - Seal of Command Proc'),
17673 ('379', '0', '0', '0', 'Shaman - Earth Shield Triggered'),
17674 ('20167', '0.25', '0', '0.16', 'Paladin - Seal of Light Proc'),
17675 ('53719', '0.25', '0', '0.16', 'Paladin - Seal of The Martyr Enemy Proc'),
17676 ('53718', '0.25', '0', '0.16', 'Paladin - Seal of The Martyr Self Proc'),
17677 ('25742', '0.07', '0', '0.039', 'Paladin - Seal of Righteousness Dummy Proc'),
17678 ('53595', '0', '0', '0','Paladin - Hammer of the Righteous'),
17679 ('31803', '0', '0.013', '0.15', 'Paladin - Holy Vengeance'),
17680 ('52042', '0.045', '0', '0', 'Shaman - Healing Stream Totem Triggered Heal'),
17681 ('32546', '0.8068', '0', '0', 'Priest - Binding Heal'),
17682 ('34861', '0.402', '0', '0', 'Priest - Circle of Healing'),
17683 ('19236', '0.8068', '0', '0', 'Priest - Desperate Prayer'),
17684 ('2061', '0.8068', '0', '0', 'Priest - Flash Heal'),
17685 ('2060', '1.6135', '0', '0', 'Priest - Greater Heal'),
17686 ('23455', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 1'),
17687 ('23458', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 2'),
17688 ('23459', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 3'),
17689 ('27803', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 4'),
17690 ('27804', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 5'),
17691 ('27805', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 6'),
17692 ('25329', '0.3035', '0', '0', 'Priest - Holy Nova Heal Rank 7'),
17693 ('17', '0.8068', '0', '0', 'Priest - Power Word: Shield'),
17694 ('596', '0.8086', '0', '0', 'Priest - Prayer of Healing'),
17695 ('33110', '0.8068', '0', '0', 'Priest - Prayer of Mending Heal Proc'),
17696 ('139', '0', '0.376', '0', 'Priest - Renew'),
17697 ('2944', '0.1849', '0', '0', 'Priest - Devouring Plague'),
17698 ('14914', '0.5711', '0.024', '0', 'Priest - Holy Fire'),
17699 ('15237', '0.1606', '0', '0', 'Priest - Holy Nova Damage'),
17700 ('8129', '0', '0', '0', 'Priest - Mana Burn'),
17701 ('8092', '0.4296', '0', '0', 'Priest - Mind Blast'),
17702 ('15407', '0.257', '0', '0', 'Priest - Mind Flay'),
17703 ('49821', '0.14286', '0', '0', 'Priest - Mind Sear Trigger Rank 1'),
17704 ('53022', '0.14286', '0', '0', 'Priest - Mind Sear Trigger Rank 2'),
17705 ('34433', '0.65', '0', '0', 'Priest - Shadowfiend'),
17706 ('32379', '0.4296', '0', '0', 'Priest - Shadow Word: Death'),
17707 ('589', '0', '0.1829', '0', 'Priest - Shadow Word: Pain'),
17708 ('585', '0.714', '0', '0', 'Priest - Smite'),
17709 ('34914', '0', '0.4', '0', 'Priest - Vampiric Touch'),
17710 ('974', '0.4762', '0', '0', 'Shaman - Earth Shield'),
17711 ('1064', '1.34', '0', '0', 'Shaman - Chain Heal'),
17712 ('331', '1.6106', '0', '0', 'Shaman - Healing Wave'),
17713 ('8004', '0.8082', '0', '0', 'Shaman - Lesser Healing Wave'),
17714 ('61295', '0.4', '0.18', '0', 'Shaman - Riptide'),
17715 ('421', '0.57', '0', '0', 'Shaman - Chain Lightning'),
17716 ('8042', '0.3858', '0', '0', 'Shaman - Earth Shock'),
17717 ('8443', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 1'),
17718 ('8504', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 2'),
17719 ('8505', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 3'),
17720 ('11310', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 4'),
17721 ('11311', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 5'),
17722 ('25538', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 6'),
17723 ('25539', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 7'),
17724 ('61651', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 8'),
17725 ('61660', '0.2142', '0', '0', 'Shaman - Fire Nova Totem Casted by Totem Rank 9'),
17726 ('8050', '0.2142', '0.1', '0', 'Shaman - Flame Shock'),
17727 ('8026', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 1'),
17728 ('8028', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 2'),
17729 ('8029', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 3'),
17730 ('10445', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 4'),
17731 ('16343', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 5'),
17732 ('16344', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 6'),
17733 ('25488', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 7'),
17734 ('58786', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 8'),
17735 ('58787', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 9'),
17736 ('58788', '0.1', '0', '0', 'Shaman - Flametongue Weapon Proc Rank 10'),
17737 ('8056', '0.3858', '0', '0', 'Shaman - Frost Shock'),
17738 ('8034', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 1'),
17739 ('8037', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 2'),
17740 ('10458', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 3'),
17741 ('16352', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 4'),
17742 ('16353', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 5'),
17743 ('25501', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 6'),
17744 ('58797', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 7'),
17745 ('58798', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 8'),
17746 ('58799', '0.1', '0', '0', 'Shaman - Frostbrand Attack Rank 9'),
17747 ('51505', '0.5714', '0', '0', 'Shaman - Lava Burst'),
17748 ('403', '0.7143', '0', '0', 'Shaman - Lightning Bolt'),
17749 ('26364', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 1'),
17750 ('26365', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 2'),
17751 ('26366', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 3'),
17752 ('26367', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 4'),
17753 ('26369', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 5'),
17754 ('26370', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 6'),
17755 ('26363', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 7'),
17756 ('26371', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 8'),
17757 ('26372', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 9'),
17758 ('49278', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 10'),
17759 ('49279', '0.33', '0', '0', 'Shaman - Lightning Shield Proc Rank 11'),
17760 ('8188', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 1'),
17761 ('10582', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 2'),
17762 ('10583', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 3'),
17763 ('10584', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 4'),
17764 ('25551', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 5'),
17765 ('58733', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 6'),
17766 ('58736', '0.1', '0', '0', 'Shaman - Magma Totam Passive Rank 7'),
17767 ('3606', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 1'),
17768 ('6350', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 2'),
17769 ('6351', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 3'),
17770 ('6352', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 4'),
17771 ('10435', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 5'),
17772 ('10436', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 6'),
17773 ('25530', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 7'),
17774 ('58700', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 8'),
17775 ('58701', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 9'),
17776 ('58702', '0.1667', '0', '0', 'Shaman - Searing Totem Attack Rank 10'),
17777 ('980', '0', '0.1', '0', 'Warlock - Curse of Agony'),
17778 ('603', '0', '2', '0', 'Warlock - Curse of Doom'),
17779 ('172', '0', '0.3', '0', 'Warlock - Corruption'),
17780 ('348', '0.2', '0.2', '0', 'Warlock - Immolate'),
17781 ('27243', '0.22', '0.25', '0', 'Warlock - Seed of Corruption'),
17782 ('18265', '0', '0.1', '0', 'Warlock - Siphon Life'),
17783 ('30108', '0', '0.24', '0', 'Warlock - Unstable Affliction'),
17784 ('31117', '1.8', '0', '0', 'Warlock - Unstable Affliction Dispell'),
17785 ('17962', '0.4286', '0', '0', 'Warlock - Conflagrate'),
17786 ('6789', '0.22', '0', '0', 'Warlock - Death Coil'),
17787 ('28176', '0', '0', '0', 'Warlock - Fel Armor'),
17788 ('48181', '0.4729', '0', '0', 'Warlock - Haunt'),
17789 ('29722', '0.7143', '0', '0', 'Warlock - Incinerate'),
17790 ('5676', '0.4286', '0', '0', 'Warlock - Searing Pain'),
17791 ('686', '0.8571', '0', '0', 'Warlock - Shadow Bolt'),
17792 ('17877', '0.4286', '0', '0', 'Warlock - Shadowburn'),
17793 ('30283', '0.195', '0', '0', 'Warlock - Shadowfury'),
17794 ('6353', '1.15', '0', '0', 'Warlock - Soul Fire'),
17795 ('689', '0', '0.1428', '0', 'Warlock - Drain Life'),
17796 ('5138', '0', '0', '0', 'Warlock - Drain Mana'),
17797 ('1120', '0', '0.4286', '0', 'Warlock - Drain Soul'),
17798 ('755', '0', '0.4485', '0', 'Warlock - Health Funnel'),
17799 ('1949', '0', '0.0946', '0', 'Warlock - Hellfire'),
17800 ('5857', '0.1428', '0', '0', 'Warlock - Hellfire Effect on Enemy Rank 1'),
17801 ('11681', '0.1428', '0', '0', 'Warlock - Hellfire Effect on Enemy Rank 2'),
17802 ('11682', '0.1428', '0', '0', 'Warlock - Hellfire Effect on Enemy Rank 3'),
17803 ('27214', '0.1428', '0', '0', 'Warlock - Hellfire Effect on Enemy Rank 4'),
17804 ('47822', '0.1428', '0', '0', 'Warlock - Hellfire Effect on Enemy Rank 5'),
17805 ('42223', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 1'),
17806 ('42224', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 2'),
17807 ('42225', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 3'),
17808 ('42226', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 4'),
17809 ('42218', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 5'),
17810 ('47817', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 6'),
17811 ('47818', '0.952', '0', '0', 'Warlock - Rain of Fire Triggered Rank 7'),
17812 ('18220', '0.96', '0', '0', 'Warlock - Dark Pact Rank 1'),
17813 ('18937', '0.96', '0', '0', 'Warlock - Dark Pact Rank 2'),
17814 ('18938', '0.96', '0', '0', 'Warlock - Dark Pact Rank 3'),
17815 ('27265', '0.96', '0', '0', 'Warlock - Dark Pact Rank 4'),
17816 ('59092', '0.96', '0', '0', 'Warlock - Dark Pact Rank 5'),
17817 ('6229', '0.3', '0', '0', 'Warlock - Shadow Ward');
17818 /*!40000 ALTER TABLE `spell_bonus_data` ENABLE KEYS */;
17819 UNLOCK TABLES;
17822 -- Table structure for table `spell_script_target`
17825 DROP TABLE IF EXISTS `spell_script_target`;
17826 CREATE TABLE `spell_script_target` (
17827   `entry` mediumint(8) unsigned NOT NULL,
17828   `type` tinyint(3) unsigned NOT NULL default '0',
17829   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
17830   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
17831 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Spell System';
17834 -- Dumping data for table `spell_script_target`
17837 LOCK TABLES `spell_script_target` WRITE;
17838 /*!40000 ALTER TABLE `spell_script_target` DISABLE KEYS */;
17839 /*!40000 ALTER TABLE `spell_script_target` ENABLE KEYS */;
17840 UNLOCK TABLES;
17843 -- Table structure for table `spell_scripts`
17846 DROP TABLE IF EXISTS `spell_scripts`;
17847 CREATE TABLE `spell_scripts` (
17848   `id` mediumint(8) unsigned NOT NULL default '0',
17849   `delay` int(10) unsigned NOT NULL default '0',
17850   `command` mediumint(8) unsigned NOT NULL default '0',
17851   `datalong` mediumint(8) unsigned NOT NULL default '0',
17852   `datalong2` int(10) unsigned NOT NULL default '0',
17853   `dataint` int(11) NOT NULL default '0',
17854   `x` float NOT NULL default '0',
17855   `y` float NOT NULL default '0',
17856   `z` float NOT NULL default '0',
17857   `o` float NOT NULL default '0'
17858 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17861 -- Dumping data for table `spell_scripts`
17864 LOCK TABLES `spell_scripts` WRITE;
17865 /*!40000 ALTER TABLE `spell_scripts` DISABLE KEYS */;
17866 /*!40000 ALTER TABLE `spell_scripts` ENABLE KEYS */;
17867 UNLOCK TABLES;
17870 -- Table structure for table `spell_target_position`
17873 DROP TABLE IF EXISTS `spell_target_position`;
17874 CREATE TABLE `spell_target_position` (
17875   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
17876   `target_map` smallint(5) unsigned NOT NULL default '0',
17877   `target_position_x` float NOT NULL default '0',
17878   `target_position_y` float NOT NULL default '0',
17879   `target_position_z` float NOT NULL default '0',
17880   `target_orientation` float NOT NULL default '0',
17881   PRIMARY KEY  (`id`)
17882 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
17885 -- Dumping data for table `spell_target_position`
17888 LOCK TABLES `spell_target_position` WRITE;
17889 /*!40000 ALTER TABLE `spell_target_position` DISABLE KEYS */;
17890 /*!40000 ALTER TABLE `spell_target_position` ENABLE KEYS */;
17891 UNLOCK TABLES;
17894 -- Table structure for table `spell_threat`
17897 DROP TABLE IF EXISTS `spell_threat`;
17898 CREATE TABLE `spell_threat` (
17899   `entry` mediumint(8) unsigned NOT NULL,
17900   `Threat` smallint(6) NOT NULL,
17901   PRIMARY KEY  (`entry`)
17902 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
17905 -- Dumping data for table `spell_threat`
17908 LOCK TABLES `spell_threat` WRITE;
17909 /*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
17910 INSERT INTO `spell_threat` VALUES
17911 (78,20),
17912 (284,39),
17913 (285,59),
17914 (770,108),
17915 (778,108),
17916 (1608,78),
17917 (1672,180),
17918 (1715,61),
17919 (2139,300),
17920 (6343,17),
17921 (6572,155),
17922 (6574,195),
17923 (6809,89),
17924 (7372,101),
17925 (7373,141),
17926 (7379,235),
17927 (7386,100),
17928 (7405,140),
17929 (8198,40),
17930 (8204,64),
17931 (8205,96),
17932 (8380,180),
17933 (8972,118),
17934 (9745,148),
17935 (9749,108),
17936 (9880,178),
17937 (9881,207),
17938 (9907,108),
17939 (11556,43),
17940 (11564,98),
17941 (11565,118),
17942 (11566,137),
17943 (11567,145),
17944 (11580,143),
17945 (11581,180),
17946 (11596,220),
17947 (11597,261),
17948 (11600,275),
17949 (11601,315),
17950 (11775,395),
17951 (14274,200),
17952 (14921,415),
17953 (15629,300),
17954 (15630,400),
17955 (15631,500),
17956 (15632,600),
17957 (16857,108),
17958 (17735,200),
17959 (17750,300),
17960 (17751,450),
17961 (17752,600),
17962 (17390,108),
17963 (17391,108),
17964 (17392,108),
17965 (20569,100),
17966 (20736,100),
17967 (20925,20),
17968 (20927,30),
17969 (20928,40),
17970 (23922,160),
17971 (23923,190),
17972 (23924,220),
17973 (23925,250),
17974 (24394,580),
17975 (24583,5),
17976 (25225,300),
17977 (25231,130),
17978 (25258,286),
17979 (25264,215),
17980 (25269,400),
17981 (25286,175),
17982 (25288,355),
17983 (25289,60),
17984 (26993,127),
17985 (26996,176),
17986 (27011,127),
17987 (27179,54),
17988 (29704,230),
17989 (29707,196),
17990 (30324,220),
17991 (30356,323),
17992 (30357,483),
17993 (33745,285),
17994 (33878,129),
17995 (33986,180),
17996 (33987,232);
17997 /*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
17998 UNLOCK TABLES;
18001 -- Table structure for table `transports`
18004 DROP TABLE IF EXISTS `transports`;
18005 CREATE TABLE `transports` (
18006   `entry` mediumint(8) unsigned NOT NULL default '0',
18007   `name` text,
18008   `period` mediumint(8) unsigned NOT NULL default '0',
18009   PRIMARY KEY  (`entry`)
18010 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Transports';
18013 -- Dumping data for table `transports`
18016 LOCK TABLES `transports` WRITE;
18017 /*!40000 ALTER TABLE `transports` DISABLE KEYS */;
18018 /*!40000 ALTER TABLE `transports` ENABLE KEYS */;
18019 UNLOCK TABLES;
18020 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
18022 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
18023 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
18024 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
18025 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
18026 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
18027 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
18028 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
18030 -- Dump completed on 2008-03-30 15:34:54