Updated Copyright year to 2013
[getmangos.git] / sql / mangos.sql
blob1d4d570e6a8b14177139080599653bfaba7cbce4
1 --
2 -- Copyright (C) 2005-2013 MaNGOS <http://getmangos.com/>
3 --
4 -- This program is free software; you can redistribute it and/or modify
5 -- it under the terms of the GNU General Public License as published by
6 -- the Free Software Foundation; either version 2 of the License, or
7 -- (at your option) any later version.
8 --
9 -- This program is distributed in the hope that it will be useful,
10 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
11 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 -- GNU General Public License for more details.
14 -- You should have received a copy of the GNU General Public License
15 -- along with this program; if not, write to the Free Software
16 -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
20 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
21 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
22 /*!40101 SET NAMES utf8 */;
23 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
24 /*!40103 SET TIME_ZONE='+00:00' */;
25 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
26 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
27 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
28 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
31 -- Table structure for table `achievement_criteria_requirement`
34 DROP TABLE IF EXISTS `achievement_criteria_requirement`;
35 /*!40101 SET @saved_cs_client     = @@character_set_client */;
36 /*!40101 SET character_set_client = utf8 */;
37 CREATE TABLE `achievement_criteria_requirement` (
38   `criteria_id` mediumint(8) NOT NULL,
39   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
40   `value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
41   `value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
42   PRIMARY KEY (`criteria_id`,`type`)
43 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
44 /*!40101 SET character_set_client = @saved_cs_client */;
47 -- Dumping data for table `achievement_criteria_requirement`
50 LOCK TABLES `achievement_criteria_requirement` WRITE;
51 /*!40000 ALTER TABLE `achievement_criteria_requirement` DISABLE KEYS */;
52 /*!40000 ALTER TABLE `achievement_criteria_requirement` ENABLE KEYS */;
53 UNLOCK TABLES;
56 -- Table structure for table `achievement_reward`
59 DROP TABLE IF EXISTS `achievement_reward`;
60 /*!40101 SET @saved_cs_client     = @@character_set_client */;
61 /*!40101 SET character_set_client = utf8 */;
62 CREATE TABLE `achievement_reward` (
63   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
64   `gender` tinyint(3) NOT NULL DEFAULT '2',
65   `title_A` mediumint(8) unsigned NOT NULL DEFAULT '0',
66   `title_H` mediumint(8) unsigned NOT NULL DEFAULT '0',
67   `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
68   `sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
69   `subject` varchar(255) DEFAULT NULL,
70   `text` text,
71   PRIMARY KEY (`entry`,`gender`)
72 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
73 /*!40101 SET character_set_client = @saved_cs_client */;
76 -- Dumping data for table `achievement_reward`
79 LOCK TABLES `achievement_reward` WRITE;
80 /*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
81 /*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
82 UNLOCK TABLES;
85 -- Table structure for table `areatrigger_involvedrelation`
88 DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
89 /*!40101 SET @saved_cs_client     = @@character_set_client */;
90 /*!40101 SET character_set_client = utf8 */;
91 CREATE TABLE `areatrigger_involvedrelation` (
92   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
93   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
94   PRIMARY KEY (`id`)
95 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
96 /*!40101 SET character_set_client = @saved_cs_client */;
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_tavern`
111 DROP TABLE IF EXISTS `areatrigger_tavern`;
112 /*!40101 SET @saved_cs_client     = @@character_set_client */;
113 /*!40101 SET character_set_client = utf8 */;
114 CREATE TABLE `areatrigger_tavern` (
115   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
116   `name` text,
117   PRIMARY KEY (`id`)
118 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
119 /*!40101 SET character_set_client = @saved_cs_client */;
122 -- Dumping data for table `areatrigger_tavern`
125 LOCK TABLES `areatrigger_tavern` WRITE;
126 /*!40000 ALTER TABLE `areatrigger_tavern` DISABLE KEYS */;
127 /*!40000 ALTER TABLE `areatrigger_tavern` ENABLE KEYS */;
128 UNLOCK TABLES;
131 -- Table structure for table `areatrigger_teleport`
134 DROP TABLE IF EXISTS `areatrigger_teleport`;
135 /*!40101 SET @saved_cs_client     = @@character_set_client */;
136 /*!40101 SET character_set_client = utf8 */;
137 CREATE TABLE `areatrigger_teleport` (
138   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
139   `name` text,
140   `required_level` tinyint(3) unsigned NOT NULL DEFAULT '0',
141   `required_item` mediumint(8) unsigned NOT NULL DEFAULT '0',
142   `required_item2` mediumint(8) unsigned NOT NULL DEFAULT '0',
143   `heroic_key` mediumint(8) unsigned NOT NULL DEFAULT '0',
144   `heroic_key2` mediumint(8) unsigned NOT NULL DEFAULT '0',
145   `required_quest_done` int(11) unsigned NOT NULL DEFAULT '0',
146   `required_quest_done_heroic` int(11) unsigned NOT NULL DEFAULT '0',
147   `target_map` smallint(5) unsigned NOT NULL DEFAULT '0',
148   `target_position_x` float NOT NULL DEFAULT '0',
149   `target_position_y` float NOT NULL DEFAULT '0',
150   `target_position_z` float NOT NULL DEFAULT '0',
151   `target_orientation` float NOT NULL DEFAULT '0',
152   PRIMARY KEY (`id`)
153 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
154 /*!40101 SET character_set_client = @saved_cs_client */;
157 -- Dumping data for table `areatrigger_teleport`
160 LOCK TABLES `areatrigger_teleport` WRITE;
161 /*!40000 ALTER TABLE `areatrigger_teleport` DISABLE KEYS */;
162 /*!40000 ALTER TABLE `areatrigger_teleport` ENABLE KEYS */;
163 UNLOCK TABLES;
166 -- Table structure for table `battleground_events`
169 DROP TABLE IF EXISTS `battleground_events`;
170 /*!40101 SET @saved_cs_client     = @@character_set_client */;
171 /*!40101 SET character_set_client = utf8 */;
172 CREATE TABLE `battleground_events` (
173   `map` smallint(5) NOT NULL,
174   `event1` tinyint(3) unsigned NOT NULL,
175   `event2` tinyint(3) unsigned NOT NULL,
176   `description` varchar(255) NOT NULL,
177   PRIMARY KEY (`map`,`event1`,`event2`)
178 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
179 /*!40101 SET character_set_client = @saved_cs_client */;
182 -- Dumping data for table `battleground_events`
185 LOCK TABLES `battleground_events` WRITE;
186 /*!40000 ALTER TABLE `battleground_events` DISABLE KEYS */;
187 INSERT INTO `battleground_events` (`map`, `event1`, `event2`, `description`) VALUES
188 (30,254,0,'Doors'),
189 (30,0,0,'Firstaid Station - Alliance assaulted'),
190 (30,0,1,'Firstaid Station - ALliance control'),
191 (30,0,2,'Firstaid Station - Horde assaulted'),
192 (30,0,3,'Firstaid Station - Horde control'),
193 (30,1,0,'Stormpike Grave - Alliance assaulted'),
194 (30,1,1,'Stormpike Grave - ALliance control'),
195 (30,1,2,'Stormpike Grave - Horde assaulted'),
196 (30,1,3,'Stormpike Grave - Horde control'),
197 (30,2,0,'Stoneheart Grave - Alliance assaulted'),
198 (30,2,1,'Stoneheart Grave - ALliance control'),
199 (30,2,2,'Stoneheart Grave - Horde assaulted'),
200 (30,2,3,'Stoneheart Grave - Horde control'),
201 (30,3,0,'Snowfall Grave - Alliance assaulted'),
202 (30,3,1,'Snowfall Grave - ALliance control'),
203 (30,3,2,'Snowfall Grave - Horde assaulted'),
204 (30,3,3,'Snowfall Grave - Horde control'),
205 (30,3,5,'Snowfall Grave - Neutral control'),
206 (30,4,0,'Iceblood Grave - Alliance assaulted'),
207 (30,4,1,'Iceblood Grave - ALliance control'),
208 (30,4,2,'Iceblood Grave - Horde assaulted'),
209 (30,4,3,'Iceblood Grave - Horde control'),
210 (30,5,0,'Frostwolf Grave - Alliance assaulted'),
211 (30,5,1,'Frostwolf Grave - ALliance control'),
212 (30,5,2,'Frostwolf Grave - Horde assaulted'),
213 (30,5,3,'Frostwolf Grave - Horde control'),
214 (30,6,0,'Frostwolf Hut - Alliance assaulted'),
215 (30,6,1,'Frostwolf Hut - ALliance control'),
216 (30,6,2,'Frostwolf Hut - Horde assaulted'),
217 (30,6,3,'Frostwolf Hut - Horde control'),
218 (30,7,1,'Dunbaldar South - ALliance control'),
219 (30,7,2,'Dunbaldar South - Horde assaulted'),
220 (30,7,3,'Dunbaldar South - Horde control'),
221 (30,8,1,'Dunbaldar North - ALliance control'),
222 (30,8,2,'Dunbaldar North - Horde assaulted'),
223 (30,8,3,'Dunbaldar North - Horde control'),
224 (30,9,1,'Icewing Bunker - ALliance control'),
225 (30,9,2,'Icewing Bunker - Horde assaulted'),
226 (30,9,3,'Icewing Bunker - Horde control'),
227 (30,10,1,'Stoneheart Bunker - ALliance control'),
228 (30,10,2,'Stoneheart Bunker - Horde assaulted'),
229 (30,10,3,'Stoneheart Bunker - Horde control'),
230 (30,11,0,'Iceblood Tower - Alliance assaulted'),
231 (30,11,1,'Iceblood Tower - ALliance control'),
232 (30,11,3,'Iceblood Tower - Horde control'),
233 (30,12,0,'Tower Point - Alliance assaulted'),
234 (30,12,1,'Tower Point - ALliance control'),
235 (30,12,3,'Tower Point - Horde control'),
236 (30,13,0,'Frostwolf east Tower - Alliance assaulted'),
237 (30,13,1,'Frostwolf east Tower - ALliance control'),
238 (30,13,3,'Frostwolf east Tower - Horde control'),
239 (30,14,0,'Frostwolf west Tower - Alliance assaulted'),
240 (30,14,1,'Frostwolf west Tower - ALliance control'),
241 (30,14,3,'Frostwolf west Tower - Horde control'),
242 (30,15,0,'Firstaid Station - Alliance Defender Quest0'),
243 (30,15,1,'Firstaid Station - Alliance Defender Quest1'),
244 (30,15,2,'Firstaid Station - Alliance Defender Quest2'),
245 (30,15,3,'Firstaid Station - Alliance Defender Quest3'),
246 (30,15,4,'Firstaid Station - Horde Defender Quest0'),
247 (30,15,5,'Firstaid Station - Horde Defender Quest1'),
248 (30,15,6,'Firstaid Station - Horde Defender Quest2'),
249 (30,15,7,'Firstaid Station - Horde Defender Quest3'),
250 (30,16,0,'Stormpike Grave - Alliance Defender Quest0'),
251 (30,16,1,'Stormpike Grave - Alliance Defender Quest1'),
252 (30,16,2,'Stormpike Grave - Alliance Defender Quest2'),
253 (30,16,3,'Stormpike Grave - Alliance Defender Quest3'),
254 (30,16,4,'Stormpike Grave - Horde Defender Quest0'),
255 (30,16,5,'Stormpike Grave - Horde Defender Quest1'),
256 (30,16,6,'Stormpike Grave - Horde Defender Quest2'),
257 (30,16,7,'Stormpike Grave - Horde Defender Quest3'),
258 (30,17,0,'Stoneheart Grave - Alliance Defender Quest0'),
259 (30,17,1,'Stoneheart Grave - Alliance Defender Quest1'),
260 (30,17,2,'Stoneheart Grave - Alliance Defender Quest2'),
261 (30,17,3,'Stoneheart Grave - Alliance Defender Quest3'),
262 (30,17,4,'Stoneheart Grave - Horde Defender Quest0'),
263 (30,17,5,'Stoneheart Grave - Horde Defender Quest1'),
264 (30,17,6,'Stoneheart Grave - Horde Defender Quest2'),
265 (30,17,7,'Stoneheart Grave - Horde Defender Quest3'),
266 (30,18,0,'Snowfall Grave - Alliance Defender Quest0'),
267 (30,18,1,'Snowfall Grave - Alliance Defender Quest1'),
268 (30,18,2,'Snowfall Grave - Alliance Defender Quest2'),
269 (30,18,3,'Snowfall Grave - Alliance Defender Quest3'),
270 (30,18,4,'Snowfall Grave - Horde Defender Quest0'),
271 (30,18,5,'Snowfall Grave - Horde Defender Quest1'),
272 (30,18,6,'Snowfall Grave - Horde Defender Quest2'),
273 (30,18,7,'Snowfall Grave - Horde Defender Quest3'),
274 (30,19,0,'Iceblood Grave - Alliance Defender Quest0'),
275 (30,19,1,'Iceblood Grave - Alliance Defender Quest1'),
276 (30,19,2,'Iceblood Grave - Alliance Defender Quest2'),
277 (30,19,3,'Iceblood Grave - Alliance Defender Quest3'),
278 (30,19,4,'Iceblood Grave - Horde Defender Quest0'),
279 (30,19,5,'Iceblood Grave - Horde Defender Quest1'),
280 (30,19,6,'Iceblood Grave - Horde Defender Quest2'),
281 (30,19,7,'Iceblood Grave - Horde Defender Quest3'),
282 (30,20,0,'Frostwolf Grave - Alliance Defender Quest0'),
283 (30,20,1,'Frostwolf Grave - Alliance Defender Quest1'),
284 (30,20,2,'Frostwolf Grave - Alliance Defender Quest2'),
285 (30,20,3,'Frostwolf Grave - Alliance Defender Quest3'),
286 (30,20,4,'Frostwolf Grave - Horde Defender Quest0'),
287 (30,20,5,'Frostwolf Grave - Horde Defender Quest1'),
288 (30,20,6,'Frostwolf Grave - Horde Defender Quest2'),
289 (30,20,7,'Frostwolf Grave - Horde Defender Quest3'),
290 (30,21,0,'Frostwolf Hut - Alliance Defender Quest0'),
291 (30,21,1,'Frostwolf Hut - Alliance Defender Quest1'),
292 (30,21,2,'Frostwolf Hut - Alliance Defender Quest2'),
293 (30,21,3,'Frostwolf Hut - Alliance Defender Quest3'),
294 (30,21,4,'Frostwolf Hut - Horde Defender Quest0'),
295 (30,21,5,'Frostwolf Hut - Horde Defender Quest1'),
296 (30,21,6,'Frostwolf Hut - Horde Defender Quest2'),
297 (30,21,7,'Frostwolf Hut - Horde Defender Quest3'),
298 (30,46,0,'North Mine - Alliance Boss'),
299 (30,46,1,'North Mine - Horde Boss'),
300 (30,46,2,'North Mine - Neutral Boss'),
301 (30,47,0,'South Mine - Alliance Boss'),
302 (30,47,1,'South Mine - Horde Boss'),
303 (30,47,2,'South Mine - Neutral Boss'),
304 (30,48,0,'Alliance Captain'),
305 (30,49,0,'Horde Captain'),
306 (30,50,0,'North Mine - Alliance Control'),
307 (30,50,1,'North Mine - Horde Control'),
308 (30,50,2,'North Mine - Neutral Control'),
309 (30,51,0,'South Mine - Alliance Control'),
310 (30,51,1,'South Mine - Horde Control'),
311 (30,51,2,'South Mine - Neutral Control'),
312 (30,52,0,'Alliance Marshal - Dunbaldar South'),
313 (30,53,0,'Alliance Marshal - Dunbaldar North'),
314 (30,54,0,'Alliance Marshal - Icewing Bunker'),
315 (30,55,0,'Alliance Marshal - Stoneheart Bunker'),
316 (30,56,0,'Horde Marshal - Iceblood Tower'),
317 (30,57,0,'Horde Marshal - Towerpoint'),
318 (30,58,0,'Horde Marshal - East Frostwolf Tower'),
319 (30,59,0,'Horde Marshal - West Frostwolf Tower'),
320 (30,60,0,'Herald - that guy who yells all the time ;)'),
321 (30,61,0,'Alliance - Boss'),
322 (30,62,0,'Horde - Boss'),
323 (30,63,0,'Alliance - Captain Dead'),
324 (30,64,0,'Horde - Captain Dead'),
325 (489,0,0,'Alliance Flag'),
326 (489,1,0,'Horde Flag'),
327 (489,2,0,'Spirit Guides'),
328 (489,254,0,'Doors'),
329 (529,0,0,'Stables - neutral'),
330 (529,0,1,'Stables - alliance contested'),
331 (529,0,2,'Stables - horde contested'),
332 (529,0,3,'Stables - alliance owned'),
333 (529,0,4,'Stables - horde owned'),
334 (529,1,0,'Blacksmith - neutral'),
335 (529,1,1,'Blacksmith - alliance contested'),
336 (529,1,2,'Blacksmith - horde contested'),
337 (529,1,3,'Blacksmith - alliance owned'),
338 (529,1,4,'Blacksmith - horde owned'),
339 (529,2,0,'Farm - neutral'),
340 (529,2,1,'Farm - alliance contested'),
341 (529,2,2,'Farm - horde contested'),
342 (529,2,3,'Farm - alliance owned'),
343 (529,2,4,'Farm - horde owned'),
344 (529,3,0,'Lumber Mill - neutral'),
345 (529,3,1,'Lumber Mill - alliance contested'),
346 (529,3,2,'Lumber Mill - horde contested'),
347 (529,3,3,'Lumber Mill - alliance owned'),
348 (529,3,4,'Lumber Mill - horde owned'),
349 (529,4,0,'Gold Mine - neutral'),
350 (529,4,1,'Gold Mine - alliance contested'),
351 (529,4,2,'Gold Mine - horde contested'),
352 (529,4,3,'Gold Mine - alliance owned'),
353 (529,4,4,'Gold Mine - horde owned'),
354 (529,254,0,'doors'),
355 (559,253,0,'buffs'),
356 (559,254,0,'doors'),
357 (562,253,0,'buffs'),
358 (562,254,0,'doors'),
359 (566,0,0,'Fel Reaver - alliance'),
360 (566,0,1,'Fel Reaver - horde'),
361 (566,0,2,'Fel Reaver - neutral'),
362 (566,1,0,'Blood Elf - alliance'),
363 (566,1,1,'Blood Elf - horde'),
364 (566,1,2,'Blood Elf - neutral'),
365 (566,2,0,'Draenei Ruins - alliance'),
366 (566,2,1,'Draenei Ruins - horde'),
367 (566,2,2,'Draenei Ruins - neutral'),
368 (566,3,0,'Mage Tower - alliance'),
369 (566,3,1,'Mage Tower - horde'),
370 (566,3,2,'Mage Tower - neutral'),
371 (566,4,0,'capture flag - Fel Reaver'),
372 (566,4,1,'capture flag - Blood Elf'),
373 (566,4,2,'capture flag - Draenei Ruins'),
374 (566,4,3,'capture flag - Mage Tower'),
375 (566,4,4,'capture flag - center'),
376 (566,254,0,'doors'),
377 (572,253,0,'buffs'),
378 (572,254,0,'doors');
379 /*!40000 ALTER TABLE `battleground_events` ENABLE KEYS */;
380 UNLOCK TABLES;
383 -- Table structure for table `battleground_template`
386 DROP TABLE IF EXISTS `battleground_template`;
387 /*!40101 SET @saved_cs_client     = @@character_set_client */;
388 /*!40101 SET character_set_client = utf8 */;
389 CREATE TABLE `battleground_template` (
390   `id` mediumint(8) unsigned NOT NULL,
391   `MinPlayersPerTeam` smallint(5) unsigned NOT NULL DEFAULT '0',
392   `MaxPlayersPerTeam` smallint(5) unsigned NOT NULL DEFAULT '0',
393   `AllianceStartLoc` mediumint(8) unsigned NOT NULL,
394   `AllianceStartO` float NOT NULL,
395   `HordeStartLoc` mediumint(8) unsigned NOT NULL,
396   `HordeStartO` float NOT NULL,
397   PRIMARY KEY (`id`)
398 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
399 /*!40101 SET character_set_client = @saved_cs_client */;
402 -- Dumping data for table `battleground_template`
405 LOCK TABLES `battleground_template` WRITE;
406 /*!40000 ALTER TABLE `battleground_template` DISABLE KEYS */;
407 INSERT INTO `battleground_template` (`id`, `MinPlayersPerTeam`, `MaxPlayersPerTeam`, `AllianceStartLoc`, `AllianceStartO`, `HordeStartLoc`, `HordeStartO`) VALUES
408 (1,40,40,611,2.72532,610,2.27452),
409 (2,10,10,769,3.14159,770,3.14159),
410 (3,15,15,890,3.40156,889,0.263892),
411 (4,5,5,929,0,936,3.14159),
412 (5,5,5,939,0,940,3.14159),
413 (6,5,5,0,0,0,0),
414 (7,15,15,1103,3.40156,1104,0.263892),
415 (8,5,5,1258,0,1259,3.14159),
416 (9,15,15,1367,0,1368,0),
417 (10,5,5,1362,0,1363,0),
418 (11,5,5,1364,0,1365,0),
419 (30,40,40,1485,0,1486,0),
420 (32,5,40,0,0,0,0);
421 /*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
422 UNLOCK TABLES;
425 -- Table structure for table `battlemaster_entry`
428 DROP TABLE IF EXISTS `battlemaster_entry`;
429 /*!40101 SET @saved_cs_client     = @@character_set_client */;
430 /*!40101 SET character_set_client = utf8 */;
431 CREATE TABLE `battlemaster_entry` (
432   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Entry of a creature',
433   `bg_template` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Battleground template id',
434   PRIMARY KEY (`entry`)
435 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
436 /*!40101 SET character_set_client = @saved_cs_client */;
439 -- Dumping data for table `battlemaster_entry`
442 LOCK TABLES `battlemaster_entry` WRITE;
443 /*!40000 ALTER TABLE `battlemaster_entry` DISABLE KEYS */;
444 /*!40000 ALTER TABLE `battlemaster_entry` ENABLE KEYS */;
445 UNLOCK TABLES;
448 -- Table structure for table `command`
451 DROP TABLE IF EXISTS `command`;
452 /*!40101 SET @saved_cs_client     = @@character_set_client */;
453 /*!40101 SET character_set_client = utf8 */;
454 CREATE TABLE `command` (
455   `name` varchar(50) NOT NULL DEFAULT '',
456   `security` tinyint(3) unsigned NOT NULL DEFAULT '0',
457   `help` longtext,
458   PRIMARY KEY (`name`)
459 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Chat System';
460 /*!40101 SET character_set_client = @saved_cs_client */;
463 -- Dumping data for table `command`
466 LOCK TABLES `command` WRITE;
467 /*!40000 ALTER TABLE `command` DISABLE KEYS */;
468 INSERT INTO `command` (`name`, `security`, `help`) VALUES
469 ('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
470 ('account characters',3,'Syntax: .account characters [#accountId|$accountName]\r\n\r\nShow list all characters for account selected by provided #accountId or $accountName, or for selected player in game.'),
471 ('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
472 ('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
473 ('account lock',0,'Syntax: .account lock [on|off]\r\n\r\nAllow login from account only from current used IP or remove this requirement.'),
474 ('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
475 ('account password',0,'Syntax: .account password $old_password $new_password $new_password\r\n\r\nChange your account password.'),
476 ('account set addon',3,'Syntax: .account set addon [#accountId|$accountName] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
477 ('account set gmlevel',4,'Syntax: .account set gmlevel [#accountId|$accountName] #level\r\n\r\nSet the security level for targeted player (can\'t be used at self) or for #accountId or $accountName to a level of #level.\r\n\r\n#level may range from 0 to 3.'),
478 ('account set password',4,'Syntax: .account set password (#accountId|$accountName) $password $password\r\n\r\nSet password for account.'),
479 ('achievement',3,'Syntax: .achievement $playername #achivementid\r\n\r\nShow state achievment #achivmentid (can be shift link) and list of achievement criteria with progress data for selected player in game or by player name.'),
480 ('achievement add',3,'Syntax: .achievement add $playername #achivementid\r\n\r\nComplete achievement and all it\'s criteria for selected player in game or by player name. Command can\'t be used for counter achievements.'),
481 ('achievement criteria add',3,'Syntax: .achievement criteria add $playername #criteriaid #change\r\n\r\nIncrease progress for non-completed criteria at #change for selected player in game or by player name. If #chnage not provided then non-counter criteria progress set to completed state. For counter criteria increased at 1.'),
482 ('achievement criteria remove',3,'Syntax: .achievement criteria remove $playername #criteriaid #change\r\n\r\necrease progress for criteria at #change for selected player in game or by player name. If #chnage not provided then criteria progress reset to 0.'),
483 ('achievement remove',3,'Syntax: .achievement remove $playername #achivementid\r\n\r\nRemove complete state for achievement #achivmentid and reset all achievement\'s criteria for selected player in game or by player name. Also command can be used for reset counter achievements.'),
484 ('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.'),
485 ('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.'),
486 ('ahbot items amount',3,'Syntax: .ahbot items amount $GreyItems $WhiteItems $GreenItems $BlueItems $PurpleItems $OrangeItems $YellowItems\r\n\r\nSet amount of each items color be selled on auction.'),
487 ('ahbot items amount blue',3,'Syntax: .ahbot items amount blue $BlueItems\r\n\r\nSet amount of Blue color items be selled on auction.'),
488 ('ahbot items amount green',3,'Syntax: .ahbot items amount green $GreenItems\r\n\r\nSet amount of Green color items be selled on auction.'),
489 ('ahbot items amount grey',3,'Syntax: .ahbot items amount grey $GreyItems\r\n\r\nSet amount of Grey color items be selled on auction.'),
490 ('ahbot items amount orange',3,'Syntax: .ahbot items amount orange $OrangeItems\r\n\r\nSet amount of Orange color items be selled on auction.'),
491 ('ahbot items amount purple',3,'Syntax: .ahbot items amount purple $PurpleItems\r\n\r\nSet amount of Purple color items be selled on auction.'),
492 ('ahbot items amount white',3,'Syntax: .ahbot items amount white $WhiteItems\r\n\r\nSet amount of White color items be selled on auction.'),
493 ('ahbot items amount yellow',3,'Syntax: .ahbot items amount yellow $YellowItems\r\n\r\nSet amount of Yellow color items be selled on auction.'),
494 ('ahbot items ratio',3,'Syntax: .ahbot items ratio $allianceratio $horderatio $neutralratio\r\n\r\nSet ratio of items in 3 auctions house.'),
495 ('ahbot items ratio alliance',3,'Syntax: .ahbot items ratio alliance $allianceratio\r\n\r\nSet ratio of items in alliance auction house.'),
496 ('ahbot items ratio horde',3,'Syntax: .ahbot items ratio horde $horderatio\r\n\r\nSet ratio of items in horde auction house.'),
497 ('ahbot items ratio neutral',3,'Syntax: .ahbot items ratio neutral $neutralratio\r\n\r\nSet ratio of items in $neutral auction house.'),
498 ('ahbot rebuild',3,'Syntax: .ahbot rebuild [all]\r\n\r\nExpire all actual auction of ahbot except bided by player. Binded auctions included to expire if \"all\" option used. Ahbot re-fill auctions base at current settings then.'),
499 ('ahbot reload',3,'Syntax: .ahbot reload\r\n\r\nReload AHBot settings from configuration file.'),
500 ('ahbot status',3,'Syntax: .ahbot status [all]\r\n\r\nShow current ahbot state data in short form, and with \"all\" with details.'),
501 ('announce',1,'Syntax: .announce $MessageToBroadcast\r\n\r\nSend a global message to all players online in chat log.'),
502 ('auction',3,'Syntax: .auction\r\n\r\nShow your team auction store.'),
503 ('auction alliance',3,'Syntax: .auction alliance\r\n\r\nShow alliance auction store independent from your team.'),
504 ('auction goblin',3,'Syntax: .auction goblin\r\n\r\nShow goblin auction store common for all teams.'),
505 ('auction horde',3,'Syntax: .auction horde\r\n\r\nShow horde auction store independent from your team.'),
506 ('auction item',3,'Syntax: .auction item (alliance|horde|goblin) #itemid[:#itemcount] [[[#minbid] #buyout] [short|long|verylong]\r\n\r\nAdd new item (in many stackes if amount grater stack size) to specific auction house at short|long|verylogn perios similar same settings in auction in game dialog. Created auction not have owner.'),
507 ('aura',3,'Syntax: .aura #spellid\r\n\r\nAdd the aura from spell #spellid to the selected Unit.'),
508 ('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\".'),
509 ('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\".'),
510 ('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\".'),
511 ('baninfo account',3,'Syntax: .baninfo account $accountid\r\nWatch full information about a specific ban.'),
512 ('baninfo character',3,'Syntax: .baninfo character $charactername \r\nWatch full information about a specific ban.'),
513 ('baninfo ip',3,'Syntax: .baninfo ip $ip\r\nWatch full information about a specific ban.'),
514 ('bank',3,'Syntax: .bank\r\n\r\nShow your bank inventory.'),
515 ('banlist account',3,'Syntax: .banlist account [$Name]\r\nSearches the banlist for a account name pattern or show full list account bans.'),
516 ('banlist character',3,'Syntax: .banlist character $Name\r\nSearches the banlist for a character name pattern. Pattern required.'),
517 ('banlist ip',3,'Syntax: .banlist ip [$Ip]\r\nSearches the banlist for a IP pattern or show full list of IP bans.'),
518 ('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.'),
519 ('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.'),
520 ('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.'),
521 ('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.'),
522 ('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.'),
523 ('character achievements',2,'Syntax: .character achievements [$player_name]\r\n\r\nShow completed achievments for selected player or player find by $player_name.'),
524 ('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.'),
525 ('character deleted delete',4,'Syntax: .character deleted delete #guid|$name\r\n\r\nCompletely deletes the selected characters.\r\nIf $name is supplied, only characters with that string in their name will be deleted, if #guid is supplied, only the character with that GUID will be deleted.'),
526 ('character deleted list',3,'Syntax: .character deleted list [#guid|$name]\r\n\r\nShows a list with all deleted characters.\r\nIf $name is supplied, only characters with that string in their name will be selected, if #guid is supplied, only the character with that GUID will be selected.'),
527 ('character deleted old',4,'Syntax: .character deleted old [#keepDays]\r\n\r\nCompletely deletes all characters with deleted time longer #keepDays. If #keepDays not provided the  used value from mangosd.conf option \'CharDelete.KeepDays\'. If referenced config option disabled (use 0 value) then command can\'t be used without #keepDays.'),
528 ('character deleted restore',3,'Syntax: .character deleted restore #guid|$name [$newname] [#new account]\r\n\r\nRestores deleted characters.\r\nIf $name is supplied, only characters with that string in their name will be restored, if $guid is supplied, only the character with that GUID will be restored.\r\nIf $newname is set, the character will be restored with that name instead of the original one. If #newaccount is set, the character will be restored to specific account character list. This works only with one character!'),
529 ('character erase',4,'Syntax: .character erase $name\r\n\r\nDelete character $name. Character finally deleted in case any deleting options.'),
530 ('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.'),
531 ('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.'),
532 ('character reputation',2,'Syntax: .character reputation [$player_name]\r\n\r\nShow reputation information for selected player or player find by $player_name.'),
533 ('character titles',2,'Syntax: .character titles [$player_name]\r\n\r\nShow known titles list for selected player or player find by $player_name.'),
534 ('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.'),
535 ('commands',0,'Syntax: .commands\r\n\r\nDisplay a list of available commands for your account level.'),
536 ('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).'),
537 ('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.'),
538 ('debug anim',2,'Syntax: .debug anim #emoteid\r\n\r\nPlay emote #emoteid for your character.'),
539 ('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
540 ('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
541 ('debug getitemvalue',3,'Syntax: .debug getitemvalue #itemguid #field [int|hex|bit|float]\r\n\r\nGet the field #field of the item #itemguid in your inventroy.\r\n\r\nUse type arg for set output format: int (decimal number), hex (hex value), bit (bitstring), float. By default use integer output.'),
542 ('debug getvalue',3,'Syntax: .debug getvalue #field [int|hex|bit|float]\r\n\r\nGet the field #field of the selected target. If no target is selected, get the content of your field.\r\n\r\nUse type arg for set output format: int (decimal number), hex (hex value), bit (bitstring), float. By default use integer output.'),
543 ('debug moditemvalue',3,'Syntax: .debug moditemvalue #guid #field [int|float| &= | |= | &=~ ] #value\r\n\r\nModify the field #field of the item #itemguid in your inventroy by value #value. \r\n\r\nUse type arg for set mode of modification: int (normal add/subtract #value as decimal number), float (add/subtract #value as float number), &= (bit and, set to 0 all bits in value if it not set to 1 in #value as hex number), |= (bit or, set to 1 all bits in value if it set to 1 in #value as hex number), &=~ (bit and not, set to 0 all bits in value if it set to 1 in #value as hex number). By default expect integer add/subtract.'),
544 ('debug modvalue',3,'Syntax: .debug modvalue #field [int|float| &= | |= | &=~ ] #value\r\n\r\nModify the field #field of the selected target by value #value. If no target is selected, set the content of your field.\r\n\r\nUse type arg for set mode of modification: int (normal add/subtract #value as decimal number), float (add/subtract #value as float number), &= (bit and, set to 0 all bits in value if it not set to 1 in #value as hex number), |= (bit or, set to 1 all bits in value if it set to 1 in #value as hex number), &=~ (bit and not, set to 0 all bits in value if it set to 1 in #value as hex number). By default expect integer add/subtract.'),
545 ('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'),
546 ('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
547 ('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...'),
548 ('debug setitemvalue',3,'Syntax: .debug setitemvalue #guid #field [int|hex|bit|float] #value\r\n\r\nSet the field #field of the item #itemguid in your inventroy to value #value.\r\n\r\nUse type arg for set input format: int (decimal number), hex (hex value), bit (bitstring), float. By default expect integer input format.'),
549 ('debug setvalue',3,'Syntax: .debug setvalue #field [int|hex|bit|float] #value\r\n\r\nSet the field #field of the selected target to value #value. If no target is selected, set the content of your field.\r\n\r\nUse type arg for set input format: int (decimal number), hex (hex value), bit (bitstring), float. By default expect integer input format.'),
550 ('debug spellcoefs',3,'Syntax: .debug spellcoefs #spellid\r\n\r\nShow default calculated and DB stored coefficients for direct/dot heal/damage.'),
551 ('debug spellmods',3,'Syntax: .debug spellmods (flat|pct) #spellMaskBitIndex #spellModOp #value\r\n\r\nSet at client side spellmod affect for spell that have bit set with index #spellMaskBitIndex in spell family mask for values dependent from spellmod #spellModOp to #value.'),
552 ('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.'),
553 ('demorph',2,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
554 ('die',3,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
555 ('dismount',0,'Syntax: .dismount\r\n\r\nDismount you, if you are mounted.'),
556 ('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.'),
557 ('event',2,'Syntax: .event #event_id\r\nShow details about event with #event_id.'),
558 ('event list',2,'Syntax: .event list\r\nShow list of currently active events.\r\nShow list of all events'),
559 ('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).'),
560 ('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).'),
561 ('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.'),
562 ('flusharenapoints',3,'Syntax: .flusharenapoints\r\n\r\nUse it to distribute arena points based on arena team ratings, and start a new week.'),
563 ('gearscore',3,'Syntax: .gearscore [#withBags] [#withBank]\r\n\r\nShow selected player\'s gear score. Check items in bags if #withBags != 0 and check items in Bank if #withBank != 0. Default: 1 for bags and 0 for bank'),
564 ('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.'),
565 ('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.'),
566 ('gm fly',3,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
567 ('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
568 ('gm list',3,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
569 ('gm setview',1,'Syntax: .gm setview\r\n\r\nSet farsight view on selected unit. Select yourself to set view back.'),
570 ('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.'),
571 ('go',1,'Syntax: .go  [$playername|pointlink|#x #y #z [#mapid]]\r\nTeleport your character to point with coordinates of player $playername, or coordinates of one from shift-link types: player, tele, taxinode, creature/creature_entry, gameobject/gameobject_entry, or explicit #x #y #z #mapid coordinates.'),
572 ('go creature',1,'Syntax: .go creature (#creature_guid|$creature_name|id #creature_id)\r\nTeleport your character to creature with guid #creature_guid, or teleport your character to creature with name including as part $creature_name substring, or teleport your character to a creature that was spawned from the template with this entry #creature_id.'),
573 ('go graveyard',1,'Syntax: .go graveyard #graveyardId\r\n Teleport to graveyard with the graveyardId specified.'),
574 ('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).'),
575 ('go object',1,'Syntax: .go object (#gameobject_guid|$gameobject_name|id #gameobject_id)\r\nTeleport your character to gameobject with guid #gameobject_guid, or teleport your character to gameobject with name including as part $gameobject_name substring, or teleport your character to a gameobject that was spawned from the template with this entry #gameobject_id.'),
576 ('go taxinode',1,'Syntax: .go taxinode #taxinode\r\n\r\nTeleport player to taxinode coordinates. You can look up zone using .lookup taxinode $namepart'),
577 ('go trigger',1,'Syntax: .go trigger (#trigger_id|$trigger_shift-link|$trigger_target_shift-link) [target]\r\n\r\nTeleport your character to areatrigger with id #trigger_id or trigger id associated with shift-link. If additional arg \"target\" provided then character will teleported to areatrigger target point.'),
578 ('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.'),
579 ('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.'),
580 ('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'),
581 ('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.'),
582 ('gobject delete',2,'Syntax: .gobject delete #go_guid\r\nDelete gameobject with guid #go_guid.'),
583 ('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).'),
584 ('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.'),
585 ('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.'),
586 ('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.'),
587 ('gobject turn',2,'Syntax: .gobject turn #goguid [#z_angle]\r\n\r\nChanges gameobject #goguid orientation (rotates gameobject around z axis). Optional parameters are (#y_angle,#x_angle) values that represents rotation angles around y and x axes.'),
588 ('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. Character can be offline.'),
589 ('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'),
590 ('groupgo',1,'Syntax: .groupgo [$charactername]\r\n\r\nTeleport the given character and his group to you. Teleported only online characters but original selected group member can be offline.'),
591 ('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'),
592 ('guild create',2,'Syntax: .guild create [$GuildLeaderName] \"$GuildName\"\r\n\r\nCreate a guild named $GuildName with the player $GuildLeaderName (or selected) as leader.  Guild name must in quotes.'),
593 ('guild delete',2,'Syntax: .guild delete \"$GuildName\"\r\n\r\nDelete guild $GuildName. Guild name must in quotes.'),
594 ('guild invite',2,'Syntax: .guild invite [$CharacterName] \"$GuildName\"\r\n\r\nAdd player $CharacterName (or selected) into a guild $GuildName. Guild name must in quotes.'),
595 ('guild rank',2,'Syntax: .guild rank $CharacterName #Rank\r\n\r\nSet for $CharacterName rank #Rank in a guild.'),
596 ('guild uninvite',2,'Syntax: .guild uninvite [$CharacterName]\r\n\r\nRemove player $CharacterName (or selected) from a guild.'),
597 ('help',0,'Syntax: .help [$command]\r\n\r\nDisplay usage instructions for the given $command. If no $command provided show list available commands.'),
598 ('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.'),
599 ('honor add',2,'Syntax: .honor add $amount\r\n\r\nAdd a certain amount of honor (gained today) to the selected player.'),
600 ('honor addkill',2,'Syntax: .honor addkill\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)'),
601 ('honor updatekills',2,'Syntax: .honor updatekills\r\n\r\nForce the yesterday\'s honor kill fields to be updated with today\'s data, which will get reset for the selected player.'),
602 ('instance listbinds',3,'Syntax: .instance listbinds\r\n  Lists the binds of the selected player.'),
603 ('instance savedata',3,'Syntax: .instance savedata\r\n  Save the InstanceData for the current player\'s map to the DB.'),
604 ('instance stats',3,'Syntax: .instance stats\r\n  Shows statistics about instances.'),
605 ('instance unbind',3,'Syntax: .instance unbind all\r\n  All of the selected player\'s binds will be cleared.\r\n.instance unbind #mapid\r\n Only the specified #mapid instance will be cleared.'),
606 ('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'),
607 ('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.'),
608 ('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If \'all\' provided then all ranks learned.'),
609 ('learn all',3,'Syntax: .learn all\r\n\r\nLearn all big set different spell maybe useful for Administaror.'),
610 ('learn all_crafts',2,'Syntax: .learn crafts\r\n\r\nLearn all professions and recipes.'),
611 ('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.'),
612 ('learn all_gm',2,'Syntax: .learn all_gm\r\n\r\nLearn all default spells for Game Masters.'),
613 ('learn all_lang',1,'Syntax: .learn all_lang\r\n\r\nLearn all languages'),
614 ('learn all_myclass',3,'Syntax: .learn all_myclass\r\n\r\nLearn all spells and talents available for his class.'),
615 ('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).'),
616 ('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.'),
617 ('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.'),
618 ('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'),
619 ('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.'),
620 ('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).'),
621 ('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.'),
622 ('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.'),
623 ('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.'),
624 ('list talents',3,'Syntax: .list talents\r\n\r\nShow list all really known (as learned spells) talent rank spells for selected player or self.'),
625 ('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.'),
626 ('lookup account email',2,'Syntax: .lookup account email $emailpart [#limit] \r\n\r\n Searchs accounts, which email including $emailpart with optional parametr #limit of results. If #limit not provided expected 100.'),
627 ('lookup account ip',2,'Syntax: lookup account ip $ippart [#limit] \r\n\r\n Searchs accounts, which last used ip inluding $ippart (textual) with optional parametr #$limit of results. If #limit not provided expected 100.'),
628 ('lookup account name',2,'Syntax: .lookup account name $accountpart [#limit] \r\n\r\n Searchs accounts, which username including $accountpart with optional parametr #limit of results. If #limit not provided expected 100.'),
629 ('lookup achievement',2,'Syntax: .lookup $name\r\nLooks up a achievement by $namepart, and returns all matches with their quest ID\'s. Achievement shift-links generated with information about achievment state for selected player. Also for completed achievments in list show complete date.'),
630 ('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.'),
631 ('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.'),
632 ('lookup currency',3,'Syntax: .lookup currency $namepart\r\n\r\nLooks up a currency by $namepart, and returns all matches.'),
633 ('lookup event',2,'Syntax: .lookup event $name\r\nAttempts to find the ID of the event with the provided $name.'),
634 ('lookup faction',3,'Syntax: .lookup faction $name\r\nAttempts to find the ID of the faction with the provided $name.'),
635 ('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.'),
636 ('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.'),
637 ('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.'),
638 ('lookup player account',2,'Syntax: .lookup player account $accountpart [#limit] \r\n\r\n Searchs players, which account username including $accountpart with optional parametr #limit of results. If #limit not provided expected 100.'),
639 ('lookup player email',2,'Syntax: .lookup player email $emailpart [#limit] \r\n\r\n Searchs players, which account email including $emailpart with optional parametr #limit of results. If #limit not provided expected 100.'),
640 ('lookup player ip',2,'Syntax: .lookup player ip $ippart [#limit] \r\n\r\n Searchs players, which account last used ip inluding $ippart (textual) with optional parametr #limit of results. If #limit not provided expected 100.'),
641 ('lookup pool',2,'Syntax: .lookup pool $pooldescpart\r\n\r\nList of pools (anywhere) with substring in description.'),
642 ('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.'),
643 ('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.'),
644 ('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.'),
645 ('lookup taxinode',3,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
646 ('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
647 ('lookup title',2,'Syntax: .lookup title $$namepart\r\n\r\nLooks up a title by $namepart, and returns all matches with their title ID\'s and index\'s.'),
648 ('mailbox',3,'Syntax: .mailbox\r\n\r\nShow your mailbox content.'),
649 ('maxskill',3,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum VALUESfor its current level.'),
650 ('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.'),
651 ('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.'),
652 ('modify currency',2,'Syntax: .modify currency $id $amount\r\n\r\nAdd $amount points of currency $id to the selected player.'),
653 ('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.'),
654 ('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.'),
655 ('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.'),
656 ('modify fly',1,'Syntax: .modify fly #rate\r\n.fly #rate\r\n\r\nModify the flying speed of the selected player to \"normal base fly speed\"*rate. If no player is selected, modify your fly.\r\n\r\n #rate may range from 0.1 to 10.'),
657 ('modify gender',2,'Syntax: .modify gender male/female\r\n\r\nChange gender of selected player.'),
658 ('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.'),
659 ('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.'),
660 ('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.'),
661 ('modify morph',2,'Syntax: .modify morph #displayid\r\n\r\nChange your current model id to #displayid.'),
662 ('modify mount',1,'Syntax: .modify mount #id #speed\r\nDisplay selected player as mounted at #id creature and set speed to #speed value.'),
663 ('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.'),
664 ('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.'),
665 ('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.'),
666 ('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.'),
667 ('modify scale',1,'Syntax: .modify scale #scale\r\n\r\nChange model scale for targeted player (util relogin) or creature (until respawn).'),
668 ('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.'),
669 ('modify standstate',2,'Syntax: .modify standstate #emoteid\r\n\r\nChange the emote of your character while standing to #emoteid.'),
670 ('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.'),
671 ('modify tp',1,'Syntax: .modify tp #amount\r\n\r\nSet free talent pointes for selected character or character\'s pet. It will be reset to default expected at next levelup/login/quest reward.'),
672 ('movegens',3,'Syntax: .movegens\r\n  Show movement generators stack for selected creature or player.'),
673 ('mute',1,'Syntax: .mute [$playerName] $timeInMinutes\r\n\r\nDisible chat messaging for any character from account of character $playerName (or currently selected) at $timeInMinutes minutes. Player can be offline.'),
674 ('namego',1,'Syntax: .namego [$charactername]\r\n\r\nTeleport the given character to you. Character can be offline.'),
675 ('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).'),
676 ('notify',1,'Syntax: .notify $MessageToBroadcast\r\n\r\nSend a global message to all players online in screen.'),
677 ('npc add',2,'Syntax: .npc add #creatureid\r\n\r\nSpawn a creature by the given template id of #creatureid.'),
678 ('npc addcurrency',2,'Syntax: .npc addcurrency #currencyId #buycount #extendedcost\r\n\r\nAdd currency #currencyId to item list of selected vendor.'),
679 ('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.'),
680 ('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.'),
681 ('npc addweapon',3,'Not yet implemented.'),
682 ('npc aiinfo',2,'Syntax: .npc npc aiinfo\r\n\r\nShow npc AI and script information.'),
683 ('npc allowmove',3,'Syntax: .npc allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
684 ('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.'),
685 ('npc delcurrency',2,'Syntax: .npc delcurrency #currencyId\r\n\r\nRemove currency #currencyId from item list of selected vendor.'),
686 ('npc delete',2,'Syntax: .npc delete [#guid]\r\n\r\nDelete creature with guid #guid (or the selected if no guid is provided)'),
687 ('npc delitem',2,'Syntax: .npc delitem #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'),
688 ('npc factionid',2,'Syntax: .npc factionid #factionid\r\n\r\nSet the faction of the selected creature to #factionid.'),
689 ('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.'),
690 ('npc follow',2,'Syntax: .npc follow\r\n\r\nSelected creature start follow you until death/fight/etc.'),
691 ('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.'),
692 ('npc move',2,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
693 ('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.'),
694 ('npc playemote',3,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
695 ('npc say',1,'Syntax: .npc say #text\r\nMake the selected npc says #text.'),
696 ('npc setdeathstate',2,'Syntax: .npc setdeathstate on/off\r\n\r\nSet default death state (dead/alive) for npc at spawn.'),
697 ('npc setmodel',2,'Syntax: .npc setmodel #displayid\r\n\r\nChange the model id of the selected creature to #displayid.'),
698 ('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.'),
699 ('npc setphase',2,'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..'),
700 ('npc spawndist',2,'Syntax: .npc spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
701 ('npc spawntime',2,'Syntax: .npc spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
702 ('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.'),
703 ('npc tame',2,'Syntax: .npc tame\r\n\r\nTame selected creature (tameable non pet creature). You don\'t must have pet.'),
704 ('npc textemote',1,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
705 ('npc unfollow',2,'Syntax: .npc unfollow\r\n\r\nSelected creature (non pet) stop follow you.'),
706 ('npc whisper',1,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to  #playerguid.'),
707 ('npc yell',1,'Syntax: .npc yell #text\r\nMake the selected npc yells #text.'),
708 ('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.'),
709 ('pdump write',3,'Syntax: .pdump write $filename $playerNameOrGUID\r\nWrite character dump with name/guid $playerNameOrGUID to file $filename.'),
710 ('pinfo',2,'Syntax: .pinfo [$player_name]\r\n\r\nOutput account information for selected player or player find by $player_name.'),
711 ('pool',2,'Syntax: .pool #pool_id\r\n\r\nPool information and full list creatures/gameobjects included in pool.'),
712 ('pool list',2,'Syntax: .pool list\r\n\r\nList of pools with spawn in current map (only work in instances. Non-instanceable maps share pool system state os useless attempt get all pols at all continents.'),
713 ('pool spawns',2,'Syntax: .pool spawns #pool_id\r\n\r\nList current creatures/objects listed in pools (or in specific #pool_id) and spawned (added to grid data, not meaning show in world.'),
714 ('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.'),
715 ('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.'),
716 ('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.'),
717 ('quit',4,'Syntax: quit\r\n\r\nClose RA connection. Command must be typed fully (quit).'),
718 ('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.'),
719 ('reload all',3,'Syntax: .reload all\r\n\r\nReload all tables with reload support added and that can be _safe_ reloaded.'),
720 ('reload all_achievement',3,'Syntax: .reload all_achievement\r\n\r\nReload all `achievement_*` tables if reload support added for this table and this table can be _safe_ reloaded.'),
721 ('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.'),
722 ('reload all_eventai',3,'Syntax: .reload all_eventai\r\n\r\nReload `creature_ai_*` tables if reload support added for these tables and these tables can be _safe_ reloaded.'),
723 ('reload all_item',3,'Syntax: .reload all_item\r\n\r\nReload `item_required_target`, `page_texts` and `item_enchantment_template` tables.'),
724 ('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.'),
725 ('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.'),
726 ('reload all_npc',3,'Syntax: .reload all_npc\r\n\r\nReload `points_of_interest` and `npc_*` tables if reload support added for these tables and these tables can be _safe_ reloaded.'),
727 ('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.'),
728 ('reload all_scripts',3,'Syntax: .reload all_scripts\r\n\r\nReload `*_scripts` tables.'),
729 ('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.'),
730 ('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.'),
731 ('repairitems',2,'Syntax: .repairitems\r\n\r\nRepair all selected player\'s items.'),
732 ('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.'),
733 ('reset all',3,'Syntax: .reset all spells\r\n\r\nSyntax: .reset all talents\r\n\r\nRequest reset spells or talents (including talents for all character\'s pets if any) at next login each existed character.'),
734 ('reset honor',3,'Syntax: .reset honor [Playername]\r\n  Reset all honor data for targeted character.'),
735 ('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.'),
736 ('reset specs',3,'Syntax: .reset specs [Playername]\r\n  Removes all talents (for all specs) of the targeted player or named player. Playername can be name of offline character. With player talents also will be reset talents for all character\'s pets if any.'),
737 ('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.'),
738 ('reset stats',3,'Syntax: .reset stats [Playername]\r\n  Resets(recalculate) all stats of the targeted player to their original VALUESat current level.'),
739 ('reset talents',3,'Syntax: .reset talents [Playername]\r\n  Removes all talents (current spec) of the targeted player or pet or named player. With player talents also will be reset talents for all character\'s pets if any.'),
740 ('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.'),
741 ('revive',3,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
742 ('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
743 ('saveall',1,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
744 ('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.'),
745 ('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 \"\".'),
746 ('send mass items',3,'Syntax: .send mass items #racemask|$racename|alliance|horde|all \"#subject\" \"#text\" itemid1[:count1] itemid2[:count2] ... itemidN[:countN]\r\n\r\nSend a mail to players. 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.'),
747 ('send mass mail',3,'Syntax: .send mass mail #racemask|$racename|alliance|horde|all \"#subject\" \"#text\"\r\n\r\nSend a mail to players. Subject and mail text must be in \"\".'),
748 ('send mass money',3,'Syntax: .send mass money #racemask|$racename|alliance|horde|all \"#subject\" \"#text\" #money\r\n\r\nSend mail with money to players. Subject and mail text must be in \"\".'),
749 ('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
750 ('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 \"\".'),
751 ('server corpses',2,'Syntax: .server corpses\r\n\r\nTriggering corpses expire check in world.'),
752 ('server exit',4,'Syntax: .server exit\r\n\r\nTerminate mangosd NOW. Exit code 0.'),
753 ('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.'),
754 ('server idlerestart cancel',3,'Syntax: .server idlerestart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
755 ('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.'),
756 ('server idleshutdown cancel',3,'Syntax: .server idleshutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
757 ('server info',0,'Syntax: .server info\r\n\r\nDisplay server version and the number of connected players.'),
758 ('server log filter',4,'Syntax: .server log filter [($filtername|all) (on|off)]\r\n\r\nShow or set server log filters. If used \"all\" then all filters will be set to on/off state.'),
759 ('server log level',4,'Syntax: .server log level [#level]\r\n\r\nShow or set server log level (0 - errors only, 1 - basic, 2 - detail, 3 - debug).'),
760 ('server motd',0,'Syntax: .server motd\r\n\r\nShow server Message of the day.'),
761 ('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'),
762 ('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.'),
763 ('server restart cancel',3,'Syntax: .server restart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
764 ('server set motd',3,'Syntax: .server set motd $MOTD\r\n\r\nSet server Message of the day.'),
765 ('server shutdown',3,'Syntax: .server shutdown #delay [#exit_code]\r\n\r\nShut the server down after #delay seconds. Use #exit_code or 0 as program exit code.'),
766 ('server shutdown cancel',3,'Syntax: .server shutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
767 ('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.'),
768 ('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.'),
769 ('stable',3,'Syntax: .stable\r\n\r\nShow your pet stable.'),
770 ('start',0,'Syntax: .start\r\n\r\nTeleport you to the starting area of your character.'),
771 ('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.'),
772 ('tele',1,'Syntax: .tele #location\r\n\r\nTeleport player to a given location.'),
773 ('tele add',3,'Syntax: .tele add $name\r\n\r\nAdd current your position to .tele command target locations list with name $name.'),
774 ('tele del',3,'Syntax: .tele del $name\r\n\r\nRemove location with name $name for .tele command locations list.'),
775 ('tele group',1,'Syntax: .tele group#location\r\n\r\nTeleport a selected player and his group members to a given location.'),
776 ('tele name',1,'Syntax: .tele name [#playername] #location\r\n\r\nTeleport the given character to a given location. Character can be offline.'),
777 ('ticket',2,'Syntax: .ticket on\r\n        .ticket off\r\n        .ticket #num\r\n        .ticket $character_name\r\n        .ticket respond #num $response\r\n        .ticket respond $character_name $response\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.'),
778 ('titles add',2,'Syntax: .titles add #title\r\nAdd title #title (id or shift-link) to known titles list for selected player.'),
779 ('titles current',2,'Syntax: .titles current #title\r\nSet title #title (id or shift-link) as current selected titl for selected player. If title not in known title list for player then it will be added to list.'),
780 ('titles remove',2,'Syntax: .titles remove #title\r\nRemove title #title (id or shift-link) from known titles list for selected player.'),
781 ('titles setmask',2,'Syntax: .titles setmask #mask\r\n\r\nAllows user to use all titles from #mask.\r\n\r\n #mask=0 disables the title-choose-field'),
782 ('trigger',2,'Syntax: .trigger [#trigger_id|$trigger_shift-link|$trigger_target_shift-link]\r\n\r\nShow detail infor about areatrigger with id #trigger_id or trigger id associated with shift-link. If areatrigger id or shift-link not provided then selected nearest areatrigger at current map.'),
783 ('trigger active',2,'Syntax: .trigger active\r\n\r\nShow list of areatriggers with activation zone including current character position.'),
784 ('trigger near',2,'Syntax: .trigger near [#distance]\r\n\r\nOutput areatriggers at distance #distance from player. If #distance not provided use 10 as default value.'),
785 ('unaura',3,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
786 ('unban account',3,'Syntax: .unban account $Name\r\nUnban accounts for account name pattern.'),
787 ('unban character',3,'Syntax: .unban character $Name\r\nUnban accounts for character name pattern.'),
788 ('unban ip',3,'Syntax : .unban ip $Ip\r\nUnban accounts for IP pattern.'),
789 ('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell.  If \'all\' provided then all ranks unlearned.'),
790 ('unmute',1,'Syntax: .unmute $playerName\r\n\r\nRestore chat messaging for any character from account of character $playerName.'),
791 ('waterwalk',2,'Syntax: .waterwalk on/off\r\n\r\nSet on/off waterwalk state for selected player.'),
792 ('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.'),
793 ('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use mangosd.conf setting.'),
794 ('wp add',2,'Syntax: .wp add [#creature_guid or Select a Creature]'),
795 ('wp export',3,'Syntax: .wp export [#creature_guid or Select a Creature] $filename'),
796 ('wp import',3,'Syntax: .wp import $filename'),
797 ('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!'),
798 ('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!');
799 /*!40000 ALTER TABLE `command` ENABLE KEYS */;
800 UNLOCK TABLES;
803 -- Table structure for table `conditions`
806 DROP TABLE IF EXISTS `conditions`;
807 /*!40101 SET @saved_cs_client     = @@character_set_client */;
808 /*!40101 SET character_set_client = utf8 */;
809 CREATE TABLE `conditions` (
810   `condition_entry` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
811   `type` tinyint(3) NOT NULL DEFAULT '0' COMMENT 'Type of the condition',
812   `value1` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'data field one for the condition',
813   `value2` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'data field two for the condition',
814   PRIMARY KEY (`condition_entry`),
815   UNIQUE KEY `unique_conditions` (`type`,`value1`,`value2`)
816 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Condition System';
817 /*!40101 SET character_set_client = @saved_cs_client */;
820 -- Dumping data for table `conditions`
823 LOCK TABLES `conditions` WRITE;
824 /*!40000 ALTER TABLE `conditions` DISABLE KEYS */;
825 /*!40000 ALTER TABLE `conditions` ENABLE KEYS */;
826 UNLOCK TABLES;
829 -- Table structure for table `creature`
832 DROP TABLE IF EXISTS `creature`;
833 /*!40101 SET @saved_cs_client     = @@character_set_client */;
834 /*!40101 SET character_set_client = utf8 */;
835 CREATE TABLE `creature` (
836   `guid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Global Unique Identifier',
837   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature Identifier',
838   `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
839   `spawnMask` tinyint(3) unsigned NOT NULL DEFAULT '1',
840   `phaseMask` smallint(5) unsigned NOT NULL DEFAULT '1',
841   `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
842   `equipment_id` mediumint(9) NOT NULL DEFAULT '0',
843   `position_x` float NOT NULL DEFAULT '0',
844   `position_y` float NOT NULL DEFAULT '0',
845   `position_z` float NOT NULL DEFAULT '0',
846   `orientation` float NOT NULL DEFAULT '0',
847   `spawntimesecs` int(10) unsigned NOT NULL DEFAULT '120',
848   `spawndist` float NOT NULL DEFAULT '5',
849   `currentwaypoint` mediumint(8) unsigned NOT NULL DEFAULT '0',
850   `curhealth` int(10) unsigned NOT NULL DEFAULT '1',
851   `curmana` int(10) unsigned NOT NULL DEFAULT '0',
852   `DeathState` tinyint(3) unsigned NOT NULL DEFAULT '0',
853   `MovementType` tinyint(3) unsigned NOT NULL DEFAULT '0',
854   PRIMARY KEY (`guid`),
855   KEY `idx_map` (`map`),
856   KEY `index_id` (`id`)
857 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature System';
858 /*!40101 SET character_set_client = @saved_cs_client */;
861 -- Dumping data for table `creature`
864 LOCK TABLES `creature` WRITE;
865 /*!40000 ALTER TABLE `creature` DISABLE KEYS */;
866 /*!40000 ALTER TABLE `creature` ENABLE KEYS */;
867 UNLOCK TABLES;
870 -- Table structure for table `creature_addon`
873 DROP TABLE IF EXISTS `creature_addon`;
874 /*!40101 SET @saved_cs_client     = @@character_set_client */;
875 /*!40101 SET character_set_client = utf8 */;
876 CREATE TABLE `creature_addon` (
877   `guid` int(10) unsigned NOT NULL DEFAULT '0',
878   `mount` mediumint(8) unsigned NOT NULL DEFAULT '0',
879   `bytes1` int(10) unsigned NOT NULL DEFAULT '0',
880   `b2_0_sheath` tinyint(3) unsigned NOT NULL DEFAULT '0',
881   `b2_1_pvp_state` tinyint(3) unsigned NOT NULL DEFAULT '0',
882   `emote` int(10) unsigned NOT NULL DEFAULT '0',
883   `moveflags` int(10) unsigned NOT NULL DEFAULT '0',
884   `auras` text,
885   PRIMARY KEY (`guid`)
886 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
887 /*!40101 SET character_set_client = @saved_cs_client */;
890 -- Dumping data for table `creature_addon`
893 LOCK TABLES `creature_addon` WRITE;
894 /*!40000 ALTER TABLE `creature_addon` DISABLE KEYS */;
895 /*!40000 ALTER TABLE `creature_addon` ENABLE KEYS */;
896 UNLOCK TABLES;
899 -- Table structure for table `creature_ai_scripts`
902 DROP TABLE IF EXISTS `creature_ai_scripts`;
903 /*!40101 SET @saved_cs_client     = @@character_set_client */;
904 /*!40101 SET character_set_client = utf8 */;
905 CREATE TABLE `creature_ai_scripts` (
906   `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
907   `creature_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature Template Identifier',
908   `event_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Event Type',
909   `event_inverse_phase_mask` int(11) NOT NULL DEFAULT '0' COMMENT 'Mask which phases this event will not trigger in',
910   `event_chance` int(3) unsigned NOT NULL DEFAULT '100',
911   `event_flags` int(3) unsigned NOT NULL DEFAULT '0',
912   `event_param1` int(11) NOT NULL DEFAULT '0',
913   `event_param2` int(11) NOT NULL DEFAULT '0',
914   `event_param3` int(11) NOT NULL DEFAULT '0',
915   `event_param4` int(11) NOT NULL DEFAULT '0',
916   `action1_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action Type',
917   `action1_param1` int(11) NOT NULL DEFAULT '0',
918   `action1_param2` int(11) NOT NULL DEFAULT '0',
919   `action1_param3` int(11) NOT NULL DEFAULT '0',
920   `action2_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action Type',
921   `action2_param1` int(11) NOT NULL DEFAULT '0',
922   `action2_param2` int(11) NOT NULL DEFAULT '0',
923   `action2_param3` int(11) NOT NULL DEFAULT '0',
924   `action3_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action Type',
925   `action3_param1` int(11) NOT NULL DEFAULT '0',
926   `action3_param2` int(11) NOT NULL DEFAULT '0',
927   `action3_param3` int(11) NOT NULL DEFAULT '0',
928   `comment` varchar(255) NOT NULL DEFAULT '' COMMENT 'Event Comment',
929   PRIMARY KEY (`id`)
930 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts';
931 /*!40101 SET character_set_client = @saved_cs_client */;
934 -- Dumping data for table `creature_ai_scripts`
937 LOCK TABLES `creature_ai_scripts` WRITE;
938 /*!40000 ALTER TABLE `creature_ai_scripts` DISABLE KEYS */;
939 /*!40000 ALTER TABLE `creature_ai_scripts` ENABLE KEYS */;
940 UNLOCK TABLES;
943 -- Table structure for table `creature_ai_summons`
946 DROP TABLE IF EXISTS `creature_ai_summons`;
947 /*!40101 SET @saved_cs_client     = @@character_set_client */;
948 /*!40101 SET character_set_client = utf8 */;
949 CREATE TABLE `creature_ai_summons` (
950   `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Location Identifier',
951   `position_x` float NOT NULL DEFAULT '0',
952   `position_y` float NOT NULL DEFAULT '0',
953   `position_z` float NOT NULL DEFAULT '0',
954   `orientation` float NOT NULL DEFAULT '0',
955   `spawntimesecs` int(11) unsigned NOT NULL DEFAULT '120',
956   `comment` varchar(255) NOT NULL DEFAULT '' COMMENT 'Summon Comment',
957   PRIMARY KEY (`id`)
958 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations';
959 /*!40101 SET character_set_client = @saved_cs_client */;
962 -- Dumping data for table `creature_ai_summons`
965 LOCK TABLES `creature_ai_summons` WRITE;
966 /*!40000 ALTER TABLE `creature_ai_summons` DISABLE KEYS */;
967 /*!40000 ALTER TABLE `creature_ai_summons` ENABLE KEYS */;
968 UNLOCK TABLES;
971 -- Table structure for table `creature_ai_texts`
974 DROP TABLE IF EXISTS `creature_ai_texts`;
975 /*!40101 SET @saved_cs_client     = @@character_set_client */;
976 /*!40101 SET character_set_client = utf8 */;
977 CREATE TABLE `creature_ai_texts` (
978   `entry` mediumint(8) NOT NULL,
979   `content_default` text NOT NULL,
980   `content_loc1` text,
981   `content_loc2` text,
982   `content_loc3` text,
983   `content_loc4` text,
984   `content_loc5` text,
985   `content_loc6` text,
986   `content_loc7` text,
987   `content_loc8` text,
988   `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
989   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
990   `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
991   `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
992   `comment` text,
993   PRIMARY KEY (`entry`)
994 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
995 /*!40101 SET character_set_client = @saved_cs_client */;
998 -- Dumping data for table `creature_ai_texts`
1001 LOCK TABLES `creature_ai_texts` WRITE;
1002 /*!40000 ALTER TABLE `creature_ai_texts` DISABLE KEYS */;
1003 /*!40000 ALTER TABLE `creature_ai_texts` ENABLE KEYS */;
1004 UNLOCK TABLES;
1007 -- Table structure for table `creature_battleground`
1010 DROP TABLE IF EXISTS `creature_battleground`;
1011 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1012 /*!40101 SET character_set_client = utf8 */;
1013 CREATE TABLE `creature_battleground` (
1014   `guid` int(10) unsigned NOT NULL COMMENT 'Creature''s GUID',
1015   `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
1016   `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
1017   PRIMARY KEY (`guid`)
1018 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature battleground indexing system';
1019 /*!40101 SET character_set_client = @saved_cs_client */;
1022 -- Dumping data for table `creature_battleground`
1025 LOCK TABLES `creature_battleground` WRITE;
1026 /*!40000 ALTER TABLE `creature_battleground` DISABLE KEYS */;
1027 /*!40000 ALTER TABLE `creature_battleground` ENABLE KEYS */;
1028 UNLOCK TABLES;
1031 -- Table structure for table `creature_equip_template`
1034 DROP TABLE IF EXISTS `creature_equip_template`;
1035 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1036 /*!40101 SET character_set_client = utf8 */;
1037 CREATE TABLE `creature_equip_template` (
1038   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Unique entry',
1039   `equipentry1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1040   `equipentry2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1041   `equipentry3` mediumint(8) unsigned NOT NULL DEFAULT '0',
1042   PRIMARY KEY (`entry`)
1043 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)';
1044 /*!40101 SET character_set_client = @saved_cs_client */;
1047 -- Dumping data for table `creature_equip_template`
1050 LOCK TABLES `creature_equip_template` WRITE;
1051 /*!40000 ALTER TABLE `creature_equip_template` DISABLE KEYS */;
1052 /*!40000 ALTER TABLE `creature_equip_template` ENABLE KEYS */;
1053 UNLOCK TABLES;
1056 -- Table structure for table `creature_involvedrelation`
1059 DROP TABLE IF EXISTS `creature_involvedrelation`;
1060 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1061 /*!40101 SET character_set_client = utf8 */;
1062 CREATE TABLE `creature_involvedrelation` (
1063   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
1064   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
1065   PRIMARY KEY (`id`,`quest`)
1066 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1067 /*!40101 SET character_set_client = @saved_cs_client */;
1070 -- Dumping data for table `creature_involvedrelation`
1073 LOCK TABLES `creature_involvedrelation` WRITE;
1074 /*!40000 ALTER TABLE `creature_involvedrelation` DISABLE KEYS */;
1075 /*!40000 ALTER TABLE `creature_involvedrelation` ENABLE KEYS */;
1076 UNLOCK TABLES;
1079 -- Table structure for table `creature_linking`
1082 DROP TABLE IF EXISTS `creature_linking`;
1083 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1084 /*!40101 SET character_set_client = utf8 */;
1085 CREATE TABLE `creature_linking` (
1086   `guid` int(10) unsigned NOT NULL COMMENT 'creature.guid of the slave mob that is linked',
1087   `master_guid` int(10) unsigned NOT NULL COMMENT 'master to trigger events',
1088   `flag` mediumint(8) unsigned NOT NULL COMMENT 'flag - describing what should happen when',
1089   PRIMARY KEY (`guid`)
1090 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature Linking System';
1091 /*!40101 SET character_set_client = @saved_cs_client */;
1094 -- Dumping data for table `creature_linking`
1097 LOCK TABLES `creature_linking` WRITE;
1098 /*!40000 ALTER TABLE `creature_linking` DISABLE KEYS */;
1099 /*!40000 ALTER TABLE `creature_linking` ENABLE KEYS */;
1100 UNLOCK TABLES;
1103 -- Table structure for table `creature_linking_template`
1106 DROP TABLE IF EXISTS `creature_linking_template`;
1107 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1108 /*!40101 SET character_set_client = utf8 */;
1109 CREATE TABLE `creature_linking_template` (
1110   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'creature_template.entry of the slave mob that is linked',
1111   `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Id of map of the mobs',
1112   `master_entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'master to trigger events',
1113   `flag` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'flag - describing what should happen when',
1114   `search_range` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'search_range - describing in which range (spawn-coords) master and slave are linked together',
1115   PRIMARY KEY (`entry`,`map`)
1116 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature Linking System';
1117 /*!40101 SET character_set_client = @saved_cs_client */;
1120 -- Dumping data for table `creature_linking_template`
1123 LOCK TABLES `creature_linking_template` WRITE;
1124 /*!40000 ALTER TABLE `creature_linking_template` DISABLE KEYS */;
1125 /*!40000 ALTER TABLE `creature_linking_template` ENABLE KEYS */;
1126 UNLOCK TABLES;
1129 -- Table structure for table `creature_loot_template`
1132 DROP TABLE IF EXISTS `creature_loot_template`;
1133 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1134 /*!40101 SET character_set_client = utf8 */;
1135 CREATE TABLE `creature_loot_template` (
1136   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'entry 0 used for player insignia loot',
1137   `item` mediumint(8) NOT NULL DEFAULT '0',
1138   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
1139   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
1140   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
1141   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
1142   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
1143   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1144   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1145   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1146   PRIMARY KEY (`entry`,`item`)
1147 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1148 /*!40101 SET character_set_client = @saved_cs_client */;
1151 -- Dumping data for table `creature_loot_template`
1154 LOCK TABLES `creature_loot_template` WRITE;
1155 /*!40000 ALTER TABLE `creature_loot_template` DISABLE KEYS */;
1156 /*!40000 ALTER TABLE `creature_loot_template` ENABLE KEYS */;
1157 UNLOCK TABLES;
1160 -- Table structure for table `creature_model_info`
1163 DROP TABLE IF EXISTS `creature_model_info`;
1164 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1165 /*!40101 SET character_set_client = utf8 */;
1166 CREATE TABLE `creature_model_info` (
1167   `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
1168   `bounding_radius` float NOT NULL DEFAULT '0',
1169   `combat_reach` float NOT NULL DEFAULT '0',
1170   `gender` tinyint(3) unsigned NOT NULL DEFAULT '2',
1171   `modelid_other_gender` mediumint(8) unsigned NOT NULL DEFAULT '0',
1172   `modelid_alternative` mediumint(8) unsigned NOT NULL DEFAULT '0',
1173   PRIMARY KEY (`modelid`)
1174 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
1175 /*!40101 SET character_set_client = @saved_cs_client */;
1178 -- Dumping data for table `creature_model_info`
1181 LOCK TABLES `creature_model_info` WRITE;
1182 /*!40000 ALTER TABLE `creature_model_info` DISABLE KEYS */;
1183 INSERT INTO `creature_model_info` (`modelid`, `bounding_radius`, `combat_reach`, `gender`, `modelid_other_gender`, `modelid_alternative`) VALUES
1184 (49,0.306,1.5,0,50,0),
1185 (50,0.208,1.5,1,49,0),
1186 (51,0.372,1.5,0,52,0),
1187 (52,0.236,1.5,1,51,0),
1188 (53,0.347,1.5,0,54,0),
1189 (54,0.347,1.5,1,53,0),
1190 (55,0.389,1.5,0,56,0),
1191 (56,0.306,1.5,1,55,0),
1192 (57,0.383,1.5,0,58,0),
1193 (58,0.383,1.5,1,57,0),
1194 (59,0.9747,1.5,0,60,0),
1195 (60,0.8725,1.5,1,59,0),
1196 (1478,0.306,1.5,0,1479,0),
1197 (1479,0.306,1.5,1,1478,0),
1198 (1563,0.3519,1.5,0,1564,0),
1199 (1564,0.3519,1.5,1,1563,0),
1200 (10045,1,1.5,2,0,0),
1201 (15475,0.383,1.5,1,15476,0),
1202 (15476,0.383,1.5,0,15475,0),
1203 (16125,1,1.5,0,16126,0),
1204 (16126,1,1.5,1,16125,0);
1205 /*!40000 ALTER TABLE `creature_model_info` ENABLE KEYS */;
1206 UNLOCK TABLES;
1209 -- Table structure for table `creature_model_race`
1212 DROP TABLE IF EXISTS `creature_model_race`;
1213 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1214 /*!40101 SET character_set_client = utf8 */;
1215 CREATE TABLE `creature_model_race` (
1216   `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
1217   `racemask` mediumint(8) unsigned NOT NULL DEFAULT '0',
1218   `creature_entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'option 1, modelid_N from creature_template',
1219   `modelid_racial` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'option 2, explicit modelid',
1220   PRIMARY KEY (`modelid`,`racemask`)
1221 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Model system';
1222 /*!40101 SET character_set_client = @saved_cs_client */;
1225 -- Dumping data for table `creature_model_race`
1228 LOCK TABLES `creature_model_race` WRITE;
1229 /*!40000 ALTER TABLE `creature_model_race` DISABLE KEYS */;
1230 /*!40000 ALTER TABLE `creature_model_race` ENABLE KEYS */;
1231 UNLOCK TABLES;
1234 -- Table structure for table `creature_movement`
1237 DROP TABLE IF EXISTS `creature_movement`;
1238 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1239 /*!40101 SET character_set_client = utf8 */;
1240 CREATE TABLE `creature_movement` (
1241   `id` int(10) unsigned NOT NULL COMMENT 'Creature GUID',
1242   `point` mediumint(8) unsigned NOT NULL DEFAULT '0',
1243   `position_x` float NOT NULL DEFAULT '0',
1244   `position_y` float NOT NULL DEFAULT '0',
1245   `position_z` float NOT NULL DEFAULT '0',
1246   `waittime` int(10) unsigned NOT NULL DEFAULT '0',
1247   `script_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1248   `textid1` int(11) NOT NULL DEFAULT '0',
1249   `textid2` int(11) NOT NULL DEFAULT '0',
1250   `textid3` int(11) NOT NULL DEFAULT '0',
1251   `textid4` int(11) NOT NULL DEFAULT '0',
1252   `textid5` int(11) NOT NULL DEFAULT '0',
1253   `emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
1254   `spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
1255   `wpguid` int(11) NOT NULL DEFAULT '0',
1256   `orientation` float NOT NULL DEFAULT '0',
1257   `model1` mediumint(9) NOT NULL DEFAULT '0',
1258   `model2` mediumint(9) NOT NULL DEFAULT '0',
1259   PRIMARY KEY (`id`,`point`)
1260 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1261 /*!40101 SET character_set_client = @saved_cs_client */;
1264 -- Dumping data for table `creature_movement`
1267 LOCK TABLES `creature_movement` WRITE;
1268 /*!40000 ALTER TABLE `creature_movement` DISABLE KEYS */;
1269 /*!40000 ALTER TABLE `creature_movement` ENABLE KEYS */;
1270 UNLOCK TABLES;
1273 -- Table structure for table `creature_movement_scripts`
1276 DROP TABLE IF EXISTS `creature_movement_scripts`;
1277 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1278 /*!40101 SET character_set_client = utf8 */;
1279 CREATE TABLE `creature_movement_scripts` (
1280   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1281   `delay` int(10) unsigned NOT NULL DEFAULT '0',
1282   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
1283   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
1284   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
1285   `buddy_entry` int(10) unsigned NOT NULL DEFAULT '0',
1286   `search_radius` int(10) unsigned NOT NULL DEFAULT '0',
1287   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
1288   `dataint` int(11) NOT NULL DEFAULT '0',
1289   `dataint2` int(11) NOT NULL DEFAULT '0',
1290   `dataint3` int(11) NOT NULL DEFAULT '0',
1291   `dataint4` int(11) NOT NULL DEFAULT '0',
1292   `x` float NOT NULL DEFAULT '0',
1293   `y` float NOT NULL DEFAULT '0',
1294   `z` float NOT NULL DEFAULT '0',
1295   `o` float NOT NULL DEFAULT '0',
1296   `comments` varchar(255) NOT NULL
1297 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1298 /*!40101 SET character_set_client = @saved_cs_client */;
1301 -- Dumping data for table `creature_movement_scripts`
1304 LOCK TABLES `creature_movement_scripts` WRITE;
1305 /*!40000 ALTER TABLE `creature_movement_scripts` DISABLE KEYS */;
1306 /*!40000 ALTER TABLE `creature_movement_scripts` ENABLE KEYS */;
1307 UNLOCK TABLES;
1310 -- Table structure for table `creature_movement_template`
1313 DROP TABLE IF EXISTS `creature_movement_template`;
1314 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1315 /*!40101 SET character_set_client = utf8 */;
1316 CREATE TABLE `creature_movement_template` (
1317   `entry` mediumint(8) unsigned NOT NULL COMMENT 'Creature entry',
1318   `point` mediumint(8) unsigned NOT NULL DEFAULT '0',
1319   `position_x` float NOT NULL DEFAULT '0',
1320   `position_y` float NOT NULL DEFAULT '0',
1321   `position_z` float NOT NULL DEFAULT '0',
1322   `waittime` int(10) unsigned NOT NULL DEFAULT '0',
1323   `script_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1324   `textid1` int(11) NOT NULL DEFAULT '0',
1325   `textid2` int(11) NOT NULL DEFAULT '0',
1326   `textid3` int(11) NOT NULL DEFAULT '0',
1327   `textid4` int(11) NOT NULL DEFAULT '0',
1328   `textid5` int(11) NOT NULL DEFAULT '0',
1329   `emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
1330   `spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
1331   `wpguid` int(11) NOT NULL DEFAULT '0',
1332   `orientation` float NOT NULL DEFAULT '0',
1333   `model1` mediumint(9) NOT NULL DEFAULT '0',
1334   `model2` mediumint(9) NOT NULL DEFAULT '0',
1335   PRIMARY KEY (`entry`,`point`)
1336 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature waypoint system';
1337 /*!40101 SET character_set_client = @saved_cs_client */;
1340 -- Dumping data for table `creature_movement_template`
1343 LOCK TABLES `creature_movement_template` WRITE;
1344 /*!40000 ALTER TABLE `creature_movement_template` DISABLE KEYS */;
1345 /*!40000 ALTER TABLE `creature_movement_template` ENABLE KEYS */;
1346 UNLOCK TABLES;
1349 -- Table structure for table `creature_onkill_reputation`
1352 DROP TABLE IF EXISTS `creature_onkill_reputation`;
1353 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1354 /*!40101 SET character_set_client = utf8 */;
1355 CREATE TABLE `creature_onkill_reputation` (
1356   `creature_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature Identifier',
1357   `RewOnKillRepFaction1` smallint(6) NOT NULL DEFAULT '0',
1358   `RewOnKillRepFaction2` smallint(6) NOT NULL DEFAULT '0',
1359   `MaxStanding1` tinyint(4) NOT NULL DEFAULT '0',
1360   `IsTeamAward1` tinyint(4) NOT NULL DEFAULT '0',
1361   `RewOnKillRepValue1` mediumint(9) NOT NULL DEFAULT '0',
1362   `MaxStanding2` tinyint(4) NOT NULL DEFAULT '0',
1363   `IsTeamAward2` tinyint(4) NOT NULL DEFAULT '0',
1364   `RewOnKillRepValue2` mediumint(9) NOT NULL DEFAULT '0',
1365   `TeamDependent` tinyint(3) unsigned NOT NULL DEFAULT '0',
1366   PRIMARY KEY (`creature_id`)
1367 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain';
1368 /*!40101 SET character_set_client = @saved_cs_client */;
1371 -- Dumping data for table `creature_onkill_reputation`
1374 LOCK TABLES `creature_onkill_reputation` WRITE;
1375 /*!40000 ALTER TABLE `creature_onkill_reputation` DISABLE KEYS */;
1376 /*!40000 ALTER TABLE `creature_onkill_reputation` ENABLE KEYS */;
1377 UNLOCK TABLES;
1380 -- Table structure for table `creature_questrelation`
1383 DROP TABLE IF EXISTS `creature_questrelation`;
1384 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1385 /*!40101 SET character_set_client = utf8 */;
1386 CREATE TABLE `creature_questrelation` (
1387   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
1388   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
1389   PRIMARY KEY (`id`,`quest`)
1390 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1391 /*!40101 SET character_set_client = @saved_cs_client */;
1394 -- Dumping data for table `creature_questrelation`
1397 LOCK TABLES `creature_questrelation` WRITE;
1398 /*!40000 ALTER TABLE `creature_questrelation` DISABLE KEYS */;
1399 /*!40000 ALTER TABLE `creature_questrelation` ENABLE KEYS */;
1400 UNLOCK TABLES;
1403 -- Table structure for table `creature_template`
1406 DROP TABLE IF EXISTS `creature_template`;
1407 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1408 /*!40101 SET character_set_client = utf8 */;
1409 CREATE TABLE `creature_template` (
1410   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
1411   `difficulty_entry_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1412   `difficulty_entry_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1413   `difficulty_entry_3` mediumint(8) unsigned NOT NULL DEFAULT '0',
1414   `KillCredit1` int(11) unsigned NOT NULL DEFAULT '0',
1415   `KillCredit2` int(11) unsigned NOT NULL DEFAULT '0',
1416   `modelid_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1417   `modelid_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1418   `modelid_3` mediumint(8) unsigned NOT NULL DEFAULT '0',
1419   `modelid_4` mediumint(8) unsigned NOT NULL DEFAULT '0',
1420   `name` char(100) NOT NULL DEFAULT '0',
1421   `subname` char(100) DEFAULT NULL,
1422   `IconName` char(100) DEFAULT NULL,
1423   `gossip_menu_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1424   `minlevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
1425   `maxlevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
1426   `minhealth` int(10) unsigned NOT NULL DEFAULT '0',
1427   `maxhealth` int(10) unsigned NOT NULL DEFAULT '0',
1428   `minmana` int(10) unsigned NOT NULL DEFAULT '0',
1429   `maxmana` int(10) unsigned NOT NULL DEFAULT '0',
1430   `armor` mediumint(8) unsigned NOT NULL DEFAULT '0',
1431   `faction_A` smallint(5) unsigned NOT NULL DEFAULT '0',
1432   `faction_H` smallint(5) unsigned NOT NULL DEFAULT '0',
1433   `npcflag` int(10) unsigned NOT NULL DEFAULT '0',
1434   `speed_walk` float NOT NULL DEFAULT '1' COMMENT 'Result of 2.5/2.5, most common value',
1435   `speed_run` float NOT NULL DEFAULT '1.14286' COMMENT 'Result of 8.0/7.0, most common value',
1436   `scale` float NOT NULL DEFAULT '1',
1437   `rank` tinyint(3) unsigned NOT NULL DEFAULT '0',
1438   `mindmg` float NOT NULL DEFAULT '0',
1439   `maxdmg` float NOT NULL DEFAULT '0',
1440   `dmgschool` tinyint(4) NOT NULL DEFAULT '0',
1441   `attackpower` int(10) unsigned NOT NULL DEFAULT '0',
1442   `dmg_multiplier` float NOT NULL DEFAULT '1',
1443   `baseattacktime` int(10) unsigned NOT NULL DEFAULT '0',
1444   `rangeattacktime` int(10) unsigned NOT NULL DEFAULT '0',
1445   `unit_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
1446   `unit_flags` int(10) unsigned NOT NULL DEFAULT '0',
1447   `unit_flags2` int(10) unsigned NOT NULL DEFAULT '0',
1448   `dynamicflags` int(10) unsigned NOT NULL DEFAULT '0',
1449   `family` tinyint(4) NOT NULL DEFAULT '0',
1450   `trainer_type` tinyint(4) NOT NULL DEFAULT '0',
1451   `trainer_spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
1452   `trainer_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
1453   `trainer_race` tinyint(3) unsigned NOT NULL DEFAULT '0',
1454   `minrangedmg` float NOT NULL DEFAULT '0',
1455   `maxrangedmg` float NOT NULL DEFAULT '0',
1456   `rangedattackpower` smallint(5) unsigned NOT NULL DEFAULT '0',
1457   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
1458   `type_flags` int(10) unsigned NOT NULL DEFAULT '0',
1459   `lootid` mediumint(8) unsigned NOT NULL DEFAULT '0',
1460   `pickpocketloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
1461   `skinloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
1462   `resistance1` smallint(5) NOT NULL DEFAULT '0',
1463   `resistance2` smallint(5) NOT NULL DEFAULT '0',
1464   `resistance3` smallint(5) NOT NULL DEFAULT '0',
1465   `resistance4` smallint(5) NOT NULL DEFAULT '0',
1466   `resistance5` smallint(5) NOT NULL DEFAULT '0',
1467   `resistance6` smallint(5) NOT NULL DEFAULT '0',
1468   `spell1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1469   `spell2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1470   `spell3` mediumint(8) unsigned NOT NULL DEFAULT '0',
1471   `spell4` mediumint(8) unsigned NOT NULL DEFAULT '0',
1472   `PetSpellDataId` mediumint(8) unsigned NOT NULL DEFAULT '0',
1473   `mingold` mediumint(8) unsigned NOT NULL DEFAULT '0',
1474   `maxgold` mediumint(8) unsigned NOT NULL DEFAULT '0',
1475   `AIName` char(64) NOT NULL DEFAULT '',
1476   `MovementType` tinyint(3) unsigned NOT NULL DEFAULT '0',
1477   `InhabitType` tinyint(3) unsigned NOT NULL DEFAULT '3',
1478   `unk16` float NOT NULL DEFAULT '1',
1479   `unk17` float NOT NULL DEFAULT '1',
1480   `RacialLeader` tinyint(3) unsigned NOT NULL DEFAULT '0',
1481   `questItem1` int(11) unsigned NOT NULL DEFAULT '0',
1482   `questItem2` int(11) unsigned NOT NULL DEFAULT '0',
1483   `questItem3` int(11) unsigned NOT NULL DEFAULT '0',
1484   `questItem4` int(11) unsigned NOT NULL DEFAULT '0',
1485   `questItem5` int(11) unsigned NOT NULL DEFAULT '0',
1486   `questItem6` int(11) unsigned NOT NULL DEFAULT '0',
1487   `movementId` int(11) unsigned NOT NULL DEFAULT '0',
1488   `RegenHealth` tinyint(3) unsigned NOT NULL DEFAULT '1',
1489   `vehicle_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1490   `equipment_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1491   `trainer_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1492   `vendor_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1493   `mechanic_immune_mask` int(10) unsigned NOT NULL DEFAULT '0',
1494   `flags_extra` int(10) unsigned NOT NULL DEFAULT '0',
1495   `ScriptName` char(64) NOT NULL DEFAULT '',
1496   PRIMARY KEY (`entry`)
1497 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1498 /*!40101 SET character_set_client = @saved_cs_client */;
1501 -- Dumping data for table `creature_template`
1504 LOCK TABLES `creature_template` WRITE;
1505 /*!40000 ALTER TABLE `creature_template` DISABLE KEYS */;
1506 INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid_1`, `modelid_2`, `modelid_3`, `modelid_4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `minhealth`, `maxhealth`, `minmana`, `maxmana`, `armor`, `faction_A`, `faction_H`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `PetSpellDataId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `unk16`, `unk17`, `RacialLeader`, `questItem1`, `questItem2`, `questItem3`, `questItem4`, `questItem5`, `questItem6`, `movementId`, `RegenHealth`, `vehicle_id`, `equipment_id`, `trainer_id`, `vendor_id`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`) VALUES
1507 (1,0,0,0,0,0,10045,0,0,0,'Waypoint(Only GM can see it)','Visual',NULL,0,1,1,64,64,0,0,5,35,35,0,0.91,1.14286,1,0,2,3,0,10,1,2000,2200,8,4096,0,0,0,0,0,0,0,1,2,100,8,5242886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,7,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,130,'');
1508 /*!40000 ALTER TABLE `creature_template` ENABLE KEYS */;
1509 UNLOCK TABLES;
1512 -- Table structure for table `creature_template_addon`
1515 DROP TABLE IF EXISTS `creature_template_addon`;
1516 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1517 /*!40101 SET character_set_client = utf8 */;
1518 CREATE TABLE `creature_template_addon` (
1519   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
1520   `mount` mediumint(8) unsigned NOT NULL DEFAULT '0',
1521   `bytes1` int(10) unsigned NOT NULL DEFAULT '0',
1522   `b2_0_sheath` tinyint(3) unsigned NOT NULL DEFAULT '0',
1523   `b2_1_pvp_state` tinyint(3) unsigned NOT NULL DEFAULT '0',
1524   `emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
1525   `moveflags` int(10) unsigned NOT NULL DEFAULT '0',
1526   `auras` text,
1527   PRIMARY KEY (`entry`)
1528 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1529 /*!40101 SET character_set_client = @saved_cs_client */;
1532 -- Dumping data for table `creature_template_addon`
1535 LOCK TABLES `creature_template_addon` WRITE;
1536 /*!40000 ALTER TABLE `creature_template_addon` DISABLE KEYS */;
1537 /*!40000 ALTER TABLE `creature_template_addon` ENABLE KEYS */;
1538 UNLOCK TABLES;
1541 -- Table structure for table `creature_template_spells`
1544 DROP TABLE IF EXISTS `creature_template_spells`;
1545 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1546 /*!40101 SET character_set_client = utf8 */;
1547 CREATE TABLE `creature_template_spells` (
1548   `entry` mediumint(8) unsigned NOT NULL,
1549   `spell1` mediumint(8) unsigned NOT NULL,
1550   `spell2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1551   `spell3` mediumint(8) unsigned NOT NULL DEFAULT '0',
1552   `spell4` mediumint(8) unsigned NOT NULL DEFAULT '0',
1553   `spell5` mediumint(8) unsigned NOT NULL DEFAULT '0',
1554   `spell6` mediumint(8) unsigned NOT NULL DEFAULT '0',
1555   `spell7` mediumint(8) unsigned NOT NULL DEFAULT '0',
1556   `spell8` mediumint(8) unsigned NOT NULL DEFAULT '0',
1557   PRIMARY KEY (`entry`)
1558 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System (Spells used by creature)';
1559 /*!40101 SET character_set_client = @saved_cs_client */;
1562 -- Dumping data for table `creature_template_spells`
1565 LOCK TABLES `creature_template_spells` WRITE;
1566 /*!40000 ALTER TABLE `creature_template_spells` DISABLE KEYS */;
1567 /*!40000 ALTER TABLE `creature_template_spells` ENABLE KEYS */;
1568 UNLOCK TABLES;
1571 -- Table structure for table `db_script_string`
1574 DROP TABLE IF EXISTS `db_script_string`;
1575 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1576 /*!40101 SET character_set_client = utf8 */;
1577 CREATE TABLE `db_script_string` (
1578   `entry` int(11) unsigned NOT NULL DEFAULT '0',
1579   `content_default` text NOT NULL,
1580   `content_loc1` text,
1581   `content_loc2` text,
1582   `content_loc3` text,
1583   `content_loc4` text,
1584   `content_loc5` text,
1585   `content_loc6` text,
1586   `content_loc7` text,
1587   `content_loc8` text,
1588   PRIMARY KEY (`entry`)
1589 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1590 /*!40101 SET character_set_client = @saved_cs_client */;
1593 -- Dumping data for table `db_script_string`
1596 LOCK TABLES `db_script_string` WRITE;
1597 /*!40000 ALTER TABLE `db_script_string` DISABLE KEYS */;
1598 /*!40000 ALTER TABLE `db_script_string` ENABLE KEYS */;
1599 UNLOCK TABLES;
1602 -- Table structure for table `db_version`
1605 DROP TABLE IF EXISTS `db_version`;
1606 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1607 /*!40101 SET character_set_client = utf8 */;
1608 CREATE TABLE `db_version` (
1609   `version` varchar(120) DEFAULT NULL,
1610   `creature_ai_version` varchar(120) DEFAULT NULL,
1611   `cache_id` int(10) DEFAULT '0',
1612   `required_12300_01_mangos_mangos_string` bit(1) DEFAULT NULL
1613 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
1614 /*!40101 SET character_set_client = @saved_cs_client */;
1617 -- Dumping data for table `db_version`
1620 LOCK TABLES `db_version` WRITE;
1621 /*!40000 ALTER TABLE `db_version` DISABLE KEYS */;
1622 INSERT INTO `db_version` (`version`, `creature_ai_version`, `cache_id`, `required_12300_01_mangos_mangos_string`) VALUES
1623 ('Mangos default database.','Creature EventAI not provided.',0,NULL);
1624 /*!40000 ALTER TABLE `db_version` ENABLE KEYS */;
1625 UNLOCK TABLES;
1628 -- Table structure for table `disenchant_loot_template`
1631 DROP TABLE IF EXISTS `disenchant_loot_template`;
1632 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1633 /*!40101 SET character_set_client = utf8 */;
1634 CREATE TABLE `disenchant_loot_template` (
1635   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Recommended id selection: item_level*100 + item_quality',
1636   `item` mediumint(8) NOT NULL DEFAULT '0',
1637   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
1638   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
1639   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
1640   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
1641   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
1642   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1643   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1644   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1645   PRIMARY KEY (`entry`,`item`)
1646 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1647 /*!40101 SET character_set_client = @saved_cs_client */;
1650 -- Dumping data for table `disenchant_loot_template`
1653 LOCK TABLES `disenchant_loot_template` WRITE;
1654 /*!40000 ALTER TABLE `disenchant_loot_template` DISABLE KEYS */;
1655 /*!40000 ALTER TABLE `disenchant_loot_template` ENABLE KEYS */;
1656 UNLOCK TABLES;
1659 -- Table structure for table `event_scripts`
1662 DROP TABLE IF EXISTS `event_scripts`;
1663 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1664 /*!40101 SET character_set_client = utf8 */;
1665 CREATE TABLE `event_scripts` (
1666   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1667   `delay` int(10) unsigned NOT NULL DEFAULT '0',
1668   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
1669   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
1670   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
1671   `datalong3` int(10) unsigned NOT NULL DEFAULT '0',
1672   `datalong4` int(10) unsigned NOT NULL DEFAULT '0',
1673   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
1674   `dataint` int(11) NOT NULL DEFAULT '0',
1675   `dataint2` int(11) NOT NULL DEFAULT '0',
1676   `dataint3` int(11) NOT NULL DEFAULT '0',
1677   `dataint4` int(11) NOT NULL DEFAULT '0',
1678   `buddy_entry` int(11) NOT NULL DEFAULT '0',
1679   `search_radius` int(11) NOT NULL DEFAULT '0',
1680   `x` float NOT NULL DEFAULT '0',
1681   `y` float NOT NULL DEFAULT '0',
1682   `z` float NOT NULL DEFAULT '0',
1683   `o` float NOT NULL DEFAULT '0',
1684   `comments` varchar(255) NOT NULL
1685 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1686 /*!40101 SET character_set_client = @saved_cs_client */;
1689 -- Dumping data for table `event_scripts`
1692 LOCK TABLES `event_scripts` WRITE;
1693 /*!40000 ALTER TABLE `event_scripts` DISABLE KEYS */;
1694 /*!40000 ALTER TABLE `event_scripts` ENABLE KEYS */;
1695 UNLOCK TABLES;
1698 -- Table structure for table `exploration_basexp`
1701 DROP TABLE IF EXISTS `exploration_basexp`;
1702 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1703 /*!40101 SET character_set_client = utf8 */;
1704 CREATE TABLE `exploration_basexp` (
1705   `level` tinyint(4) NOT NULL DEFAULT '0',
1706   `basexp` mediumint(9) NOT NULL DEFAULT '0',
1707   PRIMARY KEY (`level`)
1708 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Exploration System';
1709 /*!40101 SET character_set_client = @saved_cs_client */;
1712 -- Dumping data for table `exploration_basexp`
1715 LOCK TABLES `exploration_basexp` WRITE;
1716 /*!40000 ALTER TABLE `exploration_basexp` DISABLE KEYS */;
1717 INSERT INTO `exploration_basexp` (`level`, `basexp`) VALUES
1718 (0,0),
1719 (1,5),
1720 (2,15),
1721 (3,25),
1722 (4,35),
1723 (5,45),
1724 (6,55),
1725 (7,65),
1726 (8,70),
1727 (9,80),
1728 (10,85),
1729 (11,90),
1730 (12,90),
1731 (13,90),
1732 (14,100),
1733 (15,105),
1734 (16,115),
1735 (17,125),
1736 (18,135),
1737 (19,145),
1738 (20,155),
1739 (21,165),
1740 (22,175),
1741 (23,185),
1742 (24,195),
1743 (25,200),
1744 (26,210),
1745 (27,220),
1746 (28,230),
1747 (29,240),
1748 (30,245),
1749 (31,250),
1750 (32,255),
1751 (33,265),
1752 (34,270),
1753 (35,275),
1754 (36,280),
1755 (37,285),
1756 (38,285),
1757 (39,300),
1758 (40,315),
1759 (41,330),
1760 (42,345),
1761 (43,360),
1762 (44,375),
1763 (45,390),
1764 (46,405),
1765 (47,420),
1766 (48,440),
1767 (49,455),
1768 (50,470),
1769 (51,490),
1770 (52,510),
1771 (53,530),
1772 (54,540),
1773 (55,560),
1774 (56,580),
1775 (57,600),
1776 (58,620),
1777 (59,640),
1778 (60,660),
1779 (61,970),
1780 (62,1000),
1781 (63,1050),
1782 (64,1080),
1783 (65,1100),
1784 (66,1130),
1785 (67,1160),
1786 (68,1200),
1787 (69,1230),
1788 (70,1250);
1789 /*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */;
1790 UNLOCK TABLES;
1793 -- Table structure for table `fishing_loot_template`
1796 DROP TABLE IF EXISTS `fishing_loot_template`;
1797 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1798 /*!40101 SET character_set_client = utf8 */;
1799 CREATE TABLE `fishing_loot_template` (
1800   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'entry 0 used for junk loot at fishing fail (if allowed by config option)',
1801   `item` mediumint(8) NOT NULL DEFAULT '0',
1802   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
1803   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
1804   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
1805   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
1806   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
1807   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
1808   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
1809   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1810   PRIMARY KEY (`entry`,`item`)
1811 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1812 /*!40101 SET character_set_client = @saved_cs_client */;
1815 -- Dumping data for table `fishing_loot_template`
1818 LOCK TABLES `fishing_loot_template` WRITE;
1819 /*!40000 ALTER TABLE `fishing_loot_template` DISABLE KEYS */;
1820 /*!40000 ALTER TABLE `fishing_loot_template` ENABLE KEYS */;
1821 UNLOCK TABLES;
1824 -- Table structure for table `game_event`
1827 DROP TABLE IF EXISTS `game_event`;
1828 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1829 /*!40101 SET character_set_client = utf8 */;
1830 CREATE TABLE `game_event` (
1831   `entry` mediumint(8) unsigned NOT NULL COMMENT 'Entry of the game event',
1832   `start_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Absolute start date, the event will never start before',
1833   `end_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Absolute end date, the event will never start afler',
1834   `occurence` bigint(20) unsigned NOT NULL DEFAULT '86400' COMMENT 'Delay in minutes between occurences of the event',
1835   `length` bigint(20) unsigned NOT NULL DEFAULT '43200' COMMENT 'Length in minutes of the event',
1836   `holiday` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Client side holiday id',
1837   `description` varchar(255) DEFAULT NULL COMMENT 'Description of the event displayed in console',
1838   PRIMARY KEY (`entry`)
1839 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1840 /*!40101 SET character_set_client = @saved_cs_client */;
1843 -- Dumping data for table `game_event`
1846 LOCK TABLES `game_event` WRITE;
1847 /*!40000 ALTER TABLE `game_event` DISABLE KEYS */;
1848 /*!40000 ALTER TABLE `game_event` ENABLE KEYS */;
1849 UNLOCK TABLES;
1852 -- Table structure for table `game_event_creature`
1855 DROP TABLE IF EXISTS `game_event_creature`;
1856 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1857 /*!40101 SET character_set_client = utf8 */;
1858 CREATE TABLE `game_event_creature` (
1859   `guid` int(10) unsigned NOT NULL,
1860   `event` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Negatives value to remove during event and ignore pool grouping, positive value for spawn during event and if guid is part of pool then al pool memebers must be listed as part of event spawn.',
1861   PRIMARY KEY (`guid`)
1862 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1863 /*!40101 SET character_set_client = @saved_cs_client */;
1866 -- Dumping data for table `game_event_creature`
1869 LOCK TABLES `game_event_creature` WRITE;
1870 /*!40000 ALTER TABLE `game_event_creature` DISABLE KEYS */;
1871 /*!40000 ALTER TABLE `game_event_creature` ENABLE KEYS */;
1872 UNLOCK TABLES;
1875 -- Table structure for table `game_event_creature_data`
1878 DROP TABLE IF EXISTS `game_event_creature_data`;
1879 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1880 /*!40101 SET character_set_client = utf8 */;
1881 CREATE TABLE `game_event_creature_data` (
1882   `guid` int(10) unsigned NOT NULL DEFAULT '0',
1883   `entry_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1884   `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
1885   `equipment_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1886   `spell_start` mediumint(8) unsigned NOT NULL DEFAULT '0',
1887   `spell_end` mediumint(8) unsigned NOT NULL DEFAULT '0',
1888   `event` smallint(5) unsigned NOT NULL DEFAULT '0',
1889   PRIMARY KEY (`guid`,`event`)
1890 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1891 /*!40101 SET character_set_client = @saved_cs_client */;
1894 -- Dumping data for table `game_event_creature_data`
1897 LOCK TABLES `game_event_creature_data` WRITE;
1898 /*!40000 ALTER TABLE `game_event_creature_data` DISABLE KEYS */;
1899 /*!40000 ALTER TABLE `game_event_creature_data` ENABLE KEYS */;
1900 UNLOCK TABLES;
1903 -- Table structure for table `game_event_gameobject`
1906 DROP TABLE IF EXISTS `game_event_gameobject`;
1907 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1908 /*!40101 SET character_set_client = utf8 */;
1909 CREATE TABLE `game_event_gameobject` (
1910   `guid` int(10) unsigned NOT NULL,
1911   `event` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Negatives value to remove during event and ignore pool grouping, positive value for spawn during event and if guid is part of pool then al pool memebers must be listed as part of event spawn.',
1912   PRIMARY KEY (`guid`)
1913 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1914 /*!40101 SET character_set_client = @saved_cs_client */;
1917 -- Dumping data for table `game_event_gameobject`
1920 LOCK TABLES `game_event_gameobject` WRITE;
1921 /*!40000 ALTER TABLE `game_event_gameobject` DISABLE KEYS */;
1922 /*!40000 ALTER TABLE `game_event_gameobject` ENABLE KEYS */;
1923 UNLOCK TABLES;
1926 -- Table structure for table `game_event_mail`
1929 DROP TABLE IF EXISTS `game_event_mail`;
1930 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1931 /*!40101 SET character_set_client = utf8 */;
1932 CREATE TABLE `game_event_mail` (
1933   `event` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Negatives value to send at event stop, positive value for send at event start.',
1934   `raceMask` mediumint(8) unsigned NOT NULL DEFAULT '0',
1935   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0',
1936   `mailTemplateId` mediumint(8) unsigned NOT NULL DEFAULT '0',
1937   `senderEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
1938   PRIMARY KEY (`event`,`raceMask`,`quest`)
1939 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Game event system';
1940 /*!40101 SET character_set_client = @saved_cs_client */;
1943 -- Dumping data for table `game_event_mail`
1946 LOCK TABLES `game_event_mail` WRITE;
1947 /*!40000 ALTER TABLE `game_event_mail` DISABLE KEYS */;
1948 /*!40000 ALTER TABLE `game_event_mail` ENABLE KEYS */;
1949 UNLOCK TABLES;
1952 -- Table structure for table `game_event_quest`
1955 DROP TABLE IF EXISTS `game_event_quest`;
1956 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1957 /*!40101 SET character_set_client = utf8 */;
1958 CREATE TABLE `game_event_quest` (
1959   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'entry from quest_template',
1960   `event` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'entry from game_event',
1961   PRIMARY KEY (`quest`,`event`)
1962 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Game event system';
1963 /*!40101 SET character_set_client = @saved_cs_client */;
1966 -- Dumping data for table `game_event_quest`
1969 LOCK TABLES `game_event_quest` WRITE;
1970 /*!40000 ALTER TABLE `game_event_quest` DISABLE KEYS */;
1971 /*!40000 ALTER TABLE `game_event_quest` ENABLE KEYS */;
1972 UNLOCK TABLES;
1975 -- Table structure for table `game_graveyard_zone`
1978 DROP TABLE IF EXISTS `game_graveyard_zone`;
1979 /*!40101 SET @saved_cs_client     = @@character_set_client */;
1980 /*!40101 SET character_set_client = utf8 */;
1981 CREATE TABLE `game_graveyard_zone` (
1982   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
1983   `ghost_zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
1984   `faction` smallint(5) unsigned NOT NULL DEFAULT '0',
1985   PRIMARY KEY (`id`,`ghost_zone`)
1986 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
1987 /*!40101 SET character_set_client = @saved_cs_client */;
1990 -- Dumping data for table `game_graveyard_zone`
1993 LOCK TABLES `game_graveyard_zone` WRITE;
1994 /*!40000 ALTER TABLE `game_graveyard_zone` DISABLE KEYS */;
1995 /*!40000 ALTER TABLE `game_graveyard_zone` ENABLE KEYS */;
1996 UNLOCK TABLES;
1999 -- Table structure for table `game_tele`
2002 DROP TABLE IF EXISTS `game_tele`;
2003 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2004 /*!40101 SET character_set_client = utf8 */;
2005 CREATE TABLE `game_tele` (
2006   `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
2007   `position_x` float NOT NULL DEFAULT '0',
2008   `position_y` float NOT NULL DEFAULT '0',
2009   `position_z` float NOT NULL DEFAULT '0',
2010   `orientation` float NOT NULL DEFAULT '0',
2011   `map` smallint(5) unsigned NOT NULL DEFAULT '0',
2012   `name` varchar(100) NOT NULL DEFAULT '',
2013   PRIMARY KEY (`id`)
2014 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tele Command';
2015 /*!40101 SET character_set_client = @saved_cs_client */;
2018 -- Dumping data for table `game_tele`
2021 LOCK TABLES `game_tele` WRITE;
2022 /*!40000 ALTER TABLE `game_tele` DISABLE KEYS */;
2023 /*!40000 ALTER TABLE `game_tele` ENABLE KEYS */;
2024 UNLOCK TABLES;
2027 -- Table structure for table `game_weather`
2030 DROP TABLE IF EXISTS `game_weather`;
2031 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2032 /*!40101 SET character_set_client = utf8 */;
2033 CREATE TABLE `game_weather` (
2034   `zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
2035   `spring_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2036   `spring_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2037   `spring_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2038   `summer_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2039   `summer_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2040   `summer_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2041   `fall_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2042   `fall_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2043   `fall_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2044   `winter_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2045   `winter_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2046   `winter_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
2047   PRIMARY KEY (`zone`)
2048 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Weather System';
2049 /*!40101 SET character_set_client = @saved_cs_client */;
2052 -- Dumping data for table `game_weather`
2055 LOCK TABLES `game_weather` WRITE;
2056 /*!40000 ALTER TABLE `game_weather` DISABLE KEYS */;
2057 /*!40000 ALTER TABLE `game_weather` ENABLE KEYS */;
2058 UNLOCK TABLES;
2061 -- Table structure for table `gameobject`
2064 DROP TABLE IF EXISTS `gameobject`;
2065 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2066 /*!40101 SET character_set_client = utf8 */;
2067 CREATE TABLE `gameobject` (
2068   `guid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Global Unique Identifier',
2069   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Gameobject Identifier',
2070   `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
2071   `spawnMask` tinyint(3) unsigned NOT NULL DEFAULT '1',
2072   `phaseMask` smallint(5) unsigned NOT NULL DEFAULT '1',
2073   `position_x` float NOT NULL DEFAULT '0',
2074   `position_y` float NOT NULL DEFAULT '0',
2075   `position_z` float NOT NULL DEFAULT '0',
2076   `orientation` float NOT NULL DEFAULT '0',
2077   `rotation0` float NOT NULL DEFAULT '0',
2078   `rotation1` float NOT NULL DEFAULT '0',
2079   `rotation2` float NOT NULL DEFAULT '0',
2080   `rotation3` float NOT NULL DEFAULT '0',
2081   `spawntimesecs` int(11) NOT NULL DEFAULT '0',
2082   `animprogress` tinyint(3) unsigned NOT NULL DEFAULT '0',
2083   `state` tinyint(3) unsigned NOT NULL DEFAULT '0',
2084   PRIMARY KEY (`guid`),
2085   KEY `idx_map` (`map`),
2086   KEY `idx_id` (`id`)
2087 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
2088 /*!40101 SET character_set_client = @saved_cs_client */;
2091 -- Dumping data for table `gameobject`
2094 LOCK TABLES `gameobject` WRITE;
2095 /*!40000 ALTER TABLE `gameobject` DISABLE KEYS */;
2096 /*!40000 ALTER TABLE `gameobject` ENABLE KEYS */;
2097 UNLOCK TABLES;
2100 -- Table structure for table `gameobject_addon`
2103 DROP TABLE IF EXISTS `gameobject_addon`;
2104 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2105 /*!40101 SET character_set_client = utf8 */;
2106 CREATE TABLE `gameobject_addon` (
2107   `guid` int(10) unsigned NOT NULL DEFAULT '0',
2108   `path_rotation0` float NOT NULL DEFAULT '0',
2109   `path_rotation1` float NOT NULL DEFAULT '0',
2110   `path_rotation2` float NOT NULL DEFAULT '0',
2111   `path_rotation3` float NOT NULL DEFAULT '1',
2112   PRIMARY KEY (`guid`)
2113 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
2114 /*!40101 SET character_set_client = @saved_cs_client */;
2117 -- Dumping data for table `gameobject_addon`
2120 LOCK TABLES `gameobject_addon` WRITE;
2121 /*!40000 ALTER TABLE `gameobject_addon` DISABLE KEYS */;
2122 /*!40000 ALTER TABLE `gameobject_addon` ENABLE KEYS */;
2123 UNLOCK TABLES;
2126 -- Table structure for table `gameobject_battleground`
2129 DROP TABLE IF EXISTS `gameobject_battleground`;
2130 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2131 /*!40101 SET character_set_client = utf8 */;
2132 CREATE TABLE `gameobject_battleground` (
2133   `guid` int(10) unsigned NOT NULL COMMENT 'GameObject''s GUID',
2134   `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
2135   `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
2136   PRIMARY KEY (`guid`)
2137 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='GameObject battleground indexing system';
2138 /*!40101 SET character_set_client = @saved_cs_client */;
2141 -- Dumping data for table `gameobject_battleground`
2144 LOCK TABLES `gameobject_battleground` WRITE;
2145 /*!40000 ALTER TABLE `gameobject_battleground` DISABLE KEYS */;
2146 /*!40000 ALTER TABLE `gameobject_battleground` ENABLE KEYS */;
2147 UNLOCK TABLES;
2150 -- Table structure for table `gameobject_involvedrelation`
2153 DROP TABLE IF EXISTS `gameobject_involvedrelation`;
2154 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2155 /*!40101 SET character_set_client = utf8 */;
2156 CREATE TABLE `gameobject_involvedrelation` (
2157   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2158   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
2159   PRIMARY KEY (`id`,`quest`)
2160 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2161 /*!40101 SET character_set_client = @saved_cs_client */;
2164 -- Dumping data for table `gameobject_involvedrelation`
2167 LOCK TABLES `gameobject_involvedrelation` WRITE;
2168 /*!40000 ALTER TABLE `gameobject_involvedrelation` DISABLE KEYS */;
2169 /*!40000 ALTER TABLE `gameobject_involvedrelation` ENABLE KEYS */;
2170 UNLOCK TABLES;
2173 -- Table structure for table `gameobject_loot_template`
2176 DROP TABLE IF EXISTS `gameobject_loot_template`;
2177 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2178 /*!40101 SET character_set_client = utf8 */;
2179 CREATE TABLE `gameobject_loot_template` (
2180   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
2181   `item` mediumint(8) NOT NULL DEFAULT '0',
2182   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
2183   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
2184   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
2185   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
2186   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
2187   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
2188   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
2189   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2190   PRIMARY KEY (`entry`,`item`)
2191 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
2192 /*!40101 SET character_set_client = @saved_cs_client */;
2195 -- Dumping data for table `gameobject_loot_template`
2198 LOCK TABLES `gameobject_loot_template` WRITE;
2199 /*!40000 ALTER TABLE `gameobject_loot_template` DISABLE KEYS */;
2200 /*!40000 ALTER TABLE `gameobject_loot_template` ENABLE KEYS */;
2201 UNLOCK TABLES;
2204 -- Table structure for table `gameobject_questrelation`
2207 DROP TABLE IF EXISTS `gameobject_questrelation`;
2208 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2209 /*!40101 SET character_set_client = utf8 */;
2210 CREATE TABLE `gameobject_questrelation` (
2211   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2212   `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
2213   PRIMARY KEY (`id`,`quest`)
2214 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2215 /*!40101 SET character_set_client = @saved_cs_client */;
2218 -- Dumping data for table `gameobject_questrelation`
2221 LOCK TABLES `gameobject_questrelation` WRITE;
2222 /*!40000 ALTER TABLE `gameobject_questrelation` DISABLE KEYS */;
2223 /*!40000 ALTER TABLE `gameobject_questrelation` ENABLE KEYS */;
2224 UNLOCK TABLES;
2227 -- Table structure for table `gameobject_scripts`
2230 DROP TABLE IF EXISTS `gameobject_scripts`;
2231 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2232 /*!40101 SET character_set_client = utf8 */;
2233 CREATE TABLE `gameobject_scripts` (
2234   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2235   `delay` int(10) unsigned NOT NULL DEFAULT '0',
2236   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
2237   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
2238   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
2239   `buddy_entry` int(10) unsigned NOT NULL DEFAULT '0',
2240   `search_radius` int(10) unsigned NOT NULL DEFAULT '0',
2241   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
2242   `dataint` int(11) NOT NULL DEFAULT '0',
2243   `dataint2` int(11) NOT NULL DEFAULT '0',
2244   `dataint3` int(11) NOT NULL DEFAULT '0',
2245   `dataint4` int(11) NOT NULL DEFAULT '0',
2246   `x` float NOT NULL DEFAULT '0',
2247   `y` float NOT NULL DEFAULT '0',
2248   `z` float NOT NULL DEFAULT '0',
2249   `o` float NOT NULL DEFAULT '0',
2250   `comments` varchar(255) NOT NULL
2251 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2252 /*!40101 SET character_set_client = @saved_cs_client */;
2255 -- Dumping data for table `gameobject_scripts`
2258 LOCK TABLES `gameobject_scripts` WRITE;
2259 /*!40000 ALTER TABLE `gameobject_scripts` DISABLE KEYS */;
2260 /*!40000 ALTER TABLE `gameobject_scripts` ENABLE KEYS */;
2261 UNLOCK TABLES;
2264 -- Table structure for table `gameobject_template`
2267 DROP TABLE IF EXISTS `gameobject_template`;
2268 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2269 /*!40101 SET character_set_client = utf8 */;
2270 CREATE TABLE `gameobject_template` (
2271   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
2272   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
2273   `displayId` mediumint(8) unsigned NOT NULL DEFAULT '0',
2274   `name` varchar(100) NOT NULL DEFAULT '',
2275   `IconName` varchar(100) NOT NULL DEFAULT '',
2276   `castBarCaption` varchar(100) NOT NULL DEFAULT '',
2277   `unk1` varchar(100) NOT NULL DEFAULT '',
2278   `faction` smallint(5) unsigned NOT NULL DEFAULT '0',
2279   `flags` int(10) unsigned NOT NULL DEFAULT '0',
2280   `size` float NOT NULL DEFAULT '1',
2281   `questItem1` int(11) unsigned NOT NULL DEFAULT '0',
2282   `questItem2` int(11) unsigned NOT NULL DEFAULT '0',
2283   `questItem3` int(11) unsigned NOT NULL DEFAULT '0',
2284   `questItem4` int(11) unsigned NOT NULL DEFAULT '0',
2285   `questItem5` int(11) unsigned NOT NULL DEFAULT '0',
2286   `questItem6` int(11) unsigned NOT NULL DEFAULT '0',
2287   `data0` int(10) unsigned NOT NULL DEFAULT '0',
2288   `data1` int(10) unsigned NOT NULL DEFAULT '0',
2289   `data2` int(10) unsigned NOT NULL DEFAULT '0',
2290   `data3` int(10) unsigned NOT NULL DEFAULT '0',
2291   `data4` int(10) unsigned NOT NULL DEFAULT '0',
2292   `data5` int(10) unsigned NOT NULL DEFAULT '0',
2293   `data6` int(10) unsigned NOT NULL DEFAULT '0',
2294   `data7` int(10) unsigned NOT NULL DEFAULT '0',
2295   `data8` int(10) unsigned NOT NULL DEFAULT '0',
2296   `data9` int(10) unsigned NOT NULL DEFAULT '0',
2297   `data10` int(10) unsigned NOT NULL DEFAULT '0',
2298   `data11` int(10) unsigned NOT NULL DEFAULT '0',
2299   `data12` int(10) unsigned NOT NULL DEFAULT '0',
2300   `data13` int(10) unsigned NOT NULL DEFAULT '0',
2301   `data14` int(10) unsigned NOT NULL DEFAULT '0',
2302   `data15` int(10) unsigned NOT NULL DEFAULT '0',
2303   `data16` int(10) unsigned NOT NULL DEFAULT '0',
2304   `data17` int(10) unsigned NOT NULL DEFAULT '0',
2305   `data18` int(10) unsigned NOT NULL DEFAULT '0',
2306   `data19` int(10) unsigned NOT NULL DEFAULT '0',
2307   `data20` int(10) unsigned NOT NULL DEFAULT '0',
2308   `data21` int(10) unsigned NOT NULL DEFAULT '0',
2309   `data22` int(10) unsigned NOT NULL DEFAULT '0',
2310   `data23` int(10) unsigned NOT NULL DEFAULT '0',
2311   `data24` int(10) unsigned NOT NULL DEFAULT '0',
2312   `data25` int(10) unsigned NOT NULL DEFAULT '0',
2313   `data26` int(10) unsigned NOT NULL DEFAULT '0',
2314   `data27` int(10) unsigned NOT NULL DEFAULT '0',
2315   `data28` int(10) unsigned NOT NULL DEFAULT '0',
2316   `data29` int(10) unsigned NOT NULL DEFAULT '0',
2317   `data30` int(10) unsigned NOT NULL DEFAULT '0',
2318   `data31` int(10) unsigned NOT NULL DEFAULT '0',
2319   `unk2` int(10) unsigned NOT NULL DEFAULT '0',
2320   `mingold` mediumint(8) unsigned NOT NULL DEFAULT '0',
2321   `maxgold` mediumint(8) unsigned NOT NULL DEFAULT '0',
2322   `ScriptName` varchar(64) NOT NULL DEFAULT '',
2323   PRIMARY KEY (`entry`)
2324 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
2325 /*!40101 SET character_set_client = @saved_cs_client */;
2328 -- Dumping data for table `gameobject_template`
2331 LOCK TABLES `gameobject_template` WRITE;
2332 /*!40000 ALTER TABLE `gameobject_template` DISABLE KEYS */;
2333 /*!40000 ALTER TABLE `gameobject_template` ENABLE KEYS */;
2334 UNLOCK TABLES;
2337 -- Table structure for table `gameobject_template_scripts`
2340 DROP TABLE IF EXISTS `gameobject_template_scripts`;
2341 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2342 /*!40101 SET character_set_client = utf8 */;
2343 CREATE TABLE `gameobject_template_scripts` (
2344   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2345   `delay` int(10) unsigned NOT NULL DEFAULT '0',
2346   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
2347   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
2348   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
2349   `buddy_entry` int(10) unsigned NOT NULL DEFAULT '0',
2350   `search_radius` int(10) unsigned NOT NULL DEFAULT '0',
2351   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
2352   `dataint` int(11) NOT NULL DEFAULT '0',
2353   `dataint2` int(11) NOT NULL DEFAULT '0',
2354   `dataint3` int(11) NOT NULL DEFAULT '0',
2355   `dataint4` int(11) NOT NULL DEFAULT '0',
2356   `x` float NOT NULL DEFAULT '0',
2357   `y` float NOT NULL DEFAULT '0',
2358   `z` float NOT NULL DEFAULT '0',
2359   `o` float NOT NULL DEFAULT '0',
2360   `comments` varchar(255) NOT NULL
2361 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2362 /*!40101 SET character_set_client = @saved_cs_client */;
2365 -- Dumping data for table `gameobject_template_scripts`
2368 LOCK TABLES `gameobject_template_scripts` WRITE;
2369 /*!40000 ALTER TABLE `gameobject_template_scripts` DISABLE KEYS */;
2370 /*!40000 ALTER TABLE `gameobject_template_scripts` ENABLE KEYS */;
2371 UNLOCK TABLES;
2374 -- Table structure for table `gossip_menu`
2377 DROP TABLE IF EXISTS `gossip_menu`;
2378 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2379 /*!40101 SET character_set_client = utf8 */;
2380 CREATE TABLE `gossip_menu` (
2381   `entry` smallint(6) unsigned NOT NULL DEFAULT '0',
2382   `text_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2383   `script_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'script in `gossip_scripts` - will be executed on GossipHello',
2384   `cond_1` tinyint(3) unsigned NOT NULL DEFAULT '0',
2385   `cond_1_val_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
2386   `cond_1_val_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
2387   `cond_2` tinyint(3) unsigned NOT NULL DEFAULT '0',
2388   `cond_2_val_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
2389   `cond_2_val_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
2390   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2391   PRIMARY KEY (`entry`,`text_id`,`script_id`)
2392 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2393 /*!40101 SET character_set_client = @saved_cs_client */;
2396 -- Dumping data for table `gossip_menu`
2399 LOCK TABLES `gossip_menu` WRITE;
2400 /*!40000 ALTER TABLE `gossip_menu` DISABLE KEYS */;
2401 /*!40000 ALTER TABLE `gossip_menu` ENABLE KEYS */;
2402 UNLOCK TABLES;
2405 -- Table structure for table `gossip_menu_option`
2408 DROP TABLE IF EXISTS `gossip_menu_option`;
2409 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2410 /*!40101 SET character_set_client = utf8 */;
2411 CREATE TABLE `gossip_menu_option` (
2412   `menu_id` smallint(6) unsigned NOT NULL DEFAULT '0',
2413   `id` smallint(6) unsigned NOT NULL DEFAULT '0',
2414   `option_icon` mediumint(8) unsigned NOT NULL DEFAULT '0',
2415   `option_text` text,
2416   `option_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
2417   `npc_option_npcflag` int(10) unsigned NOT NULL DEFAULT '0',
2418   `action_menu_id` mediumint(8) NOT NULL DEFAULT '0',
2419   `action_poi_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2420   `action_script_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2421   `box_coded` tinyint(3) unsigned NOT NULL DEFAULT '0',
2422   `box_money` int(11) unsigned NOT NULL DEFAULT '0',
2423   `box_text` text,
2424   `cond_1` tinyint(3) unsigned NOT NULL DEFAULT '0',
2425   `cond_1_val_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
2426   `cond_1_val_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
2427   `cond_2` tinyint(3) unsigned NOT NULL DEFAULT '0',
2428   `cond_2_val_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
2429   `cond_2_val_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
2430   `cond_3` tinyint(3) unsigned NOT NULL DEFAULT '0',
2431   `cond_3_val_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
2432   `cond_3_val_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
2433   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2434   PRIMARY KEY (`menu_id`,`id`)
2435 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2436 /*!40101 SET character_set_client = @saved_cs_client */;
2439 -- Dumping data for table `gossip_menu_option`
2442 LOCK TABLES `gossip_menu_option` WRITE;
2443 /*!40000 ALTER TABLE `gossip_menu_option` DISABLE KEYS */;
2444 INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `action_script_id`, `box_coded`, `box_money`, `box_text`, `cond_1`, `cond_1_val_1`, `cond_1_val_2`, `cond_2`, `cond_2_val_1`, `cond_2_val_2`, `cond_3`, `cond_3_val_1`, `cond_3_val_2`, `condition_id`) VALUES
2445 (0,0,0,'GOSSIP_OPTION_QUESTGIVER',2,2,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2446 (0,1,1,'GOSSIP_OPTION_VENDOR',3,128,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2447 (0,2,2,'GOSSIP_OPTION_TAXIVENDOR',4,8192,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2448 (0,3,3,'GOSSIP_OPTION_TRAINER',5,16,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2449 (0,4,4,'GOSSIP_OPTION_SPIRITHEALER',6,16384,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2450 (0,5,4,'GOSSIP_OPTION_SPIRITGUIDE',7,32768,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2451 (0,6,5,'GOSSIP_OPTION_INNKEEPER',8,65536,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2452 (0,7,6,'GOSSIP_OPTION_BANKER',9,131072,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2453 (0,8,7,'GOSSIP_OPTION_PETITIONER',10,262144,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2454 (0,9,8,'GOSSIP_OPTION_TABARDDESIGNER',11,524288,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2455 (0,10,9,'GOSSIP_OPTION_BATTLEFIELD',12,1048576,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2456 (0,11,6,'GOSSIP_OPTION_AUCTIONEER',13,2097152,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2457 (0,12,0,'GOSSIP_OPTION_STABLEPET',14,4194304,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2458 (0,13,1,'GOSSIP_OPTION_ARMORER',15,4096,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2459 (0,14,0,'GOSSIP_OPTION_UNLEARNTALENTS',16,16,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0),
2460 (0,15,2,'GOSSIP_OPTION_UNLEARNPETSKILLS',17,16,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0,0);
2461 /*!40000 ALTER TABLE `gossip_menu_option` ENABLE KEYS */;
2462 UNLOCK TABLES;
2465 -- Table structure for table `gossip_scripts`
2468 DROP TABLE IF EXISTS `gossip_scripts`;
2469 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2470 /*!40101 SET character_set_client = utf8 */;
2471 CREATE TABLE `gossip_scripts` (
2472   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
2473   `delay` int(10) unsigned NOT NULL DEFAULT '0',
2474   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
2475   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
2476   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
2477   `buddy_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
2478   `search_radius` mediumint(8) unsigned NOT NULL DEFAULT '0',
2479   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
2480   `dataint` int(11) NOT NULL DEFAULT '0',
2481   `dataint2` int(11) NOT NULL DEFAULT '0',
2482   `dataint3` int(11) NOT NULL DEFAULT '0',
2483   `dataint4` int(11) NOT NULL DEFAULT '0',
2484   `x` float NOT NULL DEFAULT '0',
2485   `y` float NOT NULL DEFAULT '0',
2486   `z` float NOT NULL DEFAULT '0',
2487   `o` float NOT NULL DEFAULT '0',
2488   `comments` varchar(255) NOT NULL
2489 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2490 /*!40101 SET character_set_client = @saved_cs_client */;
2493 -- Dumping data for table `gossip_scripts`
2496 LOCK TABLES `gossip_scripts` WRITE;
2497 /*!40000 ALTER TABLE `gossip_scripts` DISABLE KEYS */;
2498 /*!40000 ALTER TABLE `gossip_scripts` ENABLE KEYS */;
2499 UNLOCK TABLES;
2502 -- Table structure for table `instance_encounters`
2505 DROP TABLE IF EXISTS `instance_encounters`;
2506 /*!40101 SET @saved_cs_client     = @@character_set_client */;
2507 /*!40101 SET character_set_client = utf8 */;
2508 CREATE TABLE `instance_encounters` (
2509   `entry` int(10) unsigned NOT NULL COMMENT 'Unique entry from DungeonEncounter.dbc',
2510   `creditType` tinyint(3) unsigned NOT NULL DEFAULT '0',
2511   `creditEntry` int(10) unsigned NOT NULL DEFAULT '0',
2512   `lastEncounterDungeon` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'If not 0, LfgDungeon.dbc entry for the instance it is last encounter in',
2513   PRIMARY KEY (`entry`)
2514 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2515 /*!40101 SET character_set_client = @saved_cs_client */;
2518 -- Dumping data for table `instance_encounters`
2521 LOCK TABLES `instance_encounters` WRITE;
2522 /*!40000 ALTER TABLE `instance_encounters` DISABLE KEYS */;
2523 INSERT INTO `instance_encounters` (`entry`, `creditType`, `creditEntry`, `lastEncounterDungeon`) VALUES
2524 (161,0,644,0),
2525 (162,0,643,0),
2526 (163,0,1763,0),
2527 (164,0,646,0),
2528 (165,0,645,0),
2529 (166,0,647,0),
2530 (167,0,639,6),
2531 (201,0,18371,0),
2532 (202,0,18373,149),
2533 (203,0,18341,0),
2534 (204,0,18343,0),
2535 (205,0,18344,148),
2536 (206,0,18472,0),
2537 (207,0,18473,150),
2538 (208,0,18731,0),
2539 (209,0,18667,0),
2540 (210,0,18732,0),
2541 (211,0,18708,151),
2542 (212,0,29309,0),
2543 (213,0,29308,0),
2544 (214,0,29310,0),
2545 (215,0,29311,218),
2546 (216,0,28684,0),
2547 (217,0,28921,0),
2548 (218,0,29120,204),
2549 (219,0,4887,0),
2550 (220,0,4831,0),
2551 (221,0,6243,0),
2552 (222,0,12902,0),
2553 (224,0,4830,0),
2554 (225,0,4832,0),
2555 (226,0,4829,10),
2556 (227,0,9018,30),
2557 (228,0,9025,0),
2558 (229,0,9319,0),
2559 (230,0,10096,0),
2560 (231,0,9024,0),
2561 (232,0,9017,0),
2562 (233,0,9041,0),
2563 (234,0,9056,0),
2564 (235,0,9016,0),
2565 (236,0,9033,0),
2566 (237,0,8983,0),
2567 (238,0,9537,0),
2568 (239,0,9502,0),
2569 (240,0,9543,0),
2570 (241,0,9499,0),
2571 (242,0,9156,0),
2572 (243,0,9035,0),
2573 (244,0,9938,0),
2574 (245,0,9019,276),
2575 (246,0,18371,0),
2576 (247,0,18373,178),
2577 (248,0,18341,0),
2578 (249,0,18343,0),
2579 (250,0,22930,0),
2580 (251,0,18344,179),
2581 (252,0,18472,0),
2582 (253,0,23035,0),
2583 (254,0,18473,180),
2584 (255,0,18731,0),
2585 (256,0,18667,0),
2586 (257,0,18732,0),
2587 (258,0,18708,181),
2588 (259,0,29309,0),
2589 (260,0,29308,0),
2590 (261,0,29310,0),
2591 (262,0,30258,0),
2592 (263,0,29311,219),
2593 (264,0,28684,0),
2594 (265,0,28921,0),
2595 (266,0,29120,241),
2596 (267,0,9196,0),
2597 (268,0,9236,0),
2598 (269,0,9237,0),
2599 (270,0,10596,0),
2600 (271,0,10584,0),
2601 (272,0,9736,0),
2602 (273,0,10268,0),
2603 (274,0,10220,0),
2604 (275,0,9568,32),
2605 (276,0,9816,0),
2606 (277,0,10264,0),
2607 (278,0,10429,0),
2608 (279,0,10430,0),
2609 (280,0,10363,44),
2610 (281,0,18096,170),
2611 (282,0,18096,183),
2612 (283,0,17862,0),
2613 (284,0,17862,0),
2614 (285,0,17848,0),
2615 (286,0,17848,0),
2616 (287,0,17879,0),
2617 (288,0,17879,0),
2618 (289,0,17880,0),
2619 (290,0,17880,0),
2620 (291,0,17881,171),
2621 (292,0,17881,182),
2622 (293,0,26529,0),
2623 (294,0,26530,0),
2624 (295,0,26532,0),
2625 (296,1,58630,209),
2626 (297,0,26529,0),
2627 (298,0,26530,0),
2628 (299,0,26532,0),
2629 (300,1,58630,210),
2630 (301,0,17941,0),
2631 (302,0,17991,0),
2632 (303,0,17942,140),
2633 (304,0,17941,0),
2634 (305,0,17991,0),
2635 (306,0,17942,184),
2636 (314,0,17797,0),
2637 (315,0,17797,0),
2638 (316,0,17796,0),
2639 (317,0,17796,0),
2640 (318,0,17798,147),
2641 (319,0,17798,185),
2642 (320,0,17770,0),
2643 (321,0,17770,0),
2644 (322,0,18105,0),
2645 (323,0,18105,0),
2646 (329,0,17826,0),
2647 (330,0,17826,0),
2648 (331,0,17882,146),
2649 (332,0,17882,186),
2650 (334,1,68572,0),
2651 (336,1,68572,0),
2652 (338,1,68574,0),
2653 (339,1,68574,0),
2654 (340,1,68663,245),
2655 (341,1,68663,249),
2656 (343,0,11490,0),
2657 (344,0,13280,0),
2658 (345,0,14327,0),
2659 (346,0,11492,34),
2660 (347,0,11488,0),
2661 (348,0,11487,0),
2662 (349,0,11496,0),
2663 (350,0,11489,0),
2664 (361,0,11486,36),
2665 (362,0,14326,0),
2666 (363,0,14322,0),
2667 (364,0,14321,0),
2668 (365,0,14323,0),
2669 (366,0,14325,0),
2670 (367,0,14324,0),
2671 (368,0,11501,38),
2672 (369,0,26630,0),
2673 (370,0,26630,0),
2674 (371,0,26631,0),
2675 (372,0,26631,0),
2676 (373,0,27483,0),
2677 (374,0,27483,0),
2678 (375,1,61863,214),
2679 (376,1,61863,215),
2680 (378,0,7079,0),
2681 (379,0,7361,0),
2682 (380,0,6235,0),
2683 (381,0,6229,0),
2684 (382,0,7800,14),
2685 (383,0,29304,0),
2686 (384,0,29304,0),
2687 (385,0,29573,0),
2688 (386,0,29573,0),
2689 (387,0,29305,0),
2690 (388,0,29305,0),
2691 (389,0,29932,0),
2692 (390,0,29306,216),
2693 (391,0,29306,217),
2694 (392,0,17306,0),
2695 (393,0,17306,0),
2696 (394,0,17308,0),
2697 (395,0,17308,0),
2698 (396,0,17537,136),
2699 (397,0,17537,188),
2700 (401,0,17381,0),
2701 (402,0,17381,0),
2702 (403,0,17380,0),
2703 (404,0,17380,0),
2704 (405,0,17377,137),
2705 (406,0,17377,187),
2706 (407,0,16807,0),
2707 (408,0,16807,0),
2708 (409,0,20923,0),
2709 (410,0,16809,0),
2710 (411,0,16809,0),
2711 (412,0,16808,138),
2712 (413,0,16808,189),
2713 (414,0,24723,0),
2714 (415,0,24723,0),
2715 (416,0,24744,0),
2716 (417,0,24744,0),
2717 (418,0,24560,0),
2718 (419,0,24560,0),
2719 (420,0,24664,198),
2720 (421,0,24664,201),
2721 (422,0,13282,0),
2722 (423,0,12258,26),
2723 (424,0,12236,272),
2724 (425,0,12225,0),
2725 (426,0,12203,0),
2726 (427,0,13601,0),
2727 (428,0,13596,0),
2728 (429,0,12201,273),
2729 (430,0,11517,0),
2730 (431,0,11520,4),
2731 (432,0,11518,0),
2732 (433,0,11519,0),
2733 (434,0,7355,0),
2734 (435,0,7357,0),
2735 (436,0,8567,0),
2736 (437,0,7358,20),
2737 (438,0,6168,0),
2738 (439,0,4424,0),
2739 (440,0,4428,0),
2740 (441,0,4420,0),
2741 (443,0,4421,16),
2742 (444,0,3983,0),
2743 (445,0,4543,18),
2744 (446,0,3974,0),
2745 (447,0,6487,165),
2746 (448,0,3975,163),
2747 (449,0,4542,0),
2748 (450,0,3977,164),
2749 (451,0,10506,0),
2750 (452,0,10503,0),
2751 (453,0,11622,0),
2752 (454,0,10433,0),
2753 (455,0,10432,0),
2754 (456,0,10508,0),
2755 (457,0,10505,0),
2756 (458,0,11261,0),
2757 (459,0,10901,0),
2758 (460,0,10507,0),
2759 (461,0,10504,0),
2760 (462,0,10502,0),
2761 (463,0,1853,2),
2762 (464,0,3914,0),
2763 (465,0,3886,0),
2764 (466,0,3887,0),
2765 (467,0,4278,0),
2766 (468,0,4279,0),
2767 (469,0,4274,0),
2768 (470,0,3927,0),
2769 (471,0,4275,8),
2770 (472,0,10516,0),
2771 (473,0,10558,0),
2772 (474,0,10808,0),
2773 (475,0,10997,0),
2774 (476,0,11032,0),
2775 (477,0,10811,0),
2776 (478,0,10813,40),
2777 (479,0,10436,0),
2778 (480,0,10437,0),
2779 (481,0,10438,0),
2780 (482,0,10435,0),
2781 (483,0,10439,0),
2782 (484,0,10440,274),
2783 (485,0,8580,0),
2784 (486,0,5721,0),
2785 (487,0,5720,0),
2786 (488,0,5710,0),
2787 (490,0,5719,0),
2788 (491,0,5722,0),
2789 (492,0,8443,0),
2790 (493,0,5709,28),
2791 (494,0,20870,0),
2792 (495,0,20870,0),
2793 (496,0,20885,0),
2794 (497,0,20885,0),
2795 (498,0,20886,0),
2796 (499,0,20886,0),
2797 (500,0,20912,174),
2798 (501,0,20912,190),
2799 (502,0,17976,0),
2800 (504,0,17976,0),
2801 (505,0,17975,0),
2802 (506,0,17975,0),
2803 (507,0,17978,0),
2804 (508,0,17978,0),
2805 (509,0,17980,0),
2806 (510,0,17980,0),
2807 (511,0,17977,173),
2808 (512,0,17977,191),
2809 (513,0,19219,0),
2810 (514,0,19219,0),
2811 (515,0,19221,0),
2812 (516,0,19221,0),
2813 (517,0,19220,172),
2814 (518,0,19220,192),
2815 (519,0,26796,0),
2816 (520,0,26731,0),
2817 (521,0,26731,0),
2818 (522,0,26763,0),
2819 (523,0,26763,0),
2820 (524,0,26794,0),
2821 (525,0,26794,0),
2822 (526,0,26723,225),
2823 (527,0,26723,226),
2824 (528,0,27654,0),
2825 (529,0,27654,0),
2826 (530,0,27447,0),
2827 (531,0,27447,0),
2828 (532,0,27655,0),
2829 (533,0,27655,0),
2830 (534,0,27656,206),
2831 (535,0,27656,211),
2832 (536,0,1696,0),
2833 (537,0,1666,0),
2834 (538,0,1717,0),
2835 (539,0,1716,0),
2836 (540,0,1663,12),
2837 (541,0,29315,0),
2838 (542,0,29315,0),
2839 (543,0,29316,0),
2840 (544,0,29316,0),
2841 (545,0,31134,220),
2842 (546,0,31134,221),
2843 (547,0,6910,0),
2844 (548,0,6906,0),
2845 (549,0,7228,0),
2846 (551,0,7206,0),
2847 (552,0,7291,0),
2848 (553,0,4854,0),
2849 (554,0,2748,22),
2850 (555,0,28586,0),
2851 (556,0,28586,0),
2852 (557,0,28587,0),
2853 (558,0,28587,0),
2854 (559,0,28546,0),
2855 (560,0,28546,0),
2856 (561,0,28923,207),
2857 (562,0,28923,212),
2858 (563,0,27977,0),
2859 (564,0,27977,0),
2860 (565,0,27975,0),
2861 (566,0,27975,0),
2862 (567,1,59046,0),
2863 (568,1,59046,0),
2864 (569,0,27978,208),
2865 (570,0,27978,213),
2866 (571,0,23953,0),
2867 (572,0,23953,0),
2868 (573,0,24201,0),
2869 (574,0,24201,0),
2870 (575,0,23954,202),
2871 (576,0,23954,242),
2872 (577,0,26668,0),
2873 (578,0,26668,0),
2874 (579,0,26687,0),
2875 (580,0,26687,0),
2876 (581,0,26693,0),
2877 (582,0,26693,0),
2878 (583,0,26861,203),
2879 (584,0,26861,205),
2880 (585,0,3671,0),
2881 (586,0,3669,0),
2882 (587,0,3653,0),
2883 (588,0,3670,0),
2884 (589,0,3674,0),
2885 (590,0,3673,0),
2886 (591,0,5775,0),
2887 (592,0,3654,1),
2888 (593,0,7795,0),
2889 (594,0,7273,0),
2890 (595,0,8127,0),
2891 (596,0,7272,0),
2892 (597,0,7271,0),
2893 (598,0,7796,0),
2894 (599,0,7275,0),
2895 (600,0,7267,24),
2896 (601,0,22887,0),
2897 (602,0,22898,0),
2898 (603,0,22841,0),
2899 (604,0,22871,0),
2900 (605,0,22948,0),
2901 (606,0,23420,0),
2902 (607,0,22947,0),
2903 (608,0,23426,0),
2904 (609,0,22917,196),
2905 (610,0,12435,0),
2906 (611,0,13020,0),
2907 (612,0,12017,0),
2908 (613,0,11983,0),
2909 (614,0,14601,0),
2910 (615,0,11981,0),
2911 (616,0,14020,0),
2912 (617,0,11583,50),
2913 (618,0,17767,0),
2914 (619,0,17808,0),
2915 (620,0,17888,0),
2916 (621,0,17842,0),
2917 (622,0,17968,195),
2918 (623,0,21216,0),
2919 (624,0,21217,0),
2920 (625,0,21215,0),
2921 (626,0,21214,0),
2922 (627,0,21213,0),
2923 (628,0,21212,194),
2924 (629,0,34797,0),
2925 (630,0,34797,0),
2926 (631,0,34797,0),
2927 (632,0,34797,0),
2928 (633,0,34780,0),
2929 (634,0,34780,0),
2930 (635,0,34780,0),
2931 (636,0,34780,0),
2932 (637,1,68184,0),
2933 (638,1,68184,0),
2934 (639,1,68184,0),
2935 (640,1,68184,0),
2936 (641,0,34496,0),
2937 (642,0,34496,0),
2938 (643,0,34496,0),
2939 (644,0,34496,0),
2940 (645,0,34564,246),
2941 (646,0,34564,248),
2942 (647,0,34564,247),
2943 (648,0,34564,250),
2944 (649,0,18831,0),
2945 (650,0,19044,177),
2946 (651,0,17257,176),
2947 (652,0,15550,0),
2948 (653,0,15687,0),
2949 (654,0,16457,0),
2950 (655,0,16812,0),
2951 (656,0,15691,0),
2952 (657,0,15688,0),
2953 (658,0,16524,0),
2954 (659,0,15689,0),
2955 (660,0,22520,0),
2956 (661,0,15690,175),
2957 (662,0,17225,0),
2958 (663,0,12118,0),
2959 (664,0,11982,0),
2960 (665,0,12259,0),
2961 (666,0,12057,0),
2962 (667,0,12264,0),
2963 (668,0,12056,0),
2964 (669,0,12098,0),
2965 (670,0,11988,0),
2966 (671,0,12018,0),
2967 (672,0,11502,48),
2968 (673,0,15956,0),
2969 (674,0,15956,0),
2970 (677,0,15953,0),
2971 (678,0,15953,0),
2972 (679,0,15952,0),
2973 (680,0,15952,0),
2974 (681,0,15954,0),
2975 (682,0,15954,0),
2976 (683,0,15936,0),
2977 (684,0,15936,0),
2978 (685,0,16011,0),
2979 (686,0,16011,0),
2980 (687,0,16061,0),
2981 (689,0,16061,0),
2982 (690,0,16060,0),
2983 (691,0,16060,0),
2984 (692,1,59450,0),
2985 (693,1,59450,0),
2986 (694,0,16028,0),
2987 (695,0,16028,0),
2988 (696,0,15931,0),
2989 (697,0,15931,0),
2990 (698,0,15932,0),
2991 (699,0,15932,0),
2992 (700,0,15928,0),
2993 (701,0,15928,0),
2994 (702,0,15989,0),
2995 (703,0,15989,0),
2996 (704,0,15990,159),
2997 (706,0,15990,227),
2998 (707,0,10184,46),
2999 (708,0,10184,257),
3000 (709,0,15263,0),
3001 (710,0,15544,0),
3002 (711,0,15516,0),
3003 (712,0,15510,0),
3004 (713,0,15299,0),
3005 (714,0,15509,0),
3006 (715,0,15275,0),
3007 (716,0,15517,0),
3008 (717,0,15727,161),
3009 (718,0,15348,0),
3010 (719,0,15341,0),
3011 (720,0,15340,0),
3012 (721,0,15370,0),
3013 (722,0,15369,0),
3014 (723,0,15339,160),
3015 (724,0,24892,0),
3016 (725,0,24882,0),
3017 (726,0,25038,0),
3018 (727,0,25165,0),
3019 (728,0,25840,0),
3020 (729,0,25315,199),
3021 (730,0,19514,0),
3022 (731,0,19516,0),
3023 (732,0,18805,0),
3024 (733,0,19622,193),
3025 (734,0,28859,223),
3026 (735,0,28859,237),
3027 (736,0,30452,0),
3028 (737,0,30452,0),
3029 (738,0,30451,0),
3030 (739,0,30451,0),
3031 (740,0,30449,0),
3032 (741,0,30449,0),
3033 (742,0,28860,224),
3034 (743,0,28860,238),
3035 (744,0,33113,0),
3036 (745,0,33118,0),
3037 (746,0,33186,0),
3038 (747,0,33293,0),
3039 (748,1,65195,0),
3040 (749,0,32930,0),
3041 (750,0,33515,0),
3042 (751,1,64899,0),
3043 (752,1,64985,0),
3044 (753,1,65074,0),
3045 (754,0,33432,0),
3046 (755,0,33271,0),
3047 (756,0,33288,0),
3048 (757,0,32871,243),
3049 (758,0,33113,0),
3050 (759,0,33118,0),
3051 (760,0,33186,0),
3052 (761,0,33293,0),
3053 (762,1,65195,0),
3054 (763,0,32930,0),
3055 (764,0,33515,0),
3056 (765,1,64899,0),
3057 (766,1,64985,0),
3058 (767,1,65074,0),
3059 (768,0,33432,0),
3060 (769,0,33271,0),
3061 (770,0,33288,0),
3062 (771,0,32871,244),
3063 (772,0,31125,0),
3064 (773,0,31125,0),
3065 (774,0,33993,0),
3066 (775,0,33993,0),
3067 (776,0,35013,0),
3068 (777,0,35013,0),
3069 (778,0,23574,0),
3070 (779,0,23576,0),
3071 (780,0,23578,0),
3072 (781,0,23577,0),
3073 (782,0,24239,0),
3074 (783,0,23863,197),
3075 (784,0,14507,0),
3076 (785,0,14517,0),
3077 (786,0,14510,0),
3078 (787,0,11382,0),
3079 (788,0,15083,0),
3080 (789,0,14509,0),
3081 (790,0,15114,0),
3082 (791,0,14515,0),
3083 (792,0,11380,0),
3084 (793,0,14834,42),
3085 (829,0,36497,0),
3086 (830,0,36497,0),
3087 (831,0,36502,251),
3088 (832,0,36502,252),
3089 (833,0,36494,0),
3090 (834,0,36494,0),
3091 (835,0,36476,0),
3092 (836,0,36476,0),
3093 (837,0,36658,253),
3094 (838,0,36658,254),
3095 (839,0,38113,0),
3096 (840,0,38113,0),
3097 (841,0,38112,0),
3098 (842,0,38112,0),
3099 (843,1,72830,255),
3100 (844,1,72830,256),
3101 (845,0,36612,0),
3102 (846,0,36855,0),
3103 (847,1,72959,0),
3104 (848,0,37813,0),
3105 (849,0,36626,0),
3106 (850,0,36627,0),
3107 (851,0,36678,0),
3108 (852,0,37970,0),
3109 (853,0,37955,0),
3110 (854,1,72706,0),
3111 (855,0,36853,0),
3112 (856,0,36597,279),
3113 (857,0,36612,0),
3114 (858,0,36855,0),
3115 (859,1,72959,0),
3116 (860,0,37813,0),
3117 (861,0,36626,0),
3118 (862,0,36627,0),
3119 (863,0,36678,0),
3120 (864,0,37970,0),
3121 (865,0,37955,0),
3122 (866,1,72706,0),
3123 (867,0,36853,0),
3124 (868,0,36597,280),
3125 (883,0,4422,0),
3126 (885,0,38433,239),
3127 (886,0,38433,240),
3128 (887,0,39863,293),
3129 (888,0,39863,294),
3130 (889,0,39751,0),
3131 (890,0,39751,0),
3132 (891,0,39747,0),
3133 (892,0,39747,0),
3134 (893,0,39746,0),
3135 (894,0,39746,0);
3136 /*!40000 ALTER TABLE `instance_encounters` ENABLE KEYS */;
3137 UNLOCK TABLES;
3140 -- Table structure for table `instance_template`
3143 DROP TABLE IF EXISTS `instance_template`;
3144 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3145 /*!40101 SET character_set_client = utf8 */;
3146 CREATE TABLE `instance_template` (
3147   `map` smallint(5) unsigned NOT NULL,
3148   `parent` smallint(5) unsigned NOT NULL DEFAULT '0',
3149   `levelMin` tinyint(3) unsigned NOT NULL DEFAULT '0',
3150   `levelMax` tinyint(3) unsigned NOT NULL DEFAULT '0',
3151   `ScriptName` varchar(128) NOT NULL DEFAULT '',
3152   PRIMARY KEY (`map`)
3153 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3154 /*!40101 SET character_set_client = @saved_cs_client */;
3157 -- Dumping data for table `instance_template`
3160 LOCK TABLES `instance_template` WRITE;
3161 /*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
3162 /*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
3163 UNLOCK TABLES;
3166 -- Table structure for table `item_convert`
3169 DROP TABLE IF EXISTS `item_convert`;
3170 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3171 /*!40101 SET character_set_client = utf8 */;
3172 CREATE TABLE `item_convert` (
3173   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3174   `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
3175   PRIMARY KEY (`entry`)
3176 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Convert System';
3177 /*!40101 SET character_set_client = @saved_cs_client */;
3180 -- Dumping data for table `item_convert`
3183 LOCK TABLES `item_convert` WRITE;
3184 /*!40000 ALTER TABLE `item_convert` DISABLE KEYS */;
3185 /*!40000 ALTER TABLE `item_convert` ENABLE KEYS */;
3186 UNLOCK TABLES;
3189 -- Table structure for table `item_enchantment_template`
3192 DROP TABLE IF EXISTS `item_enchantment_template`;
3193 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3194 /*!40101 SET character_set_client = utf8 */;
3195 CREATE TABLE `item_enchantment_template` (
3196   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3197   `ench` mediumint(8) unsigned NOT NULL DEFAULT '0',
3198   `chance` float unsigned NOT NULL DEFAULT '0',
3199   PRIMARY KEY (`entry`,`ench`)
3200 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
3201 /*!40101 SET character_set_client = @saved_cs_client */;
3204 -- Dumping data for table `item_enchantment_template`
3207 LOCK TABLES `item_enchantment_template` WRITE;
3208 /*!40000 ALTER TABLE `item_enchantment_template` DISABLE KEYS */;
3209 /*!40000 ALTER TABLE `item_enchantment_template` ENABLE KEYS */;
3210 UNLOCK TABLES;
3213 -- Table structure for table `item_expire_convert`
3216 DROP TABLE IF EXISTS `item_expire_convert`;
3217 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3218 /*!40101 SET character_set_client = utf8 */;
3219 CREATE TABLE `item_expire_convert` (
3220   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3221   `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
3222   PRIMARY KEY (`entry`)
3223 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Convert System';
3224 /*!40101 SET character_set_client = @saved_cs_client */;
3227 -- Dumping data for table `item_expire_convert`
3230 LOCK TABLES `item_expire_convert` WRITE;
3231 /*!40000 ALTER TABLE `item_expire_convert` DISABLE KEYS */;
3232 /*!40000 ALTER TABLE `item_expire_convert` ENABLE KEYS */;
3233 UNLOCK TABLES;
3236 -- Table structure for table `item_loot_template`
3239 DROP TABLE IF EXISTS `item_loot_template`;
3240 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3241 /*!40101 SET character_set_client = utf8 */;
3242 CREATE TABLE `item_loot_template` (
3243   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3244   `item` mediumint(8) NOT NULL DEFAULT '0',
3245   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
3246   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
3247   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
3248   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
3249   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
3250   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
3251   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
3252   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
3253   PRIMARY KEY (`entry`,`item`)
3254 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3255 /*!40101 SET character_set_client = @saved_cs_client */;
3258 -- Dumping data for table `item_loot_template`
3261 LOCK TABLES `item_loot_template` WRITE;
3262 /*!40000 ALTER TABLE `item_loot_template` DISABLE KEYS */;
3263 /*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
3264 UNLOCK TABLES;
3267 -- Table structure for table `item_required_target`
3270 DROP TABLE IF EXISTS `item_required_target`;
3271 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3272 /*!40101 SET character_set_client = utf8 */;
3273 CREATE TABLE `item_required_target` (
3274   `entry` mediumint(8) unsigned NOT NULL,
3275   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
3276   `targetEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3277   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
3278 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
3279 /*!40101 SET character_set_client = @saved_cs_client */;
3282 -- Dumping data for table `item_required_target`
3285 LOCK TABLES `item_required_target` WRITE;
3286 /*!40000 ALTER TABLE `item_required_target` DISABLE KEYS */;
3287 /*!40000 ALTER TABLE `item_required_target` ENABLE KEYS */;
3288 UNLOCK TABLES;
3291 -- Table structure for table `item_template`
3294 DROP TABLE IF EXISTS `item_template`;
3295 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3296 /*!40101 SET character_set_client = utf8 */;
3297 CREATE TABLE `item_template` (
3298   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3299   `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
3300   `subclass` tinyint(3) unsigned NOT NULL DEFAULT '0',
3301   `unk0` int(11) NOT NULL DEFAULT '-1',
3302   `name` varchar(255) NOT NULL DEFAULT '',
3303   `displayid` mediumint(8) unsigned NOT NULL DEFAULT '0',
3304   `Quality` tinyint(3) unsigned NOT NULL DEFAULT '0',
3305   `Flags` int(10) unsigned NOT NULL DEFAULT '0',
3306   `Flags2` int(10) unsigned NOT NULL DEFAULT '0',
3307   `Unknown` float NOT NULL,
3308   `Unknown1` float NOT NULL,
3309   `Unknown2` int(10) NOT NULL,
3310   `BuyCount` tinyint(3) unsigned NOT NULL DEFAULT '1',
3311   `BuyPrice` int(10) unsigned NOT NULL DEFAULT '0',
3312   `SellPrice` int(10) unsigned NOT NULL DEFAULT '0',
3313   `InventoryType` tinyint(3) unsigned NOT NULL DEFAULT '0',
3314   `AllowableClass` mediumint(9) NOT NULL DEFAULT '-1',
3315   `AllowableRace` mediumint(9) NOT NULL DEFAULT '-1',
3316   `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0',
3317   `RequiredLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
3318   `RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0',
3319   `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0',
3320   `requiredspell` mediumint(8) unsigned NOT NULL DEFAULT '0',
3321   `requiredhonorrank` mediumint(8) unsigned NOT NULL DEFAULT '0',
3322   `RequiredCityRank` mediumint(8) unsigned NOT NULL DEFAULT '0',
3323   `RequiredReputationFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
3324   `RequiredReputationRank` smallint(5) unsigned NOT NULL DEFAULT '0',
3325   `maxcount` smallint(5) NOT NULL DEFAULT '-1',
3326   `stackable` smallint(5) NOT NULL DEFAULT '1',
3327   `ContainerSlots` tinyint(3) unsigned NOT NULL DEFAULT '0',
3328   `stat_type1` tinyint(3) unsigned NOT NULL DEFAULT '0',
3329   `stat_value1` smallint(6) NOT NULL DEFAULT '0',
3330   `stat_unk1_1` int(10) NOT NULL DEFAULT '0',
3331   `stat_unk2_1` int(10) NOT NULL DEFAULT '0',
3332   `stat_type2` tinyint(3) unsigned NOT NULL DEFAULT '0',
3333   `stat_value2` smallint(6) NOT NULL DEFAULT '0',
3334   `stat_unk1_2` int(10) NOT NULL DEFAULT '0',
3335   `stat_unk2_2` int(10) NOT NULL DEFAULT '0',
3336   `stat_type3` tinyint(3) unsigned NOT NULL DEFAULT '0',
3337   `stat_value3` smallint(6) NOT NULL DEFAULT '0',
3338   `stat_unk1_3` int(10) NOT NULL DEFAULT '0',
3339   `stat_unk2_3` int(10) NOT NULL DEFAULT '0',
3340   `stat_type4` tinyint(3) unsigned NOT NULL DEFAULT '0',
3341   `stat_value4` smallint(6) NOT NULL DEFAULT '0',
3342   `stat_unk1_4` int(10) NOT NULL DEFAULT '0',
3343   `stat_unk2_4` int(10) NOT NULL DEFAULT '0',
3344   `stat_type5` tinyint(3) unsigned NOT NULL DEFAULT '0',
3345   `stat_value5` smallint(6) NOT NULL DEFAULT '0',
3346   `stat_unk1_5` int(10) NOT NULL DEFAULT '0',
3347   `stat_unk2_5` int(10) NOT NULL DEFAULT '0',
3348   `stat_type6` tinyint(3) unsigned NOT NULL DEFAULT '0',
3349   `stat_value6` smallint(6) NOT NULL DEFAULT '0',
3350   `stat_unk1_6` int(10) NOT NULL DEFAULT '0',
3351   `stat_unk2_6` int(10) NOT NULL DEFAULT '0',
3352   `stat_type7` tinyint(3) unsigned NOT NULL DEFAULT '0',
3353   `stat_value7` smallint(6) NOT NULL DEFAULT '0',
3354   `stat_unk1_7` int(10) NOT NULL DEFAULT '0',
3355   `stat_unk2_7` int(10) NOT NULL DEFAULT '0',
3356   `stat_type8` tinyint(3) unsigned NOT NULL DEFAULT '0',
3357   `stat_value8` smallint(6) NOT NULL DEFAULT '0',
3358   `stat_unk1_8` int(10) NOT NULL DEFAULT '0',
3359   `stat_unk2_8` int(10) NOT NULL DEFAULT '0',
3360   `stat_type9` tinyint(3) unsigned NOT NULL DEFAULT '0',
3361   `stat_value9` smallint(6) NOT NULL DEFAULT '0',
3362   `stat_unk1_9` int(10) NOT NULL DEFAULT '0',
3363   `stat_unk2_9` int(10) NOT NULL DEFAULT '0',
3364   `stat_type10` tinyint(3) unsigned NOT NULL DEFAULT '0',
3365   `stat_value10` smallint(6) NOT NULL DEFAULT '0',
3366   `stat_unk1_10` int(10) NOT NULL DEFAULT '0',
3367   `stat_unk2_10` int(10) NOT NULL DEFAULT '0',
3368   `ScalingStatDistribution` smallint(6) NOT NULL DEFAULT '0',
3369   `DamageType` tinyint(3) unsigned NOT NULL DEFAULT '0',
3370   `delay` int(10) NOT NULL,
3371   `RangedModRange` float NOT NULL DEFAULT '0',
3372   `spellid_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
3373   `spelltrigger_1` tinyint(3) unsigned NOT NULL DEFAULT '0',
3374   `spellcharges_1` smallint(5) NOT NULL DEFAULT '0',
3375   `spellppmRate_1` float NOT NULL DEFAULT '0',
3376   `spellcooldown_1` int(11) NOT NULL DEFAULT '-1',
3377   `spellcategory_1` smallint(5) unsigned NOT NULL DEFAULT '0',
3378   `spellcategorycooldown_1` int(11) NOT NULL DEFAULT '-1',
3379   `spellid_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
3380   `spelltrigger_2` tinyint(3) unsigned NOT NULL DEFAULT '0',
3381   `spellcharges_2` smallint(5) NOT NULL DEFAULT '0',
3382   `spellppmRate_2` float NOT NULL DEFAULT '0',
3383   `spellcooldown_2` int(11) NOT NULL DEFAULT '-1',
3384   `spellcategory_2` smallint(5) unsigned NOT NULL DEFAULT '0',
3385   `spellcategorycooldown_2` int(11) NOT NULL DEFAULT '-1',
3386   `spellid_3` mediumint(8) unsigned NOT NULL DEFAULT '0',
3387   `spelltrigger_3` tinyint(3) unsigned NOT NULL DEFAULT '0',
3388   `spellcharges_3` smallint(5) NOT NULL DEFAULT '0',
3389   `spellppmRate_3` float NOT NULL DEFAULT '0',
3390   `spellcooldown_3` int(11) NOT NULL DEFAULT '-1',
3391   `spellcategory_3` smallint(5) unsigned NOT NULL DEFAULT '0',
3392   `spellcategorycooldown_3` int(11) NOT NULL DEFAULT '-1',
3393   `spellid_4` mediumint(8) unsigned NOT NULL DEFAULT '0',
3394   `spelltrigger_4` tinyint(3) unsigned NOT NULL DEFAULT '0',
3395   `spellcharges_4` smallint(5) NOT NULL DEFAULT '0',
3396   `spellppmRate_4` float NOT NULL DEFAULT '0',
3397   `spellcooldown_4` int(11) NOT NULL DEFAULT '-1',
3398   `spellcategory_4` smallint(5) unsigned NOT NULL DEFAULT '0',
3399   `spellcategorycooldown_4` int(11) NOT NULL DEFAULT '-1',
3400   `spellid_5` mediumint(8) unsigned NOT NULL DEFAULT '0',
3401   `spelltrigger_5` tinyint(3) unsigned NOT NULL DEFAULT '0',
3402   `spellcharges_5` smallint(5) NOT NULL DEFAULT '0',
3403   `spellppmRate_5` float NOT NULL DEFAULT '0',
3404   `spellcooldown_5` int(11) NOT NULL DEFAULT '-1',
3405   `spellcategory_5` smallint(5) unsigned NOT NULL DEFAULT '0',
3406   `spellcategorycooldown_5` int(11) NOT NULL DEFAULT '-1',
3407   `bonding` tinyint(3) unsigned NOT NULL DEFAULT '0',
3408   `description` varchar(255) NOT NULL DEFAULT '',
3409   `PageText` mediumint(8) unsigned NOT NULL DEFAULT '0',
3410   `LanguageID` tinyint(3) unsigned NOT NULL DEFAULT '0',
3411   `PageMaterial` tinyint(3) unsigned NOT NULL DEFAULT '0',
3412   `startquest` mediumint(8) unsigned NOT NULL DEFAULT '0',
3413   `lockid` mediumint(8) unsigned NOT NULL DEFAULT '0',
3414   `Material` tinyint(4) NOT NULL DEFAULT '0',
3415   `sheath` tinyint(3) unsigned NOT NULL DEFAULT '0',
3416   `RandomProperty` mediumint(8) unsigned NOT NULL DEFAULT '0',
3417   `RandomSuffix` mediumint(8) unsigned NOT NULL DEFAULT '0',
3418   `itemset` mediumint(8) unsigned NOT NULL DEFAULT '0',
3419   `MaxDurability` smallint(5) unsigned NOT NULL DEFAULT '0',
3420   `area` mediumint(8) unsigned NOT NULL DEFAULT '0',
3421   `Map` smallint(6) NOT NULL DEFAULT '0',
3422   `BagFamily` mediumint(9) NOT NULL DEFAULT '0',
3423   `TotemCategory` mediumint(9) NOT NULL DEFAULT '0',
3424   `socketColor_1` tinyint(4) NOT NULL DEFAULT '0',
3425   `socketContent_1` mediumint(9) NOT NULL DEFAULT '0',
3426   `socketColor_2` tinyint(4) NOT NULL DEFAULT '0',
3427   `socketContent_2` mediumint(9) NOT NULL DEFAULT '0',
3428   `socketColor_3` tinyint(4) NOT NULL DEFAULT '0',
3429   `socketContent_3` mediumint(9) NOT NULL DEFAULT '0',
3430   `socketBonus` mediumint(9) NOT NULL DEFAULT '0',
3431   `GemProperties` mediumint(9) NOT NULL DEFAULT '0',
3432   `RequiredDisenchantSkill` smallint(6) NOT NULL DEFAULT '-1',
3433   `ArmorDamageModifier` float NOT NULL DEFAULT '0',
3434   `Duration` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Duration in seconds.',
3435   `ItemLimitCategory` smallint(6) NOT NULL DEFAULT '0',
3436   `HolidayId` int(11) unsigned NOT NULL DEFAULT '0',
3437   `ScriptName` varchar(64) NOT NULL DEFAULT '',
3438   `DisenchantID` mediumint(8) unsigned NOT NULL DEFAULT '0',
3439   `FoodType` tinyint(3) unsigned NOT NULL DEFAULT '0',
3440   `StatScalingFactor` float NOT NULL,
3441   `Unknown400_1` int(10) unsigned NOT NULL DEFAULT '0',
3442   `Unknown400_2` int(10) unsigned NOT NULL DEFAULT '0',
3443   `minMoneyLoot` int(10) unsigned NOT NULL DEFAULT '0',
3444   `maxMoneyLoot` int(10) unsigned NOT NULL DEFAULT '0',
3445   `ExtraFlags` tinyint(1) unsigned NOT NULL DEFAULT '0',
3446   PRIMARY KEY (`entry`),
3447   KEY `items_index` (`class`)
3448 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
3449 /*!40101 SET character_set_client = @saved_cs_client */;
3452 -- Dumping data for table `item_template`
3455 LOCK TABLES `item_template` WRITE;
3456 /*!40000 ALTER TABLE `item_template` DISABLE KEYS */;
3457 INSERT INTO `item_template` (`entry`, `class`, `subclass`, `unk0`, `name`, `displayid`, `Quality`, `Flags`, `Flags2`, `Unknown`, `Unknown1`, `Unknown2`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `stat_type1`, `stat_value1`, `stat_unk1_1`, `stat_unk2_1`, `stat_type2`, `stat_value2`, `stat_unk1_2`, `stat_unk2_2`, `stat_type3`, `stat_value3`, `stat_unk1_3`, `stat_unk2_3`, `stat_type4`, `stat_value4`, `stat_unk1_4`, `stat_unk2_4`, `stat_type5`, `stat_value5`, `stat_unk1_5`, `stat_unk2_5`, `stat_type6`, `stat_value6`, `stat_unk1_6`, `stat_unk2_6`, `stat_type7`, `stat_value7`, `stat_unk1_7`, `stat_unk2_7`, `stat_type8`, `stat_value8`, `stat_unk1_8`, `stat_unk2_8`, `stat_type9`, `stat_value9`, `stat_unk1_9`, `stat_unk2_9`, `stat_type10`, `stat_value10`, `stat_unk1_10`, `stat_unk2_10`, `ScalingStatDistribution`, `DamageType`, `delay`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `Duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `StatScalingFactor`, `Unknown400_1`, `Unknown400_2`, `minMoneyLoot`, `maxMoneyLoot`, `ExtraFlags`) VALUES
3458 (25,2,7,-1,'Worn Shortsword',1542,1,0,8192,0,0,0,1,18,3,21,-1,-1,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,1900,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,0,'',0,1,0,0,0,1,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3459 (35,2,10,-1,'Bent Staff',472,1,0,8192,0,0,0,1,24,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,2,2,0,0,0,20,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),
3460 (36,2,4,-1,'Worn Mace',5194,1,0,8192,0,0,0,1,19,3,21,-1,-1,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,1900,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,0,'',0,0,0,0,0,2,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3461 (37,2,0,-1,'Worn Axe',8483,1,0,8192,0,0,0,1,19,3,21,-1,-1,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,2000,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,0,'',0,0,0,0,0,1,3,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3462 (39,4,1,-1,'Recruit\'s Pants',9892,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3463 (40,4,1,-1,'Recruit\'s Boots',10141,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3464 (43,4,1,-1,'Squire\'s Boots',9938,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3465 (44,4,1,-1,'Squire\'s Pants',9937,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3466 (47,4,1,-1,'Footpad\'s Shoes',9915,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3467 (48,4,1,-1,'Footpad\'s Pants',9913,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3468 (51,4,1,-1,'Neophyte\'s Boots',9946,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3469 (52,4,1,-1,'Neophyte\'s Pants',9945,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3470 (55,4,1,-1,'Apprentice\'s Boots',9929,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3471 (56,4,1,-1,'Apprentice\'s Robe',12647,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3472 (57,4,1,-1,'Acolyte\'s Robe',12645,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3473 (59,4,1,-1,'Acolyte\'s Shoes',3261,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3474 (120,4,1,-1,'Thug Pants',10006,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3475 (121,4,1,-1,'Thug Boots',10008,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3476 (129,4,1,-1,'Rugged Trapper\'s Boots',9977,1,0,8192,1.0391,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3477 (139,4,1,-1,'Brawler\'s Pants',9988,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3478 (140,4,1,-1,'Brawler\'s Boots',65781,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3479 (147,4,1,-1,'Rugged Trapper\'s Pants',9975,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3480 (1395,4,1,-1,'Apprentice\'s Pants',1882,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3481 (1396,4,1,-1,'Acolyte\'s Pants',2201,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3482 (2092,2,15,-1,'Worn Dagger',2704,1,0,8192,0,0,0,1,18,3,13,-1,-1,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,1600,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,0,'',0,0,0,0,0,1,3,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3483 (2361,2,5,-1,'Battleworn Hammer',8688,1,0,8192,0,0,0,1,23,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,2,1,0,0,0,20,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),
3484 (2362,4,6,-1,'Worn Wooden Shield',18730,1,0,8192,0,0,0,1,11,2,14,-1,-1,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,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,0,'',0,0,0,0,0,1,4,0,0,0,20,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),
3485 (2504,2,2,-1,'Worn Shortbow',8106,1,0,8192,0,0,0,1,29,5,15,-1,-1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,1.1204e+09,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,0,'',0,0,0,0,0,2,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3486 (2508,2,3,-1,'Old Blunderbuss',2409,1,0,8192,0,0,0,1,27,5,26,-1,-1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,1.1204e+09,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,0,'',0,0,0,0,0,1,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3487 (3661,2,10,-1,'Handcrafted Staff',18530,1,0,8192,0,0,0,1,23,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,2,2,0,0,0,20,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),
3488 (6098,4,1,-1,'Neophyte\'s Robe',12679,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3489 (6119,4,1,-1,'Neophyte\'s Robe',12681,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3490 (6121,4,1,-1,'Recruit\'s Pants',9984,1,0,8192,0.9765,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3491 (6122,4,1,-1,'Recruit\'s Boots',9985,1,0,8192,0.9801,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3492 (6123,4,1,-1,'Novice\'s Robe',12683,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3493 (6124,4,1,-1,'Novice\'s Pants',9724,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3494 (6129,4,1,-1,'Acolyte\'s Robe',12646,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3495 (6137,4,1,-1,'Thug Pants',10114,1,0,8192,0.9616,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3496 (6138,4,1,-1,'Trapper\'s Boots',10115,1,0,8192,0.9653,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3497 (6139,4,1,-1,'Novice\'s Robe',12684,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3498 (6140,4,1,-1,'Apprentice\'s Robe',12649,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3499 (6144,4,1,-1,'Neophyte\'s Robe',12680,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3500 (6948,15,0,-1,'Hearthstone',6418,1,64,8192,0,0,0,1,0,0,0,-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,8690,0,0,0,1800000,1176,1800000,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,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),
3501 (12282,2,1,-1,'Worn Battleaxe',22291,1,0,8192,0,0,0,1,22,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,1,1,0,0,0,20,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),
3502 (20891,4,1,-1,'Neophyte\'s Robe',33256,1,0,8192,1.0082,1,1,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3503 (20892,4,1,-1,'Acolyte\'s Robe',33257,1,0,8192,1.0119,1,1,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3504 (20893,4,1,-1,'Apprentice\'s Robe',33258,1,0,8192,1.0155,1,1,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3505 (20894,4,1,-1,'Apprentice\'s Pants',33259,1,0,8192,1.0192,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3506 (20895,4,1,-1,'Apprentice\'s Boots',33260,1,0,8192,1.0494,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3507 (20896,4,1,-1,'Lookout\'s Pants',33342,1,0,8192,0.953,1,1,1,7,1,7,-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,-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,0,'',0,0,0,0,0,7,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),
3508 (20898,4,1,-1,'Lookout\'s Shoes',36764,1,0,8192,0.9603,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3509 (20899,4,1,-1,'Warder\'s Pants',33351,1,0,8192,0.964,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3510 (20900,4,1,-1,'Warder\'s Boots',33350,1,0,8192,0.9677,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3511 (20902,4,1,-1,'Recruit\'s Pants',33359,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3512 (20903,4,1,-1,'Recruit\'s Boots',33348,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3513 (20904,4,3,-1,'Recruit\'s Tunic',33346,1,0,8192,0,0,0,1,11,2,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3514 (20977,2,7,-1,'Recruit\'s Shortsword',33304,1,0,8192,0.9826,1,1,1,18,3,21,-1,-1,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,1900,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,0,'',0,1,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0.6,0,0,0,0,0),
3515 (20978,2,10,-1,'Apprentice\'s Staff',33299,1,0,8192,0.9863,1,1,1,23,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0.4,0,0,0,0,0),
3516 (20980,2,2,-1,'Warder\'s Shortbow',8106,1,0,8192,0.9936,1,1,1,27,5,15,-1,-1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,100,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,0,'',0,0,0,0,0,2,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.6,0,0,0,0,0),
3517 (23322,4,1,-1,'Acolyte\'s Robe',36138,1,0,8192,0.9533,1,1,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3518 (23344,4,1,-1,'Scout\'s Pants',36120,1,0,8192,0.9605,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3519 (23346,2,8,-1,'Battleworn Claymore',2380,1,0,8192,0.9679,1,1,1,22,4,17,262143,-1,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,2900,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,0,'',0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0.4,0,0,0,0,0),
3520 (23347,2,18,-1,'Weathered Crossbow',10671,1,0,8192,0.9716,1,1,1,27,5,26,-1,-1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2500,100,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,0,'',0,0,0,0,0,2,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.4,0,0,0,0,0),
3521 (23348,4,1,-1,'Scout\'s Boots',36122,1,0,8192,0.9752,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3522 (23474,4,1,-1,'Recruit\'s Pants',36125,1,0,8192,1.0495,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3523 (23475,4,1,-1,'Recruit\'s Boots',36126,1,0,8192,0.9531,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3524 (23477,4,1,-1,'Squire\'s Pants',36134,1,0,8192,0.9604,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3525 (23478,4,1,-1,'Recruit\'s Pants',36125,1,0,8192,0.9641,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3526 (23479,4,1,-1,'Recruit\'s Robe',36140,1,0,8192,0.9678,1,1,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3527 (24145,4,1,-1,'Initiate\'s Pants',36790,1,0,8192,1.0238,1,1,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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),
3528 (24146,4,1,-1,'Initiate\'s Boots',36793,1,0,8192,1.0274,1,1,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,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),
3529 (25861,2,16,-1,'Crude Throwing Axe',20777,1,4194304,8192,0,0,0,1,15,3,25,-1,-1,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,1800,1.1204e+09,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,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,1,0,0,0,0,0),
3530 (28979,2,16,-1,'Light Throwing Knife',40187,1,4194304,8192,1.0055,1,1,1,15,3,25,-1,-1,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,1600,100,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,0,'',0,0,0,0,0,1,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.6,0,0,0,0,0),
3531 (34648,4,4,-1,'Acherus Knight\'s Greaves',51496,2,32768,8192,0,0,0,1,51,10,8,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,10,0,0,7,12,0,0,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,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,55,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3532 (34649,4,4,-1,'Acherus Knight\'s Gauntlets',51498,2,32768,8192,0,0,0,1,34,6,10,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,15,0,0,7,6,0,0,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,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,40,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3533 (34650,4,4,-1,'Acherus Knight\'s Tunic',51494,2,32768,8192,0,0,0,1,69,13,5,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,20,0,0,7,11,0,0,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,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,115,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3534 (34651,4,4,-1,'Acherus Knight\'s Girdle',51497,2,32768,8192,0,0,0,1,35,7,6,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,10,0,0,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,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,40,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3535 (34652,4,4,-1,'Acherus Knight\'s Hood',51495,2,32768,8192,0,0,0,1,52,10,1,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,15,0,0,7,15,0,0,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,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,70,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3536 (34653,4,4,-1,'Acherus Knight\'s Wristguard',51500,2,32768,8192,0,0,0,1,36,7,9,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,7,0,0,31,7,0,0,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,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,40,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3537 (34655,4,4,-1,'Acherus Knight\'s Pauldrons',51501,2,32768,8192,0,0,0,1,54,10,3,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,11,0,0,3,9,0,0,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,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,70,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3538 (34656,4,4,-1,'Acherus Knight\'s Legplates',51499,2,32768,8192,0,0,0,1,73,14,7,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,13,0,0,3,10,0,0,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,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,85,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3539 (34657,4,0,-1,'Choker of Damnation',6539,2,32768,8192,0,0,0,1,2303,575,2,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,9,0,0,7,8,0,0,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,-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,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3540 (34658,4,0,-1,'Plague Band',224,2,32768,8192,0,0,0,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,11,0,0,3,6,0,0,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,-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,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3541 (34659,4,1,-1,'Acherus Knight\'s Shroud',49738,2,32768,8192,0,0,0,1,31,6,16,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,12,0,0,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,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,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3542 (38145,1,0,-1,'Deathweave Bag',1282,1,32768,8192,0,0,0,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,-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,-1,0,0,0,0,'',0,0,0,0,0,0,0,0),
3543 (38147,4,0,-1,'Corrupted Band',224,2,32768,8192,0,0,0,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,4,11,0,0,3,6,0,0,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,-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,200,0,0,0,0,'',10,0,0,0,0,0,0,0),
3544 (41751,0,5,-1,'Black Mushroom',36728,1,0,8192,0,0,0,5,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,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,-1,0,0,0,0,'',0,5,0,0,0,0,0,0),
3545 (49399,4,1,-1,'Gilnean Apprentice\'s Robe',62549,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3546 (49400,4,1,-1,'Gilnean Apprentice\'s Pants',62561,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3547 (49401,4,1,-1,'Gilnean Apprentice\'s Boots',62448,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3548 (49403,4,1,-1,'Gilnean Neophyte\'s Robe',62557,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3549 (49404,4,1,-1,'Gilnean Neophyte\'s Pants',62559,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3550 (49406,4,1,-1,'Gilnean Neophyte\'s Boots',62568,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3551 (49407,4,1,-1,'Gilnean Acolyte\'s Boots',68132,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3552 (49408,4,1,-1,'Gilnean Acolyte\'s Robe',62565,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3553 (49409,4,1,-1,'Gilnean Acolyte\'s Pants',62566,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3554 (49502,4,2,-1,'Goblin Trapper\'s Shirt',62614,1,0,8192,0,0,0,1,9,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3555 (49503,4,2,-1,'Goblin Trapper\'s Pants',69187,1,0,8192,0,0,0,1,9,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3556 (49504,4,2,-1,'Goblin Trapper\'s Boots',62617,1,0,8192,0,0,0,1,6,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3557 (49505,4,1,-1,'Goblin Apprentice\'s Robe',62618,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3558 (49506,4,1,-1,'Goblin Apprentice\'s Pants',62621,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3559 (49508,4,1,-1,'Goblin Apprentice\'s Boots',9929,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3560 (49510,4,1,-1,'Goblin Neophyte\'s Robe',65789,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3561 (49512,4,1,-1,'Goblin Neophyte\'s Pants',62598,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3562 (49514,4,2,-1,'Goblin Thug\'s Tunic',65799,1,0,8192,0,0,0,1,9,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3563 (49515,4,2,-1,'Goblin Thug\'s Pants',69188,1,0,8192,0,0,0,1,9,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3564 (49516,4,2,-1,'Goblin Thug\'s Boots',65798,1,0,8192,0,0,0,1,7,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3565 (49520,4,1,-1,'Goblin Acolyte\'s Robe',65787,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3566 (49521,4,1,-1,'Goblin Acolyte\'s Pants',62621,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3567 (49522,4,1,-1,'Goblin Acolyte\'s Shoes',4143,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3568 (49524,4,3,-1,'Goblin Brawler\'s Harness',69181,1,0,8192,0,0,0,1,10,2,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3569 (49527,4,3,-1,'Goblin Brawler\'s Boots',69185,1,0,8192,0,0,0,1,8,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3570 (49528,4,3,-1,'Goblin Brawler\'s Greaves',69183,1,0,8192,0,0,0,1,10,2,7,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3571 (49529,4,3,-1,'Goblin Brawler\'s Gauntlets',69182,1,0,8192,0,0,0,1,5,1,10,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,18,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),
3572 (49531,4,1,-1,'Goblin Neophyte\'s Shoes',6318,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3573 (49563,4,2,-1,'Gilnean Novice\'s Tunic',65854,1,0,8192,0,0,0,1,8,1,5,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3574 (49564,4,2,-1,'Gilnean Novice\'s Boots',65851,1,0,8192,0,0,0,1,6,1,8,-1,-1,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,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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3575 (49565,4,2,-1,'Gilnean Novice\'s Gloves',65852,1,0,8192,0,0,0,1,4,1,10,-1,-1,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,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,0,'',0,0,0,0,0,7,0,0,0,0,18,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),
3576 (49566,4,2,-1,'Gilnean Novice\'s Pants',65853,1,0,8192,0,0,0,1,9,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3577 (49567,4,0,-1,'Gilnean Adventurer\'s Shirt',62558,1,0,8192,0,0,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,-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,0,'',0,0,0,0,0,7,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),
3578 (49568,4,2,-1,'Gilnean Trapper\'s Pants',62706,1,0,8192,0,0,0,1,9,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3579 (49569,4,2,-1,'Gilnean Trapper\'s Boots',62707,1,0,8192,0,0,0,1,6,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3580 (49570,4,2,-1,'Gilnean Trapper\'s Tunic',98023,1,0,8192,0,0,0,1,9,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3581 (49571,4,2,-1,'Gilnean Trapper\'s Gloves',69176,1,0,8192,0,0,0,1,4,1,10,-1,-1,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,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,0,'',0,0,0,0,0,7,0,0,0,0,18,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),
3582 (49572,4,2,-1,'Gilnean Footpad\'s Pants',65849,1,0,8192,0,0,0,1,9,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3583 (49573,4,2,-1,'Gilnean Footpad\'s Gloves',69175,1,0,8192,0,0,0,1,4,1,10,-1,-1,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,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,0,'',0,0,0,0,0,7,0,0,0,0,18,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),
3584 (49574,4,2,-1,'Gilnean Footpad\'s Tunic',65850,1,0,8192,0,0,0,1,9,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3585 (49575,4,2,-1,'Gilnean Footpad\'s Boots',65847,1,0,8192,0,0,0,1,7,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3586 (49576,4,3,-1,'Gilnean Recruit\'s Pants',68130,1,0,8192,0,0,0,1,11,2,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3587 (49577,4,3,-1,'Gilnean Recruit\'s Belt',68129,1,0,8192,0,0,0,1,5,1,6,-1,-1,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,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,0,'',0,0,0,0,0,7,0,0,0,0,18,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),
3588 (49578,4,3,-1,'Gilnean Recruit\'s Tunic',68128,1,0,8192,0,0,0,1,11,2,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3589 (49579,4,3,-1,'Gilnean Recruit\'s Boots',68131,1,0,8192,0,0,0,1,8,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3590 (49778,2,8,-1,'Worn Greatsword',2380,1,0,8192,1.0163,1,1,1,23,4,17,262143,8388607,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,2900,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,0,'',0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0.4,0,0,0,0,0),
3591 (50055,2,15,-1,'Worn Dirk',2704,1,0,8192,0.9829,1,1,1,18,3,22,-1,-1,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,1600,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,0,'',0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0.6,0,0,0,0,0),
3592 (50057,2,15,-1,'Sharp Dirk',37170,1,0,8192,0.9902,1,1,1,18,3,22,-1,-1,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,1600,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,0,'',0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0.6,0,0,0,0,0),
3593 (52532,2,1,-1,'Worn Wood Chopper',65743,1,0,8192,0,0,0,1,24,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,1,1,0,0,0,20,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),
3594 (52533,4,1,-1,'Squire\'s Boots',65745,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3595 (52534,4,1,-1,'Primal Robe',65746,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3596 (52535,4,1,-1,'Primal Pants',36125,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3597 (52538,4,1,-1,'Primal Robe',12648,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3598 (52539,4,1,-1,'Primal Pants',9975,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3599 (52540,4,1,-1,'Primal Boots',9977,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3600 (52543,4,1,-1,'Acolyte\'s Robe',65782,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3601 (52544,4,1,-1,'Primal Robe',65777,1,0,8192,0,0,0,1,7,1,20,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3602 (52545,4,1,-1,'Primal Pants',14247,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3603 (52546,4,1,-1,'Apprentice\'s Robe',65778,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3604 (52547,4,1,-1,'Neophyte\'s Robe',16514,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3605 (52549,4,1,-1,'Initiate\'s Pants',14247,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3606 (52550,4,2,-1,'Primal Shirt',65801,1,0,8192,0,0,0,1,9,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3607 (52551,4,2,-1,'Primal Pants',62573,1,0,8192,0,0,0,1,9,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3608 (52552,4,2,-1,'Primal Boots',65800,1,0,8192,0,0,0,1,7,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3609 (52553,4,1,-1,'Apprentice\'s Robe',65793,1,0,8192,0,0,0,1,7,1,20,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3610 (52554,4,1,-1,'Apprentice\'s Boots',65794,1,0,8192,0,0,0,1,5,1,8,-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,-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,0,'',0,0,0,0,0,7,0,0,0,0,25,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),
3611 (52557,2,5,-1,'Battleworn Hammer',8687,1,0,8192,0,0,0,1,22,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,2,1,0,0,0,20,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),
3612 (52679,4,1,-1,'Acolyte\'s Pants',65845,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3613 (52680,4,1,-1,'Neophyte\'s Pants',19030,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3614 (52681,4,1,-1,'Apprentice\'s Pants',65846,1,0,8192,0,0,0,1,7,1,7,-1,-1,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,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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3615 (57243,2,6,-1,'Worn Spear',68667,1,0,8192,0,0,0,1,23,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,1,2,0,0,0,20,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),
3616 (57244,2,6,-1,'Warder\'s Spear',68668,1,0,8192,0,0,0,1,23,4,17,-1,-1,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,2900,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,0,'',0,0,0,0,0,1,2,0,0,0,20,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),
3617 (58231,4,1,-1,'Recruit\'s Vest',33310,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3618 (58232,4,1,-1,'Rugged Trapper\'s Vest',9976,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3619 (58233,4,1,-1,'Squire\'s Vest',3265,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3620 (58234,4,1,-1,'Footpad\'s Vest',9906,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3621 (58235,4,1,-1,'Warder\'s Vest',33352,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3622 (58237,4,1,-1,'Initiate\'s Vest',36789,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3623 (58238,4,1,-1,'Lookout\'s Vest',33353,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3624 (58240,4,1,-1,'Scout\'s Vest',36118,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3625 (58242,4,1,-1,'Squire\'s Vest',36133,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3626 (58243,4,1,-1,'Recruit\'s Vest',36124,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3627 (58244,4,1,-1,'Recruit\'s Vest',9983,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3628 (58245,4,1,-1,'Brawler\'s Vest',9995,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3629 (58246,4,1,-1,'Thug Vest',10005,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3630 (58247,4,1,-1,'Trapper\'s Vest',10112,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0),
3631 (58248,4,1,-1,'Initiate\'s Vest',65792,1,0,8192,0,0,0,1,7,1,5,-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,-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,0,'',0,0,0,0,0,7,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,0,0,0,0,0);
3632 /*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
3633 UNLOCK TABLES;
3636 -- Table structure for table `locales_achievement_reward`
3639 DROP TABLE IF EXISTS `locales_achievement_reward`;
3640 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3641 /*!40101 SET character_set_client = utf8 */;
3642 CREATE TABLE `locales_achievement_reward` (
3643   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3644   `gender` tinyint(3) NOT NULL DEFAULT '2',
3645   `subject_loc1` varchar(100) NOT NULL DEFAULT '',
3646   `subject_loc2` varchar(100) NOT NULL DEFAULT '',
3647   `subject_loc3` varchar(100) NOT NULL DEFAULT '',
3648   `subject_loc4` varchar(100) NOT NULL DEFAULT '',
3649   `subject_loc5` varchar(100) NOT NULL DEFAULT '',
3650   `subject_loc6` varchar(100) NOT NULL DEFAULT '',
3651   `subject_loc7` varchar(100) NOT NULL DEFAULT '',
3652   `subject_loc8` varchar(100) NOT NULL DEFAULT '',
3653   `text_loc1` text,
3654   `text_loc2` text,
3655   `text_loc3` text,
3656   `text_loc4` text,
3657   `text_loc5` text,
3658   `text_loc6` text,
3659   `text_loc7` text,
3660   `text_loc8` text,
3661   PRIMARY KEY (`entry`,`gender`)
3662 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3663 /*!40101 SET character_set_client = @saved_cs_client */;
3666 -- Dumping data for table `locales_achievement_reward`
3669 LOCK TABLES `locales_achievement_reward` WRITE;
3670 /*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
3671 /*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
3672 UNLOCK TABLES;
3675 -- Table structure for table `locales_creature`
3678 DROP TABLE IF EXISTS `locales_creature`;
3679 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3680 /*!40101 SET character_set_client = utf8 */;
3681 CREATE TABLE `locales_creature` (
3682   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3683   `name_loc1` varchar(100) NOT NULL DEFAULT '',
3684   `name_loc2` varchar(100) NOT NULL DEFAULT '',
3685   `name_loc3` varchar(100) NOT NULL DEFAULT '',
3686   `name_loc4` varchar(100) NOT NULL DEFAULT '',
3687   `name_loc5` varchar(100) NOT NULL DEFAULT '',
3688   `name_loc6` varchar(100) NOT NULL DEFAULT '',
3689   `name_loc7` varchar(100) NOT NULL DEFAULT '',
3690   `name_loc8` varchar(100) NOT NULL DEFAULT '',
3691   `subname_loc1` varchar(100) DEFAULT NULL,
3692   `subname_loc2` varchar(100) DEFAULT NULL,
3693   `subname_loc3` varchar(100) DEFAULT NULL,
3694   `subname_loc4` varchar(100) DEFAULT NULL,
3695   `subname_loc5` varchar(100) DEFAULT NULL,
3696   `subname_loc6` varchar(100) DEFAULT NULL,
3697   `subname_loc7` varchar(100) DEFAULT NULL,
3698   `subname_loc8` varchar(100) DEFAULT NULL,
3699   PRIMARY KEY (`entry`)
3700 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3701 /*!40101 SET character_set_client = @saved_cs_client */;
3704 -- Dumping data for table `locales_creature`
3707 LOCK TABLES `locales_creature` WRITE;
3708 /*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
3709 /*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
3710 UNLOCK TABLES;
3713 -- Table structure for table `locales_gameobject`
3716 DROP TABLE IF EXISTS `locales_gameobject`;
3717 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3718 /*!40101 SET character_set_client = utf8 */;
3719 CREATE TABLE `locales_gameobject` (
3720   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3721   `name_loc1` varchar(100) NOT NULL DEFAULT '',
3722   `name_loc2` varchar(100) NOT NULL DEFAULT '',
3723   `name_loc3` varchar(100) NOT NULL DEFAULT '',
3724   `name_loc4` varchar(100) NOT NULL DEFAULT '',
3725   `name_loc5` varchar(100) NOT NULL DEFAULT '',
3726   `name_loc6` varchar(100) NOT NULL DEFAULT '',
3727   `name_loc7` varchar(100) NOT NULL DEFAULT '',
3728   `name_loc8` varchar(100) NOT NULL DEFAULT '',
3729   `castbarcaption_loc1` varchar(100) NOT NULL DEFAULT '',
3730   `castbarcaption_loc2` varchar(100) NOT NULL DEFAULT '',
3731   `castbarcaption_loc3` varchar(100) NOT NULL DEFAULT '',
3732   `castbarcaption_loc4` varchar(100) NOT NULL DEFAULT '',
3733   `castbarcaption_loc5` varchar(100) NOT NULL DEFAULT '',
3734   `castbarcaption_loc6` varchar(100) NOT NULL DEFAULT '',
3735   `castbarcaption_loc7` varchar(100) NOT NULL DEFAULT '',
3736   `castbarcaption_loc8` varchar(100) NOT NULL DEFAULT '',
3737   PRIMARY KEY (`entry`)
3738 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3739 /*!40101 SET character_set_client = @saved_cs_client */;
3742 -- Dumping data for table `locales_gameobject`
3745 LOCK TABLES `locales_gameobject` WRITE;
3746 /*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
3747 /*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
3748 UNLOCK TABLES;
3751 -- Table structure for table `locales_gossip_menu_option`
3754 DROP TABLE IF EXISTS `locales_gossip_menu_option`;
3755 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3756 /*!40101 SET character_set_client = utf8 */;
3757 CREATE TABLE `locales_gossip_menu_option` (
3758   `menu_id` smallint(6) unsigned NOT NULL DEFAULT '0',
3759   `id` smallint(6) unsigned NOT NULL DEFAULT '0',
3760   `option_text_loc1` text,
3761   `option_text_loc2` text,
3762   `option_text_loc3` text,
3763   `option_text_loc4` text,
3764   `option_text_loc5` text,
3765   `option_text_loc6` text,
3766   `option_text_loc7` text,
3767   `option_text_loc8` text,
3768   `box_text_loc1` text,
3769   `box_text_loc2` text,
3770   `box_text_loc3` text,
3771   `box_text_loc4` text,
3772   `box_text_loc5` text,
3773   `box_text_loc6` text,
3774   `box_text_loc7` text,
3775   `box_text_loc8` text,
3776   PRIMARY KEY (`menu_id`,`id`)
3777 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3778 /*!40101 SET character_set_client = @saved_cs_client */;
3781 -- Dumping data for table `locales_gossip_menu_option`
3784 LOCK TABLES `locales_gossip_menu_option` WRITE;
3785 /*!40000 ALTER TABLE `locales_gossip_menu_option` DISABLE KEYS */;
3786 /*!40000 ALTER TABLE `locales_gossip_menu_option` ENABLE KEYS */;
3787 UNLOCK TABLES;
3790 -- Table structure for table `locales_item`
3793 DROP TABLE IF EXISTS `locales_item`;
3794 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3795 /*!40101 SET character_set_client = utf8 */;
3796 CREATE TABLE `locales_item` (
3797   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3798   `name_loc1` varchar(100) NOT NULL DEFAULT '',
3799   `name_loc2` varchar(100) NOT NULL DEFAULT '',
3800   `name_loc3` varchar(100) NOT NULL DEFAULT '',
3801   `name_loc4` varchar(100) NOT NULL DEFAULT '',
3802   `name_loc5` varchar(100) NOT NULL DEFAULT '',
3803   `name_loc6` varchar(100) NOT NULL DEFAULT '',
3804   `name_loc7` varchar(100) NOT NULL DEFAULT '',
3805   `name_loc8` varchar(100) NOT NULL DEFAULT '',
3806   `description_loc1` varchar(255) DEFAULT NULL,
3807   `description_loc2` varchar(255) DEFAULT NULL,
3808   `description_loc3` varchar(255) DEFAULT NULL,
3809   `description_loc4` varchar(255) DEFAULT NULL,
3810   `description_loc5` varchar(255) DEFAULT NULL,
3811   `description_loc6` varchar(255) DEFAULT NULL,
3812   `description_loc7` varchar(255) DEFAULT NULL,
3813   `description_loc8` varchar(255) DEFAULT NULL,
3814   PRIMARY KEY (`entry`)
3815 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3816 /*!40101 SET character_set_client = @saved_cs_client */;
3819 -- Dumping data for table `locales_item`
3822 LOCK TABLES `locales_item` WRITE;
3823 /*!40000 ALTER TABLE `locales_item` DISABLE KEYS */;
3824 /*!40000 ALTER TABLE `locales_item` ENABLE KEYS */;
3825 UNLOCK TABLES;
3828 -- Table structure for table `locales_npc_text`
3831 DROP TABLE IF EXISTS `locales_npc_text`;
3832 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3833 /*!40101 SET character_set_client = utf8 */;
3834 CREATE TABLE `locales_npc_text` (
3835   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3836   `Text0_0_loc1` longtext,
3837   `Text0_0_loc2` longtext,
3838   `Text0_0_loc3` longtext,
3839   `Text0_0_loc4` longtext,
3840   `Text0_0_loc5` longtext,
3841   `Text0_0_loc6` longtext,
3842   `Text0_0_loc7` longtext,
3843   `Text0_0_loc8` longtext,
3844   `Text0_1_loc1` longtext,
3845   `Text0_1_loc2` longtext,
3846   `Text0_1_loc3` longtext,
3847   `Text0_1_loc4` longtext,
3848   `Text0_1_loc5` longtext,
3849   `Text0_1_loc6` longtext,
3850   `Text0_1_loc7` longtext,
3851   `Text0_1_loc8` longtext,
3852   `Text1_0_loc1` longtext,
3853   `Text1_0_loc2` longtext,
3854   `Text1_0_loc3` longtext,
3855   `Text1_0_loc4` longtext,
3856   `Text1_0_loc5` longtext,
3857   `Text1_0_loc6` longtext,
3858   `Text1_0_loc7` longtext,
3859   `Text1_0_loc8` longtext,
3860   `Text1_1_loc1` longtext,
3861   `Text1_1_loc2` longtext,
3862   `Text1_1_loc3` longtext,
3863   `Text1_1_loc4` longtext,
3864   `Text1_1_loc5` longtext,
3865   `Text1_1_loc6` longtext,
3866   `Text1_1_loc7` longtext,
3867   `Text1_1_loc8` longtext,
3868   `Text2_0_loc1` longtext,
3869   `Text2_0_loc2` longtext,
3870   `Text2_0_loc3` longtext,
3871   `Text2_0_loc4` longtext,
3872   `Text2_0_loc5` longtext,
3873   `Text2_0_loc6` longtext,
3874   `Text2_0_loc7` longtext,
3875   `Text2_0_loc8` longtext,
3876   `Text2_1_loc1` longtext,
3877   `Text2_1_loc2` longtext,
3878   `Text2_1_loc3` longtext,
3879   `Text2_1_loc4` longtext,
3880   `Text2_1_loc5` longtext,
3881   `Text2_1_loc6` longtext,
3882   `Text2_1_loc7` longtext,
3883   `Text2_1_loc8` longtext,
3884   `Text3_0_loc1` longtext,
3885   `Text3_0_loc2` longtext,
3886   `Text3_0_loc3` longtext,
3887   `Text3_0_loc4` longtext,
3888   `Text3_0_loc5` longtext,
3889   `Text3_0_loc6` longtext,
3890   `Text3_0_loc7` longtext,
3891   `Text3_0_loc8` longtext,
3892   `Text3_1_loc1` longtext,
3893   `Text3_1_loc2` longtext,
3894   `Text3_1_loc3` longtext,
3895   `Text3_1_loc4` longtext,
3896   `Text3_1_loc5` longtext,
3897   `Text3_1_loc6` longtext,
3898   `Text3_1_loc7` longtext,
3899   `Text3_1_loc8` longtext,
3900   `Text4_0_loc1` longtext,
3901   `Text4_0_loc2` longtext,
3902   `Text4_0_loc3` longtext,
3903   `Text4_0_loc4` longtext,
3904   `Text4_0_loc5` longtext,
3905   `Text4_0_loc6` longtext,
3906   `Text4_0_loc7` longtext,
3907   `Text4_0_loc8` longtext,
3908   `Text4_1_loc1` longtext,
3909   `Text4_1_loc2` longtext,
3910   `Text4_1_loc3` longtext,
3911   `Text4_1_loc4` longtext,
3912   `Text4_1_loc5` longtext,
3913   `Text4_1_loc6` longtext,
3914   `Text4_1_loc7` longtext,
3915   `Text4_1_loc8` longtext,
3916   `Text5_0_loc1` longtext,
3917   `Text5_0_loc2` longtext,
3918   `Text5_0_loc3` longtext,
3919   `Text5_0_loc4` longtext,
3920   `Text5_0_loc5` longtext,
3921   `Text5_0_loc6` longtext,
3922   `Text5_0_loc7` longtext,
3923   `Text5_0_loc8` longtext,
3924   `Text5_1_loc1` longtext,
3925   `Text5_1_loc2` longtext,
3926   `Text5_1_loc3` longtext,
3927   `Text5_1_loc4` longtext,
3928   `Text5_1_loc5` longtext,
3929   `Text5_1_loc6` longtext,
3930   `Text5_1_loc7` longtext,
3931   `Text5_1_loc8` longtext,
3932   `Text6_0_loc1` longtext,
3933   `Text6_0_loc2` longtext,
3934   `Text6_0_loc3` longtext,
3935   `Text6_0_loc4` longtext,
3936   `Text6_0_loc5` longtext,
3937   `Text6_0_loc6` longtext,
3938   `Text6_0_loc7` longtext,
3939   `Text6_0_loc8` longtext,
3940   `Text6_1_loc1` longtext,
3941   `Text6_1_loc2` longtext,
3942   `Text6_1_loc3` longtext,
3943   `Text6_1_loc4` longtext,
3944   `Text6_1_loc5` longtext,
3945   `Text6_1_loc6` longtext,
3946   `Text6_1_loc7` longtext,
3947   `Text6_1_loc8` longtext,
3948   `Text7_0_loc1` longtext,
3949   `Text7_0_loc2` longtext,
3950   `Text7_0_loc3` longtext,
3951   `Text7_0_loc4` longtext,
3952   `Text7_0_loc5` longtext,
3953   `Text7_0_loc6` longtext,
3954   `Text7_0_loc7` longtext,
3955   `Text7_0_loc8` longtext,
3956   `Text7_1_loc1` longtext,
3957   `Text7_1_loc2` longtext,
3958   `Text7_1_loc3` longtext,
3959   `Text7_1_loc4` longtext,
3960   `Text7_1_loc5` longtext,
3961   `Text7_1_loc6` longtext,
3962   `Text7_1_loc7` longtext,
3963   `Text7_1_loc8` longtext,
3964   PRIMARY KEY (`entry`)
3965 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3966 /*!40101 SET character_set_client = @saved_cs_client */;
3969 -- Dumping data for table `locales_npc_text`
3972 LOCK TABLES `locales_npc_text` WRITE;
3973 /*!40000 ALTER TABLE `locales_npc_text` DISABLE KEYS */;
3974 /*!40000 ALTER TABLE `locales_npc_text` ENABLE KEYS */;
3975 UNLOCK TABLES;
3978 -- Table structure for table `locales_page_text`
3981 DROP TABLE IF EXISTS `locales_page_text`;
3982 /*!40101 SET @saved_cs_client     = @@character_set_client */;
3983 /*!40101 SET character_set_client = utf8 */;
3984 CREATE TABLE `locales_page_text` (
3985   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
3986   `Text_loc1` longtext,
3987   `Text_loc2` longtext,
3988   `Text_loc3` longtext,
3989   `Text_loc4` longtext,
3990   `Text_loc5` longtext,
3991   `Text_loc6` longtext,
3992   `Text_loc7` longtext,
3993   `Text_loc8` longtext,
3994   PRIMARY KEY (`entry`)
3995 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3996 /*!40101 SET character_set_client = @saved_cs_client */;
3999 -- Dumping data for table `locales_page_text`
4002 LOCK TABLES `locales_page_text` WRITE;
4003 /*!40000 ALTER TABLE `locales_page_text` DISABLE KEYS */;
4004 /*!40000 ALTER TABLE `locales_page_text` ENABLE KEYS */;
4005 UNLOCK TABLES;
4008 -- Table structure for table `locales_points_of_interest`
4011 DROP TABLE IF EXISTS `locales_points_of_interest`;
4012 /*!40101 SET @saved_cs_client     = @@character_set_client */;
4013 /*!40101 SET character_set_client = utf8 */;
4014 CREATE TABLE `locales_points_of_interest` (
4015   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
4016   `icon_name_loc1` text,
4017   `icon_name_loc2` text,
4018   `icon_name_loc3` text,
4019   `icon_name_loc4` text,
4020   `icon_name_loc5` text,
4021   `icon_name_loc6` text,
4022   `icon_name_loc7` text,
4023   `icon_name_loc8` text,
4024   PRIMARY KEY (`entry`)
4025 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
4026 /*!40101 SET character_set_client = @saved_cs_client */;
4029 -- Dumping data for table `locales_points_of_interest`
4032 LOCK TABLES `locales_points_of_interest` WRITE;
4033 /*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
4034 /*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
4035 UNLOCK TABLES;
4038 -- Table structure for table `locales_quest`
4041 DROP TABLE IF EXISTS `locales_quest`;
4042 /*!40101 SET @saved_cs_client     = @@character_set_client */;
4043 /*!40101 SET character_set_client = utf8 */;
4044 CREATE TABLE `locales_quest` (
4045   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
4046   `Title_loc1` text,
4047   `Title_loc2` text,
4048   `Title_loc3` text,
4049   `Title_loc4` text,
4050   `Title_loc5` text,
4051   `Title_loc6` text,
4052   `Title_loc7` text,
4053   `Title_loc8` text,
4054   `Details_loc1` text,
4055   `Details_loc2` text,
4056   `Details_loc3` text,
4057   `Details_loc4` text,
4058   `Details_loc5` text,
4059   `Details_loc6` text,
4060   `Details_loc7` text,
4061   `Details_loc8` text,
4062   `Objectives_loc1` text,
4063   `Objectives_loc2` text,
4064   `Objectives_loc3` text,
4065   `Objectives_loc4` text,
4066   `Objectives_loc5` text,
4067   `Objectives_loc6` text,
4068   `Objectives_loc7` text,
4069   `Objectives_loc8` text,
4070   `OfferRewardText_loc1` text,
4071   `OfferRewardText_loc2` text,
4072   `OfferRewardText_loc3` text,
4073   `OfferRewardText_loc4` text,
4074   `OfferRewardText_loc5` text,
4075   `OfferRewardText_loc6` text,
4076   `OfferRewardText_loc7` text,
4077   `OfferRewardText_loc8` text,
4078   `RequestItemsText_loc1` text,
4079   `RequestItemsText_loc2` text,
4080   `RequestItemsText_loc3` text,
4081   `RequestItemsText_loc4` text,
4082   `RequestItemsText_loc5` text,
4083   `RequestItemsText_loc6` text,
4084   `RequestItemsText_loc7` text,
4085   `RequestItemsText_loc8` text,
4086   `EndText_loc1` text,
4087   `EndText_loc2` text,
4088   `EndText_loc3` text,
4089   `EndText_loc4` text,
4090   `EndText_loc5` text,
4091   `EndText_loc6` text,
4092   `EndText_loc7` text,
4093   `EndText_loc8` text,
4094   `CompletedText_loc1` text,
4095   `CompletedText_loc2` text,
4096   `CompletedText_loc3` text,
4097   `CompletedText_loc4` text,
4098   `CompletedText_loc5` text,
4099   `CompletedText_loc6` text,
4100   `CompletedText_loc7` text,
4101   `CompletedText_loc8` text,
4102   `ObjectiveText1_loc1` text,
4103   `ObjectiveText1_loc2` text,
4104   `ObjectiveText1_loc3` text,
4105   `ObjectiveText1_loc4` text,
4106   `ObjectiveText1_loc5` text,
4107   `ObjectiveText1_loc6` text,
4108   `ObjectiveText1_loc7` text,
4109   `ObjectiveText1_loc8` text,
4110   `ObjectiveText2_loc1` text,
4111   `ObjectiveText2_loc2` text,
4112   `ObjectiveText2_loc3` text,
4113   `ObjectiveText2_loc4` text,
4114   `ObjectiveText2_loc5` text,
4115   `ObjectiveText2_loc6` text,
4116   `ObjectiveText2_loc7` text,
4117   `ObjectiveText2_loc8` text,
4118   `ObjectiveText3_loc1` text,
4119   `ObjectiveText3_loc2` text,
4120   `ObjectiveText3_loc3` text,
4121   `ObjectiveText3_loc4` text,
4122   `ObjectiveText3_loc5` text,
4123   `ObjectiveText3_loc6` text,
4124   `ObjectiveText3_loc7` text,
4125   `ObjectiveText3_loc8` text,
4126   `ObjectiveText4_loc1` text,
4127   `ObjectiveText4_loc2` text,
4128   `ObjectiveText4_loc3` text,
4129   `ObjectiveText4_loc4` text,
4130   `ObjectiveText4_loc5` text,
4131   `ObjectiveText4_loc6` text,
4132   `ObjectiveText4_loc7` text,
4133   `ObjectiveText4_loc8` text,
4134   `PortraitGiverName_loc1` text,
4135   `PortraitGiverName_loc2` text,
4136   `PortraitGiverName_loc3` text,
4137   `PortraitGiverName_loc4` text,
4138   `PortraitGiverName_loc5` text,
4139   `PortraitGiverName_loc6` text,
4140   `PortraitGiverName_loc7` text,
4141   `PortraitGiverName_loc8` text,
4142   `PortraitGiverText_loc1` text,
4143   `PortraitGiverText_loc2` text,
4144   `PortraitGiverText_loc3` text,
4145   `PortraitGiverText_loc4` text,
4146   `PortraitGiverText_loc5` text,
4147   `PortraitGiverText_loc6` text,
4148   `PortraitGiverText_loc7` text,
4149   `PortraitGiverText_loc8` text,
4150   `PortraitTurnInName_loc1` text,
4151   `PortraitTurnInName_loc2` text,
4152   `PortraitTurnInName_loc3` text,
4153   `PortraitTurnInName_loc4` text,
4154   `PortraitTurnInName_loc5` text,
4155   `PortraitTurnInName_loc6` text,
4156   `PortraitTurnInName_loc7` text,
4157   `PortraitTurnInName_loc8` text,
4158   `PortraitTurnInText_loc1` text,
4159   `PortraitTurnInText_loc2` text,
4160   `PortraitTurnInText_loc3` text,
4161   `PortraitTurnInText_loc4` text,
4162   `PortraitTurnInText_loc5` text,
4163   `PortraitTurnInText_loc6` text,
4164   `PortraitTurnInText_loc7` text,
4165   `PortraitTurnInText_loc8` text,
4166   PRIMARY KEY (`entry`)
4167 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
4168 /*!40101 SET character_set_client = @saved_cs_client */;
4171 -- Dumping data for table `locales_quest`
4174 LOCK TABLES `locales_quest` WRITE;
4175 /*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
4176 /*!40000 ALTER TABLE `locales_quest` ENABLE KEYS */;
4177 UNLOCK TABLES;
4180 -- Table structure for table `mail_level_reward`
4183 DROP TABLE IF EXISTS `mail_level_reward`;
4184 /*!40101 SET @saved_cs_client     = @@character_set_client */;
4185 /*!40101 SET character_set_client = utf8 */;
4186 CREATE TABLE `mail_level_reward` (
4187   `level` mediumint(8) unsigned NOT NULL DEFAULT '0',
4188   `raceMask` mediumint(8) unsigned NOT NULL DEFAULT '0',
4189   `mailTemplateId` mediumint(8) unsigned NOT NULL DEFAULT '0',
4190   `senderEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
4191   PRIMARY KEY (`level`,`raceMask`)
4192 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Mail System';
4193 /*!40101 SET character_set_client = @saved_cs_client */;
4196 -- Dumping data for table `mail_level_reward`
4199 LOCK TABLES `mail_level_reward` WRITE;
4200 /*!40000 ALTER TABLE `mail_level_reward` DISABLE KEYS */;
4201 /*!40000 ALTER TABLE `mail_level_reward` ENABLE KEYS */;
4202 UNLOCK TABLES;
4205 -- Table structure for table `mail_loot_template`
4208 DROP TABLE IF EXISTS `mail_loot_template`;
4209 /*!40101 SET @saved_cs_client     = @@character_set_client */;
4210 /*!40101 SET character_set_client = utf8 */;
4211 CREATE TABLE `mail_loot_template` (
4212   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
4213   `item` mediumint(8) NOT NULL DEFAULT '0',
4214   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
4215   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
4216   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
4217   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
4218   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
4219   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
4220   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
4221   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
4222   PRIMARY KEY (`entry`,`item`)
4223 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
4224 /*!40101 SET character_set_client = @saved_cs_client */;
4227 -- Dumping data for table `mail_loot_template`
4230 LOCK TABLES `mail_loot_template` WRITE;
4231 /*!40000 ALTER TABLE `mail_loot_template` DISABLE KEYS */;
4232 /*!40000 ALTER TABLE `mail_loot_template` ENABLE KEYS */;
4233 UNLOCK TABLES;
4236 -- Table structure for table `mangos_string`
4239 DROP TABLE IF EXISTS `mangos_string`;
4240 /*!40101 SET @saved_cs_client     = @@character_set_client */;
4241 /*!40101 SET character_set_client = utf8 */;
4242 CREATE TABLE `mangos_string` (
4243   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
4244   `content_default` text NOT NULL,
4245   `content_loc1` text,
4246   `content_loc2` text,
4247   `content_loc3` text,
4248   `content_loc4` text,
4249   `content_loc5` text,
4250   `content_loc6` text,
4251   `content_loc7` text,
4252   `content_loc8` text,
4253   PRIMARY KEY (`entry`)
4254 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
4255 /*!40101 SET character_set_client = @saved_cs_client */;
4258 -- Dumping data for table `mangos_string`
4261 LOCK TABLES `mangos_string` WRITE;
4262 /*!40000 ALTER TABLE `mangos_string` DISABLE KEYS */;
4263 INSERT INTO `mangos_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) VALUES
4264 (1,'You should select a character or a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4265 (2,'You should select a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4266 (3,'|cffff0000[System Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4267 (4,'|cffff0000[Event Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4268 (5,'There is no help for that command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4269 (6,'There is no such command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4270 (7,'There is no such subcommand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4271 (8,'Command %s have subcommands:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4272 (9,'Commands available to you:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4273 (10,'Incorrect syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4274 (11,'Your account level is: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4275 (12,'Online players: %u (max: %u) Queued players: %u (max: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4276 (13,'Server uptime: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4277 (14,'Player saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4278 (15,'All players saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4279 (16,'There are the following active GMs on this server:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4280 (17,'There are no GMs currently logged in on this server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4281 (18,'Cannot do that while flying.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4282 (19,'Cannot do that in Battlegrounds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4283 (20,'Target is flying you can\'t do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4284 (21,'%s is flying command failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4285 (22,'You are not mounted so you can\'t dismount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4286 (23,'Cannot do that while fighting.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4287 (24,'You used it recently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4288 (25,'Password not changed (unknown error)!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4289 (26,'The password was changed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4290 (27,'The old password is wrong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4291 (28,'Your account is now locked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4292 (29,'Your account is now unlocked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4293 (30,', rank ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4294 (31,' [known]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4295 (32,' [learn]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4296 (33,' [passive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4297 (34,' [talent]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4298 (35,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4299 (36,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4300 (37,' (offline)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4301 (38,'on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4302 (39,'off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4303 (40,'You are: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4304 (41,'visible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4305 (42,'invisible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4306 (43,'done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4307 (44,'You',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4308 (45,' <unknown> ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4309 (46,'<error>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4310 (47,'<non-existing character>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4311 (48,'UNKNOWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4312 (49,'You must be at least level %u to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4313 (50,'You must be at least level %u and have item %s to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4314 (51,'Hello! Ready for some training?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4315 (52,'Invaid item count (%u) for item %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4316 (53,'Mail can\'t have more %u item stacks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4317 (54,'The new passwords do not match',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4318 (55,'Your password can\'t be longer than 16 characters (client limit), password not changed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4319 (56,'Current Message of the day: \r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4320 (57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4321 (58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4322 (59,'Using creature EventAI: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4323 (61,'Username: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4324 (62,'Password: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4325 (63,'Accepts whispers',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4326 (64,'Doesn\'t accept whispers',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4327 (65,'Using script library: <Unknown Script Library>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4328 (66,'Using script library: <No Script Library Loaded>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4329 (100,'Global notify: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4330 (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),
4331 (102,'%s is already being teleported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4332 (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),
4333 (104,'You cannot go to the player\'s instance because you are in a party now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4334 (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),
4335 (106,'You can not go to player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4336 (107,'You can not summon player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4337 (108,'You are summoning %s%s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4338 (109,'You are being summoned by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4339 (110,'You are teleporting %s%s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4340 (111,'You are being teleported by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4341 (112,'Player (%s) does not exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4342 (113,'Appearing at %s\'s location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4343 (114,'%s is appearing to your location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4344 (115,'Incorrect values.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4345 (116,'No character selected.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4346 (117,'%s is not in a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4347 (118,'You changed HP of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4348 (119,'%s changed your HP to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4349 (120,'You changed MANA of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4350 (121,'%s changed your MANA to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4351 (122,'You changed ENERGY of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4352 (123,'%s changed your ENERGY to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4353 (124,'Current energy: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4354 (125,'You changed rage of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4355 (126,'%s changed your rage to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4356 (127,'You changed level of %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4357 (128,'GUID %i, faction is %i, flags is %i, npcflag is %i, DY flag is %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4358 (129,'Wrong faction: %u (not found in factiontemplate.dbc).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4359 (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),
4360 (131,'You changed the %s spellmod %u to value %i for spell with family bit %u for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4361 (132,'%s changed your spellmod %u to value %i for spell with family bit %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4362 (133,'%s has access to all taxi nodes now (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4363 (134,'%s has no more access to all taxi nodes now (only visited accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4364 (135,'%s has given you access to all taxi nodes (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4365 (136,'%s has removed access to all taxi nodes (only visited still accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4366 (137,'You set all speeds to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4367 (138,'%s set all your speeds to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4368 (139,'You set the speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4369 (140,'%s set your speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4370 (141,'You set the swim speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4371 (142,'%s set your swim speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4372 (143,'You set the backwards run speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4373 (144,'%s set your backwards run speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4374 (145,'You set the fly speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4375 (146,'%s set your fly speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4376 (147,'You set the size %2.2f of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4377 (148,'%s set your size to %2.2f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4378 (149,'There is no such mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4379 (150,'You give a mount to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4380 (151,'%s gave you a mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4381 (153,'You take all copper of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4382 (154,'%s took you all of your copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4383 (155,'You take %s from %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4384 (156,'%s took %s from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4385 (157,'You give %s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4386 (158,'%s gave you %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4387 (159,'You hear sound %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4388 (161,'Removed bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4389 (162,'Set bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4390 (163,'Teleport location table is empty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4391 (164,'Teleport location not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4392 (165,'Requires search parameter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4393 (166,'There are no teleport locations matching your request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4394 (167,'%s changed your holy power to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4395 (168,'Locations found are:\n %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4396 (169,'Mail sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4397 (170,'You try to hear sound %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4398 (171,'You can\'t teleport self to self!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4399 (172,'server console command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4400 (173,'You changed runic power of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4401 (174,'%s changed your runic power to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4402 (175,'Liquid level: %f, ground: %f, type: %d, status: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4403 (176,'You changed holy power of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4404 (200,'No selection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4405 (201,'Object GUID is: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4406 (202,'The name was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4407 (203,'Error, name can only contain characters A-Z and a-z.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4408 (204,'The subname was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4409 (205,'Not yet implemented',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4410 (206,'Item \'%i\' \'%s\' added to list with maxcount \'%i\' and incrtime \'%i\' and extendedcost \'%i\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4411 (207,'Item \'%i\' not found in database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4412 (208,'Item \'%i\' \'%s\' deleted from vendor list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4413 (209,'Item \'%i\' (isCurrency: %u) not found in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4414 (210,'Item \'%i\' (isCurrency: %u, with extended cost %i) already in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4415 (211,'Spells of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4416 (212,'Spells of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4417 (213,'Talents of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4418 (214,'Talents of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4419 (215,'Your spells have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4420 (216,'Your talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4421 (217,'Unknown case \'%s\' for .resetall command. Type full correct case name.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4422 (218,'Spells will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4423 (219,'Talents will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4424 (220,'Creature (GUID: %u) No waypoint found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4425 (221,'Creature (GUID: %u) Last waypoint not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4426 (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),
4427 (223,'Creature (GUID: %u) No waypoints found - This is a MaNGOS db problem (single float).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4428 (224,'Selected creature is ignored - provided GUID is used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4429 (225,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4430 (226,'You must select a visual waypoint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4431 (227,'No visual waypoints found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4432 (228,'Could not create visual waypoint with creatureID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4433 (229,'All visual waypoints removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4434 (230,'Could not create waypoint-creature with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4435 (231,'No GUID provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4436 (232,'No waypoint number provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4437 (233,'Argument required for \'%s\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4438 (234,'Waypoint %i added to GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4439 (235,'Waypoint %d added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4440 (236,'Waypoint changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4441 (237,'Waypoint %s modified.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4442 (238,'WP export successfull.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4443 (239,'No waypoints found inside the database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4444 (240,'File imported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4445 (241,'Waypoint removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4446 (242,'Warning: Could not delete WP from the world with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4447 (243,'This happens if the waypoint is too far away from your char.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4448 (244,'The WP is deleted from the database, but not from the world here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4449 (245,'They will disappear after a server restart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4450 (246,'Waypoint %d: Info for creature: %s, GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4451 (247,'Waittime: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4452 (248,'Model %d: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4453 (249,'Emote: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4454 (250,'Spell: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4455 (251,'Text%d (ID: %i): %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4456 (252,'AIScript: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4457 (253,'Forced rename for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4458 (254,'Forced rename for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4459 (255,'Waypoint-Creature (GUID: %u) Not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4460 (256,'Could not find NPC...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4461 (257,'Creature movement type set to \'%s\', waypoints removed (if any).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4462 (258,'Creature movement type set to \'%s\', waypoints were not removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4463 (259,'Incorrect value, use on or off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4464 (260,'Value saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4465 (261,'Value saved, you may need to rejoin or clean your client cache.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4466 (262,'Areatrigger ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4467 (263,'Target map or coordinates is invalid (X: %f Y: %f MapId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4468 (264,'Zone coordinates is invalid (X: %f Y: %f AreaId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4469 (265,'Zone %u (%s) is part of instanceable map %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4470 (266,'Nothing found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4471 (267,'Object not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4472 (268,'Creature not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4473 (269,'Currency \'%i\' not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4474 (270,'Creature Removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4475 (271,'Creature moved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4476 (272,'Creature (GUID:%u) must be on the same map as player!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4477 (273,'Game Object (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4478 (274,'Game Object (GUID: %u) has references in not found owner %s GO list, can\'t be deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4479 (275,'Game Object (GUID: %u) removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4480 (276,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) turned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4481 (277,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) moved',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4482 (278,'You must select a vendor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4483 (279,'You must send id for item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4484 (280,'Vendor has too many items (max 128)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4485 (281,'You can\'t kick self, logout instead',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4486 (282,'Player %s kicked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4487 (283,'Meta currency \'%i\' is not allowed in vendors.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4488 (284,'Accepting Whisper: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4489 (285,'Accepting Whisper: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4490 (286,'Accepting Whisper: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4491 (287,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4492 (288,'Tickets count: %i show new tickets: %s\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4493 (289,'New ticket from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4494 (290,'Ticket of %s (Last updated: %s):\n%s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4495 (291,'New ticket show: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4496 (292,'New ticket show: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4497 (293,'Ticket %i doesn\'t exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4498 (294,'All tickets deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4499 (295,'Character %s ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4500 (296,'Ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4501 (297,'Spawn distance changed to: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4502 (298,'Spawn time changed to: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4503 (299,'The currency id %u of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4504 (300,'Your chat has been disabled for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4505 (301,'You have disabled %s\'s chat for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4506 (302,'Player\'s chat is already enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4507 (303,'Your chat has been enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4508 (304,'You have enabled %s\'s chat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4509 (305,'Faction %s (%u) reputation of %s was set to %5d!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4510 (306,'Amount',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4511 (307,'No faction found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4512 (308,'Faction %i unknown!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4513 (309,'Invalid parameter %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4514 (310,'delta must be between 0 and %d (inclusive)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4515 (311,'%d - |cffffffff|Hfaction:%d|h[%s]|h|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4516 (312,' [visible]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4517 (313,' [at war]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4518 (314,' [peace forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4519 (315,' [hidden]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4520 (316,' [invisible forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4521 (317,' [inactive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4522 (318,'Hated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4523 (319,'Hostile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4524 (320,'Unfriendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4525 (321,'Neutral',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4526 (322,'Friendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4527 (323,'Honored',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4528 (324,'Revered',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4529 (325,'Exalted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4530 (326,'Faction %s (%u) can\'not have reputation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4531 (327,' [no reputation]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4532 (328,'Characters at account %s (Id: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4533 (329,'  %s (GUID %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4534 (330,'No players found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4535 (331,'Extended item cost %u not exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4536 (332,'GM mode is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4537 (333,'GM mode is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4538 (334,'GM Chat Badge is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4539 (335,'GM Chat Badge is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4540 (336,'You repair all %s\'s items.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4541 (337,'All your items repaired by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4542 (338,'You set waterwalk mode %s for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4543 (339,'Your waterwalk mode %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4544 (340,'%s is now following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4545 (341,'%s is not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4546 (342,'%s is now not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4547 (343,'Creature (Entry: %u) cannot be tamed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4548 (344,'You already have pet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4549 (345,'Forced customize for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4550 (346,'Forced customize for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4551 (347,'TaxiNode ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4552 (348,'Game Object (Entry: %u) have invalid data and can\'t be spawned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4553 (349,'%d (idx:%d) - |cffffffff|Htitle:%d|h[%s %s]|h|r %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4554 (350,'%d (idx:%d) - [%s %s] %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4555 (351,'No titles found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4556 (352,'Invalid title id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4557 (353,'Title %u (%s) added to known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4558 (354,'Title %u (%s) removed from known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4559 (355,'Title %u (%s) set as current selected title for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4560 (356,'Current selected title for player %s reset as not known now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4561 (357,'Areatrigger %u not has target coordinates',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4562 (358,'No areatriggers found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4563 (359,'%s|cffffffff|Hareatrigger_target:%u|h[Trigger target %u]|h|r Map %u X:%f Y:%f Z:%f%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4564 (360,'%s[Trigger target %u] Map %u X:%f Y:%f Z:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4565 (361,'|cffffffff|Hareatrigger:%u|h[Trigger %u]|h|r Map %u X:%f Y:%f Z:%f%s%s%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4566 (362,'[Trigger %u] Map %u X:%f Y:%f Z:%f%s%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4567 (363,' (Dist %f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4568 (364,' [Tavern]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4569 (365,' [Quest]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4570 (366,'Explore quest:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4571 (367,'Required level %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4572 (368,'Required Items:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4573 (369,'Required quest (normal difficulty):',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4574 (370,'Required heroic keys:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4575 (371,'Required quest (heroic difficulty):',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4576 (372,'No achievement!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4577 (373,'Response:\n%s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4578 (374,'Tickets count: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4579 (375,'Player %s not have tickets.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4580 (376,'%u - |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4581 (377,'No pools found for map \'%s\' (Id:%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4582 (378,'You can\'t use this command at non-instanceable map \'%s\' (Id:%u). Use .lookup pool command instead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4583 (379,'You can\'t use this command without args at non-instanceable map \'%s\' (Id:%u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4584 (380,'%d%s - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4585 (381,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4586 (382,'%d%s - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4587 (383,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4588 (384,'%d%s - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4589 (385,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d Chance:%f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4590 (386,'%d%s - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4591 (387,'%d%s - [%s] X:%f Y:%f Z:%f MapId:%d %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4592 (388,'Creatures with explicitly chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4593 (389,'Creatures with equal chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4594 (390,'Gameobjects with explicitly chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4595 (391,'Gameobjects with equal chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4596 (392,'Pool %u - Mother pool: %u |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4597 (393,'Pool %u - Mother pool: %u [%s] AutoSpawn: %u MaxLimit: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4598 (394,'Pool %u - Mother pool: none AutoSpawn: %u MaxLimit: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4599 (395,'No pools found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4600 (396,'%u - [%s] AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4601 (397,'Pools with explicitly chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4602 (398,'Pools with equal chance:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4603 (399,'%u - |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u Chance: %f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4604 (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4605 (401,'You change security level of account %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4606 (402,'%s changed your security level to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4607 (403,'You have low security level for this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4608 (404,'Creature movement disabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4609 (405,'Creature movement enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4610 (406,'Weather can\'t be changed for this zone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4611 (407,'Weather system disabled at server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4612 (408,'%s is banned for %s. Reason: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4613 (409,'%s is banned permanently for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4614 (410,'%s %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4615 (411,'%s unbanned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4616 (412,'There was an error removing the ban on %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4617 (413,'Account not exist: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4618 (414,'There is no such character.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4619 (415,'There is no such IP in banlist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4620 (416,'Account %s has never been banned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4621 (417,'Ban history for account %s:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4622 (418,'Ban Date: %s Bantime: %s Still active: %s  Reason: %s Set by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4623 (419,'Inf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4624 (420,'Never',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4625 (421,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4626 (422,'No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4627 (423,'IP: %s\nBan Date: %s\nUnban Date: %s\nRemaining: %s\nReason: %s\nSet by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4628 (424,'There is no matching IPban.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4629 (425,'There is no matching account.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4630 (426,'There is no banned account owning a character matching this part.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4631 (427,'The following IPs match your pattern:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4632 (428,'The following accounts match your query:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4633 (429,'You learned many spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4634 (430,'You learned all spells for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4635 (431,'You learned all talents for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4636 (432,'You learned all languages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4637 (433,'You learned all craft skills and recipes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4638 (434,'Could not find \'%s\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4639 (435,'Invalid item id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4640 (436,'No items found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4641 (437,'Invalid gameobject id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4642 (438,'Found items %u: %u ( inventory %u mail %u auction %u guild %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4643 (439,'Found gameobjects %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4644 (440,'Invalid creature id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4645 (441,'Found creatures %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4646 (442,'No area found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4647 (443,'No item sets found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4648 (444,'No skills found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4649 (445,'No spells found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4650 (446,'No quests found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4651 (447,'No creatures found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4652 (448,'No gameobjects found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4653 (449,'Graveyard #%u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4654 (450,'Graveyard #%u already linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4655 (451,'Graveyard #%u linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4656 (452,'Graveyard #%u can\'t be linked to subzone or not existed zone #%u (internal error).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4657 (453,'No currencies found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4658 (454,'No faction in Graveyard with id= #%u , fix your DB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4659 (455,'invalid team, please fix database',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4660 (456,'any',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4661 (457,'alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4662 (458,'horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4663 (459,'Graveyard #%u (faction: %s) is nearest from linked to zone #%u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4664 (460,'Zone #%u doesn\'t have linked graveyards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4665 (461,'Zone #%u doesn\'t have linked graveyards for faction: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4666 (462,'Teleport location already exists!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4667 (463,'Teleport location added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4668 (464,'Teleport location NOT added: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4669 (465,'Teleport location deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4670 (466,'No taxinodes found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4671 (467,'Target unit has %d auras:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4672 (468,'id: %d eff: %d type: %d duration: %d maxduration: %d name: %s%s%s caster: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4673 (469,'Target unit has %d auras of type %d:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4674 (470,'id: %d eff: %d name: %s%s%s caster: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4675 (471,'Quest %u not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4676 (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),
4677 (473,'Quest removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4678 (474,' [rewarded]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4679 (475,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4680 (476,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4681 (477,'%s\'s Fly Mode %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4682 (478,'Opcode %u sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4683 (479,'Character loaded successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4684 (480,'Failed to load the character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4685 (481,'Character dumped successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4686 (482,'Character dump failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4687 (483,'Spell %u broken and not allowed to cast or learn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4688 (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),
4689 (485,'Player %s must have skill %u (%s) before using this command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4690 (486,'Invalid skill id (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4691 (487,'You learned default GM spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4692 (488,'You already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4693 (489,'Target(%s) already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4694 (490,'%s doesn\'t know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4695 (491,'You already forgot that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4696 (492,'All spell cooldowns removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4697 (493,'Spell %u cooldown removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4698 (494,'Command : Additem, itemId = %i, amount = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4699 (495,'Command : Additemset, itemsetId = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4700 (496,'Removed itemID = %i, amount = %i from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4701 (497,'Cannot create item \'%i\' (amount: %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4702 (498,'You need to provide a guild name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4703 (499,'Player not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4704 (500,'Player already has a guild!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4705 (501,'Guild not created! (already exists?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4706 (502,'No items from itemset \'%u\' found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4707 (503,'The distance is: (3D) %f (2D) %f - (3D, point-to-point) %f yards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4708 (504,'Item \'%i\' \'%s\' Item Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4709 (505,'Item \'%i\' doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4710 (506,'Item \'%i\' \'%s\' Added to Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4711 (507,'Item save failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4712 (508,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4713 (509,'%d - sender: %s (guid: %u account: %u ) receiver: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4714 (510,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4715 (511,'Wrong link type!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4716 (512,'%d - |cffffffff|Hitem:%d:0:0:0:0:0:0:0:0|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4717 (513,'%d - |cffffffff|Hquest:%d:%d|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4718 (514,'%d - |cffffffff|Hcreature_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4719 (515,'%d%s - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4720 (516,'%d - |cffffffff|Hgameobject_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4721 (517,'%d%s, Entry %d - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4722 (518,'%d - |cffffffff|Hitemset:%d|h[%s %s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4723 (519,'|cffffffff|Htele:%s|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4724 (520,'%d - |cffffffff|Hspell:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4725 (521,'%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4726 (522,'Game Object (Entry: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4727 (523,'>> Game Object %s (GUID: %u) at %f %f %f. Orientation %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4728 (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),
4729 (525,'>> Add Game Object \'%i\' (%s) (GUID: %i) added at \'%f %f %f\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4730 (526,'%s (lowguid: %u) movement generators stack:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4731 (527,'   Idle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4732 (528,'   Random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4733 (529,'   Waypoint',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4734 (530,'   Animal random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4735 (531,'   Confused',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4736 (532,'   Targeted to player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4737 (533,'   Targeted to creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4738 (534,'   Targeted to <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4739 (535,'   Home movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4740 (536,'   Home movement used for player?!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4741 (537,'   Taxi flight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4742 (538,'   Unknown movement generator (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4743 (539,'Player selected: %s.\nFaction: %u.\nnpcFlags: %u.\nEntry: %u.\nDisplayID: %u (Native: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4744 (540,'Level: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4745 (541,'Health (base): %u. (max): %u. (current): %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4746 (542,'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4747 (543,'Loot: %u Pickpocket: %u Skinning: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4748 (544,'Position: %f %f %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4749 (545,'*** Is a vendor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4750 (546,'*** Is a trainer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4751 (547,'InstanceID: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4752 (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),
4753 (549,'Played time: %s Level: %u Money: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4754 (550,'Command .pinfo doesn\'t support \'rep\' option for offline players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4755 (551,'%s has explored all zones now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4756 (552,'%s has no more explored zones.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4757 (553,'%s has explored all zones for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4758 (554,'%s has hidden all zones from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4759 (557,'%s level up you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4760 (558,'%s level down you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4761 (559,'%s reset your level progress.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4762 (560,'The area has been set as explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4763 (561,'The area has been set as not explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4764 (564,'The value index %u is too big to %s (count: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4765 (565,'Set for %s field:%u to uint32 value:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4766 (566,'You set for %s field:%u to uint32 value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4767 (567,'Set for %s field:%u to to float value:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4768 (568,'You set for %s field:%u to float value: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4769 (569,'Get %s uint32 value:[FIELD]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4770 (570,'%s has uint32 value:[FIELD]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4771 (571,'Get %s float value:[FIELD]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4772 (572,'%s has float value:[FIELD]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4773 (575,'Modify %s uint32 field:%u to sum with:%i = %u (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4774 (576,'You modify for %s uint32 field:%u to sum with:%i = %u (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4775 (577,'You are now invisible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4776 (578,'You are now visible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4777 (579,'Selected player or creature not have victim.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4778 (580,'You learned all default spells for race/class and completed quests rewarded spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4779 (581,'Found near gameobjects (distance %f): %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4780 (582,'SpawnTime: Full:%s Remain:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4781 (583,'%d - |cffffffff|Hgameevent:%d|h[%s]|h|r%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4782 (584,'No event found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4783 (585,'Event not exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4784 (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),
4785 (587,'Event %u already active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4786 (588,'Event %u not active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4787 (589,'   Point movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4788 (590,'   Fear movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4789 (591,'   Distract movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4790 (592,'You have learned all spells in craft: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4791 (593,'Currently Banned Accounts:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4792 (594,'|    Account    |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4793 (595,'Currently Banned IPs:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4794 (596,'|      IP       |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4795 (597,'Current gamemasters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4796 (598,'|    Account    |  GM  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4797 (599,'No gamemasters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4798 (600,'The Alliance wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4799 (601,'The Horde wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4800 (602,'The battle for Warsong Gulch begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4801 (603,'The battle for Warsong Gulch begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4802 (604,'Let the battle for Warsong Gulch begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4803 (605,'$n captured the Horde flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4804 (606,'$n captured the Alliance flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4805 (607,'The Horde flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4806 (608,'The Alliance Flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4807 (609,'The Alliance Flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4808 (610,'The Horde flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4809 (611,'The Horde flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4810 (612,'The Alliance Flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4811 (613,'The flags are now placed at their bases.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4812 (614,'The Alliance flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4813 (615,'The Horde flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4814 (636,'The battle begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4815 (637,'The battle begins in 30 seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4816 (638,'The battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4817 (650,'Alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4818 (651,'Horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4819 (652,'stables',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4820 (653,'blacksmith',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4821 (654,'farm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4822 (655,'lumber mill',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4823 (656,'mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4824 (657,'The %s has taken the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4825 (658,'$n has defended the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4826 (659,'$n has assaulted the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4827 (660,'$n claims the %s! If left unchallenged, the %s will control it in 1 minute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4828 (661,'The battle for Arathi Basin begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4829 (662,'The battle for Arathi Basin begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4830 (663,'The battle for Arathi Basin has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4831 (664,'The Alliance has gathered $1776W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4832 (665,'The Horde has gathered $1777W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4833 (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),
4834 (667,'The Alliance has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4835 (668,'The Horde has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4836 (669,'The Alliance has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4837 (670,'The Horde has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4838 (671,'The Alliance has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4839 (672,'The Horde has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4840 (673,'The Alliance has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4841 (674,'The Horde has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4842 (675,'The Alliance has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4843 (676,'The Horde has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4844 (677,'The Alliance has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4845 (678,'The Horde has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4846 (679,'The Alliance has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4847 (680,'The Horde has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4848 (681,'The Alliance has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4849 (682,'The Horde has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4850 (683,'%s has taken the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4851 (684,'The Alliance have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4852 (685,'The Horde have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4853 (686,'The flag has been dropped.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4854 (687,'The flag has been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4855 (700,'You must be level %u to form an arena team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4856 (701,'One minute until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4857 (702,'Thirty seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4858 (703,'Fifteen seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4859 (704,'The Arena battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4860 (705,'You must wait %s before speaking again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4861 (706,'This item(s) has problems with equipping/storing to inventory.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4862 (707,'%s does not wish to be disturbed: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4863 (708,'%s is Away from Keyboard: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4864 (709,'Do not Disturb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4865 (710,'Away from Keyboard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4866 (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),
4867 (712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4868 (713,'You must be level %u to join an arena team!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4869 (715,'You don\'t meet Battleground level requirements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4870 (717,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] Started!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4871 (718,'|cffff0000[Arena Queue Announcer]:|r All Arenas -- Joined : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4872 (719,'|cffff0000[Arena Queue Announcer]:|r All Arenas -- Exited : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4873 (720,'Your group is too large for this battleground. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4874 (721,'Your group is too large for this arena. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4875 (722,'Your group has members not in your arena team. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4876 (723,'Your group does not have enough players to join this match.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4877 (724,'The Gold Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4878 (725,'The Green Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4879 (727,'Your group has an offline member. Please remove him before joining.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4880 (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),
4881 (729,'Your group has players from different battleground brakets. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4882 (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),
4883 (731,'Someone in your party is Deserter. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4884 (732,'Someone in your party is already in three battleground queues. You cannot join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4885 (733,'You cannot teleport to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4886 (734,'You cannot summon players to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4887 (735,'You must be in GM mode to teleport to a player in a battleground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4888 (736,'You cannot teleport to a battleground from another battleground. Please leave the current battleground first.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4889 (737,'Arenas are set to 1v1 for debugging. You cannot join as a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4890 (738,'Arenas are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4891 (739,'Battlegrounds are set to 1v0 for debugging.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4892 (740,'Battlegrounds are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4893 (750,'Not enough players. This game will close in %u mins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4894 (751,'Not enough players. This game will close in %u seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4895 (752,'Only the Alliance can use that portal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4896 (753,'Only the Horde can use that portal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4897 (759,'%s was destroyed by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4898 (760,'The %s is under attack! If left unchecked, the %s will destroy it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4899 (761,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4900 (762,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4901 (763,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4902 (764,'The %s is under attack! If left unchecked, the %s will capture it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4903 (765,'The %s has taken the %s! Its supplies will now be used for reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4904 (766,'Irondeep Mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4905 (767,'Coldtooth Mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4906 (768,'Stormpike Aid Station',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4907 (769,'Dun Baldar South Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4908 (770,'Dun Baldar North Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4909 (771,'Stormpike Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4910 (772,'Icewing Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4911 (773,'Stonehearth Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4912 (774,'Stonehearth Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4913 (775,'Snowfall Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4914 (776,'Iceblood Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4915 (777,'Iceblood Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4916 (778,'Tower Point',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4917 (779,'Frostwolf Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4918 (780,'East Frostwolf Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4919 (781,'West Frostwolf Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4920 (782,'Frostwolf Relief Hut',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4921 (784,'1 minute until the battle for Alterac Valley begins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4922 (785,'30 seconds until the battle for Alterac Valley begins. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4923 (786,'The battle for Alterac Valley has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4924 (787,'The Alliance Team is running out of reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4925 (788,'The Horde Team is running out of reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4926 (789,'The Frostwolf General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4927 (790,'The Stormpike General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4928 (801,'You do not have enough gold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4929 (802,'You do not have enough free slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4930 (803,'Your partner does not have enough free bag slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4931 (804,'You do not have permission to perform that function',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4932 (805,'Unknown language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4933 (806,'You don\'t know that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4934 (807,'Please provide character name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4935 (808,'Player %s not found or offline',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4936 (809,'Account for character %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4937 (810,'|Hplayer:$N|h[$N]|h has earned the achievement $a!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4938 (811,'Guild Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4939 (812,'Officer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4940 (813,'Veteran',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4941 (814,'Member',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4942 (815,'Initiate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4943 (816,'Your body is too exhausted to travel to the Spectral Realm.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4944 (817,'Warning: You\'ve entered a no-fly zone and are about to be dismounted!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4945 (818,'You can\'t enter Black Morass until you rescue Thrall from Durnholde Keep.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4946 (1000,'Exiting daemon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4947 (1001,'Account deleted: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4948 (1002,'Account %s NOT deleted (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4949 (1003,'Account %s NOT deleted (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4950 (1004,'Account created: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4951 (1005,'Account name cannot be longer than 16 characters (client limit), account not created!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4952 (1006,'Account with this name already exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4953 (1007,'Account %s NOT created (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4954 (1008,'Account %s NOT created (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4955 (1009,'Player %s (Guid: %u) Account %s (Id: %u) deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4956 (1010,'| ID         |    Account    |       Character      |       IP        | GM | Expansion |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4957 (1012,'========================================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4958 (1013,'| %10u |%15s| %20s | %15s |%4d| %9d |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4959 (1014,'No online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4960 (1015,'Can only quit from a Remote Admin console or the quit command was not entered in full (quit).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4961 (1016,'| GUID       | Name                 | Account                      | Delete Date         |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4962 (1017,'| %10u | %20s | %15s (%10u) | %19s |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4963 (1018,'==========================================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4964 (1019,'No characters found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4965 (1020,'Restoring the following characters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4966 (1021,'Deleting the following characters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4967 (1022,'ERROR: You can only assign a new name for a single selected character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4968 (1023,'Character \'%s\' (GUID: %u Account %u) can\'t be restored: account doesn\'t exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4969 (1024,'Character \'%s\' (GUID: %u Account %u) can\'t be restored: account character list full!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4970 (1025,'Character \'%s\' (GUID: %u Account %u) can\'t be restored: name already in use!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4971 (1026,'GUID: %u Name: %s Account: %s (%u) Date: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4972 (1027,'Log filters state:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4973 (1028,'All log filters set to: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4974 (1029,'Command can only be called from a Remote Admin console.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4975 (1100,'Account %s (Id: %u) has been granted %u expansion rights.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4976 (1101,'Message of the day changed to:\r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4977 (1102,'Message sent to %s: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4978 (1103,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4979 (1104,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4980 (1105,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4981 (1106,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4982 (1107,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4983 (1108,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4984 (1109,'%d - %s %s %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4985 (1110,'%d%s - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4986 (1111,'%d%s - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4987 (1112,'Failed to open file: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4988 (1113,'Account %s (%u) have max amount allowed characters (client limit)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4989 (1114,'Dump file have broken data!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4990 (1115,'Invalid character name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4991 (1116,'Invalid character guid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4992 (1117,'Character guid %u in use!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4993 (1118,'%d - guild: %s (guid: %u) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4994 (1119,'You must use male or female as gender.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4995 (1120,'You change gender of %s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4996 (1121,'Your gender changed to %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4997 (1122,'(%u/%u +perm %u +temp %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4998 (1123,'Not pet found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
4999 (1124,'Wrong pet type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5000 (1125,'Your pet learned all talents',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5001 (1126,'Your pet talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5002 (1127,'Talents of %s\'s pet reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5003 (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),
5004 (1129,'%d - %s %s (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5005 (1130,'event started %u \"%s\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5006 (1131,'event stopped %u \"%s\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5007 (1132,'   Follow player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5008 (1133,'   Follow creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5009 (1134,'   Follow <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5010 (1135,'List known talents:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5011 (1136,'   (Found talents: %u used talent points: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5012 (1137,'%d%s - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5013 (1138,'=================================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5014 (1139,'| GUID       | Name                 | Race            | Class           | Level |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5015 (1140,'| %10u | %20s | %15s | %15s | %5u |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5016 (1141,'%u - |cffffffff|Hplayer:%s|h[%s]|h|r %s %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5017 (1142,'%u - %s (Online:%s IP:%s GM:%u Expansion:%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5018 (1143,'Spawned by event %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5019 (1144,'Despawned by event %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5020 (1145,'Part of pool %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5021 (1146,'Part of pool %u, top pool %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5022 (1147,'The (top)pool %u is spawned by event %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5023 (1148,'The (top)pool %u is despawned by event %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5024 (1149,' (Pool %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5025 (1150,' (Event %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5026 (1151,' (Pool %u Event %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5027 (1152,'[usable]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5028 (1153,'Get %s bitstr value:[FIELD]:%u [VALUE]:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5029 (1154,'%s has bitstr value:[FIELD]:%u [VALUE]:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5030 (1155,'Get %s hex value:[FIELD]:%u [VALUE]:%x',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5031 (1156,'%s has hex value:[FIELD]:%u [VALUE]:%x',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5032 (1157,'Modify %s hex field:%u %s %x = %x (hex)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5033 (1158,'You modify for %s hex field:%u %s %x = %x (hex)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5034 (1159,'Modify %s float field:%u to sum with:%f = %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5035 (1160,'You modify for %s float field:%u to sum with:%f = %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5036 (1161,'Criteria:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5037 (1162,' [counter]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5038 (1163,'Achievement %u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5039 (1164,'Achievement criteria %u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5040 (1165,'Spell %u not have auras.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5041 (1166,'Scripting library not found or not accessible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5042 (1167,'Scripting library has wrong list functions (outdated?).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5043 (1168,'Scripting library reloaded.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5044 (1169,'Scripting library build for different mangosd revision.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5045 (1170,'Player selected: %s.\nFaction: %u.\nnpcFlags: %u.\nBase Entry: %u, Spawned Entry %u (Difficulty %u).\nDisplayID: %u (Native: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5046 (1171,'All config are reloaded from ahbot configuration file.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5047 (1172,'Error while trying to reload ahbot config.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5048 (1173,'==========================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5049 (1174,'|--------------------------------------------------------|',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5050 (1175,'|            | Alliance |  Horde   | Neutral  |  Total   |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5051 (1176,'          Alliance/Horde/Neutral/Total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5052 (1177,'| %-10s | %8u | %8u | %8u | %8u |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5053 (1178,'%-10s = %6u / %6u / %6u / %6u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5054 (1179,'Count',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5055 (1180,'Item Ratio',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5056 (1181,'|            | Alliance |   Horde  | Neutral  |  Amount  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5057 (1182,'          Alliance/Horde/Neutral/Amount',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5058 (1183,'Grey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5059 (1184,'White',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5060 (1185,'Green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5061 (1186,'Blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5062 (1187,'Purple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5063 (1188,'Orange',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5064 (1189,'Yellow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5065 (1190,'Amount of %s items is set to %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5066 (1191,'Items ratio for %s is set to %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5067 (1192,'  Effect movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5068 (1193,'Gear Score of Player %s is %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5069 (1200,'You try to view cinemitic %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5070 (1201,'You try to view movie %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5071 (1202,'Spell %u %s = %f (*1.88 = %f) DB = %f AP = %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5072 (1203,'direct heal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5073 (1204,'direct damage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5074 (1205,'dot heal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5075 (1206,'dot damage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5076 (1500,'%u - [%s] AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u Chance: %f %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5077 (1501,'%u - |cffffffff|Hpool:%u|h[%s]|h|r AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5078 (1502,'%u - [%s] AutoSpawn: %u MaxLimit: %u Creatures: %u GameObjecs: %u Pools %u %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5079 (1503,'Cannot add spawn because no free guids for static spawn in reserved guids range. Server restart is required before command can be used. Also look GuidReserveSize.* config options.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5080 (1504,'AI-Information for Npc Entry %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5081 (1505,'AIName: %s (%s) ScriptName: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5082 (1506,'Current phase = %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5083 (1507,'Combat-Movement is %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5084 (1508,'Melee attacking is %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5085 (1509,'Can\'t add item %u to vendor with unknown item type %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5086 (1510,'Currency %u has maxCount = 0, but for currencies maxCount = buyCount, so it can\'t be 0 or less than that\'s currency precision (%u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5087 (1600,'|cffffff00Northpass Tower has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5088 (1601,'|cffffff00Northpass Tower has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5089 (1602,'|cffffff00Crown Guard Tower has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5090 (1603,'|cffffff00Crown Guard Tower has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5091 (1604,'|cffffff00Eastwall Tower has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5092 (1605,'|cffffff00Eastwall Tower has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5093 (1606,'|cffffff00The Plaguewood Tower has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5094 (1607,'|cffffff00The Plaguewood Tower has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5095 (1608,'|cffffff00The Overlook has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5096 (1609,'|cffffff00The Overlook has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5097 (1610,'|cffffff00The Stadium has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5098 (1611,'|cffffff00The Stadium has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5099 (1612,'|cffffff00Broken Hill has been taken by the Horde!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5100 (1613,'|cffffff00Broken Hill has been taken by the Alliance!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5101 (1614,'|cffffff00The Horde has taken control of the East Beacon!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5102 (1615,'|cffffff00The Alliance has taken control of the East Beacon!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5103 (1616,'|cffffff00The Horde has taken control of the West Beacon!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5104 (1617,'|cffffff00The Alliance has taken control of the West Beacon!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5105 (1618,'|cffffff00The Horde has taken control of both beacons!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5106 (1619,'|cffffff00The Alliance has taken control of both beacons!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5107 (1620,'|cffffff00The Horde Field Scout is now issuing battle standards.|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5108 (1621,'|cffffff00The Alliance Field Scout is now issuing battle standards.|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5109 (1622,'|cffffff00The Horde has taken control of Twin Spire Ruins!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5110 (1623,'|cffffff00The Alliance has taken control of Twin Spire Ruins!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5111 (1624,'|cffffff00The Horde has taken control of a Spirit Tower!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5112 (1625,'|cffffff00The Alliance has taken control of a Spirit Tower!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5113 (1626,'|cffffff00The Horde has lost control of a Spirit Tower!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5114 (1627,'|cffffff00The Alliance has lost control of a Spirit Tower!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5115 (1628,'|cffffff00The Horde has taken control of The Bone Wastes!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5116 (1629,'|cffffff00The Alliance has taken control of The Bone Wastes!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5117 (1630,'|cffffff00The Horde is gaining control of Halaa!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5118 (1631,'|cffffff00The Alliance is gaining control of Halaa!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5119 (1632,'|cffffff00The Horde has taken control of Halaa!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5120 (1633,'|cffffff00The Alliance has taken control of Halaa!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5121 (1634,'|cffffff00Halaa is defenseless!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5122 (1635,'|cffffff00The Horde has collected 200 silithyst!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
5123 (1636,'|cffffff00The Alliance has collected 200 silithyst!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
5124 /*!40000 ALTER TABLE `mangos_string` ENABLE KEYS */;
5125 UNLOCK TABLES;
5128 -- Table structure for table `milling_loot_template`
5131 DROP TABLE IF EXISTS `milling_loot_template`;
5132 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5133 /*!40101 SET character_set_client = utf8 */;
5134 CREATE TABLE `milling_loot_template` (
5135   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5136   `item` mediumint(8) NOT NULL DEFAULT '0',
5137   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
5138   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
5139   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
5140   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
5141   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
5142   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
5143   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
5144   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
5145   PRIMARY KEY (`entry`,`item`)
5146 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
5147 /*!40101 SET character_set_client = @saved_cs_client */;
5150 -- Dumping data for table `milling_loot_template`
5153 LOCK TABLES `milling_loot_template` WRITE;
5154 /*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
5155 /*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */;
5156 UNLOCK TABLES;
5159 -- Table structure for table `npc_gossip`
5162 DROP TABLE IF EXISTS `npc_gossip`;
5163 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5164 /*!40101 SET character_set_client = utf8 */;
5165 CREATE TABLE `npc_gossip` (
5166   `npc_guid` int(10) unsigned NOT NULL DEFAULT '0',
5167   `textid` mediumint(8) unsigned NOT NULL DEFAULT '0',
5168   PRIMARY KEY (`npc_guid`)
5169 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
5170 /*!40101 SET character_set_client = @saved_cs_client */;
5173 -- Dumping data for table `npc_gossip`
5176 LOCK TABLES `npc_gossip` WRITE;
5177 /*!40000 ALTER TABLE `npc_gossip` DISABLE KEYS */;
5178 /*!40000 ALTER TABLE `npc_gossip` ENABLE KEYS */;
5179 UNLOCK TABLES;
5182 -- Table structure for table `npc_spellclick_spells`
5185 DROP TABLE IF EXISTS `npc_spellclick_spells`;
5186 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5187 /*!40101 SET character_set_client = utf8 */;
5188 CREATE TABLE `npc_spellclick_spells` (
5189   `npc_entry` int(10) unsigned NOT NULL COMMENT 'reference to creature_template',
5190   `spell_id` int(10) unsigned NOT NULL COMMENT 'spell which should be casted ',
5191   `quest_start` mediumint(8) unsigned NOT NULL COMMENT 'reference to quest_template',
5192   `quest_start_active` tinyint(1) unsigned NOT NULL DEFAULT '0',
5193   `quest_end` mediumint(8) unsigned NOT NULL DEFAULT '0',
5194   `cast_flags` tinyint(3) unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit'
5195 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
5196 /*!40101 SET character_set_client = @saved_cs_client */;
5199 -- Dumping data for table `npc_spellclick_spells`
5202 LOCK TABLES `npc_spellclick_spells` WRITE;
5203 /*!40000 ALTER TABLE `npc_spellclick_spells` DISABLE KEYS */;
5204 /*!40000 ALTER TABLE `npc_spellclick_spells` ENABLE KEYS */;
5205 UNLOCK TABLES;
5208 -- Table structure for table `npc_text`
5211 DROP TABLE IF EXISTS `npc_text`;
5212 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5213 /*!40101 SET character_set_client = utf8 */;
5214 CREATE TABLE `npc_text` (
5215   `ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
5216   `text0_0` longtext,
5217   `text0_1` longtext,
5218   `lang0` tinyint(3) unsigned NOT NULL DEFAULT '0',
5219   `prob0` float NOT NULL DEFAULT '0',
5220   `em0_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5221   `em0_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5222   `em0_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5223   `em0_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5224   `em0_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5225   `em0_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5226   `text1_0` longtext,
5227   `text1_1` longtext,
5228   `lang1` tinyint(3) unsigned NOT NULL DEFAULT '0',
5229   `prob1` float NOT NULL DEFAULT '0',
5230   `em1_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5231   `em1_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5232   `em1_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5233   `em1_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5234   `em1_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5235   `em1_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5236   `text2_0` longtext,
5237   `text2_1` longtext,
5238   `lang2` tinyint(3) unsigned NOT NULL DEFAULT '0',
5239   `prob2` float NOT NULL DEFAULT '0',
5240   `em2_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5241   `em2_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5242   `em2_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5243   `em2_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5244   `em2_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5245   `em2_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5246   `text3_0` longtext,
5247   `text3_1` longtext,
5248   `lang3` tinyint(3) unsigned NOT NULL DEFAULT '0',
5249   `prob3` float NOT NULL DEFAULT '0',
5250   `em3_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5251   `em3_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5252   `em3_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5253   `em3_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5254   `em3_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5255   `em3_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5256   `text4_0` longtext,
5257   `text4_1` longtext,
5258   `lang4` tinyint(3) unsigned NOT NULL DEFAULT '0',
5259   `prob4` float NOT NULL DEFAULT '0',
5260   `em4_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5261   `em4_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5262   `em4_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5263   `em4_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5264   `em4_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5265   `em4_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5266   `text5_0` longtext,
5267   `text5_1` longtext,
5268   `lang5` tinyint(3) unsigned NOT NULL DEFAULT '0',
5269   `prob5` float NOT NULL DEFAULT '0',
5270   `em5_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5271   `em5_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5272   `em5_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5273   `em5_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5274   `em5_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5275   `em5_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5276   `text6_0` longtext,
5277   `text6_1` longtext,
5278   `lang6` tinyint(3) unsigned NOT NULL DEFAULT '0',
5279   `prob6` float NOT NULL DEFAULT '0',
5280   `em6_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5281   `em6_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5282   `em6_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5283   `em6_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5284   `em6_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5285   `em6_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5286   `text7_0` longtext,
5287   `text7_1` longtext,
5288   `lang7` tinyint(3) unsigned NOT NULL DEFAULT '0',
5289   `prob7` float NOT NULL DEFAULT '0',
5290   `em7_0` smallint(5) unsigned NOT NULL DEFAULT '0',
5291   `em7_1` smallint(5) unsigned NOT NULL DEFAULT '0',
5292   `em7_2` smallint(5) unsigned NOT NULL DEFAULT '0',
5293   `em7_3` smallint(5) unsigned NOT NULL DEFAULT '0',
5294   `em7_4` smallint(5) unsigned NOT NULL DEFAULT '0',
5295   `em7_5` smallint(5) unsigned NOT NULL DEFAULT '0',
5296   PRIMARY KEY (`ID`)
5297 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
5298 /*!40101 SET character_set_client = @saved_cs_client */;
5301 -- Dumping data for table `npc_text`
5304 LOCK TABLES `npc_text` WRITE;
5305 /*!40000 ALTER TABLE `npc_text` DISABLE KEYS */;
5306 /*!40000 ALTER TABLE `npc_text` ENABLE KEYS */;
5307 UNLOCK TABLES;
5310 -- Table structure for table `npc_trainer`
5313 DROP TABLE IF EXISTS `npc_trainer`;
5314 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5315 /*!40101 SET character_set_client = utf8 */;
5316 CREATE TABLE `npc_trainer` (
5317   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5318   `spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
5319   `spellcost` int(10) unsigned NOT NULL DEFAULT '0',
5320   `reqskill` smallint(5) unsigned NOT NULL DEFAULT '0',
5321   `reqskillvalue` smallint(5) unsigned NOT NULL DEFAULT '0',
5322   `reqlevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
5323   UNIQUE KEY `entry_spell` (`entry`,`spell`)
5324 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
5325 /*!40101 SET character_set_client = @saved_cs_client */;
5328 -- Dumping data for table `npc_trainer`
5331 LOCK TABLES `npc_trainer` WRITE;
5332 /*!40000 ALTER TABLE `npc_trainer` DISABLE KEYS */;
5333 /*!40000 ALTER TABLE `npc_trainer` ENABLE KEYS */;
5334 UNLOCK TABLES;
5337 -- Table structure for table `npc_trainer_template`
5340 DROP TABLE IF EXISTS `npc_trainer_template`;
5341 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5342 /*!40101 SET character_set_client = utf8 */;
5343 CREATE TABLE `npc_trainer_template` (
5344   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5345   `spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
5346   `spellcost` int(10) unsigned NOT NULL DEFAULT '0',
5347   `reqskill` smallint(5) unsigned NOT NULL DEFAULT '0',
5348   `reqskillvalue` smallint(5) unsigned NOT NULL DEFAULT '0',
5349   `reqlevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
5350   UNIQUE KEY `entry_spell` (`entry`,`spell`)
5351 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
5352 /*!40101 SET character_set_client = @saved_cs_client */;
5355 -- Dumping data for table `npc_trainer_template`
5358 LOCK TABLES `npc_trainer_template` WRITE;
5359 /*!40000 ALTER TABLE `npc_trainer_template` DISABLE KEYS */;
5360 /*!40000 ALTER TABLE `npc_trainer_template` ENABLE KEYS */;
5361 UNLOCK TABLES;
5364 -- Table structure for table `npc_vendor`
5367 DROP TABLE IF EXISTS `npc_vendor`;
5368 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5369 /*!40101 SET character_set_client = utf8 */;
5370 CREATE TABLE `npc_vendor` (
5371   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5372   `item` mediumint(8) NOT NULL DEFAULT '0',
5373   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '0',
5374   `incrtime` int(10) unsigned NOT NULL DEFAULT '0',
5375   `ExtendedCost` mediumint(8) unsigned NOT NULL DEFAULT '0',
5376   PRIMARY KEY (`entry`,`item`,`ExtendedCost`)
5377 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
5378 /*!40101 SET character_set_client = @saved_cs_client */;
5381 -- Dumping data for table `npc_vendor`
5384 LOCK TABLES `npc_vendor` WRITE;
5385 /*!40000 ALTER TABLE `npc_vendor` DISABLE KEYS */;
5386 /*!40000 ALTER TABLE `npc_vendor` ENABLE KEYS */;
5387 UNLOCK TABLES;
5390 -- Table structure for table `npc_vendor_template`
5393 DROP TABLE IF EXISTS `npc_vendor_template`;
5394 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5395 /*!40101 SET character_set_client = utf8 */;
5396 CREATE TABLE `npc_vendor_template` (
5397   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5398   `item` mediumint(8) NOT NULL DEFAULT '0',
5399   `maxcount` smallint(3) unsigned NOT NULL DEFAULT '0',
5400   `incrtime` int(10) unsigned NOT NULL DEFAULT '0',
5401   `ExtendedCost` mediumint(8) unsigned NOT NULL DEFAULT '0',
5402   PRIMARY KEY (`entry`,`item`,`ExtendedCost`)
5403 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
5404 /*!40101 SET character_set_client = @saved_cs_client */;
5407 -- Dumping data for table `npc_vendor_template`
5410 LOCK TABLES `npc_vendor_template` WRITE;
5411 /*!40000 ALTER TABLE `npc_vendor_template` DISABLE KEYS */;
5412 /*!40000 ALTER TABLE `npc_vendor_template` ENABLE KEYS */;
5413 UNLOCK TABLES;
5416 -- Table structure for table `page_text`
5419 DROP TABLE IF EXISTS `page_text`;
5420 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5421 /*!40101 SET character_set_client = utf8 */;
5422 CREATE TABLE `page_text` (
5423   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5424   `text` longtext NOT NULL,
5425   `next_page` mediumint(8) unsigned NOT NULL DEFAULT '0',
5426   PRIMARY KEY (`entry`)
5427 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
5428 /*!40101 SET character_set_client = @saved_cs_client */;
5431 -- Dumping data for table `page_text`
5434 LOCK TABLES `page_text` WRITE;
5435 /*!40000 ALTER TABLE `page_text` DISABLE KEYS */;
5436 /*!40000 ALTER TABLE `page_text` ENABLE KEYS */;
5437 UNLOCK TABLES;
5440 -- Table structure for table `pet_levelstats`
5443 DROP TABLE IF EXISTS `pet_levelstats`;
5444 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5445 /*!40101 SET character_set_client = utf8 */;
5446 CREATE TABLE `pet_levelstats` (
5447   `creature_entry` mediumint(8) unsigned NOT NULL,
5448   `level` tinyint(3) unsigned NOT NULL,
5449   `hp` smallint(5) unsigned NOT NULL,
5450   `mana` smallint(5) unsigned NOT NULL,
5451   `armor` int(10) unsigned NOT NULL DEFAULT '0',
5452   `str` smallint(5) unsigned NOT NULL,
5453   `agi` smallint(5) unsigned NOT NULL,
5454   `sta` smallint(5) unsigned NOT NULL,
5455   `inte` smallint(5) unsigned NOT NULL,
5456   `spi` smallint(5) unsigned NOT NULL,
5457   PRIMARY KEY (`creature_entry`,`level`)
5458 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores pet levels stats.';
5459 /*!40101 SET character_set_client = @saved_cs_client */;
5462 -- Dumping data for table `pet_levelstats`
5465 LOCK TABLES `pet_levelstats` WRITE;
5466 /*!40000 ALTER TABLE `pet_levelstats` DISABLE KEYS */;
5467 /*!40000 ALTER TABLE `pet_levelstats` ENABLE KEYS */;
5468 UNLOCK TABLES;
5471 -- Table structure for table `pet_name_generation`
5474 DROP TABLE IF EXISTS `pet_name_generation`;
5475 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5476 /*!40101 SET character_set_client = utf8 */;
5477 CREATE TABLE `pet_name_generation` (
5478   `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
5479   `word` tinytext NOT NULL,
5480   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5481   `half` tinyint(4) NOT NULL DEFAULT '0',
5482   PRIMARY KEY (`id`)
5483 ) ENGINE=MyISAM AUTO_INCREMENT=261 DEFAULT CHARSET=utf8;
5484 /*!40101 SET character_set_client = @saved_cs_client */;
5487 -- Dumping data for table `pet_name_generation`
5490 LOCK TABLES `pet_name_generation` WRITE;
5491 /*!40000 ALTER TABLE `pet_name_generation` DISABLE KEYS */;
5492 INSERT INTO `pet_name_generation` (`id`, `word`, `entry`, `half`) VALUES
5493 (1,'Aba',416,0),
5494 (2,'Az',416,0),
5495 (3,'Bel',416,0),
5496 (4,'Biz',416,0),
5497 (5,'Cho',416,0),
5498 (6,'Dag',416,0),
5499 (7,'Gak',416,0),
5500 (8,'Gar',416,0),
5501 (9,'Gel',416,0),
5502 (10,'Gho',416,0),
5503 (11,'Gob',416,0),
5504 (12,'Gra',416,0),
5505 (13,'Jak',416,0),
5506 (14,'Jub',416,0),
5507 (15,'Kar',416,0),
5508 (16,'Kup',416,0),
5509 (17,'Laz',416,0),
5510 (18,'Nal',416,0),
5511 (19,'Nok',416,0),
5512 (20,'Pag',416,0),
5513 (21,'Pig',416,0),
5514 (22,'Pip',416,0),
5515 (23,'Piz',416,0),
5516 (24,'Quz',416,0),
5517 (25,'Rui',416,0),
5518 (26,'Rul',416,0),
5519 (27,'Rup',416,0),
5520 (28,'Tar',416,0),
5521 (29,'Vol',416,0),
5522 (30,'Yaz',416,0),
5523 (31,'Zep',416,0),
5524 (32,'Zig',416,0),
5525 (33,'Zil',416,0),
5526 (34,'Zor',416,0),
5527 (35,'bis',416,1),
5528 (36,'fip',416,1),
5529 (37,'gup',416,1),
5530 (38,'ham',416,1),
5531 (39,'jub',416,1),
5532 (40,'kin',416,1),
5533 (41,'kol',416,1),
5534 (42,'lop',416,1),
5535 (43,'loz',416,1),
5536 (44,'mat',416,1),
5537 (45,'mir',416,1),
5538 (46,'nam',416,1),
5539 (47,'nar',416,1),
5540 (48,'nik',416,1),
5541 (49,'nip',416,1),
5542 (50,'pad',416,1),
5543 (51,'pep',416,1),
5544 (52,'pit',416,1),
5545 (53,'qua',416,1),
5546 (54,'rai',416,1),
5547 (55,'rin',416,1),
5548 (56,'rot',416,1),
5549 (57,'tai',416,1),
5550 (58,'tal',416,1),
5551 (59,'tik',416,1),
5552 (60,'tip',416,1),
5553 (61,'tog',416,1),
5554 (62,'tuk',416,1),
5555 (63,'uri',416,1),
5556 (64,'yal',416,1),
5557 (65,'yap',416,1),
5558 (66,'Bhee',417,0),
5559 (67,'Bruu',417,0),
5560 (68,'Czaa',417,0),
5561 (69,'Droo',417,0),
5562 (70,'Flaa',417,0),
5563 (71,'Fzuu',417,0),
5564 (72,'Ghaa',417,0),
5565 (73,'Gree',417,0),
5566 (74,'Gzaa',417,0),
5567 (75,'Haa',417,0),
5568 (76,'Haad',417,0),
5569 (77,'Haag',417,0),
5570 (78,'Haap',417,0),
5571 (79,'Jhaa',417,0),
5572 (80,'Jhuu',417,0),
5573 (81,'Khaa',417,0),
5574 (82,'Khii',417,0),
5575 (83,'Khuu',417,0),
5576 (84,'Kree',417,0),
5577 (85,'Luu',417,0),
5578 (86,'Maa',417,0),
5579 (87,'Nhee',417,0),
5580 (88,'Phuu',417,0),
5581 (89,'Pryy',417,0),
5582 (90,'Rhuu',417,0),
5583 (91,'Shaa',417,0),
5584 (92,'Sloo',417,0),
5585 (93,'Sruu',417,0),
5586 (94,'Thoo',417,0),
5587 (95,'Traa',417,0),
5588 (96,'Wraa',417,0),
5589 (97,'Zhaa',417,0),
5590 (98,'dhon',417,1),
5591 (99,'dhum',417,1),
5592 (100,'dhun',417,1),
5593 (101,'dom',417,1),
5594 (102,'don',417,1),
5595 (103,'drom',417,1),
5596 (104,'dym',417,1),
5597 (105,'fenn',417,1),
5598 (106,'fum',417,1),
5599 (107,'fun',417,1),
5600 (108,'ghon',417,1),
5601 (109,'ghun',417,1),
5602 (110,'grom',417,1),
5603 (111,'grym',417,1),
5604 (112,'hom',417,1),
5605 (113,'hon',417,1),
5606 (114,'hun',417,1),
5607 (115,'jhom',417,1),
5608 (116,'kun',417,1),
5609 (117,'lum',417,1),
5610 (118,'mmon',417,1),
5611 (119,'mon',417,1),
5612 (120,'myn',417,1),
5613 (121,'nam',417,1),
5614 (122,'nem',417,1),
5615 (123,'nhym',417,1),
5616 (124,'nom',417,1),
5617 (125,'num',417,1),
5618 (126,'phom',417,1),
5619 (127,'roon',417,1),
5620 (128,'rym',417,1),
5621 (129,'shon',417,1),
5622 (130,'thun',417,1),
5623 (131,'tom',417,1),
5624 (132,'zhem',417,1),
5625 (133,'zhum',417,1),
5626 (134,'zun',417,1),
5627 (135,'Bar',1860,0),
5628 (136,'Bel',1860,0),
5629 (137,'Char',1860,0),
5630 (138,'Grak\'',1860,0),
5631 (139,'Graz\'',1860,0),
5632 (140,'Grim',1860,0),
5633 (141,'Hath',1860,0),
5634 (142,'Hel',1860,0),
5635 (143,'Hok',1860,0),
5636 (144,'Huk',1860,0),
5637 (145,'Jhaz',1860,0),
5638 (146,'Jhom',1860,0),
5639 (147,'Juk\'',1860,0),
5640 (148,'Kal\'',1860,0),
5641 (149,'Klath',1860,0),
5642 (150,'Kon',1860,0),
5643 (151,'Krag',1860,0),
5644 (152,'Krak',1860,0),
5645 (153,'Mak',1860,0),
5646 (154,'Mezz',1860,0),
5647 (155,'Orm',1860,0),
5648 (156,'Phan',1860,0),
5649 (157,'Sar',1860,0),
5650 (158,'Tang',1860,0),
5651 (159,'Than',1860,0),
5652 (160,'Thog',1860,0),
5653 (161,'Thok',1860,0),
5654 (162,'Thul',1860,0),
5655 (163,'Zag\'',1860,0),
5656 (164,'Zang',1860,0),
5657 (165,'Zhar\'',1860,0),
5658 (166,'kath',1860,1),
5659 (167,'doc',1860,1),
5660 (168,'dok',1860,1),
5661 (169,'gak',1860,1),
5662 (170,'garth',1860,1),
5663 (171,'gore',1860,1),
5664 (172,'gorg',1860,1),
5665 (173,'grave',1860,1),
5666 (174,'gron',1860,1),
5667 (175,'juk',1860,1),
5668 (176,'krast',1860,1),
5669 (177,'kresh',1860,1),
5670 (178,'krit',1860,1),
5671 (179,'los',1860,1),
5672 (180,'mon',1860,1),
5673 (181,'mos',1860,1),
5674 (182,'moth',1860,1),
5675 (183,'nagma',1860,1),
5676 (184,'nak',1860,1),
5677 (185,'nar',1860,1),
5678 (186,'nos',1860,1),
5679 (187,'nuz',1860,1),
5680 (188,'phog',1860,1),
5681 (189,'rath',1860,1),
5682 (190,'tast',1860,1),
5683 (191,'taz',1860,1),
5684 (192,'thak',1860,1),
5685 (193,'thang',1860,1),
5686 (194,'thyk',1860,1),
5687 (195,'vhug',1860,1),
5688 (196,'zazt',1860,1),
5689 (197,'Ael',1863,0),
5690 (198,'Aez',1863,0),
5691 (199,'Ang',1863,0),
5692 (200,'Ban',1863,0),
5693 (201,'Bet',1863,0),
5694 (202,'Bro',1863,0),
5695 (203,'Bry',1863,0),
5696 (204,'Cat',1863,0),
5697 (205,'Dir',1863,0),
5698 (206,'Dis',1863,0),
5699 (207,'Dom',1863,0),
5700 (208,'Drus',1863,0),
5701 (209,'Fie',1863,0),
5702 (210,'Fier',1863,0),
5703 (211,'Gly',1863,0),
5704 (212,'Hel',1863,0),
5705 (213,'Hes',1863,0),
5706 (214,'Kal',1863,0),
5707 (215,'Lyn',1863,0),
5708 (216,'Mir',1863,0),
5709 (217,'Nim',1863,0),
5710 (218,'Sar',1863,0),
5711 (219,'Sel',1863,0),
5712 (220,'Vil',1863,0),
5713 (221,'Zah',1863,0),
5714 (222,'aith',1863,1),
5715 (223,'anda',1863,1),
5716 (224,'antia',1863,1),
5717 (225,'evere',1863,1),
5718 (226,'lia',1863,1),
5719 (227,'lissa',1863,1),
5720 (228,'neri',1863,1),
5721 (229,'neth',1863,1),
5722 (230,'nia',1863,1),
5723 (231,'nlissa',1863,1),
5724 (232,'nora',1863,1),
5725 (233,'nva',1863,1),
5726 (234,'nys',1863,1),
5727 (235,'ola',1863,1),
5728 (236,'ona',1863,1),
5729 (237,'ora',1863,1),
5730 (238,'rah',1863,1),
5731 (239,'riana',1863,1),
5732 (240,'riel',1863,1),
5733 (241,'rona',1863,1),
5734 (242,'tai',1863,1),
5735 (243,'tevere',1863,1),
5736 (244,'thea',1863,1),
5737 (245,'vina',1863,1),
5738 (246,'wena',1863,1),
5739 (247,'wyn',1863,1),
5740 (248,'xia',1863,1),
5741 (249,'yla',1863,1),
5742 (250,'yssa',1863,1),
5743 (251,'Flaa',17252,0),
5744 (252,'Haa',17252,0),
5745 (253,'Jhuu',17252,0),
5746 (254,'Shaa',17252,0),
5747 (255,'Thoo',17252,0),
5748 (256,'dhun',17252,1),
5749 (257,'ghun',17252,1),
5750 (258,'roon',17252,1),
5751 (259,'thun',17252,1),
5752 (260,'tom',17252,1);
5753 /*!40000 ALTER TABLE `pet_name_generation` ENABLE KEYS */;
5754 UNLOCK TABLES;
5757 -- Table structure for table `pickpocketing_loot_template`
5760 DROP TABLE IF EXISTS `pickpocketing_loot_template`;
5761 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5762 /*!40101 SET character_set_client = utf8 */;
5763 CREATE TABLE `pickpocketing_loot_template` (
5764   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
5765   `item` mediumint(8) NOT NULL DEFAULT '0',
5766   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
5767   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
5768   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
5769   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
5770   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
5771   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
5772   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
5773   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
5774   PRIMARY KEY (`entry`,`item`)
5775 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
5776 /*!40101 SET character_set_client = @saved_cs_client */;
5779 -- Dumping data for table `pickpocketing_loot_template`
5782 LOCK TABLES `pickpocketing_loot_template` WRITE;
5783 /*!40000 ALTER TABLE `pickpocketing_loot_template` DISABLE KEYS */;
5784 /*!40000 ALTER TABLE `pickpocketing_loot_template` ENABLE KEYS */;
5785 UNLOCK TABLES;
5788 -- Table structure for table `player_levelstats`
5791 DROP TABLE IF EXISTS `player_levelstats`;
5792 /*!40101 SET @saved_cs_client     = @@character_set_client */;
5793 /*!40101 SET character_set_client = utf8 */;
5794 CREATE TABLE `player_levelstats` (
5795   `race` tinyint(3) unsigned NOT NULL,
5796   `class` tinyint(3) unsigned NOT NULL,
5797   `level` tinyint(3) unsigned NOT NULL,
5798   `str` tinyint(3) unsigned NOT NULL,
5799   `agi` tinyint(3) unsigned NOT NULL,
5800   `sta` tinyint(3) unsigned NOT NULL,
5801   `inte` tinyint(3) unsigned NOT NULL,
5802   `spi` tinyint(3) unsigned NOT NULL,
5803   PRIMARY KEY (`race`,`class`,`level`)
5804 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
5805 /*!40101 SET character_set_client = @saved_cs_client */;
5808 -- Dumping data for table `player_levelstats`
5811 LOCK TABLES `player_levelstats` WRITE;
5812 /*!40000 ALTER TABLE `player_levelstats` DISABLE KEYS */;
5813 INSERT INTO `player_levelstats` (`race`, `class`, `level`, `str`, `agi`, `sta`, `inte`, `spi`) VALUES
5814 (1,1,1,23,20,22,20,20),
5815 (1,1,2,24,21,23,20,20),
5816 (1,1,3,26,22,24,20,21),
5817 (1,1,4,27,22,26,20,21),
5818 (1,1,5,28,23,27,20,21),
5819 (1,1,6,30,24,28,20,21),
5820 (1,1,7,31,25,29,21,22),
5821 (1,1,8,32,26,30,21,22),
5822 (1,1,9,34,26,32,21,22),
5823 (1,1,10,35,27,33,21,23),
5824 (1,1,11,36,28,34,21,23),
5825 (1,1,12,38,29,35,21,23),
5826 (1,1,13,39,30,37,21,24),
5827 (1,1,14,41,31,38,21,24),
5828 (1,1,15,42,32,39,21,24),
5829 (1,1,16,44,33,41,21,25),
5830 (1,1,17,45,34,42,22,25),
5831 (1,1,18,47,34,43,22,25),
5832 (1,1,19,48,35,45,22,26),
5833 (1,1,20,50,36,46,22,26),
5834 (1,1,21,51,37,48,22,26),
5835 (1,1,22,53,38,49,22,27),
5836 (1,1,23,54,39,51,22,27),
5837 (1,1,24,56,40,52,23,28),
5838 (1,1,25,58,41,53,23,28),
5839 (1,1,26,59,42,55,23,28),
5840 (1,1,27,61,43,56,23,29),
5841 (1,1,28,63,44,58,23,29),
5842 (1,1,29,64,45,59,23,30),
5843 (1,1,30,66,46,61,24,30),
5844 (1,1,31,68,47,62,24,30),
5845 (1,1,32,69,48,64,24,31),
5846 (1,1,33,71,50,66,24,31),
5847 (1,1,34,73,51,67,24,32),
5848 (1,1,35,74,52,69,24,32),
5849 (1,1,36,76,53,70,25,33),
5850 (1,1,37,78,54,72,25,33),
5851 (1,1,38,80,55,74,25,34),
5852 (1,1,39,82,56,75,25,34),
5853 (1,1,40,83,57,77,25,35),
5854 (1,1,41,85,58,79,26,35),
5855 (1,1,42,87,60,80,26,35),
5856 (1,1,43,89,61,82,26,36),
5857 (1,1,44,91,62,84,26,36),
5858 (1,1,45,93,63,85,26,37),
5859 (1,1,46,95,64,87,27,37),
5860 (1,1,47,97,66,89,27,38),
5861 (1,1,48,99,67,91,27,38),
5862 (1,1,49,101,68,93,27,39),
5863 (1,1,50,103,69,94,28,40),
5864 (1,1,51,105,71,96,28,40),
5865 (1,1,52,107,72,98,28,41),
5866 (1,1,53,109,73,100,28,41),
5867 (1,1,54,111,74,102,29,42),
5868 (1,1,55,113,76,103,29,42),
5869 (1,1,56,115,77,105,29,43),
5870 (1,1,57,117,78,107,29,43),
5871 (1,1,58,119,79,109,30,44),
5872 (1,1,59,121,81,111,30,44),
5873 (1,1,60,123,82,113,30,45),
5874 (1,1,61,125,83,115,30,46),
5875 (1,1,62,127,85,117,31,46),
5876 (1,1,63,129,86,119,31,47),
5877 (1,1,64,132,88,121,31,47),
5878 (1,1,65,134,89,123,32,48),
5879 (1,1,66,136,90,125,32,49),
5880 (1,1,67,138,92,127,32,49),
5881 (1,1,68,140,93,129,32,50),
5882 (1,1,69,143,95,131,33,50),
5883 (1,1,70,145,96,133,33,51),
5884 (1,1,71,148,97,140,33,53),
5885 (1,1,72,156,99,143,33,54),
5886 (1,1,73,162,101,148,33,55),
5887 (1,1,74,162,102,148,34,55),
5888 (1,1,75,165,104,150,34,56),
5889 (1,1,76,171,106,156,34,57),
5890 (1,1,77,171,108,157,35,58),
5891 (1,1,78,174,109,159,35,58),
5892 (1,1,79,181,111,165,35,59),
5893 (1,1,80,184,113,168,36,60),
5894 (1,1,81,177,115,161,36,60),
5895 (1,1,82,189,117,164,36,60),
5896 (1,1,83,192,119,167,36,61),
5897 (1,1,84,195,121,170,37,62),
5898 (1,1,85,198,123,173,37,63),
5899 (1,2,1,22,20,22,20,21),
5900 (1,2,2,23,21,23,21,22),
5901 (1,2,3,24,21,24,21,22),
5902 (1,2,4,25,22,25,22,23),
5903 (1,2,5,26,22,26,23,24),
5904 (1,2,6,28,23,27,23,25),
5905 (1,2,7,29,24,28,24,25),
5906 (1,2,8,30,24,29,25,26),
5907 (1,2,9,31,25,30,25,27),
5908 (1,2,10,32,25,32,26,27),
5909 (1,2,11,33,26,33,27,28),
5910 (1,2,12,35,27,34,27,29),
5911 (1,2,13,36,27,35,28,30),
5912 (1,2,14,37,28,36,29,31),
5913 (1,2,15,38,29,37,30,31),
5914 (1,2,16,40,29,38,30,32),
5915 (1,2,17,41,30,40,31,33),
5916 (1,2,18,42,31,41,32,34),
5917 (1,2,19,43,31,42,33,35),
5918 (1,2,20,45,32,43,33,35),
5919 (1,2,21,46,33,45,34,36),
5920 (1,2,22,47,33,46,35,37),
5921 (1,2,23,49,34,47,36,38),
5922 (1,2,24,50,35,48,37,39),
5923 (1,2,25,51,36,50,37,40),
5924 (1,2,26,53,36,51,38,41),
5925 (1,2,27,54,37,52,39,42),
5926 (1,2,28,56,38,54,40,43),
5927 (1,2,29,57,39,55,41,43),
5928 (1,2,30,58,39,56,42,44),
5929 (1,2,31,60,40,58,43,45),
5930 (1,2,32,61,41,59,43,46),
5931 (1,2,33,63,42,60,44,47),
5932 (1,2,34,64,43,62,45,48),
5933 (1,2,35,66,44,63,46,49),
5934 (1,2,36,67,44,65,47,50),
5935 (1,2,37,69,45,66,48,51),
5936 (1,2,38,70,46,67,49,52),
5937 (1,2,39,72,47,69,50,53),
5938 (1,2,40,73,48,70,51,54),
5939 (1,2,41,75,49,72,52,55),
5940 (1,2,42,77,49,73,53,56),
5941 (1,2,43,78,50,75,54,57),
5942 (1,2,44,80,51,76,55,58),
5943 (1,2,45,81,52,78,56,59),
5944 (1,2,46,83,53,79,57,61),
5945 (1,2,47,85,54,81,58,62),
5946 (1,2,48,86,55,83,59,63),
5947 (1,2,49,88,56,84,60,64),
5948 (1,2,50,90,57,86,61,65),
5949 (1,2,51,91,58,87,62,66),
5950 (1,2,52,93,59,89,63,67),
5951 (1,2,53,95,60,91,64,68),
5952 (1,2,54,97,61,92,65,69),
5953 (1,2,55,98,61,94,66,71),
5954 (1,2,56,100,62,95,67,72),
5955 (1,2,57,102,63,97,68,73),
5956 (1,2,58,104,64,99,69,74),
5957 (1,2,59,105,65,101,70,75),
5958 (1,2,60,107,66,102,71,77),
5959 (1,2,61,109,67,104,73,78),
5960 (1,2,62,111,69,106,74,79),
5961 (1,2,63,113,70,107,75,80),
5962 (1,2,64,115,71,109,76,81),
5963 (1,2,65,116,72,111,77,83),
5964 (1,2,66,118,73,113,78,84),
5965 (1,2,67,120,74,115,79,85),
5966 (1,2,68,122,75,116,81,86),
5967 (1,2,69,124,76,118,82,88),
5968 (1,2,70,126,77,120,83,89),
5969 (1,2,71,148,78,122,84,92),
5970 (1,2,72,150,79,125,86,94),
5971 (1,2,73,152,80,127,87,96),
5972 (1,2,74,156,82,129,89,97),
5973 (1,2,75,158,83,131,90,99),
5974 (1,2,76,162,84,134,92,100),
5975 (1,2,77,164,86,136,93,103),
5976 (1,2,78,167,87,138,95,105),
5977 (1,2,79,170,88,153,96,106),
5978 (1,2,80,173,90,160,98,108),
5979 (1,2,81,160,91,146,99,107),
5980 (1,2,82,163,93,148,101,108),
5981 (1,2,83,166,94,151,102,110),
5982 (1,2,84,170,96,153,104,112),
5983 (1,2,85,172,97,156,106,114),
5984 (1,3,1,20,23,21,20,21),
5985 (1,3,81,75,194,130,91,99),
5986 (1,3,82,77,197,133,93,100),
5987 (1,3,83,78,200,135,94,102),
5988 (1,3,84,79,204,137,96,103),
5989 (1,3,85,80,208,139,97,105),
5990 (1,3,2,17,29,21,21,22),
5991 (1,3,3,18,31,22,21,22),
5992 (1,3,4,18,32,23,22,23),
5993 (1,3,5,19,33,24,22,24),
5994 (1,3,6,19,35,25,23,24),
5995 (1,3,7,20,36,26,24,25),
5996 (1,3,8,20,38,27,24,25),
5997 (1,3,9,21,39,27,25,26),
5998 (1,3,10,24,34,28,25,26),
5999 (1,3,11,24,35,29,25,27),
6000 (1,3,12,25,37,30,26,28),
6001 (1,3,13,25,38,31,27,28),
6002 (1,3,14,26,39,32,27,29),
6003 (1,3,15,26,41,33,28,29),
6004 (1,3,16,27,42,34,28,30),
6005 (1,3,17,27,43,35,29,31),
6006 (1,3,18,28,45,36,30,32),
6007 (1,3,19,28,46,37,30,32),
6008 (1,3,20,29,48,38,31,33),
6009 (1,3,21,29,49,39,32,34),
6010 (1,3,22,30,51,40,32,34),
6011 (1,3,23,30,52,41,33,35),
6012 (1,3,24,31,54,42,34,36),
6013 (1,3,25,31,55,43,34,37),
6014 (1,3,26,32,57,44,35,37),
6015 (1,3,27,32,59,45,36,38),
6016 (1,3,28,33,60,46,36,39),
6017 (1,3,29,33,62,47,37,40),
6018 (1,3,30,34,64,48,38,40),
6019 (1,3,31,34,65,50,39,41),
6020 (1,3,32,35,67,51,39,42),
6021 (1,3,33,36,69,52,40,43),
6022 (1,3,34,36,70,53,41,44),
6023 (1,3,35,37,72,54,42,45),
6024 (1,3,36,38,74,56,43,46),
6025 (1,3,37,38,76,57,43,46),
6026 (1,3,38,39,78,58,44,47),
6027 (1,3,39,39,80,59,45,48),
6028 (1,3,40,40,81,61,46,49),
6029 (1,3,41,41,83,62,47,50),
6030 (1,3,42,41,85,63,47,51),
6031 (1,3,43,42,87,64,48,52),
6032 (1,3,44,43,89,66,49,53),
6033 (1,3,45,43,91,67,50,54),
6034 (1,3,46,44,93,69,51,55),
6035 (1,3,47,45,95,70,52,56),
6036 (1,3,48,46,98,71,53,57),
6037 (1,3,49,46,100,73,54,58),
6038 (1,3,50,47,102,74,55,59),
6039 (1,3,51,48,104,76,56,60),
6040 (1,3,52,49,106,77,57,61),
6041 (1,3,53,49,108,79,58,62),
6042 (1,3,54,50,111,80,59,63),
6043 (1,3,55,51,113,82,60,64),
6044 (1,3,56,52,115,83,61,65),
6045 (1,3,57,53,118,85,62,67),
6046 (1,3,58,53,120,87,63,68),
6047 (1,3,59,54,123,88,64,69),
6048 (1,3,60,55,125,90,65,70),
6049 (1,3,61,56,127,92,66,71),
6050 (1,3,62,57,130,93,67,72),
6051 (1,3,63,58,133,95,68,74),
6052 (1,3,64,58,135,97,69,75),
6053 (1,3,65,59,138,99,71,76),
6054 (1,3,66,60,140,100,72,77),
6055 (1,3,67,61,143,102,73,79),
6056 (1,3,68,62,146,104,74,80),
6057 (1,3,69,63,149,106,75,81),
6058 (1,3,70,64,151,108,77,83),
6059 (1,3,71,65,154,110,78,84),
6060 (1,3,72,66,157,112,79,85),
6061 (1,3,73,67,160,114,80,87),
6062 (1,3,74,68,163,116,82,88),
6063 (1,3,75,69,166,118,83,90),
6064 (1,3,76,70,177,120,84,91),
6065 (1,3,77,71,180,122,86,93),
6066 (1,3,78,72,183,124,87,94),
6067 (1,3,79,73,186,126,88,96),
6068 (1,3,80,74,190,128,90,97),
6069 (1,4,1,21,23,21,20,20),
6070 (1,4,2,22,24,22,20,20),
6071 (1,4,3,23,26,22,20,21),
6072 (1,4,4,23,27,23,20,21),
6073 (1,4,5,24,29,24,21,21),
6074 (1,4,6,25,30,25,21,22),
6075 (1,4,7,26,32,25,21,22),
6076 (1,4,8,26,33,26,21,23),
6077 (1,4,9,27,35,27,21,23),
6078 (1,4,10,28,36,27,21,23),
6079 (1,4,11,29,38,28,22,24),
6080 (1,4,12,30,39,29,22,24),
6081 (1,4,13,31,41,30,22,25),
6082 (1,4,14,31,43,31,22,25),
6083 (1,4,15,32,44,31,22,25),
6084 (1,4,16,33,46,32,23,26),
6085 (1,4,17,34,48,33,23,26),
6086 (1,4,18,35,49,34,23,27),
6087 (1,4,19,36,51,35,23,27),
6088 (1,4,20,37,53,35,23,28),
6089 (1,4,21,38,54,36,24,28),
6090 (1,4,22,39,56,37,24,29),
6091 (1,4,23,40,58,38,24,29),
6092 (1,4,24,41,60,39,24,30),
6093 (1,4,25,42,61,40,25,30),
6094 (1,4,26,43,63,41,25,31),
6095 (1,4,27,44,65,42,25,31),
6096 (1,4,28,45,67,43,25,32),
6097 (1,4,29,46,69,43,25,32),
6098 (1,4,30,47,71,44,26,33),
6099 (1,4,31,48,72,45,26,33),
6100 (1,4,32,49,74,46,26,34),
6101 (1,4,33,50,76,47,27,34),
6102 (1,4,34,51,78,48,27,35),
6103 (1,4,35,52,80,49,27,35),
6104 (1,4,36,53,82,50,27,36),
6105 (1,4,37,54,84,51,28,36),
6106 (1,4,38,55,86,52,28,37),
6107 (1,4,39,56,88,53,28,38),
6108 (1,4,40,57,90,54,28,38),
6109 (1,4,41,58,92,55,29,39),
6110 (1,4,42,60,94,56,29,39),
6111 (1,4,43,61,96,57,29,40),
6112 (1,4,44,62,98,58,30,40),
6113 (1,4,45,63,100,59,30,41),
6114 (1,4,46,64,103,61,30,42),
6115 (1,4,47,65,105,62,31,42),
6116 (1,4,48,66,107,63,31,43),
6117 (1,4,49,68,109,64,31,44),
6118 (1,4,50,69,111,65,32,44),
6119 (1,4,51,70,113,66,32,45),
6120 (1,4,52,71,116,67,32,45),
6121 (1,4,53,73,118,68,33,46),
6122 (1,4,54,74,120,69,33,47),
6123 (1,4,55,75,122,71,33,47),
6124 (1,4,56,76,125,72,34,48),
6125 (1,4,57,78,127,73,34,49),
6126 (1,4,58,79,129,74,34,49),
6127 (1,4,59,80,131,75,35,50),
6128 (1,4,60,81,134,77,35,51),
6129 (1,4,61,83,136,78,35,51),
6130 (1,4,62,84,138,79,36,52),
6131 (1,4,63,85,141,80,36,53),
6132 (1,4,64,87,143,81,37,54),
6133 (1,4,65,88,146,83,37,54),
6134 (1,4,66,89,148,84,37,55),
6135 (1,4,67,91,151,85,38,56),
6136 (1,4,68,92,153,86,38,57),
6137 (1,4,69,94,156,88,39,57),
6138 (1,4,70,95,158,89,39,58),
6139 (1,4,71,97,161,90,39,60),
6140 (1,4,72,99,164,92,40,60),
6141 (1,4,73,100,167,94,40,61),
6142 (1,4,74,102,170,95,41,62),
6143 (1,4,75,104,173,97,41,63),
6144 (1,4,76,105,176,98,41,64),
6145 (1,4,77,107,179,100,42,65),
6146 (1,4,78,109,183,106,42,66),
6147 (1,4,79,111,186,107,43,67),
6148 (1,4,80,113,189,109,43,69),
6149 (1,4,81,114,202,107,44,68),
6150 (1,4,82,116,205,108,44,68),
6151 (1,4,83,118,209,110,45,69),
6152 (1,4,84,120,213,112,45,70),
6153 (1,4,85,122,216,114,46,71),
6154 (1,5,1,20,20,20,22,23),
6155 (1,5,2,20,20,20,23,24),
6156 (1,5,3,20,20,21,25,26),
6157 (1,5,4,20,21,21,26,27),
6158 (1,5,5,21,21,21,27,28),
6159 (1,5,6,21,21,22,29,30),
6160 (1,5,7,21,21,22,30,31),
6161 (1,5,8,21,22,23,31,33),
6162 (1,5,9,21,22,23,33,34),
6163 (1,5,10,21,22,23,34,36),
6164 (1,5,11,22,22,24,36,37),
6165 (1,5,12,22,23,24,37,39),
6166 (1,5,13,22,23,25,38,40),
6167 (1,5,14,22,23,25,40,42),
6168 (1,5,15,22,23,25,41,43),
6169 (1,5,16,23,24,26,43,45),
6170 (1,5,17,23,24,26,44,46),
6171 (1,5,18,23,24,27,46,48),
6172 (1,5,19,23,24,27,47,49),
6173 (1,5,20,23,25,28,49,51),
6174 (1,5,21,24,25,28,51,53),
6175 (1,5,22,24,25,29,52,54),
6176 (1,5,23,24,26,29,54,56),
6177 (1,5,24,24,26,30,55,58),
6178 (1,5,25,25,26,30,57,59),
6179 (1,5,26,25,27,31,59,61),
6180 (1,5,27,25,27,31,60,63),
6181 (1,5,28,25,27,32,62,65),
6182 (1,5,29,25,28,32,64,66),
6183 (1,5,30,26,28,33,65,68),
6184 (1,5,31,26,28,33,67,70),
6185 (1,5,32,26,29,34,69,72),
6186 (1,5,33,27,29,34,70,73),
6187 (1,5,34,27,29,35,72,75),
6188 (1,5,35,27,30,35,74,77),
6189 (1,5,36,27,30,36,76,79),
6190 (1,5,37,28,30,36,78,81),
6191 (1,5,38,28,31,37,79,83),
6192 (1,5,39,28,31,38,81,85),
6193 (1,5,40,28,31,38,83,87),
6194 (1,5,41,29,32,39,85,88),
6195 (1,5,42,29,32,39,87,90),
6196 (1,5,43,29,33,40,89,92),
6197 (1,5,44,30,33,40,91,94),
6198 (1,5,45,30,33,41,92,96),
6199 (1,5,46,30,34,42,94,98),
6200 (1,5,47,31,34,42,96,100),
6201 (1,5,48,31,35,43,98,102),
6202 (1,5,49,31,35,44,100,104),
6203 (1,5,50,32,36,44,102,106),
6204 (1,5,51,32,36,45,104,109),
6205 (1,5,52,32,36,45,106,111),
6206 (1,5,53,33,37,46,108,113),
6207 (1,5,54,33,37,47,110,115),
6208 (1,5,55,33,38,47,112,117),
6209 (1,5,56,34,38,48,114,119),
6210 (1,5,57,34,39,49,117,121),
6211 (1,5,58,34,39,49,119,124),
6212 (1,5,59,35,40,50,121,126),
6213 (1,5,60,35,40,51,123,128),
6214 (1,5,61,35,41,51,125,130),
6215 (1,5,62,36,41,52,127,132),
6216 (1,5,63,36,41,53,129,135),
6217 (1,5,64,37,42,54,132,137),
6218 (1,5,65,37,42,54,134,139),
6219 (1,5,66,37,43,55,136,142),
6220 (1,5,67,38,43,56,138,144),
6221 (1,5,68,38,44,57,140,146),
6222 (1,5,69,39,44,57,143,149),
6223 (1,5,70,39,45,58,145,151),
6224 (1,5,71,39,46,59,148,158),
6225 (1,5,72,40,46,59,151,161),
6226 (1,5,73,40,47,60,154,164),
6227 (1,5,74,41,47,61,156,167),
6228 (1,5,75,41,48,62,159,170),
6229 (1,5,76,41,49,63,162,174),
6230 (1,5,77,42,49,64,165,177),
6231 (1,5,78,42,50,65,168,180),
6232 (1,5,79,43,50,66,171,183),
6233 (1,5,80,43,51,67,174,186),
6234 (1,5,81,44,52,68,185,185),
6235 (1,5,82,44,52,68,189,188),
6236 (1,5,83,45,53,69,193,191),
6237 (1,5,84,45,54,70,196,195),
6238 (1,5,85,46,54,71,199,198),
6239 (1,6,1,23,20,22,20,20),
6240 (1,6,2,24,21,23,20,20),
6241 (1,6,3,26,22,24,20,21),
6242 (1,6,4,27,22,26,20,21),
6243 (1,6,5,28,23,27,20,21),
6244 (1,6,6,30,24,28,20,21),
6245 (1,6,7,31,25,29,21,22),
6246 (1,6,8,32,26,30,21,22),
6247 (1,6,9,34,26,32,21,22),
6248 (1,6,10,35,27,33,21,23),
6249 (1,6,11,36,28,34,21,23),
6250 (1,6,12,38,29,35,21,23),
6251 (1,6,13,39,30,37,21,24),
6252 (1,6,14,41,31,38,21,24),
6253 (1,6,15,42,32,39,21,24),
6254 (1,6,16,44,33,41,21,25),
6255 (1,6,17,45,34,42,22,25),
6256 (1,6,18,47,34,43,22,25),
6257 (1,6,19,48,35,45,22,26),
6258 (1,6,20,50,36,46,22,26),
6259 (1,6,21,51,37,48,22,26),
6260 (1,6,22,53,38,49,22,27),
6261 (1,6,23,54,39,51,22,27),
6262 (1,6,24,56,40,52,23,28),
6263 (1,6,25,58,41,53,23,28),
6264 (1,6,26,59,42,55,23,28),
6265 (1,6,27,61,43,56,23,29),
6266 (1,6,28,63,44,58,23,29),
6267 (1,6,29,64,45,59,23,30),
6268 (1,6,30,66,46,61,24,30),
6269 (1,6,31,68,47,62,24,30),
6270 (1,6,32,69,48,64,24,31),
6271 (1,6,33,71,50,66,24,31),
6272 (1,6,34,73,51,67,24,32),
6273 (1,6,35,74,52,69,24,32),
6274 (1,6,36,76,53,70,25,33),
6275 (1,6,37,78,54,72,25,33),
6276 (1,6,38,80,55,74,25,34),
6277 (1,6,39,82,56,75,25,34),
6278 (1,6,40,83,57,77,25,35),
6279 (1,6,41,85,58,79,26,35),
6280 (1,6,42,87,60,80,26,35),
6281 (1,6,43,89,61,82,26,36),
6282 (1,6,44,91,62,84,26,36),
6283 (1,6,45,93,63,85,26,37),
6284 (1,6,46,95,64,87,27,37),
6285 (1,6,47,97,66,89,27,38),
6286 (1,6,48,99,67,91,27,38),
6287 (1,6,49,101,68,93,27,39),
6288 (1,6,50,103,69,94,28,40),
6289 (1,6,51,105,71,96,28,40),
6290 (1,6,52,106,72,97,28,41),
6291 (1,6,53,107,72,98,28,41),
6292 (1,6,54,107,73,98,29,42),
6293 (1,6,55,108,73,99,29,43),
6294 (1,6,56,111,75,102,29,44),
6295 (1,6,57,113,76,104,29,44),
6296 (1,6,58,118,77,106,30,45),
6297 (1,6,59,118,79,108,30,45),
6298 (1,6,60,123,80,110,30,46),
6299 (1,6,61,125,81,112,30,47),
6300 (1,6,62,128,83,114,30,47),
6301 (1,6,63,130,84,117,31,48),
6302 (1,6,64,130,86,119,31,48),
6303 (1,6,65,140,87,128,31,49),
6304 (1,6,66,143,89,131,31,50),
6305 (1,6,67,146,90,133,32,50),
6306 (1,6,68,148,92,135,32,51),
6307 (1,6,69,151,93,138,32,52),
6308 (1,6,70,154,95,140,32,52),
6309 (1,6,71,162,97,144,33,53),
6310 (1,6,72,164,98,146,33,54),
6311 (1,6,73,165,100,148,33,55),
6312 (1,6,74,166,102,151,33,55),
6313 (1,6,75,169,103,154,34,56),
6314 (1,6,76,172,105,157,34,57),
6315 (1,6,77,175,107,157,34,58),
6316 (1,6,78,176,108,157,34,58),
6317 (1,6,79,177,110,157,35,59),
6318 (1,6,80,180,112,160,35,60),
6319 (1,6,81,178,114,163,35,60),
6320 (1,6,82,178,116,165,36,60),
6321 (1,6,83,185,118,168,36,61),
6322 (1,6,84,185,120,171,36,62),
6323 (1,6,85,191,121,174,36,63),
6324 (1,7,81,122,75,138,136,146),
6325 (1,7,82,124,77,141,139,148),
6326 (1,7,83,127,78,143,139,151),
6327 (1,7,84,129,79,145,139,153),
6328 (1,7,85,131,80,148,145,156),
6329 (1,7,10,28,24,29,28,30),
6330 (1,7,11,29,24,30,29,31),
6331 (1,7,12,30,25,31,30,32),
6332 (1,7,13,30,25,32,31,33),
6333 (1,7,14,31,26,33,32,34),
6334 (1,7,15,32,26,34,33,36),
6335 (1,7,16,33,27,35,34,37),
6336 (1,7,17,34,27,36,35,38),
6337 (1,7,18,35,28,37,36,39),
6338 (1,7,19,36,28,38,37,40),
6339 (1,7,20,37,29,39,38,41),
6340 (1,7,21,38,29,40,39,42),
6341 (1,7,22,38,30,41,40,43),
6342 (1,7,23,39,30,42,41,44),
6343 (1,7,24,40,31,43,42,46),
6344 (1,7,25,41,31,45,43,47),
6345 (1,7,26,42,32,46,44,48),
6346 (1,7,27,43,32,47,45,49),
6347 (1,7,28,44,33,48,46,50),
6348 (1,7,29,45,33,49,47,52),
6349 (1,7,30,46,34,50,48,53),
6350 (1,7,31,48,34,52,50,54),
6351 (1,7,32,49,35,53,51,56),
6352 (1,7,33,50,36,54,52,57),
6353 (1,7,34,51,36,55,53,58),
6354 (1,7,35,52,37,57,54,60),
6355 (1,7,36,53,38,58,56,61),
6356 (1,7,37,54,38,59,57,62),
6357 (1,7,38,55,39,61,58,64),
6358 (1,7,39,56,39,62,59,65),
6359 (1,7,40,58,40,63,61,67),
6360 (1,7,41,59,41,65,62,68),
6361 (1,7,42,60,41,66,63,70),
6362 (1,7,43,61,42,68,64,71),
6363 (1,7,44,63,43,69,66,73),
6364 (1,7,45,64,43,71,67,74),
6365 (1,7,46,65,44,72,69,76),
6366 (1,7,47,66,45,74,70,77),
6367 (1,7,48,68,46,75,71,79),
6368 (1,7,49,69,46,77,73,81),
6369 (1,7,50,70,47,78,74,82),
6370 (1,7,51,72,48,80,76,84),
6371 (1,7,52,73,49,81,77,86),
6372 (1,7,53,75,49,83,79,87),
6373 (1,7,54,76,50,85,80,89),
6374 (1,7,55,77,51,86,82,91),
6375 (1,7,56,79,52,88,83,93),
6376 (1,7,57,80,53,90,85,94),
6377 (1,7,58,82,53,91,87,96),
6378 (1,7,59,83,54,93,88,98),
6379 (1,7,60,85,55,95,90,100),
6380 (1,7,61,87,56,97,92,102),
6381 (1,7,62,88,57,99,93,104),
6382 (1,7,63,90,58,100,95,106),
6383 (1,7,64,91,58,102,97,108),
6384 (1,7,65,93,59,104,99,110),
6385 (1,7,66,95,60,106,100,112),
6386 (1,7,67,96,61,108,102,114),
6387 (1,7,68,98,62,110,104,116),
6388 (1,7,69,100,63,112,106,118),
6389 (1,7,70,102,64,114,108,120),
6390 (1,7,71,103,65,116,110,122),
6391 (1,7,72,105,66,118,112,125),
6392 (1,7,73,107,67,120,114,127),
6393 (1,7,74,109,68,123,116,129),
6394 (1,7,75,111,69,125,118,131),
6395 (1,7,76,113,70,127,120,134),
6396 (1,7,77,114,71,129,122,136),
6397 (1,7,78,116,72,131,124,138),
6398 (1,7,79,118,73,134,126,141),
6399 (1,7,80,120,74,136,128,143),
6400 (1,8,1,20,20,20,23,22),
6401 (1,8,2,20,20,20,24,23),
6402 (1,8,3,20,20,21,26,25),
6403 (1,8,4,20,20,21,27,26),
6404 (1,8,5,20,21,21,28,27),
6405 (1,8,6,20,21,21,30,29),
6406 (1,8,7,21,21,22,31,30),
6407 (1,8,8,21,21,22,33,31),
6408 (1,8,9,21,21,22,34,33),
6409 (1,8,10,21,21,23,36,34),
6410 (1,8,11,21,22,23,37,36),
6411 (1,8,12,21,22,23,39,37),
6412 (1,8,13,21,22,24,40,38),
6413 (1,8,14,21,22,24,42,40),
6414 (1,8,15,21,22,24,43,41),
6415 (1,8,16,21,23,25,45,43),
6416 (1,8,17,22,23,25,46,44),
6417 (1,8,18,22,23,25,48,46),
6418 (1,8,19,22,23,26,49,47),
6419 (1,8,20,22,23,26,51,49),
6420 (1,8,21,22,24,26,53,51),
6421 (1,8,22,22,24,27,54,52),
6422 (1,8,23,22,24,27,56,54),
6423 (1,8,24,23,24,28,58,55),
6424 (1,8,25,23,25,28,59,57),
6425 (1,8,26,23,25,28,61,59),
6426 (1,8,27,23,25,29,63,60),
6427 (1,8,28,23,25,29,65,62),
6428 (1,8,29,23,25,30,66,64),
6429 (1,8,30,24,26,30,68,65),
6430 (1,8,31,24,26,30,70,67),
6431 (1,8,32,24,26,31,72,69),
6432 (1,8,33,24,27,31,73,70),
6433 (1,8,34,24,27,32,75,72),
6434 (1,8,35,24,27,32,77,74),
6435 (1,8,36,25,27,33,79,76),
6436 (1,8,37,25,28,33,81,78),
6437 (1,8,38,25,28,34,83,79),
6438 (1,8,39,25,28,34,85,81),
6439 (1,8,40,25,28,35,87,83),
6440 (1,8,41,26,29,35,88,85),
6441 (1,8,42,26,29,35,90,87),
6442 (1,8,43,26,29,36,92,89),
6443 (1,8,44,26,30,36,94,91),
6444 (1,8,45,26,30,37,96,92),
6445 (1,8,46,27,30,37,98,94),
6446 (1,8,47,27,31,38,100,96),
6447 (1,8,48,27,31,38,102,98),
6448 (1,8,49,27,31,39,104,100),
6449 (1,8,50,28,32,40,106,102),
6450 (1,8,51,28,32,40,109,104),
6451 (1,8,52,28,32,41,111,106),
6452 (1,8,53,28,33,41,113,108),
6453 (1,8,54,29,33,42,115,110),
6454 (1,8,55,29,33,42,117,112),
6455 (1,8,56,29,34,43,119,114),
6456 (1,8,57,29,34,43,121,117),
6457 (1,8,58,30,34,44,124,119),
6458 (1,8,59,30,35,44,126,121),
6459 (1,8,60,30,35,45,128,123),
6460 (1,8,61,30,35,46,130,125),
6461 (1,8,62,31,36,46,132,127),
6462 (1,8,63,31,36,47,135,129),
6463 (1,8,64,31,37,47,137,132),
6464 (1,8,65,32,37,48,139,134),
6465 (1,8,66,32,37,49,142,136),
6466 (1,8,67,32,38,49,144,138),
6467 (1,8,68,32,38,50,146,140),
6468 (1,8,69,33,39,50,149,143),
6469 (1,8,70,33,39,51,151,145),
6470 (1,8,71,33,39,52,154,152),
6471 (1,8,72,33,40,53,160,155),
6472 (1,8,73,33,40,54,160,158),
6473 (1,8,74,34,41,54,163,160),
6474 (1,8,75,34,41,55,166,163),
6475 (1,8,76,34,41,56,169,166),
6476 (1,8,77,35,42,57,172,169),
6477 (1,8,78,35,42,57,175,173),
6478 (1,8,79,35,43,58,178,176),
6479 (1,8,80,36,43,59,181,179),
6480 (1,8,81,36,44,60,194,177),
6481 (1,8,82,36,44,60,197,180),
6482 (1,8,83,36,45,61,200,184),
6483 (1,8,84,37,45,62,204,187),
6484 (1,8,85,37,46,63,207,190),
6485 (1,9,1,20,20,21,22,22),
6486 (1,9,2,20,20,22,23,23),
6487 (1,9,3,21,21,22,24,24),
6488 (1,9,4,21,21,23,26,25),
6489 (1,9,5,21,21,23,27,27),
6490 (1,9,6,21,22,24,28,28),
6491 (1,9,7,22,22,24,29,29),
6492 (1,9,8,22,23,25,30,30),
6493 (1,9,9,22,23,26,32,31),
6494 (1,9,10,23,23,26,33,33),
6495 (1,9,11,23,24,27,34,34),
6496 (1,9,12,23,24,27,35,35),
6497 (1,9,13,24,25,28,37,36),
6498 (1,9,14,24,25,29,38,38),
6499 (1,9,15,24,25,29,39,39),
6500 (1,9,16,25,26,30,41,40),
6501 (1,9,17,25,26,31,42,42),
6502 (1,9,18,25,27,31,43,43),
6503 (1,9,19,26,27,32,45,44),
6504 (1,9,20,26,28,33,46,46),
6505 (1,9,21,26,28,33,48,47),
6506 (1,9,22,27,29,34,49,49),
6507 (1,9,23,27,29,35,51,50),
6508 (1,9,24,28,30,35,52,51),
6509 (1,9,25,28,30,36,53,53),
6510 (1,9,26,28,31,37,55,54),
6511 (1,9,27,29,31,37,56,56),
6512 (1,9,28,29,32,38,58,57),
6513 (1,9,29,30,32,39,59,59),
6514 (1,9,30,30,33,40,61,60),
6515 (1,9,31,30,33,40,62,62),
6516 (1,9,32,31,34,41,64,63),
6517 (1,9,33,31,34,42,66,65),
6518 (1,9,34,32,35,43,67,66),
6519 (1,9,35,32,35,44,69,68),
6520 (1,9,36,33,36,44,70,69),
6521 (1,9,37,33,36,45,72,71),
6522 (1,9,38,34,37,46,74,73),
6523 (1,9,39,34,38,47,75,74),
6524 (1,9,40,35,38,48,77,76),
6525 (1,9,41,35,39,48,79,78),
6526 (1,9,42,35,39,49,80,79),
6527 (1,9,43,36,40,50,82,81),
6528 (1,9,44,36,40,51,84,83),
6529 (1,9,45,37,41,52,85,84),
6530 (1,9,46,37,42,53,87,86),
6531 (1,9,47,38,42,54,89,88),
6532 (1,9,48,38,43,55,91,89),
6533 (1,9,49,39,44,55,93,91),
6534 (1,9,50,40,44,56,94,93),
6535 (1,9,51,40,45,57,96,95),
6536 (1,9,52,41,45,58,98,97),
6537 (1,9,53,41,46,59,100,98),
6538 (1,9,54,42,47,60,102,100),
6539 (1,9,55,42,47,61,103,102),
6540 (1,9,56,43,48,62,105,104),
6541 (1,9,57,43,49,63,107,106),
6542 (1,9,58,44,49,64,109,108),
6543 (1,9,59,44,50,65,111,109),
6544 (1,9,60,45,51,66,113,111),
6545 (1,9,61,46,51,67,115,113),
6546 (1,9,62,46,52,68,117,115),
6547 (1,9,63,47,53,69,119,117),
6548 (1,9,64,47,54,70,121,119),
6549 (1,9,65,48,54,71,123,121),
6550 (1,9,66,49,55,72,125,123),
6551 (1,9,67,49,56,73,127,125),
6552 (1,9,68,50,57,74,129,127),
6553 (1,9,69,50,57,75,131,129),
6554 (1,9,70,51,58,76,133,131),
6555 (1,9,71,52,59,78,135,146),
6556 (1,9,72,53,59,79,138,148),
6557 (1,9,73,54,60,80,140,151),
6558 (1,9,74,54,61,89,143,154),
6559 (1,9,75,55,62,91,145,156),
6560 (1,9,76,56,63,92,148,159),
6561 (1,9,77,57,64,93,151,162),
6562 (1,9,78,57,65,95,153,165),
6563 (1,9,79,58,66,96,156,168),
6564 (1,9,80,59,67,97,159,170),
6565 (1,9,81,60,68,91,169,169),
6566 (1,9,82,60,68,92,172,172),
6567 (1,9,83,61,69,94,175,175),
6568 (1,9,84,62,70,95,178,178),
6569 (1,9,85,63,71,96,181,181),
6570 (1,11,81,91,83,99,146,161),
6571 (1,11,82,92,85,101,148,164),
6572 (1,11,83,94,86,102,151,167),
6573 (1,11,84,95,87,104,160,170),
6574 (1,11,85,96,89,106,160,173),
6575 (1,11,10,26,24,25,30,31),
6576 (1,11,11,26,25,26,31,33),
6577 (1,11,12,27,25,27,32,34),
6578 (1,11,13,27,26,27,33,35),
6579 (1,11,14,28,26,28,34,36),
6580 (1,11,15,29,27,29,36,37),
6581 (1,11,16,29,27,29,37,38),
6582 (1,11,17,30,28,30,38,40),
6583 (1,11,18,30,29,31,39,41),
6584 (1,11,19,31,29,31,40,42),
6585 (1,11,20,32,30,32,41,43),
6586 (1,11,21,32,30,33,42,45),
6587 (1,11,22,33,31,34,43,46),
6588 (1,11,23,34,32,34,44,47),
6589 (1,11,24,34,32,35,46,49),
6590 (1,11,25,35,33,36,47,50),
6591 (1,11,26,36,33,37,48,51),
6592 (1,11,27,36,34,37,49,53),
6593 (1,11,28,37,35,38,50,54),
6594 (1,11,29,38,35,39,52,56),
6595 (1,11,30,38,36,40,53,57),
6596 (1,11,31,39,37,41,54,58),
6597 (1,11,32,40,37,42,56,60),
6598 (1,11,33,41,38,42,57,61),
6599 (1,11,34,41,39,43,58,63),
6600 (1,11,35,42,39,44,60,64),
6601 (1,11,36,43,40,45,61,66),
6602 (1,11,37,44,41,46,62,68),
6603 (1,11,38,45,41,47,64,69),
6604 (1,11,39,45,42,48,65,71),
6605 (1,11,40,46,43,49,67,72),
6606 (1,11,41,47,44,50,68,74),
6607 (1,11,42,48,44,51,70,76),
6608 (1,11,43,49,45,52,71,77),
6609 (1,11,44,50,46,52,73,79),
6610 (1,11,45,50,47,53,74,81),
6611 (1,11,46,51,48,54,76,83),
6612 (1,11,47,52,48,56,77,84),
6613 (1,11,48,53,49,57,79,86),
6614 (1,11,49,54,50,58,81,88),
6615 (1,11,50,55,51,59,82,90),
6616 (1,11,51,56,52,60,84,92),
6617 (1,11,52,57,53,61,86,94),
6618 (1,11,53,58,54,62,87,96),
6619 (1,11,54,59,54,63,89,98),
6620 (1,11,55,60,55,64,91,100),
6621 (1,11,56,61,56,65,93,102),
6622 (1,11,57,62,57,66,94,104),
6623 (1,11,58,63,58,68,96,106),
6624 (1,11,59,64,59,69,98,108),
6625 (1,11,60,65,60,70,100,110),
6626 (1,11,61,66,61,71,102,112),
6627 (1,11,62,67,62,72,104,114),
6628 (1,11,63,68,63,74,106,117),
6629 (1,11,64,69,64,75,108,119),
6630 (1,11,65,71,65,76,110,121),
6631 (1,11,66,72,66,78,112,123),
6632 (1,11,67,73,67,79,114,126),
6633 (1,11,68,74,68,80,116,128),
6634 (1,11,69,75,69,82,118,130),
6635 (1,11,70,76,70,83,120,133),
6636 (1,11,71,78,71,84,122,135),
6637 (1,11,72,79,73,86,125,138),
6638 (1,11,73,80,74,87,127,140),
6639 (1,11,74,81,75,89,129,143),
6640 (1,11,75,83,76,90,131,145),
6641 (1,11,76,84,77,92,134,148),
6642 (1,11,77,85,78,93,136,151),
6643 (1,11,78,87,80,95,138,153),
6644 (1,11,79,88,81,96,141,156),
6645 (1,11,80,89,82,98,143,159),
6646 (2,1,1,26,17,24,17,23),
6647 (2,1,2,27,18,25,17,23),
6648 (2,1,3,29,19,26,17,24),
6649 (2,1,4,30,19,27,17,24),
6650 (2,1,5,31,20,29,17,24),
6651 (2,1,6,32,21,30,17,24),
6652 (2,1,7,34,22,31,18,25),
6653 (2,1,8,35,23,32,18,25),
6654 (2,1,9,37,24,34,18,25),
6655 (2,1,10,38,24,35,18,26),
6656 (2,1,11,39,25,36,18,26),
6657 (2,1,12,41,26,37,18,26),
6658 (2,1,13,42,27,39,18,27),
6659 (2,1,14,44,28,40,18,27),
6660 (2,1,15,45,29,41,18,27),
6661 (2,1,16,47,30,43,19,28),
6662 (2,1,17,48,31,44,19,28),
6663 (2,1,18,50,32,45,19,28),
6664 (2,1,19,51,33,47,19,29),
6665 (2,1,20,53,34,48,19,29),
6666 (2,1,21,54,34,50,19,29),
6667 (2,1,22,56,35,51,19,30),
6668 (2,1,23,57,36,52,20,30),
6669 (2,1,24,59,37,54,20,30),
6670 (2,1,25,60,38,55,20,31),
6671 (2,1,26,62,39,57,20,31),
6672 (2,1,27,64,40,58,20,32),
6673 (2,1,28,65,41,60,20,32),
6674 (2,1,29,67,43,61,21,32),
6675 (2,1,30,69,44,63,21,33),
6676 (2,1,31,70,45,64,21,33),
6677 (2,1,32,72,46,66,21,34),
6678 (2,1,33,74,47,67,21,34),
6679 (2,1,34,76,48,69,21,35),
6680 (2,1,35,77,49,71,22,35),
6681 (2,1,36,79,50,72,22,36),
6682 (2,1,37,81,51,74,22,36),
6683 (2,1,38,83,52,76,22,36),
6684 (2,1,39,84,53,77,22,37),
6685 (2,1,40,86,55,79,23,37),
6686 (2,1,41,88,56,81,23,38),
6687 (2,1,42,90,57,82,23,38),
6688 (2,1,43,92,58,84,23,39),
6689 (2,1,44,94,59,86,23,39),
6690 (2,1,45,96,60,87,24,40),
6691 (2,1,46,98,62,89,24,40),
6692 (2,1,47,100,63,91,24,41),
6693 (2,1,48,101,64,93,24,41),
6694 (2,1,49,103,65,94,25,42),
6695 (2,1,50,105,66,96,25,42),
6696 (2,1,51,107,68,98,25,43),
6697 (2,1,52,109,69,100,25,43),
6698 (2,1,53,111,70,102,25,44),
6699 (2,1,54,113,71,104,26,45),
6700 (2,1,55,115,73,105,26,45),
6701 (2,1,56,118,74,107,26,46),
6702 (2,1,57,120,75,109,26,46),
6703 (2,1,58,122,77,111,27,47),
6704 (2,1,59,124,78,113,27,47),
6705 (2,1,60,126,79,115,27,48),
6706 (2,1,61,128,81,117,27,48),
6707 (2,1,62,130,82,119,28,49),
6708 (2,1,63,132,83,121,28,50),
6709 (2,1,64,135,85,123,28,50),
6710 (2,1,65,137,86,125,29,51),
6711 (2,1,66,139,87,127,29,52),
6712 (2,1,67,141,89,129,29,52),
6713 (2,1,68,143,90,131,29,53),
6714 (2,1,69,146,92,133,30,53),
6715 (2,1,70,148,93,135,30,54),
6716 (2,1,71,157,94,142,30,55),
6717 (2,1,72,162,96,148,30,56),
6718 (2,1,73,165,98,150,30,57),
6719 (2,1,74,168,99,153,31,57),
6720 (2,1,75,170,101,154,31,58),
6721 (2,1,76,172,103,156,31,59),
6722 (2,1,77,174,105,159,32,60),
6723 (2,1,78,179,106,162,32,60),
6724 (2,1,79,184,108,167,32,61),
6725 (2,1,80,187,110,170,33,62),
6726 (2,1,81,180,112,162,33,62),
6727 (2,1,82,192,114,165,33,62),
6728 (2,1,83,195,116,168,33,63),
6729 (2,1,84,198,118,171,34,64),
6730 (2,1,85,201,120,174,34,65),
6731 (2,2,81,163,88,147,96,109),
6732 (2,2,82,166,90,149,98,110),
6733 (2,2,83,169,91,152,99,112),
6734 (2,2,84,173,93,154,101,114),
6735 (2,2,85,175,94,157,103,116),
6736 (2,2,10,34,22,31,22,29),
6737 (2,2,11,35,22,32,23,30),
6738 (2,2,12,36,23,33,24,30),
6739 (2,2,13,37,24,34,24,31),
6740 (2,2,14,38,24,35,25,32),
6741 (2,2,15,39,25,37,26,32),
6742 (2,2,16,41,25,38,26,33),
6743 (2,2,17,42,26,39,27,34),
6744 (2,2,18,43,27,40,28,35),
6745 (2,2,19,44,27,41,28,35),
6746 (2,2,20,45,28,42,29,36),
6747 (2,2,21,46,29,43,30,37),
6748 (2,2,22,48,29,44,31,38),
6749 (2,2,23,49,30,45,31,39),
6750 (2,2,24,50,31,47,32,39),
6751 (2,2,25,51,31,48,33,40),
6752 (2,2,26,53,32,49,34,41),
6753 (2,2,27,54,33,50,34,42),
6754 (2,2,28,55,33,51,35,43),
6755 (2,2,29,57,34,53,36,44),
6756 (2,2,30,58,35,54,37,44),
6757 (2,2,31,59,36,55,38,45),
6758 (2,2,32,61,36,57,39,46),
6759 (2,2,33,62,37,58,39,47),
6760 (2,2,34,64,38,59,40,48),
6761 (2,2,35,65,39,61,41,49),
6762 (2,2,36,67,40,62,42,50),
6763 (2,2,37,68,40,63,43,51),
6764 (2,2,38,70,41,65,44,52),
6765 (2,2,39,71,42,66,45,53),
6766 (2,2,40,73,43,68,46,54),
6767 (2,2,41,74,44,69,47,55),
6768 (2,2,42,76,44,71,48,56),
6769 (2,2,43,77,45,72,49,57),
6770 (2,2,44,79,46,74,49,58),
6771 (2,2,45,81,47,75,50,59),
6772 (2,2,46,82,48,77,51,60),
6773 (2,2,47,84,49,78,53,61),
6774 (2,2,48,86,50,80,54,62),
6775 (2,2,49,87,51,82,55,64),
6776 (2,2,50,89,52,83,56,65),
6777 (2,2,51,91,53,85,57,66),
6778 (2,2,52,93,54,87,58,67),
6779 (2,2,53,95,55,88,59,68),
6780 (2,2,54,96,56,90,60,69),
6781 (2,2,55,98,57,92,61,71),
6782 (2,2,56,100,58,94,62,72),
6783 (2,2,57,102,59,95,63,73),
6784 (2,2,58,104,60,97,65,74),
6785 (2,2,59,111,61,99,66,76),
6786 (2,2,60,111,62,101,67,77),
6787 (2,2,61,111,63,103,68,78),
6788 (2,2,62,117,64,105,69,80),
6789 (2,2,63,119,65,107,71,81),
6790 (2,2,64,119,66,109,72,82),
6791 (2,2,65,119,68,111,73,84),
6792 (2,2,66,121,69,113,75,85),
6793 (2,2,67,123,70,115,76,87),
6794 (2,2,68,125,71,117,77,88),
6795 (2,2,69,133,72,119,79,89),
6796 (2,2,70,133,74,121,80,91),
6797 (2,2,71,133,75,123,81,92),
6798 (2,2,72,140,76,126,83,94),
6799 (2,2,73,142,77,128,84,96),
6800 (2,2,74,142,79,130,86,97),
6801 (2,2,75,147,80,132,87,99),
6802 (2,2,76,147,81,135,89,100),
6803 (2,2,77,153,83,137,90,102),
6804 (2,2,78,156,84,139,92,104),
6805 (2,2,79,158,85,142,93,105),
6806 (2,2,80,158,87,144,95,107),
6807 (2,3,1,23,20,23,17,24),
6808 (2,3,2,23,21,24,18,25),
6809 (2,3,3,24,23,25,18,25),
6810 (2,3,4,24,24,26,19,26),
6811 (2,3,5,25,25,27,19,26),
6812 (2,3,6,25,27,28,20,27),
6813 (2,3,7,26,28,28,21,28),
6814 (2,3,8,26,30,29,21,28),
6815 (2,3,9,26,31,30,22,29),
6816 (2,3,10,27,33,31,22,30),
6817 (2,3,11,27,34,32,23,30),
6818 (2,3,12,28,36,33,24,31),
6819 (2,3,13,28,37,34,24,32),
6820 (2,3,14,29,39,35,25,33),
6821 (2,3,15,29,40,36,26,33),
6822 (2,3,16,30,42,37,26,34),
6823 (2,3,17,30,43,39,27,35),
6824 (2,3,18,31,45,40,28,35),
6825 (2,3,19,31,47,41,28,36),
6826 (2,3,20,32,48,42,29,37),
6827 (2,3,21,32,50,43,30,38),
6828 (2,3,22,33,51,44,31,39),
6829 (2,3,23,34,53,45,31,39),
6830 (2,3,24,34,55,46,32,40),
6831 (2,3,25,35,57,47,33,41),
6832 (2,3,26,35,58,48,34,42),
6833 (2,3,27,36,60,50,34,43),
6834 (2,3,28,36,62,51,35,43),
6835 (2,3,29,37,63,52,36,44),
6836 (2,3,30,38,65,53,37,45),
6837 (2,3,31,38,67,54,37,46),
6838 (2,3,32,39,69,56,38,47),
6839 (2,3,33,39,71,57,39,48),
6840 (2,3,34,40,72,58,40,49),
6841 (2,3,35,41,74,59,41,49),
6842 (2,3,36,41,76,61,42,50),
6843 (2,3,37,42,78,62,42,51),
6844 (2,3,38,43,80,63,43,52),
6845 (2,3,39,43,82,64,44,53),
6846 (2,3,40,44,84,66,45,54),
6847 (2,3,41,45,86,67,46,55),
6848 (2,3,42,45,88,68,47,56),
6849 (2,3,43,46,90,70,47,57),
6850 (2,3,44,47,91,71,48,58),
6851 (2,3,45,47,93,72,49,59),
6852 (2,3,46,48,95,74,50,60),
6853 (2,3,47,49,98,75,51,61),
6854 (2,3,48,50,100,77,52,62),
6855 (2,3,49,50,102,78,53,63),
6856 (2,3,50,51,104,79,54,64),
6857 (2,3,51,52,106,81,55,65),
6858 (2,3,52,52,108,82,56,66),
6859 (2,3,53,53,110,84,57,67),
6860 (2,3,54,54,112,85,58,68),
6861 (2,3,55,55,114,87,59,69),
6862 (2,3,56,55,116,88,60,70),
6863 (2,3,57,56,118,90,61,71),
6864 (2,3,58,57,121,91,62,72),
6865 (2,3,59,58,123,93,63,73),
6866 (2,3,60,59,125,94,64,74),
6867 (2,3,61,59,127,96,65,76),
6868 (2,3,62,60,130,97,66,77),
6869 (2,3,63,61,132,99,67,78),
6870 (2,3,64,62,134,100,68,79),
6871 (2,3,65,63,136,102,69,80),
6872 (2,3,66,64,139,104,70,81),
6873 (2,3,67,64,141,105,71,82),
6874 (2,3,68,65,143,107,72,84),
6875 (2,3,69,66,146,108,73,85),
6876 (2,3,70,67,148,110,74,86),
6877 (2,3,71,68,151,112,75,87),
6878 (2,3,72,69,154,114,76,88),
6879 (2,3,73,70,157,116,77,90),
6880 (2,3,74,71,160,118,79,91),
6881 (2,3,75,72,163,120,80,93),
6882 (2,3,76,73,166,122,81,94),
6883 (2,3,77,74,169,124,83,96),
6884 (2,3,78,75,172,126,84,97),
6885 (2,3,79,76,175,128,85,99),
6886 (2,3,80,77,178,130,87,100),
6887 (2,3,81,78,191,131,88,101),
6888 (2,3,82,80,194,134,90,102),
6889 (2,3,83,81,197,136,91,104),
6890 (2,3,84,82,201,138,93,105),
6891 (2,3,85,83,205,140,94,107),
6892 (2,4,1,24,20,23,17,23),
6893 (2,4,2,25,21,24,17,23),
6894 (2,4,3,25,23,24,17,24),
6895 (2,4,4,26,24,25,17,24),
6896 (2,4,5,27,26,26,18,24),
6897 (2,4,6,28,27,26,18,25),
6898 (2,4,7,29,29,27,18,25),
6899 (2,4,8,29,30,28,18,26),
6900 (2,4,9,30,32,29,18,26),
6901 (2,4,10,31,33,29,19,26),
6902 (2,4,11,32,35,30,19,27),
6903 (2,4,12,33,37,31,19,27),
6904 (2,4,13,34,38,32,19,28),
6905 (2,4,14,34,40,32,19,28),
6906 (2,4,15,35,41,33,19,28),
6907 (2,4,16,36,43,34,20,29),
6908 (2,4,17,37,45,35,20,29),
6909 (2,4,18,38,46,36,20,30),
6910 (2,4,19,39,48,37,20,30),
6911 (2,4,20,40,50,37,21,31),
6912 (2,4,21,41,52,38,21,31),
6913 (2,4,22,42,53,39,21,31),
6914 (2,4,23,43,55,40,21,32),
6915 (2,4,24,43,57,41,21,32),
6916 (2,4,25,44,59,42,22,33),
6917 (2,4,26,45,60,43,22,33),
6918 (2,4,27,46,62,44,22,34),
6919 (2,4,28,47,64,44,22,34),
6920 (2,4,29,48,66,45,23,35),
6921 (2,4,30,49,68,46,23,35),
6922 (2,4,31,50,70,47,23,36),
6923 (2,4,32,51,72,48,23,36),
6924 (2,4,33,53,73,49,24,37),
6925 (2,4,34,54,75,50,24,38),
6926 (2,4,35,55,77,51,24,38),
6927 (2,4,36,56,79,52,24,39),
6928 (2,4,37,57,81,53,25,39),
6929 (2,4,38,58,83,54,25,40),
6930 (2,4,39,59,85,55,25,40),
6931 (2,4,40,60,87,56,26,41),
6932 (2,4,41,61,89,57,26,41),
6933 (2,4,42,62,91,58,26,42),
6934 (2,4,43,63,93,59,27,43),
6935 (2,4,44,65,95,60,27,43),
6936 (2,4,45,66,98,61,27,44),
6937 (2,4,46,67,100,62,27,44),
6938 (2,4,47,68,102,64,28,45),
6939 (2,4,48,69,104,65,28,46),
6940 (2,4,49,71,106,66,28,46),
6941 (2,4,50,72,108,67,29,47),
6942 (2,4,51,73,110,68,29,48),
6943 (2,4,52,74,113,69,29,48),
6944 (2,4,53,75,115,70,30,49),
6945 (2,4,54,77,117,71,30,50),
6946 (2,4,55,78,119,73,30,50),
6947 (2,4,56,79,122,74,31,51),
6948 (2,4,57,80,124,75,31,52),
6949 (2,4,58,82,126,76,31,52),
6950 (2,4,59,83,129,77,32,53),
6951 (2,4,60,84,131,78,32,54),
6952 (2,4,61,86,133,80,33,54),
6953 (2,4,62,87,136,81,33,55),
6954 (2,4,63,88,138,82,33,56),
6955 (2,4,64,90,140,83,34,57),
6956 (2,4,65,91,143,85,34,57),
6957 (2,4,66,92,145,86,34,58),
6958 (2,4,67,94,148,87,35,59),
6959 (2,4,68,95,150,88,35,59),
6960 (2,4,69,97,153,90,36,60),
6961 (2,4,70,98,155,91,36,61),
6962 (2,4,71,100,158,92,36,62),
6963 (2,4,72,102,161,94,37,62),
6964 (2,4,73,103,164,99,37,63),
6965 (2,4,74,105,167,100,38,64),
6966 (2,4,75,107,170,102,38,65),
6967 (2,4,76,108,173,102,38,66),
6968 (2,4,77,110,176,102,39,67),
6969 (2,4,78,112,180,103,39,68),
6970 (2,4,79,114,183,105,40,69),
6971 (2,4,80,116,186,107,40,70),
6972 (2,4,81,117,199,108,41,70),
6973 (2,4,82,119,202,109,41,70),
6974 (2,4,83,121,206,111,42,71),
6975 (2,4,84,123,210,113,42,72),
6976 (2,4,85,125,213,115,43,73),
6977 (2,5,81,47,49,69,182,187),
6978 (2,5,82,47,49,69,186,190),
6979 (2,5,83,48,50,70,190,193),
6980 (2,5,84,48,51,71,193,197),
6981 (2,5,85,49,51,72,196,200),
6982 (2,5,10,25,19,24,30,36),
6983 (2,5,11,25,19,25,31,37),
6984 (2,5,12,25,20,25,32,39),
6985 (2,5,13,25,20,25,33,40),
6986 (2,5,14,25,20,26,35,41),
6987 (2,5,15,26,20,26,36,43),
6988 (2,5,16,26,21,27,37,44),
6989 (2,5,17,26,21,27,39,45),
6990 (2,5,18,26,21,27,40,47),
6991 (2,5,19,26,22,28,41,48),
6992 (2,5,20,27,22,28,43,50),
6993 (2,5,21,27,22,29,44,51),
6994 (2,5,22,27,22,29,46,53),
6995 (2,5,23,27,23,30,47,54),
6996 (2,5,24,28,23,30,49,56),
6997 (2,5,25,28,23,31,50,57),
6998 (2,5,26,28,24,31,52,59),
6999 (2,5,27,28,24,31,53,61),
7000 (2,5,28,28,24,32,55,62),
7001 (2,5,29,29,25,32,56,64),
7002 (2,5,30,29,25,33,58,66),
7003 (2,5,31,29,25,33,60,67),
7004 (2,5,32,29,26,34,61,69),
7005 (2,5,33,30,26,34,63,71),
7006 (2,5,34,30,26,35,65,72),
7007 (2,5,35,30,27,35,66,74),
7008 (2,5,36,31,27,36,68,76),
7009 (2,5,37,31,27,37,70,78),
7010 (2,5,38,31,28,37,72,80),
7011 (2,5,39,31,28,38,73,82),
7012 (2,5,40,32,28,38,75,83),
7013 (2,5,41,32,29,39,77,85),
7014 (2,5,42,32,29,39,79,87),
7015 (2,5,43,32,30,40,81,89),
7016 (2,5,44,33,30,40,83,91),
7017 (2,5,45,33,30,41,85,93),
7018 (2,5,46,33,31,42,87,95),
7019 (2,5,47,34,31,42,89,97),
7020 (2,5,48,34,32,43,91,100),
7021 (2,5,49,34,32,44,93,102),
7022 (2,5,50,35,32,44,99,104),
7023 (2,5,51,35,33,45,102,106),
7024 (2,5,52,35,33,45,104,108),
7025 (2,5,53,36,34,46,106,110),
7026 (2,5,54,36,34,47,108,113),
7027 (2,5,55,36,35,47,111,115),
7028 (2,5,56,37,35,48,113,117),
7029 (2,5,57,37,36,49,115,120),
7030 (2,5,58,37,36,50,117,122),
7031 (2,5,59,38,37,50,120,125),
7032 (2,5,60,38,37,51,123,127),
7033 (2,5,61,38,37,52,125,129),
7034 (2,5,62,39,38,52,128,132),
7035 (2,5,63,39,38,53,130,135),
7036 (2,5,64,39,39,54,133,137),
7037 (2,5,65,40,40,55,135,140),
7038 (2,5,66,40,40,56,138,142),
7039 (2,5,67,41,41,56,140,145),
7040 (2,5,68,41,41,57,144,148),
7041 (2,5,69,41,42,58,147,151),
7042 (2,5,70,42,42,59,149,153),
7043 (2,5,71,42,43,60,152,156),
7044 (2,5,72,43,43,60,155,159),
7045 (2,5,73,43,44,61,158,162),
7046 (2,5,74,44,44,62,160,165),
7047 (2,5,75,44,45,63,163,168),
7048 (2,5,76,44,46,64,167,171),
7049 (2,5,77,45,46,65,170,174),
7050 (2,5,78,45,47,66,173,177),
7051 (2,5,79,46,47,67,176,180),
7052 (2,5,80,46,48,68,179,183),
7053 (2,6,1,26,17,24,17,23),
7054 (2,6,2,27,18,25,17,23),
7055 (2,6,3,29,19,26,17,24),
7056 (2,6,4,30,19,27,17,24),
7057 (2,6,5,31,20,29,17,24),
7058 (2,6,6,32,21,30,17,24),
7059 (2,6,7,34,22,31,18,25),
7060 (2,6,8,35,23,32,18,25),
7061 (2,6,9,37,24,34,18,25),
7062 (2,6,10,38,24,35,18,26),
7063 (2,6,11,39,25,36,18,26),
7064 (2,6,12,41,26,37,18,26),
7065 (2,6,13,42,27,39,18,27),
7066 (2,6,14,44,28,40,18,27),
7067 (2,6,15,45,29,41,18,27),
7068 (2,6,16,47,30,43,19,28),
7069 (2,6,17,48,31,44,19,28),
7070 (2,6,18,50,32,45,19,28),
7071 (2,6,19,51,33,47,19,29),
7072 (2,6,20,53,34,48,19,29),
7073 (2,6,21,54,34,50,19,29),
7074 (2,6,22,56,35,51,19,30),
7075 (2,6,23,57,36,52,20,30),
7076 (2,6,24,59,37,54,20,30),
7077 (2,6,25,60,38,55,20,31),
7078 (2,6,26,62,39,57,20,31),
7079 (2,6,27,64,40,58,20,32),
7080 (2,6,28,65,41,60,20,32),
7081 (2,6,29,67,43,61,21,32),
7082 (2,6,30,69,44,63,21,33),
7083 (2,6,31,70,45,64,21,33),
7084 (2,6,32,72,46,66,21,34),
7085 (2,6,33,74,47,67,21,34),
7086 (2,6,34,76,48,69,21,35),
7087 (2,6,35,77,49,71,22,35),
7088 (2,6,36,79,50,72,22,36),
7089 (2,6,37,81,51,74,22,36),
7090 (2,6,38,83,52,76,22,36),
7091 (2,6,39,84,53,77,22,37),
7092 (2,6,40,86,55,79,23,37),
7093 (2,6,41,88,56,81,23,38),
7094 (2,6,42,90,57,82,23,38),
7095 (2,6,43,92,58,84,23,39),
7096 (2,6,44,94,59,86,23,39),
7097 (2,6,45,96,60,87,24,40),
7098 (2,6,46,98,62,89,24,40),
7099 (2,6,47,100,63,91,24,41),
7100 (2,6,48,101,64,93,24,41),
7101 (2,6,49,103,65,94,25,42),
7102 (2,6,50,105,66,96,25,42),
7103 (2,6,51,107,68,98,25,43),
7104 (2,6,52,109,69,100,25,43),
7105 (2,6,53,110,69,100,25,44),
7106 (2,6,54,111,70,101,26,45),
7107 (2,6,55,111,70,101,26,45),
7108 (2,6,56,114,72,104,26,46),
7109 (2,6,57,116,73,106,26,46),
7110 (2,6,58,118,74,108,27,47),
7111 (2,6,59,124,76,110,27,47),
7112 (2,6,60,126,77,112,27,48),
7113 (2,6,61,128,78,114,27,49),
7114 (2,6,62,131,80,116,27,49),
7115 (2,6,63,133,81,119,28,50),
7116 (2,6,64,136,83,121,28,50),
7117 (2,6,65,136,84,123,28,51),
7118 (2,6,66,142,86,126,28,52),
7119 (2,6,67,145,87,128,29,52),
7120 (2,6,68,147,89,130,29,53),
7121 (2,6,69,150,90,133,29,54),
7122 (2,6,70,157,92,135,29,54),
7123 (2,6,71,160,94,138,30,55),
7124 (2,6,72,163,95,140,30,56),
7125 (2,6,73,166,97,151,30,57),
7126 (2,6,74,169,99,154,30,57),
7127 (2,6,75,172,100,156,31,58),
7128 (2,6,76,175,102,160,31,59),
7129 (2,6,77,179,104,162,31,60),
7130 (2,6,78,182,105,165,31,60),
7131 (2,6,79,191,107,168,32,61),
7132 (2,6,80,194,109,171,32,62),
7133 (2,6,81,181,111,164,32,62),
7134 (2,6,82,181,113,166,33,62),
7135 (2,6,83,188,115,169,33,63),
7136 (2,6,84,188,117,172,33,64),
7137 (2,6,85,194,118,175,33,65),
7138 (2,7,1,24,17,23,18,25),
7139 (2,7,2,25,17,24,19,26),
7140 (2,7,3,26,18,25,20,27),
7141 (2,7,4,26,18,26,21,28),
7142 (2,7,5,27,19,27,22,29),
7143 (2,7,6,28,19,28,23,30),
7144 (2,7,7,29,20,29,24,31),
7145 (2,7,8,30,20,30,25,32),
7146 (2,7,9,31,21,31,26,33),
7147 (2,7,10,32,21,32,27,34),
7148 (2,7,11,33,22,33,28,36),
7149 (2,7,12,34,22,34,29,37),
7150 (2,7,13,34,23,35,30,38),
7151 (2,7,14,35,23,36,31,39),
7152 (2,7,15,36,24,37,32,40),
7153 (2,7,16,37,24,39,33,41),
7154 (2,7,17,38,25,40,34,43),
7155 (2,7,18,39,25,41,35,44),
7156 (2,7,19,40,26,42,36,45),
7157 (2,7,20,41,26,43,37,46),
7158 (2,7,21,42,27,44,38,47),
7159 (2,7,22,43,27,45,39,49),
7160 (2,7,23,44,28,47,40,50),
7161 (2,7,24,45,28,48,41,51),
7162 (2,7,25,47,29,49,43,52),
7163 (2,7,26,48,30,50,44,54),
7164 (2,7,27,49,30,52,45,55),
7165 (2,7,28,50,31,53,46,56),
7166 (2,7,29,51,31,54,47,58),
7167 (2,7,30,52,32,55,48,59),
7168 (2,7,31,53,33,57,50,60),
7169 (2,7,32,54,33,58,51,62),
7170 (2,7,33,55,34,59,52,63),
7171 (2,7,34,57,34,61,53,65),
7172 (2,7,35,58,35,62,55,66),
7173 (2,7,36,59,36,63,56,67),
7174 (2,7,37,60,36,65,57,69),
7175 (2,7,38,61,37,66,58,70),
7176 (2,7,39,62,38,67,60,72),
7177 (2,7,40,64,38,69,61,73),
7178 (2,7,41,65,39,70,62,75),
7179 (2,7,42,66,40,72,64,76),
7180 (2,7,43,67,40,73,65,78),
7181 (2,7,44,69,41,74,66,79),
7182 (2,7,45,70,42,76,68,81),
7183 (2,7,46,71,42,77,69,82),
7184 (2,7,47,72,43,79,70,84),
7185 (2,7,48,74,44,80,72,85),
7186 (2,7,49,75,45,82,73,87),
7187 (2,7,50,76,45,83,75,89),
7188 (2,7,51,78,46,85,76,90),
7189 (2,7,52,79,47,86,77,92),
7190 (2,7,53,80,47,88,79,93),
7191 (2,7,54,82,48,90,80,95),
7192 (2,7,55,83,49,91,82,97),
7193 (2,7,56,85,50,93,83,98),
7194 (2,7,57,86,50,94,85,100),
7195 (2,7,58,87,51,96,86,102),
7196 (2,7,59,89,52,97,88,103),
7197 (2,7,60,90,53,99,89,105),
7198 (2,7,61,92,54,101,91,107),
7199 (2,7,62,93,54,102,92,109),
7200 (2,7,63,95,55,104,94,110),
7201 (2,7,64,96,56,106,95,112),
7202 (2,7,65,97,57,107,97,114),
7203 (2,7,66,99,58,109,99,116),
7204 (2,7,67,100,58,111,100,118),
7205 (2,7,68,102,59,113,102,119),
7206 (2,7,69,103,60,114,103,121),
7207 (2,7,70,105,61,116,105,123),
7208 (2,7,71,106,62,118,117,125),
7209 (2,7,72,108,63,120,119,128),
7210 (2,7,73,110,64,122,122,130),
7211 (2,7,74,112,65,125,124,132),
7212 (2,7,75,114,66,127,126,134),
7213 (2,7,76,116,67,129,128,137),
7214 (2,7,77,117,68,131,128,139),
7215 (2,7,78,119,69,133,133,141),
7216 (2,7,79,121,70,136,135,144),
7217 (2,7,80,123,71,138,137,146),
7218 (2,7,81,125,72,139,133,148),
7219 (2,7,82,127,74,142,136,150),
7220 (2,7,83,130,75,144,136,153),
7221 (2,7,84,132,76,146,136,155),
7222 (2,7,85,134,77,149,142,158),
7223 (2,8,1,23,17,22,20,25),
7224 (2,8,81,39,41,61,191,179),
7225 (2,8,82,39,41,61,194,182),
7226 (2,8,83,39,42,62,197,186),
7227 (2,8,84,40,42,63,201,189),
7228 (2,8,85,40,43,64,204,192),
7229 (2,8,2,17,22,19,28,22),
7230 (2,8,3,17,22,20,30,24),
7231 (2,8,4,17,22,20,31,25),
7232 (2,8,5,17,23,20,32,26),
7233 (2,8,6,17,23,20,34,28),
7234 (2,8,7,18,23,21,35,29),
7235 (2,8,8,18,23,21,37,30),
7236 (2,8,9,18,23,21,38,32),
7237 (2,8,10,24,19,24,31,35),
7238 (2,8,11,24,19,24,32,36),
7239 (2,8,12,24,19,24,34,37),
7240 (2,8,13,24,19,25,35,38),
7241 (2,8,14,25,19,25,36,40),
7242 (2,8,15,25,20,25,38,41),
7243 (2,8,16,25,20,26,39,42),
7244 (2,8,17,25,20,26,40,44),
7245 (2,8,18,25,20,26,42,45),
7246 (2,8,19,25,20,27,43,46),
7247 (2,8,20,25,21,27,45,48),
7248 (2,8,21,26,21,27,46,49),
7249 (2,8,22,26,21,28,48,51),
7250 (2,8,23,26,21,28,49,52),
7251 (2,8,24,26,22,29,51,54),
7252 (2,8,25,26,22,29,52,55),
7253 (2,8,26,26,22,29,54,57),
7254 (2,8,27,26,22,30,56,58),
7255 (2,8,28,27,22,30,57,60),
7256 (2,8,29,27,23,31,59,61),
7257 (2,8,30,27,23,31,61,63),
7258 (2,8,31,27,23,31,62,65),
7259 (2,8,32,27,23,32,64,66),
7260 (2,8,33,27,24,32,66,68),
7261 (2,8,34,28,24,33,67,70),
7262 (2,8,35,28,24,33,69,71),
7263 (2,8,36,28,25,34,71,73),
7264 (2,8,37,28,25,34,73,75),
7265 (2,8,38,28,25,34,75,77),
7266 (2,8,39,29,25,35,77,78),
7267 (2,8,40,29,26,35,78,80),
7268 (2,8,41,29,26,36,80,82),
7269 (2,8,42,29,26,36,82,84),
7270 (2,8,43,29,26,37,84,86),
7271 (2,8,44,29,27,37,86,88),
7272 (2,8,45,30,27,38,88,90),
7273 (2,8,46,30,27,38,90,92),
7274 (2,8,47,30,28,39,92,94),
7275 (2,8,48,30,28,39,95,96),
7276 (2,8,49,31,28,40,97,98),
7277 (2,8,50,31,29,40,104,100),
7278 (2,8,51,31,29,41,106,102),
7279 (2,8,52,31,29,41,108,104),
7280 (2,8,53,31,30,42,110,106),
7281 (2,8,54,32,30,43,113,108),
7282 (2,8,55,32,30,43,115,111),
7283 (2,8,56,32,31,44,117,113),
7284 (2,8,57,32,31,44,120,115),
7285 (2,8,58,33,31,45,123,117),
7286 (2,8,59,33,32,45,126,120),
7287 (2,8,60,33,32,46,128,122),
7288 (2,8,61,33,32,47,130,124),
7289 (2,8,62,33,33,47,133,127),
7290 (2,8,63,34,33,48,136,129),
7291 (2,8,64,34,33,48,138,132),
7292 (2,8,65,34,34,49,141,134),
7293 (2,8,66,35,34,50,144,137),
7294 (2,8,67,35,35,50,147,139),
7295 (2,8,68,35,35,51,150,142),
7296 (2,8,69,35,35,52,153,145),
7297 (2,8,70,36,36,52,155,147),
7298 (2,8,71,36,36,53,158,150),
7299 (2,8,72,36,37,54,161,153),
7300 (2,8,73,36,37,55,165,156),
7301 (2,8,74,37,38,55,168,158),
7302 (2,8,75,37,38,56,171,161),
7303 (2,8,76,37,38,57,174,164),
7304 (2,8,77,38,39,58,177,167),
7305 (2,8,78,38,39,58,180,170),
7306 (2,8,79,38,40,59,183,173),
7307 (2,8,80,39,40,60,187,176),
7308 (2,9,1,23,17,23,19,25),
7309 (2,9,2,23,17,24,20,26),
7310 (2,9,3,24,18,24,21,27),
7311 (2,9,4,24,18,25,23,28),
7312 (2,9,5,24,18,25,24,30),
7313 (2,9,6,24,19,26,25,31),
7314 (2,9,7,25,19,26,26,32),
7315 (2,9,8,25,20,27,27,33),
7316 (2,9,9,25,20,27,29,34),
7317 (2,9,10,26,20,28,30,36),
7318 (2,9,11,26,21,29,31,37),
7319 (2,9,12,26,21,29,33,38),
7320 (2,9,13,27,22,30,34,39),
7321 (2,9,14,27,22,31,35,41),
7322 (2,9,15,27,23,31,37,42),
7323 (2,9,16,28,23,32,38,43),
7324 (2,9,17,28,23,32,39,45),
7325 (2,9,18,28,24,33,41,46),
7326 (2,9,19,29,24,34,42,47),
7327 (2,9,20,29,25,34,43,49),
7328 (2,9,21,29,25,35,45,50),
7329 (2,9,22,30,26,36,46,51),
7330 (2,9,23,30,26,37,48,53),
7331 (2,9,24,30,27,37,49,54),
7332 (2,9,25,31,27,38,51,56),
7333 (2,9,26,31,28,39,52,57),
7334 (2,9,27,32,28,39,54,59),
7335 (2,9,28,32,29,40,55,60),
7336 (2,9,29,32,29,41,57,62),
7337 (2,9,30,33,30,42,58,63),
7338 (2,9,31,33,30,42,60,65),
7339 (2,9,32,34,31,43,61,66),
7340 (2,9,33,34,31,44,63,68),
7341 (2,9,34,35,32,45,64,69),
7342 (2,9,35,35,32,45,66,71),
7343 (2,9,36,36,33,46,68,72),
7344 (2,9,37,36,34,47,69,74),
7345 (2,9,38,36,34,48,71,76),
7346 (2,9,39,37,35,49,72,77),
7347 (2,9,40,37,35,50,74,79),
7348 (2,9,41,38,36,50,76,80),
7349 (2,9,42,38,36,51,77,82),
7350 (2,9,43,39,37,52,79,84),
7351 (2,9,44,39,38,53,81,85),
7352 (2,9,45,40,38,54,83,87),
7353 (2,9,46,40,39,55,84,89),
7354 (2,9,47,41,39,56,86,91),
7355 (2,9,48,41,40,56,88,92),
7356 (2,9,49,42,41,57,90,94),
7357 (2,9,50,42,41,58,91,96),
7358 (2,9,51,43,42,59,93,98),
7359 (2,9,52,43,43,60,95,99),
7360 (2,9,53,44,43,61,97,101),
7361 (2,9,54,45,44,62,99,103),
7362 (2,9,55,45,45,63,101,105),
7363 (2,9,56,46,45,64,102,107),
7364 (2,9,57,46,46,65,104,109),
7365 (2,9,58,47,47,66,106,110),
7366 (2,9,59,47,47,67,108,112),
7367 (2,9,60,48,48,68,110,114),
7368 (2,9,61,48,49,69,112,116),
7369 (2,9,62,49,49,70,114,118),
7370 (2,9,63,50,50,71,116,120),
7371 (2,9,64,50,51,72,118,122),
7372 (2,9,65,51,51,73,120,124),
7373 (2,9,66,52,52,74,122,126),
7374 (2,9,67,52,53,75,124,128),
7375 (2,9,68,53,54,76,126,130),
7376 (2,9,69,53,54,77,128,132),
7377 (2,9,70,54,55,78,130,134),
7378 (2,9,71,55,56,88,134,145),
7379 (2,9,72,56,56,89,135,147),
7380 (2,9,73,57,57,90,137,150),
7381 (2,9,74,57,58,91,142,153),
7382 (2,9,75,58,59,93,142,155),
7383 (2,9,76,59,60,94,145,158),
7384 (2,9,77,60,61,95,148,161),
7385 (2,9,78,60,62,97,150,164),
7386 (2,9,79,61,63,98,153,167),
7387 (2,9,80,62,64,99,156,169),
7388 (2,9,81,63,65,92,166,171),
7389 (2,9,82,63,65,93,169,174),
7390 (2,9,83,64,66,95,172,177),
7391 (2,9,84,65,67,96,175,180),
7392 (2,9,85,66,68,97,178,183),
7393 (2,11,81,94,80,100,143,163),
7394 (2,11,82,95,82,102,145,166),
7395 (2,11,83,97,83,103,148,169),
7396 (2,11,84,98,84,105,157,172),
7397 (2,11,85,99,86,107,157,175),
7398 (2,11,10,29,21,26,27,33),
7399 (2,11,11,29,22,27,28,35),
7400 (2,11,12,30,22,28,29,36),
7401 (2,11,13,30,23,28,30,37),
7402 (2,11,14,31,23,29,31,38),
7403 (2,11,15,32,24,30,33,39),
7404 (2,11,16,32,24,30,34,40),
7405 (2,11,17,33,25,31,35,42),
7406 (2,11,18,33,26,32,36,43),
7407 (2,11,19,34,26,32,37,44),
7408 (2,11,20,35,27,33,38,45),
7409 (2,11,21,35,27,34,39,47),
7410 (2,11,22,36,28,35,40,48),
7411 (2,11,23,37,29,35,41,49),
7412 (2,11,24,37,29,36,43,51),
7413 (2,11,25,38,30,37,44,52),
7414 (2,11,26,39,30,38,45,53),
7415 (2,11,27,39,31,38,46,55),
7416 (2,11,28,40,32,39,47,56),
7417 (2,11,29,41,32,40,49,58),
7418 (2,11,30,41,33,41,50,59),
7419 (2,11,31,42,34,42,51,60),
7420 (2,11,32,43,34,43,53,62),
7421 (2,11,33,44,35,43,54,63),
7422 (2,11,34,44,36,44,55,65),
7423 (2,11,35,45,36,45,57,66),
7424 (2,11,36,46,37,46,58,68),
7425 (2,11,37,47,38,47,59,70),
7426 (2,11,38,48,38,48,61,71),
7427 (2,11,39,48,39,49,62,73),
7428 (2,11,40,49,40,50,64,74),
7429 (2,11,41,50,41,51,65,76),
7430 (2,11,42,51,41,52,67,78),
7431 (2,11,43,52,42,53,68,79),
7432 (2,11,44,53,43,53,70,81),
7433 (2,11,45,53,44,54,71,83),
7434 (2,11,46,54,45,55,73,85),
7435 (2,11,47,55,45,57,74,86),
7436 (2,11,48,56,46,58,76,88),
7437 (2,11,49,57,47,59,78,90),
7438 (2,11,50,58,48,60,79,92),
7439 (2,11,51,59,49,61,81,94),
7440 (2,11,52,60,50,62,83,96),
7441 (2,11,53,61,51,63,84,98),
7442 (2,11,54,62,51,64,86,100),
7443 (2,11,55,63,52,65,88,102),
7444 (2,11,56,64,53,66,90,104),
7445 (2,11,57,65,54,67,91,106),
7446 (2,11,58,66,55,69,93,108),
7447 (2,11,59,67,56,70,95,110),
7448 (2,11,60,68,57,71,97,112),
7449 (2,11,61,69,58,72,99,114),
7450 (2,11,62,70,59,73,101,116),
7451 (2,11,63,71,60,75,103,119),
7452 (2,11,64,72,61,76,105,121),
7453 (2,11,65,74,62,77,107,123),
7454 (2,11,66,75,63,79,109,125),
7455 (2,11,67,76,64,80,111,128),
7456 (2,11,68,77,65,81,113,130),
7457 (2,11,69,78,66,83,115,132),
7458 (2,11,70,79,67,84,117,135),
7459 (2,11,71,81,68,85,119,137),
7460 (2,11,72,82,70,87,122,140),
7461 (2,11,73,83,71,88,124,142),
7462 (2,11,74,84,72,90,126,145),
7463 (2,11,75,86,73,91,128,147),
7464 (2,11,76,87,74,93,131,150),
7465 (2,11,77,88,75,94,133,153),
7466 (2,11,78,90,77,96,135,155),
7467 (2,11,79,91,78,97,138,158),
7468 (2,11,80,92,79,99,140,161),
7469 (3,1,1,25,16,25,19,19),
7470 (3,1,2,26,17,26,19,19),
7471 (3,1,3,28,18,27,19,20),
7472 (3,1,4,29,18,28,19,20),
7473 (3,1,5,30,19,30,19,20),
7474 (3,1,6,31,20,31,19,20),
7475 (3,1,7,33,21,32,20,21),
7476 (3,1,8,34,22,33,20,21),
7477 (3,1,9,36,23,35,20,21),
7478 (3,1,10,37,23,36,20,22),
7479 (3,1,11,38,24,37,20,22),
7480 (3,1,12,40,25,38,20,22),
7481 (3,1,13,41,26,40,20,23),
7482 (3,1,14,43,27,41,20,23),
7483 (3,1,15,44,28,42,20,23),
7484 (3,1,16,46,29,44,21,24),
7485 (3,1,17,47,30,45,21,24),
7486 (3,1,18,49,31,46,21,24),
7487 (3,1,19,50,32,48,21,25),
7488 (3,1,20,52,33,49,21,25),
7489 (3,1,21,53,34,51,21,26),
7490 (3,1,22,55,34,52,21,26),
7491 (3,1,23,56,35,53,21,26),
7492 (3,1,24,58,36,55,22,27),
7493 (3,1,25,59,37,56,22,27),
7494 (3,1,26,61,38,58,22,27),
7495 (3,1,27,63,39,59,22,28),
7496 (3,1,28,64,41,61,22,28),
7497 (3,1,29,66,42,62,22,29),
7498 (3,1,30,68,43,64,23,29),
7499 (3,1,31,69,44,65,23,30),
7500 (3,1,32,71,45,67,23,30),
7501 (3,1,33,73,46,68,23,30),
7502 (3,1,34,75,47,70,23,31),
7503 (3,1,35,76,48,72,24,31),
7504 (3,1,36,78,49,73,24,32),
7505 (3,1,37,80,50,75,24,32),
7506 (3,1,38,82,51,76,24,33),
7507 (3,1,39,84,52,78,24,33),
7508 (3,1,40,85,54,80,24,34),
7509 (3,1,41,87,55,81,25,34),
7510 (3,1,42,89,56,83,25,35),
7511 (3,1,43,91,57,85,25,35),
7512 (3,1,44,93,58,87,25,36),
7513 (3,1,45,95,59,88,26,36),
7514 (3,1,46,97,61,90,26,37),
7515 (3,1,47,99,62,92,26,37),
7516 (3,1,48,101,63,94,26,38),
7517 (3,1,49,102,64,95,26,38),
7518 (3,1,50,104,65,97,27,39),
7519 (3,1,51,106,67,99,27,39),
7520 (3,1,52,108,68,101,27,40),
7521 (3,1,53,110,69,103,27,40),
7522 (3,1,54,112,70,104,28,41),
7523 (3,1,55,115,72,106,28,41),
7524 (3,1,56,117,73,108,28,42),
7525 (3,1,57,119,74,110,28,42),
7526 (3,1,58,121,76,112,29,43),
7527 (3,1,59,123,77,114,29,43),
7528 (3,1,60,125,78,116,29,44),
7529 (3,1,61,127,80,118,29,45),
7530 (3,1,62,129,81,120,30,45),
7531 (3,1,63,131,82,122,30,46),
7532 (3,1,64,134,84,124,30,46),
7533 (3,1,65,136,85,126,31,47),
7534 (3,1,66,138,86,128,31,48),
7535 (3,1,67,140,88,130,31,48),
7536 (3,1,68,142,89,132,31,49),
7537 (3,1,69,145,91,134,32,49),
7538 (3,1,70,147,92,136,32,50),
7539 (3,1,71,150,93,138,32,51),
7540 (3,1,72,152,95,141,32,52),
7541 (3,1,73,164,97,151,32,53),
7542 (3,1,74,164,98,151,33,53),
7543 (3,1,75,170,100,156,33,54),
7544 (3,1,76,173,102,160,33,55),
7545 (3,1,77,173,104,160,34,56),
7546 (3,1,78,176,105,162,34,56),
7547 (3,1,79,183,107,168,34,57),
7548 (3,1,80,186,109,171,35,58),
7549 (3,1,81,182,111,162,35,59),
7550 (3,1,82,194,113,165,35,59),
7551 (3,1,83,197,115,168,35,60),
7552 (3,1,84,200,117,171,36,61),
7553 (3,1,85,203,119,174,36,62),
7554 (3,2,1,24,16,25,19,20),
7555 (3,2,2,25,17,26,20,21),
7556 (3,2,3,26,17,27,20,21),
7557 (3,2,4,27,18,28,21,22),
7558 (3,2,5,28,18,29,22,23),
7559 (3,2,6,29,19,30,22,24),
7560 (3,2,7,31,20,31,23,24),
7561 (3,2,8,32,20,32,24,25),
7562 (3,2,9,33,21,33,24,26),
7563 (3,2,10,34,21,34,25,26),
7564 (3,2,11,35,22,36,26,27),
7565 (3,2,12,36,23,37,26,28),
7566 (3,2,13,38,23,38,27,29),
7567 (3,2,14,39,24,39,28,30),
7568 (3,2,15,40,25,40,29,30),
7569 (3,2,16,41,25,41,29,31),
7570 (3,2,17,43,26,43,30,32),
7571 (3,2,18,44,27,44,31,33),
7572 (3,2,19,45,28,45,32,34),
7573 (3,2,20,47,28,46,32,35),
7574 (3,2,21,48,29,47,33,35),
7575 (3,2,22,49,30,49,34,36),
7576 (3,2,23,51,30,50,35,37),
7577 (3,2,24,52,31,51,36,38),
7578 (3,2,25,53,32,52,36,39),
7579 (3,2,26,55,33,54,37,40),
7580 (3,2,27,56,33,55,38,41),
7581 (3,2,28,57,34,56,39,42),
7582 (3,2,29,59,35,58,40,43),
7583 (3,2,30,60,36,59,41,43),
7584 (3,2,31,62,37,60,42,44),
7585 (3,2,32,63,37,62,42,45),
7586 (3,2,33,65,38,63,43,46),
7587 (3,2,34,66,39,65,44,47),
7588 (3,2,35,68,40,66,45,48),
7589 (3,2,36,69,41,67,46,49),
7590 (3,2,37,71,41,69,47,50),
7591 (3,2,38,72,42,70,48,51),
7592 (3,2,39,74,43,72,49,52),
7593 (3,2,40,75,44,73,50,53),
7594 (3,2,41,77,45,75,51,54),
7595 (3,2,42,78,46,76,52,55),
7596 (3,2,43,80,47,78,53,56),
7597 (3,2,44,82,47,79,54,57),
7598 (3,2,45,83,48,81,55,59),
7599 (3,2,46,85,49,82,56,60),
7600 (3,2,47,87,50,84,57,61),
7601 (3,2,48,88,51,85,58,62),
7602 (3,2,49,90,52,87,59,63),
7603 (3,2,50,92,53,89,60,64),
7604 (3,2,51,93,54,90,61,65),
7605 (3,2,52,95,55,92,62,66),
7606 (3,2,53,97,56,93,63,67),
7607 (3,2,54,98,57,95,64,69),
7608 (3,2,55,100,58,97,65,70),
7609 (3,2,56,102,59,98,66,71),
7610 (3,2,57,104,60,100,67,72),
7611 (3,2,58,106,61,102,68,73),
7612 (3,2,59,107,62,103,69,74),
7613 (3,2,60,109,63,105,70,76),
7614 (3,2,61,111,64,107,72,77),
7615 (3,2,62,113,65,109,73,78),
7616 (3,2,63,115,66,110,74,79),
7617 (3,2,64,117,67,112,75,80),
7618 (3,2,65,118,68,114,76,82),
7619 (3,2,66,120,69,116,77,83),
7620 (3,2,67,122,70,118,78,84),
7621 (3,2,68,124,71,119,80,85),
7622 (3,2,69,126,72,121,81,87),
7623 (3,2,70,128,73,123,82,88),
7624 (3,2,71,150,74,125,83,89),
7625 (3,2,72,152,75,128,85,91),
7626 (3,2,73,156,76,130,86,93),
7627 (3,2,74,158,78,132,88,94),
7628 (3,2,75,161,79,134,89,96),
7629 (3,2,76,164,80,137,91,97),
7630 (3,2,77,166,82,139,92,99),
7631 (3,2,78,170,83,141,94,101),
7632 (3,2,79,172,84,144,95,102),
7633 (3,2,80,175,86,146,97,104),
7634 (3,2,81,165,87,147,98,106),
7635 (3,2,82,168,89,149,100,107),
7636 (3,2,83,171,90,152,101,109),
7637 (3,2,84,175,92,154,103,111),
7638 (3,2,85,177,93,157,105,113),
7639 (3,3,1,22,19,24,19,20),
7640 (3,3,2,22,20,25,20,21),
7641 (3,3,3,23,22,26,20,21),
7642 (3,3,4,23,23,27,21,22),
7643 (3,3,5,24,25,28,21,23),
7644 (3,3,6,24,26,29,22,23),
7645 (3,3,7,25,27,29,23,24),
7646 (3,3,8,25,29,30,23,25),
7647 (3,3,9,25,30,31,24,25),
7648 (3,3,10,26,32,32,24,26),
7649 (3,3,11,26,33,33,25,27),
7650 (3,3,12,27,35,34,26,27),
7651 (3,3,13,27,36,35,26,28),
7652 (3,3,14,28,38,36,27,29),
7653 (3,3,15,28,39,37,28,29),
7654 (3,3,16,29,41,38,28,30),
7655 (3,3,17,29,42,39,29,31),
7656 (3,3,18,30,44,41,30,32),
7657 (3,3,19,30,46,42,30,32),
7658 (3,3,20,31,47,43,31,33),
7659 (3,3,21,32,49,44,32,34),
7660 (3,3,22,32,51,45,33,35),
7661 (3,3,23,33,52,46,33,36),
7662 (3,3,24,33,54,47,34,36),
7663 (3,3,25,34,56,48,35,37),
7664 (3,3,26,34,57,49,35,38),
7665 (3,3,27,35,59,51,36,39),
7666 (3,3,28,35,61,52,37,40),
7667 (3,3,29,36,63,53,38,40),
7668 (3,3,30,37,64,54,39,41),
7669 (3,3,31,37,66,55,39,42),
7670 (3,3,32,38,68,57,40,43),
7671 (3,3,33,38,70,58,41,44),
7672 (3,3,34,39,71,59,42,45),
7673 (3,3,35,40,73,60,43,46),
7674 (3,3,36,40,75,62,43,47),
7675 (3,3,37,41,77,63,44,47),
7676 (3,3,38,42,79,64,45,48),
7677 (3,3,39,42,81,65,46,49),
7678 (3,3,40,43,83,67,47,50),
7679 (3,3,41,44,85,68,48,51),
7680 (3,3,42,44,87,69,49,52),
7681 (3,3,43,45,89,71,49,53),
7682 (3,3,44,46,91,72,50,54),
7683 (3,3,45,46,93,73,51,55),
7684 (3,3,46,47,95,75,52,56),
7685 (3,3,47,48,97,76,53,57),
7686 (3,3,48,49,99,78,54,58),
7687 (3,3,49,49,101,79,55,59),
7688 (3,3,50,50,103,80,56,60),
7689 (3,3,51,51,105,82,57,61),
7690 (3,3,52,51,107,83,58,62),
7691 (3,3,53,52,109,85,59,63),
7692 (3,3,54,53,111,86,60,64),
7693 (3,3,55,54,113,88,61,65),
7694 (3,3,56,55,115,89,62,66),
7695 (3,3,57,55,118,91,62,67),
7696 (3,3,58,56,120,92,63,68),
7697 (3,3,59,57,122,94,64,70),
7698 (3,3,60,58,124,95,65,71),
7699 (3,3,61,58,126,97,67,72),
7700 (3,3,62,59,129,98,68,73),
7701 (3,3,63,60,131,100,69,74),
7702 (3,3,64,61,133,101,70,75),
7703 (3,3,65,62,135,103,71,76),
7704 (3,3,66,63,138,105,72,77),
7705 (3,3,67,63,140,106,73,78),
7706 (3,3,68,64,142,108,74,80),
7707 (3,3,69,65,145,109,75,81),
7708 (3,3,70,66,147,111,76,82),
7709 (3,3,71,67,150,113,77,83),
7710 (3,3,72,68,153,115,78,84),
7711 (3,3,73,69,156,117,79,86),
7712 (3,3,74,70,159,119,81,87),
7713 (3,3,75,71,162,121,82,89),
7714 (3,3,76,72,165,123,83,90),
7715 (3,3,77,73,168,125,85,92),
7716 (3,3,78,74,171,127,86,93),
7717 (3,3,79,75,174,129,87,95),
7718 (3,3,80,76,177,131,89,96),
7719 (3,3,81,80,190,131,90,98),
7720 (3,3,82,82,193,134,92,99),
7721 (3,3,83,83,196,136,93,101),
7722 (3,3,84,84,200,138,95,102),
7723 (3,3,85,85,204,140,96,104),
7724 (3,4,1,23,19,24,19,19),
7725 (3,4,2,24,20,25,19,19),
7726 (3,4,3,24,22,25,19,20),
7727 (3,4,4,25,23,26,19,20),
7728 (3,4,5,26,25,27,20,20),
7729 (3,4,6,27,26,27,20,21),
7730 (3,4,7,28,28,28,20,21),
7731 (3,4,8,28,29,29,20,22),
7732 (3,4,9,29,31,30,20,22),
7733 (3,4,10,30,32,30,20,22),
7734 (3,4,11,31,34,31,21,23),
7735 (3,4,12,32,36,32,21,23),
7736 (3,4,13,33,37,33,21,24),
7737 (3,4,14,33,39,33,21,24),
7738 (3,4,15,34,40,34,21,25),
7739 (3,4,16,35,42,35,22,25),
7740 (3,4,17,36,44,36,22,25),
7741 (3,4,18,37,45,37,22,26),
7742 (3,4,19,38,47,38,22,26),
7743 (3,4,20,39,49,38,22,27),
7744 (3,4,21,40,51,39,23,27),
7745 (3,4,22,41,52,40,23,28),
7746 (3,4,23,42,54,41,23,28),
7747 (3,4,24,43,56,42,23,29),
7748 (3,4,25,44,58,43,24,29),
7749 (3,4,26,44,59,44,24,30),
7750 (3,4,27,45,61,44,24,30),
7751 (3,4,28,46,63,45,24,31),
7752 (3,4,29,47,65,46,25,31),
7753 (3,4,30,48,67,47,25,32),
7754 (3,4,31,49,69,48,25,32),
7755 (3,4,32,51,71,49,25,33),
7756 (3,4,33,52,72,50,26,33),
7757 (3,4,34,53,74,51,26,34),
7758 (3,4,35,54,76,52,26,34),
7759 (3,4,36,55,78,53,26,35),
7760 (3,4,37,56,80,54,27,35),
7761 (3,4,38,57,82,55,27,36),
7762 (3,4,39,58,84,56,27,37),
7763 (3,4,40,59,86,57,28,37),
7764 (3,4,41,60,88,58,28,38),
7765 (3,4,42,61,90,59,28,38),
7766 (3,4,43,63,92,60,28,39),
7767 (3,4,44,64,95,61,29,39),
7768 (3,4,45,65,97,62,29,40),
7769 (3,4,46,66,99,63,29,41),
7770 (3,4,47,67,101,64,30,41),
7771 (3,4,48,68,103,66,30,42),
7772 (3,4,49,70,105,67,30,43),
7773 (3,4,50,71,107,68,31,43),
7774 (3,4,51,72,110,69,31,44),
7775 (3,4,52,73,112,70,31,44),
7776 (3,4,53,74,114,71,32,45),
7777 (3,4,54,76,116,72,32,46),
7778 (3,4,55,77,118,73,32,46),
7779 (3,4,56,78,121,75,33,47),
7780 (3,4,57,80,123,76,33,48),
7781 (3,4,58,81,125,77,33,48),
7782 (3,4,59,82,128,78,34,49),
7783 (3,4,60,83,130,79,34,50),
7784 (3,4,61,85,132,81,34,51),
7785 (3,4,62,86,135,82,35,51),
7786 (3,4,63,87,137,83,35,52),
7787 (3,4,64,89,139,84,36,53),
7788 (3,4,65,90,142,86,36,53),
7789 (3,4,66,91,144,87,36,54),
7790 (3,4,67,93,147,88,37,55),
7791 (3,4,68,94,149,89,37,56),
7792 (3,4,69,96,152,91,38,56),
7793 (3,4,70,97,154,92,38,57),
7794 (3,4,71,99,157,93,38,58),
7795 (3,4,72,101,160,96,39,58),
7796 (3,4,73,102,163,97,39,59),
7797 (3,4,74,104,166,98,40,60),
7798 (3,4,75,106,169,100,40,61),
7799 (3,4,76,107,172,101,40,62),
7800 (3,4,77,109,175,103,41,63),
7801 (3,4,78,111,179,105,41,64),
7802 (3,4,79,113,182,106,42,65),
7803 (3,4,80,115,185,108,42,66),
7804 (3,4,81,119,198,108,43,67),
7805 (3,4,82,121,201,109,43,67),
7806 (3,4,83,123,205,111,44,68),
7807 (3,4,84,125,209,113,44,69),
7808 (3,4,85,127,212,115,45,70),
7809 (3,5,1,22,16,23,21,22),
7810 (3,5,2,22,16,23,22,23),
7811 (3,5,3,22,16,24,24,25),
7812 (3,5,4,22,17,24,25,26),
7813 (3,5,5,23,17,24,26,27),
7814 (3,5,6,23,17,25,28,29),
7815 (3,5,7,23,17,25,29,30),
7816 (3,5,8,23,18,26,30,32),
7817 (3,5,9,23,18,26,32,33),
7818 (3,5,10,23,18,26,33,35),
7819 (3,5,11,24,18,27,35,36),
7820 (3,5,12,24,19,27,36,38),
7821 (3,5,13,24,19,28,37,39),
7822 (3,5,14,24,19,28,39,41),
7823 (3,5,15,24,19,28,40,42),
7824 (3,5,16,24,20,29,42,44),
7825 (3,5,17,25,20,29,43,45),
7826 (3,5,18,25,20,30,45,47),
7827 (3,5,19,25,21,30,46,49),
7828 (3,5,20,25,21,31,48,50),
7829 (3,5,21,25,21,31,50,52),
7830 (3,5,22,26,22,31,51,53),
7831 (3,5,23,26,22,32,53,55),
7832 (3,5,24,26,22,32,54,57),
7833 (3,5,25,26,22,33,56,58),
7834 (3,5,26,27,23,33,58,60),
7835 (3,5,27,27,23,34,59,62),
7836 (3,5,28,27,23,34,61,64),
7837 (3,5,29,27,24,35,63,65),
7838 (3,5,30,28,24,35,64,67),
7839 (3,5,31,28,24,36,66,69),
7840 (3,5,32,28,25,36,68,71),
7841 (3,5,33,28,25,37,70,72),
7842 (3,5,34,29,26,38,71,74),
7843 (3,5,35,29,26,38,73,76),
7844 (3,5,36,29,26,39,75,78),
7845 (3,5,37,29,27,39,77,80),
7846 (3,5,38,30,27,40,78,82),
7847 (3,5,39,30,27,40,80,84),
7848 (3,5,40,30,28,41,82,86),
7849 (3,5,41,31,28,41,84,88),
7850 (3,5,42,31,29,42,86,89),
7851 (3,5,43,31,29,43,88,91),
7852 (3,5,44,32,29,43,90,93),
7853 (3,5,45,32,30,44,92,95),
7854 (3,5,46,32,30,44,93,97),
7855 (3,5,47,32,30,45,95,99),
7856 (3,5,48,33,31,46,97,101),
7857 (3,5,49,33,31,46,99,103),
7858 (3,5,50,33,32,47,101,106),
7859 (3,5,51,34,32,48,103,108),
7860 (3,5,52,34,33,48,105,110),
7861 (3,5,53,35,33,49,107,112),
7862 (3,5,54,35,33,50,109,114),
7863 (3,5,55,35,34,50,111,116),
7864 (3,5,56,36,34,51,113,118),
7865 (3,5,57,36,35,52,116,120),
7866 (3,5,58,36,35,52,118,123),
7867 (3,5,59,37,36,53,120,125),
7868 (3,5,60,37,36,54,122,127),
7869 (3,5,61,37,37,54,124,129),
7870 (3,5,62,38,37,55,126,131),
7871 (3,5,63,38,38,56,128,134),
7872 (3,5,64,39,38,57,131,136),
7873 (3,5,65,39,39,57,133,138),
7874 (3,5,66,39,39,58,135,141),
7875 (3,5,67,40,40,59,137,143),
7876 (3,5,68,40,40,59,139,145),
7877 (3,5,69,41,40,60,142,148),
7878 (3,5,70,41,41,61,144,150),
7879 (3,5,71,41,42,62,147,153),
7880 (3,5,72,42,42,62,150,163),
7881 (3,5,73,42,43,63,153,166),
7882 (3,5,74,43,43,64,155,170),
7883 (3,5,75,43,44,65,158,173),
7884 (3,5,76,43,45,66,161,176),
7885 (3,5,77,44,45,67,164,179),
7886 (3,5,78,44,46,68,167,182),
7887 (3,5,79,45,46,69,170,184),
7888 (3,5,80,45,47,70,173,189),
7889 (3,5,81,49,48,69,184,184),
7890 (3,5,82,49,48,69,188,187),
7891 (3,5,83,50,49,70,192,190),
7892 (3,5,84,50,50,71,195,194),
7893 (3,5,85,51,50,72,198,197),
7894 (3,6,1,25,16,25,19,19),
7895 (3,6,2,26,17,26,19,19),
7896 (3,6,3,28,18,27,19,20),
7897 (3,6,4,29,18,28,19,20),
7898 (3,6,5,30,19,30,19,20),
7899 (3,6,6,31,20,31,19,20),
7900 (3,6,7,33,21,32,20,21),
7901 (3,6,8,34,22,33,20,21),
7902 (3,6,9,36,23,35,20,21),
7903 (3,6,10,37,23,36,20,22),
7904 (3,6,11,38,24,37,20,22),
7905 (3,6,12,40,25,38,20,22),
7906 (3,6,13,41,26,40,20,23),
7907 (3,6,14,43,27,41,20,23),
7908 (3,6,15,44,28,42,20,23),
7909 (3,6,16,46,29,44,21,24),
7910 (3,6,17,47,30,45,21,24),
7911 (3,6,18,49,31,46,21,24),
7912 (3,6,19,50,32,48,21,25),
7913 (3,6,20,52,33,49,21,25),
7914 (3,6,21,53,34,51,21,26),
7915 (3,6,22,55,34,52,21,26),
7916 (3,6,23,56,35,53,21,26),
7917 (3,6,24,58,36,55,22,27),
7918 (3,6,25,59,37,56,22,27),
7919 (3,6,26,61,38,58,22,27),
7920 (3,6,27,63,39,59,22,28),
7921 (3,6,28,64,41,61,22,28),
7922 (3,6,29,66,42,62,22,29),
7923 (3,6,30,68,43,64,23,29),
7924 (3,6,31,69,44,65,23,30),
7925 (3,6,32,71,45,67,23,30),
7926 (3,6,33,73,46,68,23,30),
7927 (3,6,34,75,47,70,23,31),
7928 (3,6,35,76,48,72,24,31),
7929 (3,6,36,78,49,73,24,32),
7930 (3,6,37,80,50,75,24,32),
7931 (3,6,38,82,51,76,24,33),
7932 (3,6,39,84,52,78,24,33),
7933 (3,6,40,85,54,80,24,34),
7934 (3,6,41,87,55,81,25,34),
7935 (3,6,42,89,56,83,25,35),
7936 (3,6,43,91,57,85,25,35),
7937 (3,6,44,93,58,87,25,36),
7938 (3,6,45,95,59,88,26,36),
7939 (3,6,46,97,61,90,26,37),
7940 (3,6,47,99,62,92,26,37),
7941 (3,6,48,101,63,94,26,38),
7942 (3,6,49,102,64,95,26,38),
7943 (3,6,50,104,65,97,27,39),
7944 (3,6,51,106,67,99,27,39),
7945 (3,6,52,108,68,99,27,40),
7946 (3,6,53,109,68,101,27,40),
7947 (3,6,54,110,69,101,28,41),
7948 (3,6,55,110,69,102,28,41),
7949 (3,6,56,113,71,105,28,42),
7950 (3,6,57,118,72,107,28,42),
7951 (3,6,58,120,73,109,29,43),
7952 (3,6,59,123,75,111,29,43),
7953 (3,6,60,125,76,113,29,44),
7954 (3,6,61,126,77,115,29,45),
7955 (3,6,62,127,79,117,29,45),
7956 (3,6,63,129,80,120,30,46),
7957 (3,6,64,132,82,122,30,46),
7958 (3,6,65,135,83,124,30,47),
7959 (3,6,66,137,85,127,30,48),
7960 (3,6,67,144,86,129,31,48),
7961 (3,6,68,146,88,131,31,49),
7962 (3,6,69,149,89,133,31,50),
7963 (3,6,70,152,91,136,31,50),
7964 (3,6,71,154,93,139,32,51),
7965 (3,6,72,157,94,141,32,52),
7966 (3,6,73,160,96,144,32,53),
7967 (3,6,74,163,98,146,32,53),
7968 (3,6,75,166,99,150,33,54),
7969 (3,6,76,169,101,152,33,55),
7970 (3,6,77,172,103,155,33,56),
7971 (3,6,78,176,104,157,33,56),
7972 (3,6,79,179,106,160,34,57),
7973 (3,6,80,182,108,163,34,58),
7974 (3,6,81,183,110,164,34,59),
7975 (3,6,82,183,112,166,35,59),
7976 (3,6,83,190,114,169,35,60),
7977 (3,6,84,190,116,172,35,61),
7978 (3,6,85,196,117,175,35,62),
7979 (3,7,1,22,16,23,22,21),
7980 (3,7,81,127,71,139,135,145),
7981 (3,7,82,129,73,142,138,147),
7982 (3,7,83,132,74,144,138,150),
7983 (3,7,84,134,75,146,138,152),
7984 (3,7,85,136,76,149,144,155),
7985 (3,7,2,20,20,20,23,24),
7986 (3,7,3,20,20,21,25,26),
7987 (3,7,4,20,21,21,26,27),
7988 (3,7,5,21,21,21,27,28),
7989 (3,7,6,21,21,22,29,30),
7990 (3,7,7,21,21,22,30,31),
7991 (3,7,8,21,22,23,31,33),
7992 (3,7,9,21,22,23,33,34),
7993 (3,7,10,33,20,30,27,29),
7994 (3,7,11,34,20,31,28,30),
7995 (3,7,12,35,21,32,29,31),
7996 (3,7,13,35,21,33,30,32),
7997 (3,7,14,36,22,34,31,33),
7998 (3,7,15,37,22,35,32,35),
7999 (3,7,16,38,23,36,33,36),
8000 (3,7,17,39,23,37,34,37),
8001 (3,7,18,40,24,38,35,38),
8002 (3,7,19,41,24,39,36,39),
8003 (3,7,20,42,25,40,37,40),
8004 (3,7,21,43,25,41,38,41),
8005 (3,7,22,43,26,42,39,42),
8006 (3,7,23,44,26,43,40,43),
8007 (3,7,24,45,27,44,41,45),
8008 (3,7,25,46,27,46,42,46),
8009 (3,7,26,47,28,47,43,47),
8010 (3,7,27,48,28,48,44,48),
8011 (3,7,28,49,29,49,45,49),
8012 (3,7,29,50,29,50,46,51),
8013 (3,7,30,51,30,51,47,52),
8014 (3,7,31,53,30,53,49,53),
8015 (3,7,32,54,31,54,50,55),
8016 (3,7,33,55,32,55,51,56),
8017 (3,7,34,56,32,56,52,57),
8018 (3,7,35,57,33,58,53,59),
8019 (3,7,36,58,34,59,55,60),
8020 (3,7,37,59,34,60,56,61),
8021 (3,7,38,60,35,62,57,63),
8022 (3,7,39,61,35,63,58,64),
8023 (3,7,40,63,36,64,60,66),
8024 (3,7,41,64,37,66,61,67),
8025 (3,7,42,65,37,67,62,69),
8026 (3,7,43,66,38,69,63,70),
8027 (3,7,44,68,39,70,65,72),
8028 (3,7,45,69,39,72,66,73),
8029 (3,7,46,70,40,73,68,75),
8030 (3,7,47,71,41,75,69,76),
8031 (3,7,48,73,42,76,70,78),
8032 (3,7,49,74,42,78,72,80),
8033 (3,7,50,75,43,79,73,81),
8034 (3,7,51,77,44,81,75,83),
8035 (3,7,52,78,45,82,76,85),
8036 (3,7,53,80,45,84,78,86),
8037 (3,7,54,81,46,86,79,88),
8038 (3,7,55,82,47,87,81,90),
8039 (3,7,56,84,48,89,82,92),
8040 (3,7,57,85,49,91,84,93),
8041 (3,7,58,87,49,92,86,95),
8042 (3,7,59,88,50,94,87,97),
8043 (3,7,60,90,51,96,89,99),
8044 (3,7,61,92,52,98,91,101),
8045 (3,7,62,93,53,100,92,103),
8046 (3,7,63,95,54,101,94,105),
8047 (3,7,64,96,54,103,96,107),
8048 (3,7,65,98,55,105,98,109),
8049 (3,7,66,100,56,107,99,111),
8050 (3,7,67,101,57,109,101,113),
8051 (3,7,68,103,58,111,103,115),
8052 (3,7,69,105,59,113,105,117),
8053 (3,7,70,107,60,115,107,119),
8054 (3,7,71,108,61,117,109,121),
8055 (3,7,72,110,62,119,111,124),
8056 (3,7,73,112,63,121,113,126),
8057 (3,7,74,114,64,124,115,128),
8058 (3,7,75,116,65,126,117,130),
8059 (3,7,76,118,66,128,119,133),
8060 (3,7,77,119,67,130,121,135),
8061 (3,7,78,121,68,132,123,137),
8062 (3,7,79,123,69,135,125,140),
8063 (3,7,80,125,70,137,127,142),
8064 (3,8,1,22,16,23,22,21),
8065 (3,8,81,41,40,61,193,176),
8066 (3,8,82,41,40,61,196,179),
8067 (3,8,83,41,41,62,199,183),
8068 (3,8,84,42,41,63,203,186),
8069 (3,8,85,42,42,64,206,189),
8070 (3,8,2,20,20,20,24,23),
8071 (3,8,3,20,20,21,26,25),
8072 (3,8,4,20,20,21,27,26),
8073 (3,8,5,20,21,21,28,27),
8074 (3,8,6,20,21,21,30,29),
8075 (3,8,7,21,21,22,31,30),
8076 (3,8,8,21,21,22,33,31),
8077 (3,8,9,21,21,22,34,33),
8078 (3,8,10,26,18,24,33,32),
8079 (3,8,11,26,18,24,34,33),
8080 (3,8,12,26,18,24,36,34),
8081 (3,8,13,26,18,25,37,35),
8082 (3,8,14,27,18,25,38,37),
8083 (3,8,15,27,19,25,40,38),
8084 (3,8,16,27,19,26,41,39),
8085 (3,8,17,27,19,26,42,41),
8086 (3,8,18,27,19,26,44,42),
8087 (3,8,19,27,19,27,45,43),
8088 (3,8,20,27,20,27,47,45),
8089 (3,8,21,28,20,27,48,46),
8090 (3,8,22,28,20,28,50,48),
8091 (3,8,23,28,20,28,51,49),
8092 (3,8,24,28,21,29,53,51),
8093 (3,8,25,28,21,29,54,52),
8094 (3,8,26,28,21,29,56,54),
8095 (3,8,27,28,21,30,58,55),
8096 (3,8,28,29,21,30,59,57),
8097 (3,8,29,29,22,31,61,58),
8098 (3,8,30,29,22,31,63,60),
8099 (3,8,31,29,22,31,64,62),
8100 (3,8,32,29,22,32,66,63),
8101 (3,8,33,29,23,32,68,65),
8102 (3,8,34,30,23,33,69,67),
8103 (3,8,35,30,23,33,71,68),
8104 (3,8,36,30,24,34,73,70),
8105 (3,8,37,30,24,34,75,72),
8106 (3,8,38,30,24,34,77,74),
8107 (3,8,39,31,24,35,79,75),
8108 (3,8,40,31,25,35,80,77),
8109 (3,8,41,31,25,36,82,79),
8110 (3,8,42,31,25,36,84,81),
8111 (3,8,43,31,25,37,86,83),
8112 (3,8,44,31,26,37,88,85),
8113 (3,8,45,32,26,38,90,87),
8114 (3,8,46,32,26,38,92,89),
8115 (3,8,47,32,27,39,94,91),
8116 (3,8,48,32,27,39,97,93),
8117 (3,8,49,33,27,40,99,95),
8118 (3,8,50,33,28,40,106,97),
8119 (3,8,51,33,28,41,108,99),
8120 (3,8,52,33,28,41,110,101),
8121 (3,8,53,33,29,42,112,103),
8122 (3,8,54,34,29,43,115,105),
8123 (3,8,55,34,29,43,117,108),
8124 (3,8,56,34,30,44,119,110),
8125 (3,8,57,34,30,44,122,112),
8126 (3,8,58,35,30,45,125,114),
8127 (3,8,59,35,31,45,128,117),
8128 (3,8,60,35,31,46,130,119),
8129 (3,8,61,35,31,47,132,121),
8130 (3,8,62,35,32,47,135,124),
8131 (3,8,63,36,32,48,138,126),
8132 (3,8,64,36,32,48,140,129),
8133 (3,8,65,36,33,49,143,131),
8134 (3,8,66,37,33,50,146,134),
8135 (3,8,67,37,34,50,149,136),
8136 (3,8,68,37,34,51,152,139),
8137 (3,8,69,37,34,52,155,142),
8138 (3,8,70,38,35,52,157,144),
8139 (3,8,71,38,35,53,160,147),
8140 (3,8,72,38,36,54,163,150),
8141 (3,8,73,38,36,55,167,153),
8142 (3,8,74,39,37,55,170,155),
8143 (3,8,75,39,37,56,173,158),
8144 (3,8,76,39,37,57,176,161),
8145 (3,8,77,40,38,58,179,164),
8146 (3,8,78,40,38,58,182,167),
8147 (3,8,79,40,39,59,185,170),
8148 (3,8,80,41,39,60,189,173),
8149 (3,9,1,22,16,24,21,21),
8150 (3,9,81,65,64,92,168,168),
8151 (3,9,82,65,64,93,171,171),
8152 (3,9,83,66,65,95,174,174),
8153 (3,9,84,67,66,96,177,177),
8154 (3,9,85,68,67,97,180,180),
8155 (3,9,2,19,18,23,21,28),
8156 (3,9,3,20,19,23,22,29),
8157 (3,9,4,20,19,24,24,30),
8158 (3,9,5,20,19,24,25,32),
8159 (3,9,6,20,20,25,26,33),
8160 (3,9,7,21,20,25,27,34),
8161 (3,9,8,21,21,26,28,35),
8162 (3,9,9,21,21,26,30,36),
8163 (3,9,10,28,19,27,30,31),
8164 (3,9,11,28,20,27,32,32),
8165 (3,9,12,28,20,28,33,33),
8166 (3,9,13,29,20,28,34,35),
8167 (3,9,14,29,21,29,35,36),
8168 (3,9,15,29,21,30,36,37),
8169 (3,9,16,30,22,30,37,38),
8170 (3,9,17,30,22,31,39,40),
8171 (3,9,18,30,22,31,40,41),
8172 (3,9,19,31,23,32,41,42),
8173 (3,9,20,31,23,33,42,44),
8174 (3,9,21,31,24,33,44,45),
8175 (3,9,22,32,24,34,45,46),
8176 (3,9,23,32,25,35,46,48),
8177 (3,9,24,33,25,35,48,49),
8178 (3,9,25,33,26,36,49,51),
8179 (3,9,26,33,26,37,50,52),
8180 (3,9,27,34,26,37,52,53),
8181 (3,9,28,34,27,38,53,55),
8182 (3,9,29,35,27,39,55,56),
8183 (3,9,30,35,28,39,56,58),
8184 (3,9,31,35,28,40,57,60),
8185 (3,9,32,36,29,41,59,61),
8186 (3,9,33,36,29,42,60,63),
8187 (3,9,34,37,30,42,62,64),
8188 (3,9,35,37,30,43,63,66),
8189 (3,9,36,38,31,44,65,68),
8190 (3,9,37,38,32,45,67,69),
8191 (3,9,38,38,32,46,68,71),
8192 (3,9,39,39,33,46,70,73),
8193 (3,9,40,39,33,47,71,74),
8194 (3,9,41,40,34,48,73,76),
8195 (3,9,42,40,34,49,75,78),
8196 (3,9,43,41,35,50,76,80),
8197 (3,9,44,41,35,51,78,81),
8198 (3,9,45,42,36,51,80,83),
8199 (3,9,46,42,37,52,82,85),
8200 (3,9,47,43,37,53,83,87),
8201 (3,9,48,43,38,54,85,89),
8202 (3,9,49,44,39,55,87,91),
8203 (3,9,50,44,39,56,93,93),
8204 (3,9,51,45,40,57,95,95),
8205 (3,9,52,45,40,58,97,97),
8206 (3,9,53,46,41,59,99,99),
8207 (3,9,54,47,42,60,101,101),
8208 (3,9,55,47,42,61,104,103),
8209 (3,9,56,48,43,62,106,105),
8210 (3,9,57,48,44,63,108,107),
8211 (3,9,58,49,45,64,110,110),
8212 (3,9,59,49,45,65,112,112),
8213 (3,9,60,50,46,66,114,114),
8214 (3,9,61,51,47,67,116,116),
8215 (3,9,62,51,47,68,118,119),
8216 (3,9,63,52,48,69,121,121),
8217 (3,9,64,52,49,70,123,123),
8218 (3,9,65,53,50,72,126,126),
8219 (3,9,66,54,51,73,128,128),
8220 (3,9,67,54,51,74,131,131),
8221 (3,9,68,55,52,75,133,133),
8222 (3,9,69,56,53,76,135,135),
8223 (3,9,70,56,54,77,138,138),
8224 (3,9,71,57,55,79,140,141),
8225 (3,9,72,58,55,80,143,143),
8226 (3,9,73,59,56,81,146,146),
8227 (3,9,74,59,57,82,149,149),
8228 (3,9,75,60,58,84,151,151),
8229 (3,9,76,61,59,85,154,154),
8230 (3,9,77,62,60,86,157,157),
8231 (3,9,78,62,61,88,159,160),
8232 (3,9,79,63,62,89,162,163),
8233 (3,9,80,64,63,90,165,165),
8234 (3,11,81,96,79,100,145,160),
8235 (3,11,82,97,81,102,147,163),
8236 (3,11,83,99,82,103,150,166),
8237 (3,11,84,100,83,105,159,169),
8238 (3,11,85,101,85,107,159,172),
8239 (3,11,10,31,20,26,29,30),
8240 (3,11,11,31,21,27,30,32),
8241 (3,11,12,32,21,28,31,33),
8242 (3,11,13,32,22,28,32,34),
8243 (3,11,14,33,22,29,33,35),
8244 (3,11,15,34,23,30,35,36),
8245 (3,11,16,34,23,30,36,37),
8246 (3,11,17,35,24,31,37,39),
8247 (3,11,18,35,25,32,38,40),
8248 (3,11,19,36,25,32,39,41),
8249 (3,11,20,37,26,33,40,42),
8250 (3,11,21,37,26,34,41,44),
8251 (3,11,22,38,27,35,42,45),
8252 (3,11,23,39,28,35,43,46),
8253 (3,11,24,39,28,36,45,48),
8254 (3,11,25,40,29,37,46,49),
8255 (3,11,26,41,29,38,47,50),
8256 (3,11,27,41,30,38,48,52),
8257 (3,11,28,42,31,39,49,53),
8258 (3,11,29,43,31,40,51,55),
8259 (3,11,30,43,32,41,52,56),
8260 (3,11,31,44,33,42,53,57),
8261 (3,11,32,45,33,43,55,59),
8262 (3,11,33,46,34,43,56,60),
8263 (3,11,34,46,35,44,57,62),
8264 (3,11,35,47,35,45,59,63),
8265 (3,11,36,48,36,46,60,65),
8266 (3,11,37,49,37,47,61,67),
8267 (3,11,38,50,37,48,63,68),
8268 (3,11,39,50,38,49,64,70),
8269 (3,11,40,51,39,50,66,71),
8270 (3,11,41,52,40,51,67,73),
8271 (3,11,42,53,40,52,69,75),
8272 (3,11,43,54,41,53,70,76),
8273 (3,11,44,55,42,53,72,78),
8274 (3,11,45,55,43,54,73,80),
8275 (3,11,46,56,44,55,75,82),
8276 (3,11,47,57,44,57,76,83),
8277 (3,11,48,58,45,58,78,85),
8278 (3,11,49,59,46,59,80,87),
8279 (3,11,50,60,47,60,81,89),
8280 (3,11,51,61,48,61,83,91),
8281 (3,11,52,62,49,62,85,93),
8282 (3,11,53,63,50,63,86,95),
8283 (3,11,54,64,50,64,88,97),
8284 (3,11,55,65,51,65,90,99),
8285 (3,11,56,66,52,66,92,101),
8286 (3,11,57,67,53,67,93,103),
8287 (3,11,58,68,54,69,95,105),
8288 (3,11,59,69,55,70,97,107),
8289 (3,11,60,70,56,71,99,109),
8290 (3,11,61,71,57,72,101,111),
8291 (3,11,62,72,58,73,103,113),
8292 (3,11,63,73,59,75,105,116),
8293 (3,11,64,74,60,76,107,118),
8294 (3,11,65,76,61,77,109,120),
8295 (3,11,66,77,62,79,111,122),
8296 (3,11,67,78,63,80,113,125),
8297 (3,11,68,79,64,81,115,127),
8298 (3,11,69,80,65,83,117,129),
8299 (3,11,70,81,66,84,119,132),
8300 (3,11,71,83,67,85,121,134),
8301 (3,11,72,84,69,87,124,137),
8302 (3,11,73,85,70,88,126,139),
8303 (3,11,74,86,71,90,128,142),
8304 (3,11,75,88,72,91,130,144),
8305 (3,11,76,89,73,93,133,147),
8306 (3,11,77,90,74,94,135,150),
8307 (3,11,78,92,76,96,137,152),
8308 (3,11,79,93,77,97,140,155),
8309 (3,11,80,94,78,99,142,158),
8310 (4,1,1,20,25,21,20,20),
8311 (4,1,2,21,26,22,20,20),
8312 (4,1,3,23,27,23,20,21),
8313 (4,1,4,24,27,25,20,21),
8314 (4,1,5,25,28,26,20,21),
8315 (4,1,6,27,29,27,20,21),
8316 (4,1,7,28,30,28,21,22),
8317 (4,1,8,29,31,29,21,22),
8318 (4,1,9,31,31,31,21,22),
8319 (4,1,10,32,32,32,21,23),
8320 (4,1,11,33,33,33,21,23),
8321 (4,1,12,35,34,34,21,23),
8322 (4,1,13,36,35,36,21,24),
8323 (4,1,14,38,36,37,21,24),
8324 (4,1,15,39,37,38,21,24),
8325 (4,1,16,41,37,40,21,25),
8326 (4,1,17,42,38,41,22,25),
8327 (4,1,18,44,39,43,22,25),
8328 (4,1,19,45,40,44,22,26),
8329 (4,1,20,47,41,45,22,26),
8330 (4,1,21,48,42,47,22,26),
8331 (4,1,22,50,43,48,22,27),
8332 (4,1,23,52,44,50,22,27),
8333 (4,1,24,53,45,51,23,28),
8334 (4,1,25,55,46,52,23,28),
8335 (4,1,26,56,47,54,23,28),
8336 (4,1,27,58,48,55,23,29),
8337 (4,1,28,60,49,57,23,29),
8338 (4,1,29,61,50,58,23,30),
8339 (4,1,30,63,51,60,24,30),
8340 (4,1,31,65,52,62,24,30),
8341 (4,1,32,66,53,63,24,31),
8342 (4,1,33,68,54,65,24,31),
8343 (4,1,34,70,55,66,24,32),
8344 (4,1,35,72,56,68,24,32),
8345 (4,1,36,73,58,69,25,33),
8346 (4,1,37,75,59,71,25,33),
8347 (4,1,38,77,60,73,25,34),
8348 (4,1,39,79,61,74,25,34),
8349 (4,1,40,81,62,76,25,35),
8350 (4,1,41,82,63,78,26,35),
8351 (4,1,42,84,64,79,26,35),
8352 (4,1,43,86,66,81,26,36),
8353 (4,1,44,88,67,83,26,36),
8354 (4,1,45,90,68,85,26,37),
8355 (4,1,46,92,69,86,27,37),
8356 (4,1,47,94,70,88,27,38),
8357 (4,1,48,96,72,90,27,38),
8358 (4,1,49,98,73,92,27,39),
8359 (4,1,50,100,74,93,28,40),
8360 (4,1,51,102,75,95,28,40),
8361 (4,1,52,104,77,97,28,41),
8362 (4,1,53,106,78,99,28,41),
8363 (4,1,54,108,79,101,29,42),
8364 (4,1,55,110,80,103,29,42),
8365 (4,1,56,112,82,104,29,43),
8366 (4,1,57,114,83,106,29,43),
8367 (4,1,58,116,84,108,30,44),
8368 (4,1,59,118,86,110,30,44),
8369 (4,1,60,120,87,112,30,45),
8370 (4,1,61,122,88,114,30,46),
8371 (4,1,62,124,90,116,31,46),
8372 (4,1,63,127,91,118,31,47),
8373 (4,1,64,129,92,120,31,47),
8374 (4,1,65,131,94,122,32,48),
8375 (4,1,66,133,95,124,32,49),
8376 (4,1,67,135,97,126,32,49),
8377 (4,1,68,138,98,128,32,50),
8378 (4,1,69,140,100,130,33,50),
8379 (4,1,70,142,101,132,33,51),
8380 (4,1,71,145,102,134,33,52),
8381 (4,1,72,147,104,137,33,53),
8382 (4,1,73,150,106,139,33,54),
8383 (4,1,74,153,107,142,34,54),
8384 (4,1,75,156,109,144,34,55),
8385 (4,1,76,159,111,148,34,56),
8386 (4,1,77,162,113,150,35,57),
8387 (4,1,78,165,114,152,35,57),
8388 (4,1,79,178,116,164,35,58),
8389 (4,1,80,181,118,167,36,59),
8390 (4,1,81,173,119,161,36,60),
8391 (4,1,82,185,121,164,36,60),
8392 (4,1,83,188,123,167,36,61),
8393 (4,1,84,191,125,170,37,62),
8394 (4,1,85,194,127,173,37,63),
8395 (4,2,81,156,95,146,99,107),
8396 (4,2,82,159,97,148,101,108),
8397 (4,2,83,162,98,151,102,110),
8398 (4,2,84,166,100,153,104,112),
8399 (4,2,85,168,101,156,106,114),
8400 (4,2,10,27,29,30,25,27),
8401 (4,2,11,28,29,31,26,28),
8402 (4,2,12,29,30,32,27,28),
8403 (4,2,13,30,31,33,27,29),
8404 (4,2,14,31,31,34,28,30),
8405 (4,2,15,32,32,36,29,30),
8406 (4,2,16,34,32,37,29,31),
8407 (4,2,17,35,33,38,30,32),
8408 (4,2,18,36,34,39,31,33),
8409 (4,2,19,37,34,40,31,33),
8410 (4,2,20,38,35,41,32,34),
8411 (4,2,21,39,36,42,33,35),
8412 (4,2,22,41,36,43,34,36),
8413 (4,2,23,42,37,44,34,37),
8414 (4,2,24,43,38,46,35,37),
8415 (4,2,25,44,38,47,36,38),
8416 (4,2,26,46,39,48,37,39),
8417 (4,2,27,47,40,49,37,40),
8418 (4,2,28,48,40,50,38,41),
8419 (4,2,29,50,41,52,39,42),
8420 (4,2,30,51,42,53,40,42),
8421 (4,2,31,52,43,54,41,43),
8422 (4,2,32,54,43,56,42,44),
8423 (4,2,33,55,44,57,42,45),
8424 (4,2,34,57,45,58,43,46),
8425 (4,2,35,58,46,60,44,47),
8426 (4,2,36,60,47,61,45,48),
8427 (4,2,37,61,47,62,46,49),
8428 (4,2,38,63,48,64,47,50),
8429 (4,2,39,64,49,65,48,51),
8430 (4,2,40,66,50,67,49,52),
8431 (4,2,41,67,51,68,50,53),
8432 (4,2,42,69,51,70,51,54),
8433 (4,2,43,70,52,71,52,55),
8434 (4,2,44,72,53,73,52,56),
8435 (4,2,45,74,54,74,53,57),
8436 (4,2,46,75,55,76,54,58),
8437 (4,2,47,77,56,77,56,59),
8438 (4,2,48,79,57,79,57,60),
8439 (4,2,49,80,58,81,58,62),
8440 (4,2,50,82,59,82,59,63),
8441 (4,2,51,84,60,84,60,64),
8442 (4,2,52,86,61,86,61,65),
8443 (4,2,53,88,62,87,62,66),
8444 (4,2,54,89,63,89,63,67),
8445 (4,2,55,91,64,91,64,69),
8446 (4,2,56,93,65,93,65,70),
8447 (4,2,57,95,66,94,66,71),
8448 (4,2,58,97,67,96,68,72),
8449 (4,2,59,104,68,98,69,74),
8450 (4,2,60,104,69,100,70,75),
8451 (4,2,61,104,70,102,71,76),
8452 (4,2,62,110,71,104,72,78),
8453 (4,2,63,112,72,106,74,79),
8454 (4,2,64,112,73,108,75,80),
8455 (4,2,65,112,75,110,76,82),
8456 (4,2,66,114,76,112,78,83),
8457 (4,2,67,116,77,114,79,85),
8458 (4,2,68,118,78,116,80,86),
8459 (4,2,69,126,79,118,82,87),
8460 (4,2,70,126,81,120,83,89),
8461 (4,2,71,126,82,122,84,90),
8462 (4,2,72,133,83,125,86,92),
8463 (4,2,73,135,84,127,87,94),
8464 (4,2,74,135,86,129,89,95),
8465 (4,2,75,140,87,131,90,97),
8466 (4,2,76,140,88,134,92,98),
8467 (4,2,77,146,90,136,93,100),
8468 (4,2,78,149,91,138,95,102),
8469 (4,2,79,151,92,141,96,103),
8470 (4,2,80,151,94,143,98,105),
8471 (4,3,1,17,28,20,20,21),
8472 (4,3,2,17,29,21,21,22),
8473 (4,3,3,18,31,22,21,22),
8474 (4,3,4,18,32,23,22,23),
8475 (4,3,5,19,33,24,22,24),
8476 (4,3,6,19,35,25,23,24),
8477 (4,3,7,20,36,26,24,25),
8478 (4,3,8,20,38,27,24,25),
8479 (4,3,9,21,39,27,25,26),
8480 (4,3,10,21,40,28,25,27),
8481 (4,3,11,22,42,29,26,28),
8482 (4,3,12,22,43,30,27,28),
8483 (4,3,13,23,45,31,27,29),
8484 (4,3,14,23,46,32,28,30),
8485 (4,3,15,24,48,34,29,30),
8486 (4,3,16,24,50,35,29,31),
8487 (4,3,17,25,51,36,30,32),
8488 (4,3,18,25,53,37,31,33),
8489 (4,3,19,26,54,38,31,33),
8490 (4,3,20,26,56,39,32,34),
8491 (4,3,21,27,57,40,33,35),
8492 (4,3,22,27,59,41,33,36),
8493 (4,3,23,28,61,42,34,36),
8494 (4,3,24,28,62,43,35,37),
8495 (4,3,25,29,64,44,36,38),
8496 (4,3,26,30,66,46,36,39),
8497 (4,3,27,30,68,47,37,40),
8498 (4,3,28,31,69,48,38,41),
8499 (4,3,29,31,71,49,39,41),
8500 (4,3,30,32,73,50,39,42),
8501 (4,3,31,33,75,52,40,43),
8502 (4,3,32,33,76,53,41,44),
8503 (4,3,33,34,78,54,42,45),
8504 (4,3,34,34,80,55,43,46),
8505 (4,3,35,35,82,57,44,47),
8506 (4,3,36,36,84,58,44,48),
8507 (4,3,37,36,86,59,45,48),
8508 (4,3,38,37,87,60,46,49),
8509 (4,3,39,38,89,62,47,50),
8510 (4,3,40,38,91,63,48,51),
8511 (4,3,41,39,93,64,49,52),
8512 (4,3,42,40,95,66,49,53),
8513 (4,3,43,40,97,67,50,54),
8514 (4,3,44,41,99,68,51,55),
8515 (4,3,45,42,101,70,52,56),
8516 (4,3,46,42,103,71,53,57),
8517 (4,3,47,43,105,72,54,58),
8518 (4,3,48,44,107,74,55,59),
8519 (4,3,49,45,109,75,56,60),
8520 (4,3,50,45,111,77,57,61),
8521 (4,3,51,46,113,78,58,62),
8522 (4,3,52,47,115,79,59,63),
8523 (4,3,53,47,118,81,60,64),
8524 (4,3,54,48,120,82,61,65),
8525 (4,3,55,49,122,84,61,66),
8526 (4,3,56,50,124,85,62,67),
8527 (4,3,57,50,126,87,63,68),
8528 (4,3,58,51,128,88,64,69),
8529 (4,3,59,52,131,90,65,70),
8530 (4,3,60,53,133,91,66,72),
8531 (4,3,61,54,135,93,67,73),
8532 (4,3,62,54,137,94,69,74),
8533 (4,3,63,55,140,96,70,75),
8534 (4,3,64,56,142,97,71,76),
8535 (4,3,65,57,144,99,72,77),
8536 (4,3,66,58,147,101,73,78),
8537 (4,3,67,58,149,102,74,79),
8538 (4,3,68,59,151,104,75,81),
8539 (4,3,69,60,154,105,76,82),
8540 (4,3,70,61,156,107,77,83),
8541 (4,3,71,62,159,109,78,84),
8542 (4,3,72,63,162,111,79,85),
8543 (4,3,73,64,165,113,80,87),
8544 (4,3,74,65,168,115,82,88),
8545 (4,3,75,66,171,117,83,90),
8546 (4,3,76,67,174,119,84,91),
8547 (4,3,77,68,177,121,86,93),
8548 (4,3,78,69,180,123,87,94),
8549 (4,3,79,70,190,125,91,96),
8550 (4,3,80,71,193,127,93,97),
8551 (4,3,81,71,198,130,91,99),
8552 (4,3,82,73,201,133,93,100),
8553 (4,3,83,74,204,135,94,102),
8554 (4,3,84,75,208,137,96,103),
8555 (4,3,85,76,212,139,97,105),
8556 (4,4,1,18,28,20,20,20),
8557 (4,4,2,19,29,21,20,20),
8558 (4,4,3,20,31,21,20,21),
8559 (4,4,4,20,32,22,20,21),
8560 (4,4,5,21,34,23,21,21),
8561 (4,4,6,22,35,24,21,22),
8562 (4,4,7,23,37,24,21,22),
8563 (4,4,8,24,38,25,21,23),
8564 (4,4,9,24,40,26,21,23),
8565 (4,4,10,25,41,26,21,23),
8566 (4,4,11,26,43,27,22,24),
8567 (4,4,12,27,44,28,22,24),
8568 (4,4,13,28,46,29,22,25),
8569 (4,4,14,29,48,30,22,25),
8570 (4,4,15,29,49,30,22,25),
8571 (4,4,16,30,51,31,23,26),
8572 (4,4,17,31,52,32,23,26),
8573 (4,4,18,32,54,33,23,27),
8574 (4,4,19,33,56,34,23,27),
8575 (4,4,20,34,57,35,23,28),
8576 (4,4,21,35,59,35,24,28),
8577 (4,4,22,36,61,36,24,29),
8578 (4,4,23,37,63,37,24,29),
8579 (4,4,24,38,64,38,24,30),
8580 (4,4,25,39,66,39,25,30),
8581 (4,4,26,40,68,40,25,31),
8582 (4,4,27,41,70,41,25,31),
8583 (4,4,28,42,72,42,25,32),
8584 (4,4,29,43,73,43,25,32),
8585 (4,4,30,44,75,43,26,33),
8586 (4,4,31,45,77,44,26,33),
8587 (4,4,32,46,79,45,26,34),
8588 (4,4,33,47,81,46,27,34),
8589 (4,4,34,48,83,47,27,35),
8590 (4,4,35,49,85,48,27,35),
8591 (4,4,36,50,87,49,27,36),
8592 (4,4,37,51,89,50,28,36),
8593 (4,4,38,52,91,51,28,37),
8594 (4,4,39,53,93,52,28,38),
8595 (4,4,40,54,95,53,28,38),
8596 (4,4,41,56,97,54,29,39),
8597 (4,4,42,57,99,55,29,39),
8598 (4,4,43,58,101,56,29,40),
8599 (4,4,44,59,103,57,30,40),
8600 (4,4,45,60,105,59,30,41),
8601 (4,4,46,61,107,60,30,42),
8602 (4,4,47,62,109,61,31,42),
8603 (4,4,48,64,112,62,31,43),
8604 (4,4,49,65,114,63,31,44),
8605 (4,4,50,66,116,64,32,44),
8606 (4,4,51,67,118,65,32,45),
8607 (4,4,52,68,120,66,32,45),
8608 (4,4,53,70,123,67,33,46),
8609 (4,4,54,71,125,69,33,47),
8610 (4,4,55,72,127,70,33,47),
8611 (4,4,56,73,129,71,34,48),
8612 (4,4,57,75,132,72,34,49),
8613 (4,4,58,76,134,73,34,49),
8614 (4,4,59,77,136,74,35,50),
8615 (4,4,60,79,139,76,35,51),
8616 (4,4,61,80,141,77,35,51),
8617 (4,4,62,81,143,78,36,52),
8618 (4,4,63,82,146,79,36,53),
8619 (4,4,64,84,148,80,37,54),
8620 (4,4,65,85,151,82,37,54),
8621 (4,4,66,87,153,83,37,55),
8622 (4,4,67,88,156,84,38,56),
8623 (4,4,68,89,158,85,38,57),
8624 (4,4,69,91,160,87,39,57),
8625 (4,4,70,92,163,88,39,58),
8626 (4,4,71,94,166,90,39,59),
8627 (4,4,72,96,169,91,40,59),
8628 (4,4,73,97,172,93,40,60),
8629 (4,4,74,99,175,94,41,61),
8630 (4,4,75,101,178,96,41,62),
8631 (4,4,76,102,181,97,41,63),
8632 (4,4,77,104,184,99,42,64),
8633 (4,4,78,106,188,101,42,65),
8634 (4,4,79,108,191,102,43,66),
8635 (4,4,80,110,194,104,43,67),
8636 (4,4,81,110,206,107,44,68),
8637 (4,4,82,112,209,108,44,68),
8638 (4,4,83,114,213,110,45,69),
8639 (4,4,84,116,217,112,45,70),
8640 (4,4,85,118,220,114,46,71),
8641 (4,5,1,17,25,19,22,23),
8642 (4,5,2,17,25,19,23,24),
8643 (4,5,3,17,25,20,25,26),
8644 (4,5,4,17,26,20,26,27),
8645 (4,5,5,18,26,20,27,28),
8646 (4,5,6,18,26,21,29,30),
8647 (4,5,7,18,26,21,30,31),
8648 (4,5,8,18,26,22,31,33),
8649 (4,5,9,18,27,22,33,34),
8650 (4,5,10,19,27,22,34,36),
8651 (4,5,11,19,27,23,36,37),
8652 (4,5,12,19,27,23,37,39),
8653 (4,5,13,19,28,24,38,40),
8654 (4,5,14,19,28,24,40,42),
8655 (4,5,15,19,28,25,41,43),
8656 (4,5,16,20,28,25,43,45),
8657 (4,5,17,20,29,25,44,46),
8658 (4,5,18,20,29,26,46,48),
8659 (4,5,19,20,29,26,47,49),
8660 (4,5,20,21,30,27,49,51),
8661 (4,5,21,21,30,27,51,53),
8662 (4,5,22,21,30,28,52,54),
8663 (4,5,23,21,30,28,54,56),
8664 (4,5,24,21,31,29,55,58),
8665 (4,5,25,22,31,29,57,59),
8666 (4,5,26,22,31,30,59,61),
8667 (4,5,27,22,32,30,60,63),
8668 (4,5,28,22,32,31,62,65),
8669 (4,5,29,23,32,31,64,66),
8670 (4,5,30,23,33,32,65,68),
8671 (4,5,31,23,33,32,67,70),
8672 (4,5,32,23,33,33,69,72),
8673 (4,5,33,24,34,33,70,73),
8674 (4,5,34,24,34,34,72,75),
8675 (4,5,35,24,34,34,74,77),
8676 (4,5,36,24,35,35,76,79),
8677 (4,5,37,25,35,35,78,81),
8678 (4,5,38,25,35,36,79,83),
8679 (4,5,39,25,36,37,81,85),
8680 (4,5,40,26,36,37,83,87),
8681 (4,5,41,26,37,38,85,88),
8682 (4,5,42,26,37,38,87,90),
8683 (4,5,43,27,37,39,89,92),
8684 (4,5,44,27,38,39,91,94),
8685 (4,5,45,27,38,40,92,96),
8686 (4,5,46,27,39,41,94,98),
8687 (4,5,47,28,39,41,96,100),
8688 (4,5,48,28,39,42,98,102),
8689 (4,5,49,28,40,43,100,104),
8690 (4,5,50,29,40,43,102,106),
8691 (4,5,51,29,41,44,104,109),
8692 (4,5,52,29,41,44,106,111),
8693 (4,5,53,30,42,45,108,113),
8694 (4,5,54,30,42,46,110,115),
8695 (4,5,55,30,43,46,112,117),
8696 (4,5,56,31,43,47,114,119),
8697 (4,5,57,31,43,48,117,121),
8698 (4,5,58,31,44,48,119,124),
8699 (4,5,59,32,44,49,121,126),
8700 (4,5,60,32,45,50,123,128),
8701 (4,5,61,33,45,51,125,130),
8702 (4,5,62,33,46,51,127,132),
8703 (4,5,63,33,46,52,129,135),
8704 (4,5,64,34,47,53,132,137),
8705 (4,5,65,34,47,53,134,139),
8706 (4,5,66,34,48,54,136,142),
8707 (4,5,67,35,48,55,138,144),
8708 (4,5,68,35,49,56,140,146),
8709 (4,5,69,36,49,56,143,149),
8710 (4,5,70,36,50,57,145,151),
8711 (4,5,71,36,51,58,148,161),
8712 (4,5,72,37,51,58,151,164),
8713 (4,5,73,37,52,59,154,168),
8714 (4,5,74,38,52,60,156,171),
8715 (4,5,75,38,53,61,159,174),
8716 (4,5,76,38,54,62,162,177),
8717 (4,5,77,39,54,63,165,180),
8718 (4,5,78,39,55,64,168,183),
8719 (4,5,79,40,55,65,171,186),
8720 (4,5,80,40,56,66,200,191),
8721 (4,5,81,40,56,68,185,185),
8722 (4,5,82,40,56,68,189,188),
8723 (4,5,83,41,57,69,193,191),
8724 (4,5,84,41,58,70,196,195),
8725 (4,5,85,42,58,71,199,198),
8726 (4,6,1,20,25,21,20,20),
8727 (4,6,2,21,26,22,20,20),
8728 (4,6,3,23,27,23,20,21),
8729 (4,6,4,24,27,25,20,21),
8730 (4,6,5,25,28,26,20,21),
8731 (4,6,6,27,29,27,20,21),
8732 (4,6,7,28,30,28,21,22),
8733 (4,6,8,29,31,29,21,22),
8734 (4,6,9,31,31,31,21,22),
8735 (4,6,10,32,32,32,21,23),
8736 (4,6,11,33,33,33,21,23),
8737 (4,6,12,35,34,34,21,23),
8738 (4,6,13,36,35,36,21,24),
8739 (4,6,14,38,36,37,21,24),
8740 (4,6,15,39,37,38,21,24),
8741 (4,6,16,41,37,40,21,25),
8742 (4,6,17,42,38,41,22,25),
8743 (4,6,18,44,39,43,22,25),
8744 (4,6,19,45,40,44,22,26),
8745 (4,6,20,47,41,45,22,26),
8746 (4,6,21,48,42,47,22,26),
8747 (4,6,22,50,43,48,22,27),
8748 (4,6,23,52,44,50,22,27),
8749 (4,6,24,53,45,51,23,28),
8750 (4,6,25,55,46,52,23,28),
8751 (4,6,26,56,47,54,23,28),
8752 (4,6,27,58,48,55,23,29),
8753 (4,6,28,60,49,57,23,29),
8754 (4,6,29,61,50,58,23,30),
8755 (4,6,30,63,51,60,24,30),
8756 (4,6,31,65,52,62,24,30),
8757 (4,6,32,66,53,63,24,31),
8758 (4,6,33,68,54,65,24,31),
8759 (4,6,34,70,55,66,24,32),
8760 (4,6,35,72,56,68,24,32),
8761 (4,6,36,73,58,69,25,33),
8762 (4,6,37,75,59,71,25,33),
8763 (4,6,38,77,60,73,25,34),
8764 (4,6,39,79,61,74,25,34),
8765 (4,6,40,81,62,76,25,35),
8766 (4,6,41,82,63,78,26,35),
8767 (4,6,42,84,64,79,26,35),
8768 (4,6,43,86,66,81,26,36),
8769 (4,6,44,88,67,83,26,36),
8770 (4,6,45,90,68,85,26,37),
8771 (4,6,46,92,69,86,27,37),
8772 (4,6,47,94,70,88,27,38),
8773 (4,6,48,96,72,90,27,38),
8774 (4,6,49,98,73,92,27,39),
8775 (4,6,50,100,74,93,28,40),
8776 (4,6,51,101,75,94,28,40),
8777 (4,6,52,102,76,95,28,41),
8778 (4,6,53,103,77,96,28,41),
8779 (4,6,54,104,77,97,29,42),
8780 (4,6,55,105,78,98,29,42),
8781 (4,6,56,108,80,101,29,43),
8782 (4,6,57,113,81,103,29,43),
8783 (4,6,58,115,82,105,30,44),
8784 (4,6,59,115,84,107,30,44),
8785 (4,6,60,120,85,109,30,45),
8786 (4,6,61,122,86,111,30,46),
8787 (4,6,62,122,88,113,30,46),
8788 (4,6,63,127,89,116,31,47),
8789 (4,6,64,127,91,118,31,47),
8790 (4,6,65,133,92,120,31,48),
8791 (4,6,66,135,94,123,31,49),
8792 (4,6,67,136,95,125,32,49),
8793 (4,6,68,137,97,127,32,50),
8794 (4,6,69,140,98,130,32,51),
8795 (4,6,70,147,100,132,32,51),
8796 (4,6,71,154,102,135,33,52),
8797 (4,6,72,156,103,137,33,53),
8798 (4,6,73,157,105,140,33,54),
8799 (4,6,74,158,107,142,33,54),
8800 (4,6,75,161,108,145,34,55),
8801 (4,6,76,164,110,148,34,56),
8802 (4,6,77,167,112,150,34,57),
8803 (4,6,78,170,113,153,34,57),
8804 (4,6,79,172,115,156,35,58),
8805 (4,6,80,177,117,159,35,59),
8806 (4,6,81,174,118,163,35,60),
8807 (4,6,82,174,120,165,36,60),
8808 (4,6,83,181,122,168,36,61),
8809 (4,6,84,181,124,171,36,62),
8810 (4,6,85,187,125,174,36,63),
8811 (4,7,81,118,79,138,136,146),
8812 (4,7,82,120,81,141,139,148),
8813 (4,7,83,123,82,143,139,151),
8814 (4,7,84,125,83,145,139,153),
8815 (4,7,85,127,84,148,145,156),
8816 (4,7,10,24,28,29,28,30),
8817 (4,7,11,25,28,30,29,31),
8818 (4,7,12,26,29,31,30,32),
8819 (4,7,13,26,29,32,31,33),
8820 (4,7,14,27,30,33,32,34),
8821 (4,7,15,28,30,34,33,36),
8822 (4,7,16,29,31,35,34,37),
8823 (4,7,17,30,31,36,35,38),
8824 (4,7,18,31,32,37,36,39),
8825 (4,7,19,32,32,38,37,40),
8826 (4,7,20,33,33,39,38,41),
8827 (4,7,21,34,33,40,39,42),
8828 (4,7,22,34,34,41,40,43),
8829 (4,7,23,35,34,42,41,44),
8830 (4,7,24,36,35,43,42,46),
8831 (4,7,25,37,35,45,43,47),
8832 (4,7,26,38,36,46,44,48),
8833 (4,7,27,39,36,47,45,49),
8834 (4,7,28,40,37,48,46,50),
8835 (4,7,29,41,37,49,47,52),
8836 (4,7,30,42,38,50,48,53),
8837 (4,7,31,44,38,52,50,54),
8838 (4,7,32,45,39,53,51,56),
8839 (4,7,33,46,40,54,52,57),
8840 (4,7,34,47,40,55,53,58),
8841 (4,7,35,48,41,57,54,60),
8842 (4,7,36,49,42,58,56,61),
8843 (4,7,37,50,42,59,57,62),
8844 (4,7,38,51,43,61,58,64),
8845 (4,7,39,52,43,62,59,65),
8846 (4,7,40,54,44,63,61,67),
8847 (4,7,41,55,45,65,62,68),
8848 (4,7,42,56,45,66,63,70),
8849 (4,7,43,57,46,68,64,71),
8850 (4,7,44,59,47,69,66,73),
8851 (4,7,45,60,47,71,67,74),
8852 (4,7,46,61,48,72,69,76),
8853 (4,7,47,62,49,74,70,77),
8854 (4,7,48,64,50,75,71,79),
8855 (4,7,49,65,50,77,73,81),
8856 (4,7,50,66,51,78,74,82),
8857 (4,7,51,68,52,80,76,84),
8858 (4,7,52,69,53,81,77,86),
8859 (4,7,53,71,53,83,79,87),
8860 (4,7,54,72,54,85,80,89),
8861 (4,7,55,73,55,86,82,91),
8862 (4,7,56,75,56,88,83,93),
8863 (4,7,57,76,57,90,85,94),
8864 (4,7,58,78,57,91,87,96),
8865 (4,7,59,79,58,93,88,98),
8866 (4,7,60,81,59,95,90,100),
8867 (4,7,61,83,60,97,92,102),
8868 (4,7,62,84,61,99,93,104),
8869 (4,7,63,86,62,100,95,106),
8870 (4,7,64,87,62,102,97,108),
8871 (4,7,65,89,63,104,99,110),
8872 (4,7,66,91,64,106,100,112),
8873 (4,7,67,92,65,108,102,114),
8874 (4,7,68,94,66,110,104,116),
8875 (4,7,69,96,67,112,106,118),
8876 (4,7,70,98,68,114,108,120),
8877 (4,7,71,99,69,116,110,122),
8878 (4,7,72,101,70,118,112,125),
8879 (4,7,73,103,71,120,114,127),
8880 (4,7,74,105,72,123,116,129),
8881 (4,7,75,107,73,125,118,131),
8882 (4,7,76,109,74,127,120,134),
8883 (4,7,77,110,75,129,122,136),
8884 (4,7,78,112,76,131,124,138),
8885 (4,7,79,114,77,134,126,141),
8886 (4,7,80,116,78,136,128,143),
8887 (4,8,1,17,25,19,23,22),
8888 (4,8,81,32,48,60,194,177),
8889 (4,8,82,32,48,60,197,180),
8890 (4,8,83,32,49,61,200,184),
8891 (4,8,84,33,49,62,204,187),
8892 (4,8,85,33,50,63,207,190),
8893 (4,8,2,20,20,20,24,23),
8894 (4,8,3,20,20,21,26,25),
8895 (4,8,4,20,20,21,27,26),
8896 (4,8,5,20,21,21,28,27),
8897 (4,8,6,20,21,21,30,29),
8898 (4,8,7,21,21,22,31,30),
8899 (4,8,8,21,21,22,33,31),
8900 (4,8,9,21,21,22,34,33),
8901 (4,8,10,17,26,23,34,33),
8902 (4,8,11,17,26,23,35,34),
8903 (4,8,12,17,26,23,37,35),
8904 (4,8,13,17,26,24,38,36),
8905 (4,8,14,18,26,24,39,38),
8906 (4,8,15,18,27,24,41,39),
8907 (4,8,16,18,27,25,42,40),
8908 (4,8,17,18,27,25,43,42),
8909 (4,8,18,18,27,25,45,43),
8910 (4,8,19,18,27,26,46,44),
8911 (4,8,20,18,28,26,48,46),
8912 (4,8,21,19,28,26,49,47),
8913 (4,8,22,19,28,27,51,49),
8914 (4,8,23,19,28,27,52,50),
8915 (4,8,24,19,29,28,54,52),
8916 (4,8,25,19,29,28,55,53),
8917 (4,8,26,19,29,28,57,55),
8918 (4,8,27,19,29,29,59,56),
8919 (4,8,28,20,29,29,60,58),
8920 (4,8,29,20,30,30,62,59),
8921 (4,8,30,20,30,30,64,61),
8922 (4,8,31,20,30,30,65,63),
8923 (4,8,32,20,30,31,67,64),
8924 (4,8,33,20,31,31,69,66),
8925 (4,8,34,21,31,32,70,68),
8926 (4,8,35,21,31,32,72,69),
8927 (4,8,36,21,32,33,74,71),
8928 (4,8,37,21,32,33,76,73),
8929 (4,8,38,21,32,33,78,75),
8930 (4,8,39,22,32,34,80,76),
8931 (4,8,40,22,33,34,81,78),
8932 (4,8,41,22,33,35,83,80),
8933 (4,8,42,22,33,35,85,82),
8934 (4,8,43,22,33,36,87,84),
8935 (4,8,44,22,34,36,89,86),
8936 (4,8,45,23,34,37,91,88),
8937 (4,8,46,23,34,37,93,90),
8938 (4,8,47,23,35,38,95,92),
8939 (4,8,48,23,35,38,98,94),
8940 (4,8,49,24,35,39,100,96),
8941 (4,8,50,24,36,39,107,98),
8942 (4,8,51,24,36,40,109,100),
8943 (4,8,52,24,36,40,111,102),
8944 (4,8,53,24,37,41,113,104),
8945 (4,8,54,25,37,42,116,106),
8946 (4,8,55,25,37,42,118,109),
8947 (4,8,56,25,38,43,120,111),
8948 (4,8,57,25,38,43,123,113),
8949 (4,8,58,26,38,44,126,115),
8950 (4,8,59,26,39,44,129,118),
8951 (4,8,60,26,39,45,131,120),
8952 (4,8,61,26,39,46,133,122),
8953 (4,8,62,26,40,46,136,125),
8954 (4,8,63,27,40,47,139,127),
8955 (4,8,64,27,40,47,141,130),
8956 (4,8,65,27,41,48,144,132),
8957 (4,8,66,28,41,49,147,135),
8958 (4,8,67,28,42,49,150,137),
8959 (4,8,68,28,42,50,153,140),
8960 (4,8,69,28,42,51,156,143),
8961 (4,8,70,29,43,51,158,145),
8962 (4,8,71,29,43,52,161,148),
8963 (4,8,72,29,44,53,164,151),
8964 (4,8,73,29,44,54,168,154),
8965 (4,8,74,30,45,54,171,156),
8966 (4,8,75,30,45,55,174,159),
8967 (4,8,76,30,45,56,177,162),
8968 (4,8,77,31,46,57,180,165),
8969 (4,8,78,31,46,57,183,168),
8970 (4,8,79,31,47,58,186,171),
8971 (4,8,80,32,47,59,190,174),
8972 (4,9,81,56,72,91,169,169),
8973 (4,9,82,56,72,92,172,172),
8974 (4,9,83,57,73,94,175,175),
8975 (4,9,84,58,74,95,178,178),
8976 (4,9,85,59,75,96,181,181),
8977 (4,9,10,19,27,26,31,32),
8978 (4,9,11,19,28,26,33,33),
8979 (4,9,12,19,28,27,34,34),
8980 (4,9,13,20,28,27,35,36),
8981 (4,9,14,20,29,28,36,37),
8982 (4,9,15,20,29,29,37,38),
8983 (4,9,16,21,30,29,38,39),
8984 (4,9,17,21,30,30,40,41),
8985 (4,9,18,21,30,30,41,42),
8986 (4,9,19,22,31,31,42,43),
8987 (4,9,20,22,31,32,43,45),
8988 (4,9,21,22,32,32,45,46),
8989 (4,9,22,23,32,33,46,47),
8990 (4,9,23,23,33,34,47,49),
8991 (4,9,24,24,33,34,49,50),
8992 (4,9,25,24,34,35,50,52),
8993 (4,9,26,24,34,36,51,53),
8994 (4,9,27,25,34,36,53,54),
8995 (4,9,28,25,35,37,54,56),
8996 (4,9,29,26,35,38,56,57),
8997 (4,9,30,26,36,38,57,59),
8998 (4,9,31,26,36,39,58,61),
8999 (4,9,32,27,37,40,60,62),
9000 (4,9,33,27,37,41,61,64),
9001 (4,9,34,28,38,41,63,65),
9002 (4,9,35,28,38,42,64,67),
9003 (4,9,36,29,39,43,66,69),
9004 (4,9,37,29,40,44,68,70),
9005 (4,9,38,29,40,45,69,72),
9006 (4,9,39,30,41,45,71,74),
9007 (4,9,40,30,41,46,72,75),
9008 (4,9,41,31,42,47,74,77),
9009 (4,9,42,31,42,48,76,79),
9010 (4,9,43,32,43,49,77,81),
9011 (4,9,44,32,43,50,79,82),
9012 (4,9,45,33,44,50,81,84),
9013 (4,9,46,33,45,51,83,86),
9014 (4,9,47,34,45,52,84,88),
9015 (4,9,48,34,46,53,86,90),
9016 (4,9,49,35,47,54,88,92),
9017 (4,9,50,35,47,55,94,94),
9018 (4,9,51,36,48,56,96,96),
9019 (4,9,52,36,48,57,98,98),
9020 (4,9,53,37,49,58,100,100),
9021 (4,9,54,38,50,59,102,102),
9022 (4,9,55,38,50,60,105,104),
9023 (4,9,56,39,51,61,107,106),
9024 (4,9,57,39,52,62,109,108),
9025 (4,9,58,40,53,63,111,111),
9026 (4,9,59,40,53,64,113,113),
9027 (4,9,60,41,54,65,115,115),
9028 (4,9,61,42,55,66,117,117),
9029 (4,9,62,42,55,67,119,120),
9030 (4,9,63,43,56,68,122,122),
9031 (4,9,64,43,57,69,124,124),
9032 (4,9,65,44,58,71,127,127),
9033 (4,9,66,45,59,72,129,129),
9034 (4,9,67,45,59,73,132,132),
9035 (4,9,68,46,60,74,134,134),
9036 (4,9,69,47,61,75,136,136),
9037 (4,9,70,47,62,76,139,139),
9038 (4,9,71,48,63,78,141,142),
9039 (4,9,72,49,63,79,144,144),
9040 (4,9,73,50,64,80,147,147),
9041 (4,9,74,50,65,81,150,150),
9042 (4,9,75,51,66,83,152,152),
9043 (4,9,76,52,67,84,155,155),
9044 (4,9,77,53,68,85,158,158),
9045 (4,9,78,53,69,87,160,161),
9046 (4,9,79,54,70,88,163,164),
9047 (4,9,80,55,71,89,166,166),
9048 (4,11,1,18,25,19,22,22),
9049 (4,11,2,19,25,20,23,23),
9050 (4,11,3,19,26,20,24,24),
9051 (4,11,4,20,26,21,25,26),
9052 (4,11,5,20,27,22,26,27),
9053 (4,11,6,21,27,22,27,28),
9054 (4,11,7,21,28,23,28,29),
9055 (4,11,8,22,28,24,29,30),
9056 (4,11,9,23,29,24,30,32),
9057 (4,11,10,23,29,25,32,33),
9058 (4,11,11,24,30,26,33,34),
9059 (4,11,12,24,31,26,34,35),
9060 (4,11,13,25,31,27,35,37),
9061 (4,11,14,26,32,28,36,38),
9062 (4,11,15,26,32,29,37,39),
9063 (4,11,16,27,33,29,38,41),
9064 (4,11,17,28,33,30,40,42),
9065 (4,11,18,28,34,31,41,43),
9066 (4,11,19,29,35,32,42,45),
9067 (4,11,20,30,35,32,43,46),
9068 (4,11,21,30,36,33,45,48),
9069 (4,11,22,31,36,34,46,49),
9070 (4,11,23,32,37,35,47,51),
9071 (4,11,24,32,38,36,48,52),
9072 (4,11,25,33,38,36,50,53),
9073 (4,11,26,34,39,37,51,55),
9074 (4,11,27,35,40,38,52,56),
9075 (4,11,28,35,40,39,54,58),
9076 (4,11,29,36,41,40,55,59),
9077 (4,11,30,37,42,41,56,61),
9078 (4,11,31,38,42,42,58,62),
9079 (4,11,32,38,43,42,59,64),
9080 (4,11,33,39,44,43,60,66),
9081 (4,11,34,40,44,44,62,67),
9082 (4,11,35,41,45,45,63,69),
9083 (4,11,36,42,46,46,65,70),
9084 (4,11,37,42,47,47,66,72),
9085 (4,11,38,43,47,48,67,74),
9086 (4,11,39,44,48,49,69,75),
9087 (4,11,40,45,49,50,70,77),
9088 (4,11,41,46,50,51,72,79),
9089 (4,11,42,46,50,52,73,80),
9090 (4,11,43,47,51,53,75,82),
9091 (4,11,44,48,52,54,76,84),
9092 (4,11,45,49,53,55,78,85),
9093 (4,11,46,50,54,56,79,87),
9094 (4,11,47,51,54,57,81,89),
9095 (4,11,48,52,55,58,83,91),
9096 (4,11,49,53,56,59,84,93),
9097 (4,11,50,53,57,60,86,94),
9098 (4,11,51,54,58,61,87,96),
9099 (4,11,52,55,59,62,89,98),
9100 (4,11,53,56,59,63,91,100),
9101 (4,11,54,57,60,64,92,102),
9102 (4,11,55,58,61,65,94,103),
9103 (4,11,56,59,62,66,95,105),
9104 (4,11,57,60,63,67,97,107),
9105 (4,11,58,61,64,68,99,109),
9106 (4,11,59,62,65,69,101,111),
9107 (4,11,60,63,66,70,102,113),
9108 (4,11,61,64,66,72,104,115),
9109 (4,11,62,65,67,73,106,117),
9110 (4,11,63,66,68,74,107,119),
9111 (4,11,64,67,69,75,109,121),
9112 (4,11,65,68,70,76,111,123),
9113 (4,11,66,69,71,77,113,125),
9114 (4,11,67,70,72,78,115,127),
9115 (4,11,68,71,73,80,116,129),
9116 (4,11,69,72,74,81,118,131),
9117 (4,11,70,73,75,82,120,133),
9118 (4,11,71,75,76,83,122,135),
9119 (4,11,72,76,78,85,125,138),
9120 (4,11,73,77,79,86,127,140),
9121 (4,11,74,78,80,88,131,143),
9122 (4,11,75,80,81,89,133,145),
9123 (4,11,76,81,82,91,134,148),
9124 (4,11,77,82,83,92,136,151),
9125 (4,11,78,84,85,94,138,153),
9126 (4,11,79,85,86,95,141,156),
9127 (4,11,80,86,87,97,143,159),
9128 (4,11,81,87,87,99,146,161),
9129 (4,11,82,88,89,101,148,164),
9130 (4,11,83,90,90,102,151,167),
9131 (4,11,84,91,91,104,160,170),
9132 (4,11,85,92,93,106,160,173),
9133 (5,1,1,22,18,23,18,25),
9134 (5,1,2,23,19,24,18,25),
9135 (5,1,3,25,20,25,18,26),
9136 (5,1,4,26,20,26,18,26),
9137 (5,1,5,27,21,28,18,26),
9138 (5,1,6,29,22,29,18,26),
9139 (5,1,7,30,23,30,19,27),
9140 (5,1,8,31,24,31,19,27),
9141 (5,1,9,33,25,33,19,27),
9142 (5,1,10,34,25,34,19,28),
9143 (5,1,11,35,26,35,19,28),
9144 (5,1,12,37,27,36,19,28),
9145 (5,1,13,38,28,38,19,28),
9146 (5,1,14,40,29,39,19,29),
9147 (5,1,15,41,30,40,19,29),
9148 (5,1,16,43,31,42,20,29),
9149 (5,1,17,44,32,43,20,30),
9150 (5,1,18,46,33,44,20,30),
9151 (5,1,19,47,34,46,20,31),
9152 (5,1,20,49,34,47,20,31),
9153 (5,1,21,50,35,49,20,31),
9154 (5,1,22,52,36,50,20,32),
9155 (5,1,23,53,37,51,21,32),
9156 (5,1,24,55,38,53,21,32),
9157 (5,1,25,57,39,54,21,33),
9158 (5,1,26,58,40,56,21,33),
9159 (5,1,27,60,41,57,21,34),
9160 (5,1,28,62,42,59,21,34),
9161 (5,1,29,63,43,60,21,34),
9162 (5,1,30,65,44,62,22,35),
9163 (5,1,31,67,46,63,22,35),
9164 (5,1,32,68,47,65,22,36),
9165 (5,1,33,70,48,67,22,36),
9166 (5,1,34,72,49,68,22,36),
9167 (5,1,35,74,50,70,23,37),
9168 (5,1,36,75,51,71,23,37),
9169 (5,1,37,77,52,73,23,38),
9170 (5,1,38,79,53,75,23,38),
9171 (5,1,39,81,54,76,23,39),
9172 (5,1,40,83,55,78,24,39),
9173 (5,1,41,84,57,80,24,40),
9174 (5,1,42,86,58,81,24,40),
9175 (5,1,43,88,59,83,24,41),
9176 (5,1,44,90,60,85,24,41),
9177 (5,1,45,92,61,86,25,42),
9178 (5,1,46,94,62,88,25,42),
9179 (5,1,47,96,64,90,25,43),
9180 (5,1,48,98,65,92,25,43),
9181 (5,1,49,100,66,93,25,44),
9182 (5,1,50,102,67,95,26,44),
9183 (5,1,51,104,69,97,26,45),
9184 (5,1,52,106,70,99,26,45),
9185 (5,1,53,108,71,101,26,46),
9186 (5,1,54,110,72,103,27,46),
9187 (5,1,55,112,74,104,27,47),
9188 (5,1,56,114,75,106,27,48),
9189 (5,1,57,116,76,108,27,48),
9190 (5,1,58,118,78,110,28,49),
9191 (5,1,59,120,79,112,28,49),
9192 (5,1,60,122,80,114,28,50),
9193 (5,1,61,124,82,116,28,50),
9194 (5,1,62,126,83,118,29,51),
9195 (5,1,63,128,84,120,29,52),
9196 (5,1,64,131,86,122,29,52),
9197 (5,1,65,133,87,124,30,53),
9198 (5,1,66,135,88,126,30,53),
9199 (5,1,67,137,90,128,30,54),
9200 (5,1,68,139,91,130,30,55),
9201 (5,1,69,142,93,132,31,55),
9202 (5,1,70,144,94,134,31,56),
9203 (5,1,71,147,95,136,31,57),
9204 (5,1,72,150,97,139,31,58),
9205 (5,1,73,152,99,141,31,59),
9206 (5,1,74,155,100,144,32,59),
9207 (5,1,75,158,102,146,32,60),
9208 (5,1,76,163,104,149,32,61),
9209 (5,1,77,167,106,152,33,62),
9210 (5,1,78,167,107,154,33,62),
9211 (5,1,79,170,109,157,33,63),
9212 (5,1,80,173,111,160,34,64),
9213 (5,1,81,176,113,161,34,65),
9214 (5,1,82,188,115,164,34,65),
9215 (5,1,83,191,117,167,34,66),
9216 (5,1,84,194,119,170,35,67),
9217 (5,1,85,197,121,173,35,68),
9218 (5,2,81,159,89,146,97,112),
9219 (5,2,82,162,91,148,99,113),
9220 (5,2,83,165,92,151,100,115),
9221 (5,2,84,169,94,153,102,117),
9222 (5,2,85,171,95,156,104,119),
9223 (5,2,10,30,23,30,23,32),
9224 (5,2,11,31,23,31,24,33),
9225 (5,2,12,32,24,32,25,33),
9226 (5,2,13,33,25,33,25,34),
9227 (5,2,14,34,25,34,26,35),
9228 (5,2,15,35,26,36,27,35),
9229 (5,2,16,37,26,37,27,36),
9230 (5,2,17,38,27,38,28,37),
9231 (5,2,18,39,28,39,29,38),
9232 (5,2,19,40,28,40,29,38),
9233 (5,2,20,41,29,41,30,39),
9234 (5,2,21,42,30,42,31,40),
9235 (5,2,22,44,30,43,32,41),
9236 (5,2,23,45,31,44,32,42),
9237 (5,2,24,46,32,46,33,42),
9238 (5,2,25,47,32,47,34,43),
9239 (5,2,26,49,33,48,35,44),
9240 (5,2,27,50,34,49,35,45),
9241 (5,2,28,51,34,50,36,46),
9242 (5,2,29,53,35,52,37,47),
9243 (5,2,30,54,36,53,38,47),
9244 (5,2,31,55,37,54,39,48),
9245 (5,2,32,57,37,56,40,49),
9246 (5,2,33,58,38,57,40,50),
9247 (5,2,34,60,39,58,41,51),
9248 (5,2,35,61,40,60,42,52),
9249 (5,2,36,63,41,61,43,53),
9250 (5,2,37,64,41,62,44,54),
9251 (5,2,38,66,42,64,45,55),
9252 (5,2,39,67,43,65,46,56),
9253 (5,2,40,69,44,67,47,57),
9254 (5,2,41,70,45,68,48,58),
9255 (5,2,42,72,45,70,49,59),
9256 (5,2,43,73,46,71,50,60),
9257 (5,2,44,75,47,73,50,61),
9258 (5,2,45,77,48,74,51,62),
9259 (5,2,46,78,49,76,52,63),
9260 (5,2,47,80,50,77,54,64),
9261 (5,2,48,82,51,79,55,65),
9262 (5,2,49,83,52,81,56,67),
9263 (5,2,50,85,53,82,57,68),
9264 (5,2,51,87,54,84,58,69),
9265 (5,2,52,89,55,86,59,70),
9266 (5,2,53,91,56,87,60,71),
9267 (5,2,54,92,57,89,61,72),
9268 (5,2,55,94,58,91,62,74),
9269 (5,2,56,96,59,93,63,75),
9270 (5,2,57,98,60,94,64,76),
9271 (5,2,58,100,61,96,66,77),
9272 (5,2,59,107,62,98,67,79),
9273 (5,2,60,107,63,100,68,80),
9274 (5,2,61,107,64,102,69,81),
9275 (5,2,62,113,65,104,70,83),
9276 (5,2,63,115,66,106,72,84),
9277 (5,2,64,115,67,108,73,85),
9278 (5,2,65,115,69,110,74,87),
9279 (5,2,66,117,70,112,76,88),
9280 (5,2,67,119,71,114,77,90),
9281 (5,2,68,121,72,116,78,91),
9282 (5,2,69,129,73,118,80,92),
9283 (5,2,70,129,75,120,81,94),
9284 (5,2,71,129,76,122,82,95),
9285 (5,2,72,136,77,125,84,97),
9286 (5,2,73,138,78,127,85,99),
9287 (5,2,74,138,80,129,87,100),
9288 (5,2,75,143,81,131,88,102),
9289 (5,2,76,143,82,134,90,103),
9290 (5,2,77,149,84,136,91,105),
9291 (5,2,78,152,85,138,93,107),
9292 (5,2,79,154,86,141,94,108),
9293 (5,2,80,154,88,143,96,110),
9294 (5,3,1,19,21,22,18,26),
9295 (5,3,81,74,192,130,89,104),
9296 (5,3,82,76,195,133,91,105),
9297 (5,3,83,77,198,135,92,107),
9298 (5,3,84,78,202,137,94,108),
9299 (5,3,85,79,206,139,95,110),
9300 (5,3,2,17,26,21,25,21),
9301 (5,3,3,18,28,22,25,21),
9302 (5,3,4,18,29,23,26,22),
9303 (5,3,5,19,30,24,26,23),
9304 (5,3,6,19,32,25,27,23),
9305 (5,3,7,20,33,26,27,24),
9306 (5,3,8,20,35,27,28,25),
9307 (5,3,9,21,36,27,29,25),
9308 (5,3,10,23,32,28,23,31),
9309 (5,3,11,23,33,29,23,32),
9310 (5,3,12,24,35,30,24,33),
9311 (5,3,13,24,36,31,25,33),
9312 (5,3,14,25,37,32,25,34),
9313 (5,3,15,25,39,33,26,34),
9314 (5,3,16,26,40,34,26,35),
9315 (5,3,17,26,41,35,27,36),
9316 (5,3,18,27,43,36,28,37),
9317 (5,3,19,27,44,37,28,37),
9318 (5,3,20,28,46,38,29,38),
9319 (5,3,21,28,47,39,30,39),
9320 (5,3,22,29,49,40,30,39),
9321 (5,3,23,29,50,41,31,40),
9322 (5,3,24,30,52,42,32,41),
9323 (5,3,25,30,53,43,32,42),
9324 (5,3,26,31,55,44,33,42),
9325 (5,3,27,31,57,45,34,43),
9326 (5,3,28,32,58,46,34,44),
9327 (5,3,29,32,60,47,35,45),
9328 (5,3,30,33,62,48,36,45),
9329 (5,3,31,33,63,50,37,46),
9330 (5,3,32,34,65,51,37,47),
9331 (5,3,33,35,67,52,38,48),
9332 (5,3,34,35,68,53,39,49),
9333 (5,3,35,36,70,54,40,50),
9334 (5,3,36,37,72,56,41,51),
9335 (5,3,37,37,74,57,41,51),
9336 (5,3,38,38,76,58,42,52),
9337 (5,3,39,38,78,59,43,53),
9338 (5,3,40,39,79,61,44,54),
9339 (5,3,41,40,81,62,45,55),
9340 (5,3,42,40,83,63,45,56),
9341 (5,3,43,41,85,64,46,57),
9342 (5,3,44,42,87,66,47,58),
9343 (5,3,45,42,89,67,48,59),
9344 (5,3,46,43,91,69,49,60),
9345 (5,3,47,44,93,70,50,61),
9346 (5,3,48,45,96,71,51,62),
9347 (5,3,49,45,98,73,52,63),
9348 (5,3,50,46,100,74,53,64),
9349 (5,3,51,47,102,76,54,65),
9350 (5,3,52,48,104,77,55,66),
9351 (5,3,53,48,106,79,56,67),
9352 (5,3,54,49,109,80,57,68),
9353 (5,3,55,50,111,82,58,69),
9354 (5,3,56,51,113,83,59,70),
9355 (5,3,57,52,116,85,60,72),
9356 (5,3,58,52,118,87,61,73),
9357 (5,3,59,53,121,88,62,74),
9358 (5,3,60,54,123,90,63,75),
9359 (5,3,61,55,125,92,64,76),
9360 (5,3,62,56,128,93,65,77),
9361 (5,3,63,57,131,95,66,79),
9362 (5,3,64,57,133,97,67,80),
9363 (5,3,65,58,136,99,69,81),
9364 (5,3,66,59,138,100,70,82),
9365 (5,3,67,60,141,102,71,84),
9366 (5,3,68,61,144,104,72,85),
9367 (5,3,69,62,147,106,73,86),
9368 (5,3,70,63,149,108,75,88),
9369 (5,3,71,64,152,110,76,89),
9370 (5,3,72,65,155,112,77,90),
9371 (5,3,73,66,158,114,78,92),
9372 (5,3,74,67,161,116,80,93),
9373 (5,3,75,68,164,118,81,95),
9374 (5,3,76,69,175,120,82,96),
9375 (5,3,77,70,178,122,84,98),
9376 (5,3,78,71,181,124,85,99),
9377 (5,3,79,72,184,126,86,101),
9378 (5,3,80,73,188,128,88,102),
9379 (5,4,1,20,21,22,18,25),
9380 (5,4,2,21,22,23,18,25),
9381 (5,4,3,22,24,23,18,26),
9382 (5,4,4,22,25,24,18,26),
9383 (5,4,5,23,27,25,19,26),
9384 (5,4,6,24,28,25,19,27),
9385 (5,4,7,25,30,26,19,27),
9386 (5,4,8,25,31,27,19,27),
9387 (5,4,9,26,33,28,19,28),
9388 (5,4,10,27,34,28,19,28),
9389 (5,4,11,28,36,29,20,29),
9390 (5,4,12,29,38,30,20,29),
9391 (5,4,13,30,39,31,20,29),
9392 (5,4,14,31,41,32,20,30),
9393 (5,4,15,31,42,32,20,30),
9394 (5,4,16,32,44,33,21,31),
9395 (5,4,17,33,46,34,21,31),
9396 (5,4,18,34,47,35,21,32),
9397 (5,4,19,35,49,36,21,32),
9398 (5,4,20,36,51,36,21,32),
9399 (5,4,21,37,52,37,22,33),
9400 (5,4,22,38,54,38,22,33),
9401 (5,4,23,39,56,39,22,34),
9402 (5,4,24,40,58,40,22,34),
9403 (5,4,25,41,60,41,23,35),
9404 (5,4,26,42,61,42,23,35),
9405 (5,4,27,43,63,43,23,36),
9406 (5,4,28,44,65,44,23,36),
9407 (5,4,29,45,67,44,24,37),
9408 (5,4,30,46,69,45,24,37),
9409 (5,4,31,47,71,46,24,38),
9410 (5,4,32,48,72,47,24,38),
9411 (5,4,33,49,74,48,25,39),
9412 (5,4,34,50,76,49,25,39),
9413 (5,4,35,51,78,50,25,40),
9414 (5,4,36,52,80,51,25,41),
9415 (5,4,37,53,82,52,26,41),
9416 (5,4,38,54,84,53,26,42),
9417 (5,4,39,55,86,54,26,42),
9418 (5,4,40,56,88,55,27,43),
9419 (5,4,41,57,90,56,27,43),
9420 (5,4,42,59,92,57,27,44),
9421 (5,4,43,60,94,58,27,45),
9422 (5,4,44,61,96,59,28,45),
9423 (5,4,45,62,99,60,28,46),
9424 (5,4,46,63,101,61,28,46),
9425 (5,4,47,64,103,63,29,47),
9426 (5,4,48,66,105,64,29,48),
9427 (5,4,49,67,107,65,29,48),
9428 (5,4,50,68,109,66,30,49),
9429 (5,4,51,69,111,67,30,50),
9430 (5,4,52,70,114,68,30,50),
9431 (5,4,53,72,116,69,31,51),
9432 (5,4,54,73,118,70,31,52),
9433 (5,4,55,74,120,72,31,52),
9434 (5,4,56,75,123,73,32,53),
9435 (5,4,57,77,125,74,32,54),
9436 (5,4,58,78,127,75,32,54),
9437 (5,4,59,79,130,76,33,55),
9438 (5,4,60,81,132,77,33,56),
9439 (5,4,61,82,134,79,34,56),
9440 (5,4,62,83,137,80,34,57),
9441 (5,4,63,84,139,81,34,58),
9442 (5,4,64,86,141,82,35,59),
9443 (5,4,65,87,144,84,35,59),
9444 (5,4,66,88,146,85,35,60),
9445 (5,4,67,90,149,86,36,61),
9446 (5,4,68,91,151,87,36,61),
9447 (5,4,69,93,154,89,37,62),
9448 (5,4,70,94,156,90,37,63),
9449 (5,4,71,96,159,91,37,64),
9450 (5,4,72,98,162,93,38,64),
9451 (5,4,73,99,165,95,38,65),
9452 (5,4,74,101,168,96,39,66),
9453 (5,4,75,103,171,98,39,67),
9454 (5,4,76,104,174,99,39,68),
9455 (5,4,77,106,177,101,40,69),
9456 (5,4,78,108,181,103,40,70),
9457 (5,4,79,110,184,104,41,71),
9458 (5,4,80,112,187,106,41,72),
9459 (5,4,81,113,200,107,42,73),
9460 (5,4,82,115,203,108,42,73),
9461 (5,4,83,117,207,110,43,74),
9462 (5,4,84,119,211,112,43,75),
9463 (5,4,85,121,214,114,44,76),
9464 (5,5,1,19,18,21,20,28),
9465 (5,5,2,19,18,21,21,29),
9466 (5,5,3,19,18,22,23,31),
9467 (5,5,4,19,19,22,24,32),
9468 (5,5,5,20,19,22,25,33),
9469 (5,5,6,20,19,23,27,35),
9470 (5,5,7,20,19,23,28,36),
9471 (5,5,8,20,20,24,29,38),
9472 (5,5,9,20,20,24,31,39),
9473 (5,5,10,20,20,24,32,40),
9474 (5,5,11,21,20,25,34,42),
9475 (5,5,12,21,21,25,35,43),
9476 (5,5,13,21,21,26,37,45),
9477 (5,5,14,21,21,26,38,46),
9478 (5,5,15,21,21,26,39,48),
9479 (5,5,16,22,22,27,41,50),
9480 (5,5,17,22,22,27,42,51),
9481 (5,5,18,22,22,28,44,53),
9482 (5,5,19,22,23,28,46,54),
9483 (5,5,20,22,23,29,47,56),
9484 (5,5,21,23,23,29,49,57),
9485 (5,5,22,23,23,30,50,59),
9486 (5,5,23,23,24,30,52,61),
9487 (5,5,24,23,24,31,53,62),
9488 (5,5,25,24,24,31,55,64),
9489 (5,5,26,24,25,32,57,66),
9490 (5,5,27,24,25,32,58,68),
9491 (5,5,28,24,25,33,60,69),
9492 (5,5,29,25,26,33,62,71),
9493 (5,5,30,25,26,34,63,73),
9494 (5,5,31,25,26,34,65,75),
9495 (5,5,32,25,27,35,67,76),
9496 (5,5,33,26,27,35,69,78),
9497 (5,5,34,26,27,36,70,80),
9498 (5,5,35,26,28,36,72,82),
9499 (5,5,36,26,28,37,74,84),
9500 (5,5,37,27,28,37,76,86),
9501 (5,5,38,27,29,38,77,87),
9502 (5,5,39,27,29,38,79,89),
9503 (5,5,40,28,30,39,81,91),
9504 (5,5,41,28,30,40,83,93),
9505 (5,5,42,28,30,40,85,95),
9506 (5,5,43,28,31,41,87,97),
9507 (5,5,44,29,31,41,89,99),
9508 (5,5,45,29,32,42,91,101),
9509 (5,5,46,29,32,43,92,103),
9510 (5,5,47,30,32,43,94,105),
9511 (5,5,48,30,33,44,96,107),
9512 (5,5,49,30,33,44,98,109),
9513 (5,5,50,31,34,45,100,111),
9514 (5,5,51,31,34,46,102,113),
9515 (5,5,52,31,35,46,104,115),
9516 (5,5,53,32,35,47,106,118),
9517 (5,5,54,32,35,48,108,120),
9518 (5,5,55,32,36,48,110,122),
9519 (5,5,56,33,36,49,113,124),
9520 (5,5,57,33,37,50,115,126),
9521 (5,5,58,33,37,50,117,128),
9522 (5,5,59,34,38,51,119,131),
9523 (5,5,60,34,38,52,121,133),
9524 (5,5,61,34,39,52,123,135),
9525 (5,5,62,35,39,53,125,137),
9526 (5,5,63,35,40,54,127,140),
9527 (5,5,64,36,40,55,130,142),
9528 (5,5,65,36,41,55,132,144),
9529 (5,5,66,36,41,56,134,147),
9530 (5,5,67,37,41,57,136,149),
9531 (5,5,68,37,42,58,138,151),
9532 (5,5,69,38,42,58,141,154),
9533 (5,5,70,38,43,59,143,156),
9534 (5,5,71,38,44,60,146,159),
9535 (5,5,72,39,44,60,149,162),
9536 (5,5,73,39,45,61,152,165),
9537 (5,5,74,40,45,62,157,168),
9538 (5,5,75,40,46,63,157,171),
9539 (5,5,76,40,47,64,160,174),
9540 (5,5,77,41,47,65,163,177),
9541 (5,5,78,41,48,66,166,180),
9542 (5,5,79,42,48,67,169,183),
9543 (5,5,80,42,49,68,172,186),
9544 (5,5,81,43,50,68,183,190),
9545 (5,5,82,43,50,68,187,193),
9546 (5,5,83,44,51,69,191,196),
9547 (5,5,84,44,52,70,194,200),
9548 (5,5,85,45,52,71,197,203),
9549 (5,6,1,22,18,23,18,25),
9550 (5,6,2,23,19,24,18,25),
9551 (5,6,3,25,20,25,18,26),
9552 (5,6,4,26,20,26,18,26),
9553 (5,6,5,27,21,28,18,26),
9554 (5,6,6,29,22,29,18,26),
9555 (5,6,7,30,23,30,19,27),
9556 (5,6,8,31,24,31,19,27),
9557 (5,6,9,33,25,33,19,27),
9558 (5,6,10,34,25,34,19,28),
9559 (5,6,11,35,26,35,19,28),
9560 (5,6,12,37,27,36,19,28),
9561 (5,6,13,38,28,38,19,28),
9562 (5,6,14,40,29,39,19,29),
9563 (5,6,15,41,30,40,19,29),
9564 (5,6,16,43,31,42,20,29),
9565 (5,6,17,44,32,43,20,30),
9566 (5,6,18,46,33,44,20,30),
9567 (5,6,19,47,34,46,20,31),
9568 (5,6,20,49,34,47,20,31),
9569 (5,6,21,50,35,49,20,31),
9570 (5,6,22,52,36,50,20,32),
9571 (5,6,23,53,37,51,21,32),
9572 (5,6,24,55,38,53,21,32),
9573 (5,6,25,57,39,54,21,33),
9574 (5,6,26,58,40,56,21,33),
9575 (5,6,27,60,41,57,21,34),
9576 (5,6,28,62,42,59,21,34),
9577 (5,6,29,63,43,60,21,34),
9578 (5,6,30,65,44,62,22,35),
9579 (5,6,31,67,46,63,22,35),
9580 (5,6,32,68,47,65,22,36),
9581 (5,6,33,70,48,67,22,36),
9582 (5,6,34,72,49,68,22,36),
9583 (5,6,35,74,50,70,23,37),
9584 (5,6,36,75,51,71,23,37),
9585 (5,6,37,77,52,73,23,38),
9586 (5,6,38,79,53,75,23,38),
9587 (5,6,39,81,54,76,23,39),
9588 (5,6,40,83,55,78,24,39),
9589 (5,6,41,84,57,80,24,40),
9590 (5,6,42,86,58,81,24,40),
9591 (5,6,43,88,59,83,24,41),
9592 (5,6,44,90,60,85,24,41),
9593 (5,6,45,92,61,86,25,42),
9594 (5,6,46,94,62,88,25,42),
9595 (5,6,47,96,64,90,25,43),
9596 (5,6,48,98,65,92,25,43),
9597 (5,6,49,100,66,93,25,44),
9598 (5,6,50,102,67,95,26,44),
9599 (5,6,51,103,67,96,26,45),
9600 (5,6,52,104,68,97,26,45),
9601 (5,6,53,105,69,98,26,46),
9602 (5,6,54,106,70,99,27,46),
9603 (5,6,55,107,71,100,27,47),
9604 (5,6,56,110,73,103,27,48),
9605 (5,6,57,112,74,105,27,48),
9606 (5,6,58,114,75,107,28,49),
9607 (5,6,59,119,77,109,28,49),
9608 (5,6,60,122,78,111,28,50),
9609 (5,6,61,124,79,113,28,51),
9610 (5,6,62,127,81,115,28,51),
9611 (5,6,63,129,82,118,29,52),
9612 (5,6,64,136,84,120,29,52),
9613 (5,6,65,137,85,123,29,53),
9614 (5,6,66,138,87,125,29,54),
9615 (5,6,67,141,88,127,30,54),
9616 (5,6,68,143,90,129,30,55),
9617 (5,6,69,146,91,132,30,56),
9618 (5,6,70,149,93,134,30,56),
9619 (5,6,71,152,95,137,31,57),
9620 (5,6,72,154,96,139,31,58),
9621 (5,6,73,157,98,142,31,59),
9622 (5,6,74,158,100,145,31,59),
9623 (5,6,75,159,101,147,32,60),
9624 (5,6,76,162,103,150,32,61),
9625 (5,6,77,167,105,152,32,62),
9626 (5,6,78,173,106,155,32,62),
9627 (5,6,79,174,108,158,33,63),
9628 (5,6,80,174,110,161,33,64),
9629 (5,6,81,177,112,163,33,65),
9630 (5,6,82,177,114,165,34,65),
9631 (5,6,83,184,116,168,34,66),
9632 (5,6,84,184,118,171,34,67),
9633 (5,6,85,190,119,174,34,68),
9634 (5,7,81,121,73,138,134,151),
9635 (5,7,82,123,75,141,137,153),
9636 (5,7,83,126,76,143,137,156),
9637 (5,7,84,128,77,145,137,158),
9638 (5,7,85,130,78,148,143,161),
9639 (5,7,10,27,22,29,26,35),
9640 (5,7,11,28,22,30,27,36),
9641 (5,7,12,29,23,31,28,37),
9642 (5,7,13,29,23,32,29,38),
9643 (5,7,14,30,24,33,30,39),
9644 (5,7,15,31,24,34,31,41),
9645 (5,7,16,32,25,35,32,42),
9646 (5,7,17,33,25,36,33,43),
9647 (5,7,18,34,26,37,34,44),
9648 (5,7,19,35,26,38,35,45),
9649 (5,7,20,36,27,39,36,46),
9650 (5,7,21,37,27,40,37,47),
9651 (5,7,22,37,28,41,38,48),
9652 (5,7,23,38,28,42,39,49),
9653 (5,7,24,39,29,43,40,51),
9654 (5,7,25,40,29,45,41,52),
9655 (5,7,26,41,30,46,42,53),
9656 (5,7,27,42,30,47,43,54),
9657 (5,7,28,43,31,48,44,55),
9658 (5,7,29,44,31,49,45,57),
9659 (5,7,30,45,32,50,46,58),
9660 (5,7,31,47,32,52,48,59),
9661 (5,7,32,48,33,53,49,61),
9662 (5,7,33,49,34,54,50,62),
9663 (5,7,34,50,34,55,51,63),
9664 (5,7,35,51,35,57,52,65),
9665 (5,7,36,52,36,58,54,66),
9666 (5,7,37,53,36,59,55,67),
9667 (5,7,38,54,37,61,56,69),
9668 (5,7,39,55,37,62,57,70),
9669 (5,7,40,57,38,63,59,72),
9670 (5,7,41,58,39,65,60,73),
9671 (5,7,42,59,39,66,61,75),
9672 (5,7,43,60,40,68,62,76),
9673 (5,7,44,62,41,69,64,78),
9674 (5,7,45,63,41,71,65,79),
9675 (5,7,46,64,42,72,67,81),
9676 (5,7,47,65,43,74,68,82),
9677 (5,7,48,67,44,75,69,84),
9678 (5,7,49,68,44,77,71,86),
9679 (5,7,50,69,45,78,72,87),
9680 (5,7,51,71,46,80,74,89),
9681 (5,7,52,72,47,81,75,91),
9682 (5,7,53,74,47,83,77,92),
9683 (5,7,54,75,48,85,78,94),
9684 (5,7,55,76,49,86,80,96),
9685 (5,7,56,78,50,88,81,98),
9686 (5,7,57,79,51,90,83,99),
9687 (5,7,58,81,51,91,85,101),
9688 (5,7,59,82,52,93,86,103),
9689 (5,7,60,84,53,95,88,105),
9690 (5,7,61,86,54,97,90,107),
9691 (5,7,62,87,55,99,91,109),
9692 (5,7,63,89,56,100,93,111),
9693 (5,7,64,90,56,102,95,113),
9694 (5,7,65,92,57,104,97,115),
9695 (5,7,66,94,58,106,98,117),
9696 (5,7,67,95,59,108,100,119),
9697 (5,7,68,97,60,110,102,121),
9698 (5,7,69,99,61,112,104,123),
9699 (5,7,70,101,62,114,106,125),
9700 (5,7,71,102,63,116,108,127),
9701 (5,7,72,104,64,118,110,130),
9702 (5,7,73,106,65,120,112,132),
9703 (5,7,74,108,66,123,114,134),
9704 (5,7,75,110,67,125,116,136),
9705 (5,7,76,112,68,127,118,139),
9706 (5,7,77,113,69,129,120,141),
9707 (5,7,78,115,70,131,122,143),
9708 (5,7,79,117,71,134,124,146),
9709 (5,7,80,119,72,136,126,148),
9710 (5,8,1,19,18,21,21,27),
9711 (5,8,2,19,18,21,22,28),
9712 (5,8,3,19,18,22,24,30),
9713 (5,8,4,19,18,22,25,31),
9714 (5,8,5,19,19,22,26,32),
9715 (5,8,6,19,19,22,28,34),
9716 (5,8,7,20,19,23,29,35),
9717 (5,8,8,20,19,23,31,36),
9718 (5,8,9,20,19,23,32,38),
9719 (5,8,10,20,19,24,34,39),
9720 (5,8,11,20,20,24,35,40),
9721 (5,8,12,20,20,24,37,42),
9722 (5,8,13,20,20,25,38,43),
9723 (5,8,14,20,20,25,40,45),
9724 (5,8,15,20,20,25,41,46),
9725 (5,8,16,21,21,26,43,48),
9726 (5,8,17,21,21,26,44,49),
9727 (5,8,18,21,21,26,46,51),
9728 (5,8,19,21,21,27,48,52),
9729 (5,8,20,21,21,27,49,54),
9730 (5,8,21,21,22,27,51,55),
9731 (5,8,22,21,22,28,52,57),
9732 (5,8,23,21,22,28,54,58),
9733 (5,8,24,22,22,29,56,60),
9734 (5,8,25,22,23,29,57,62),
9735 (5,8,26,22,23,29,59,63),
9736 (5,8,27,22,23,30,61,65),
9737 (5,8,28,22,23,30,63,67),
9738 (5,8,29,22,24,31,64,68),
9739 (5,8,30,23,24,31,66,70),
9740 (5,8,31,23,24,31,68,72),
9741 (5,8,32,23,24,32,70,73),
9742 (5,8,33,23,25,32,72,75),
9743 (5,8,34,23,25,33,73,77),
9744 (5,8,35,24,25,33,75,79),
9745 (5,8,36,24,25,34,77,80),
9746 (5,8,37,24,26,34,79,82),
9747 (5,8,38,24,26,35,81,84),
9748 (5,8,39,24,26,35,83,86),
9749 (5,8,40,24,27,35,85,88),
9750 (5,8,41,25,27,36,87,90),
9751 (5,8,42,25,27,36,89,91),
9752 (5,8,43,25,27,37,90,93),
9753 (5,8,44,25,28,37,92,95),
9754 (5,8,45,26,28,38,94,97),
9755 (5,8,46,26,28,38,96,99),
9756 (5,8,47,26,29,39,98,101),
9757 (5,8,48,26,29,39,100,103),
9758 (5,8,49,26,29,40,103,105),
9759 (5,8,50,27,30,40,105,107),
9760 (5,8,51,27,30,41,107,109),
9761 (5,8,52,27,30,42,109,111),
9762 (5,8,53,27,31,42,111,113),
9763 (5,8,54,28,31,43,113,115),
9764 (5,8,55,28,31,43,115,117),
9765 (5,8,56,28,32,44,117,119),
9766 (5,8,57,28,32,44,119,121),
9767 (5,8,58,29,32,45,122,123),
9768 (5,8,59,29,33,45,124,126),
9769 (5,8,60,29,33,46,126,128),
9770 (5,8,61,29,34,47,128,130),
9771 (5,8,62,30,34,47,131,132),
9772 (5,8,63,30,34,48,133,134),
9773 (5,8,64,30,35,48,135,136),
9774 (5,8,65,31,35,49,137,139),
9775 (5,8,66,31,35,50,140,141),
9776 (5,8,67,31,36,50,142,143),
9777 (5,8,68,31,36,51,144,145),
9778 (5,8,69,32,37,51,147,148),
9779 (5,8,70,32,37,52,149,150),
9780 (5,8,71,32,37,53,152,153),
9781 (5,8,72,32,38,54,155,156),
9782 (5,8,73,32,38,55,158,159),
9783 (5,8,74,33,39,55,161,161),
9784 (5,8,75,33,39,56,164,164),
9785 (5,8,76,33,39,57,167,167),
9786 (5,8,77,34,40,58,170,170),
9787 (5,8,78,34,40,58,173,173),
9788 (5,8,79,34,41,59,176,176),
9789 (5,8,80,35,41,60,179,179),
9790 (5,8,81,35,42,60,192,182),
9791 (5,8,82,35,42,60,195,185),
9792 (5,8,83,35,43,61,198,189),
9793 (5,8,84,36,43,62,202,192),
9794 (5,8,85,36,44,63,205,195),
9795 (5,9,1,19,18,22,20,27),
9796 (5,9,2,19,18,23,21,28),
9797 (5,9,3,20,19,23,22,29),
9798 (5,9,4,20,19,24,24,30),
9799 (5,9,5,20,19,24,25,32),
9800 (5,9,6,20,20,25,26,33),
9801 (5,9,7,21,20,25,27,34),
9802 (5,9,8,21,21,26,28,35),
9803 (5,9,9,21,21,26,30,36),
9804 (5,9,10,22,21,27,31,38),
9805 (5,9,11,22,22,28,32,39),
9806 (5,9,12,22,22,28,34,40),
9807 (5,9,13,23,23,29,35,41),
9808 (5,9,14,23,23,30,36,43),
9809 (5,9,15,23,24,30,37,44),
9810 (5,9,16,24,24,31,39,45),
9811 (5,9,17,24,24,31,40,47),
9812 (5,9,18,24,25,32,42,48),
9813 (5,9,19,25,25,33,43,49),
9814 (5,9,20,25,26,33,44,51),
9815 (5,9,21,26,26,34,46,52),
9816 (5,9,22,26,27,35,47,53),
9817 (5,9,23,26,27,36,49,55),
9818 (5,9,24,27,28,36,50,56),
9819 (5,9,25,27,28,37,52,58),
9820 (5,9,26,27,29,38,53,59),
9821 (5,9,27,28,29,38,55,60),
9822 (5,9,28,28,30,39,56,62),
9823 (5,9,29,29,30,40,58,63),
9824 (5,9,30,29,31,41,59,65),
9825 (5,9,31,30,31,41,61,66),
9826 (5,9,32,30,32,42,62,68),
9827 (5,9,33,30,32,43,64,69),
9828 (5,9,34,31,33,44,65,71),
9829 (5,9,35,31,33,45,67,73),
9830 (5,9,36,32,34,45,69,74),
9831 (5,9,37,32,34,46,70,76),
9832 (5,9,38,33,35,47,72,77),
9833 (5,9,39,33,36,48,73,79),
9834 (5,9,40,34,36,49,75,81),
9835 (5,9,41,34,37,49,77,82),
9836 (5,9,42,35,37,50,78,84),
9837 (5,9,43,35,38,51,80,86),
9838 (5,9,44,36,39,52,82,87),
9839 (5,9,45,36,39,53,84,89),
9840 (5,9,46,37,40,54,85,91),
9841 (5,9,47,37,40,55,87,92),
9842 (5,9,48,38,41,55,89,94),
9843 (5,9,49,38,42,56,91,96),
9844 (5,9,50,39,42,57,92,98),
9845 (5,9,51,39,43,58,94,100),
9846 (5,9,52,40,44,59,96,101),
9847 (5,9,53,40,44,60,98,103),
9848 (5,9,54,41,45,61,100,105),
9849 (5,9,55,41,45,62,102,107),
9850 (5,9,56,42,46,63,103,109),
9851 (5,9,57,42,47,64,105,111),
9852 (5,9,58,43,47,65,107,112),
9853 (5,9,59,43,48,66,109,114),
9854 (5,9,60,44,49,67,111,116),
9855 (5,9,61,45,50,68,113,118),
9856 (5,9,62,45,50,69,115,120),
9857 (5,9,63,46,51,70,117,122),
9858 (5,9,64,46,52,71,119,124),
9859 (5,9,65,47,52,72,121,126),
9860 (5,9,66,48,53,73,123,128),
9861 (5,9,67,48,54,74,125,130),
9862 (5,9,68,49,55,75,127,132),
9863 (5,9,69,49,55,76,129,134),
9864 (5,9,70,50,56,77,131,136),
9865 (5,9,71,51,57,86,135,147),
9866 (5,9,72,52,57,88,136,149),
9867 (5,9,73,53,58,89,138,152),
9868 (5,9,74,53,59,90,141,155),
9869 (5,9,75,54,60,92,143,157),
9870 (5,9,76,55,61,93,146,160),
9871 (5,9,77,56,62,94,149,163),
9872 (5,9,78,56,63,96,151,166),
9873 (5,9,79,57,64,97,154,169),
9874 (5,9,80,58,65,99,157,171),
9875 (5,9,81,59,66,91,167,174),
9876 (5,9,82,59,66,92,170,177),
9877 (5,9,83,60,67,94,173,180),
9878 (5,9,84,61,68,95,176,183),
9879 (5,9,85,62,69,96,179,186),
9880 (5,11,81,90,81,99,144,166),
9881 (5,11,82,91,83,101,146,169),
9882 (5,11,83,93,84,102,149,172),
9883 (5,11,84,94,85,104,158,175),
9884 (5,11,85,95,87,106,158,178),
9885 (5,11,10,25,22,25,28,36),
9886 (5,11,11,25,23,26,29,38),
9887 (5,11,12,26,23,27,30,39),
9888 (5,11,13,26,24,27,31,40),
9889 (5,11,14,27,24,28,32,41),
9890 (5,11,15,28,25,29,34,42),
9891 (5,11,16,28,25,29,35,43),
9892 (5,11,17,29,26,30,36,45),
9893 (5,11,18,29,27,31,37,46),
9894 (5,11,19,30,27,31,38,47),
9895 (5,11,20,31,28,32,39,48),
9896 (5,11,21,31,28,33,40,50),
9897 (5,11,22,32,29,34,41,51),
9898 (5,11,23,33,30,34,42,52),
9899 (5,11,24,33,30,35,44,54),
9900 (5,11,25,34,31,36,45,55),
9901 (5,11,26,35,31,37,46,56),
9902 (5,11,27,35,32,37,47,58),
9903 (5,11,28,36,33,38,48,59),
9904 (5,11,29,37,33,39,50,61),
9905 (5,11,30,37,34,40,51,62),
9906 (5,11,31,38,35,41,52,63),
9907 (5,11,32,39,35,42,54,65),
9908 (5,11,33,40,36,42,55,66),
9909 (5,11,34,40,37,43,56,68),
9910 (5,11,35,41,37,44,58,69),
9911 (5,11,36,42,38,45,59,71),
9912 (5,11,37,43,39,46,60,73),
9913 (5,11,38,44,39,47,62,74),
9914 (5,11,39,44,40,48,63,76),
9915 (5,11,40,45,41,49,65,77),
9916 (5,11,41,46,42,50,66,79),
9917 (5,11,42,47,42,51,68,81),
9918 (5,11,43,48,43,52,69,82),
9919 (5,11,44,49,44,52,71,84),
9920 (5,11,45,49,45,53,72,86),
9921 (5,11,46,50,46,54,74,88),
9922 (5,11,47,51,46,56,75,89),
9923 (5,11,48,52,47,57,77,91),
9924 (5,11,49,53,48,58,79,93),
9925 (5,11,50,54,49,59,80,95),
9926 (5,11,51,55,50,60,82,97),
9927 (5,11,52,56,51,61,84,99),
9928 (5,11,53,57,52,62,85,101),
9929 (5,11,54,58,52,63,87,103),
9930 (5,11,55,59,53,64,89,105),
9931 (5,11,56,60,54,65,91,107),
9932 (5,11,57,61,55,66,92,109),
9933 (5,11,58,62,56,68,94,111),
9934 (5,11,59,63,57,69,96,113),
9935 (5,11,60,64,58,70,98,115),
9936 (5,11,61,65,59,71,100,117),
9937 (5,11,62,66,60,72,102,119),
9938 (5,11,63,67,61,74,104,122),
9939 (5,11,64,68,62,75,106,124),
9940 (5,11,65,70,63,76,108,126),
9941 (5,11,66,71,64,78,110,128),
9942 (5,11,67,72,65,79,112,131),
9943 (5,11,68,73,66,80,114,133),
9944 (5,11,69,74,67,82,116,135),
9945 (5,11,70,75,68,83,118,138),
9946 (5,11,71,77,69,84,120,140),
9947 (5,11,72,78,71,86,123,143),
9948 (5,11,73,79,72,87,125,145),
9949 (5,11,74,80,73,89,127,148),
9950 (5,11,75,82,74,90,129,150),
9951 (5,11,76,83,75,92,132,153),
9952 (5,11,77,84,76,93,134,156),
9953 (5,11,78,86,78,95,136,158),
9954 (5,11,79,87,79,96,139,161),
9955 (5,11,80,88,80,98,141,164),
9956 (6,1,1,28,15,24,15,22),
9957 (6,1,2,29,16,25,15,22),
9958 (6,1,3,31,17,26,15,23),
9959 (6,1,4,32,17,27,15,23),
9960 (6,1,5,33,18,29,15,23),
9961 (6,1,6,34,19,30,15,23),
9962 (6,1,7,36,20,31,16,24),
9963 (6,1,8,37,21,32,16,24),
9964 (6,1,9,38,22,34,16,24),
9965 (6,1,10,40,22,35,16,25),
9966 (6,1,11,41,23,36,16,25),
9967 (6,1,12,43,24,37,16,25),
9968 (6,1,13,44,25,39,16,26),
9969 (6,1,14,46,26,40,16,26),
9970 (6,1,15,47,27,41,17,26),
9971 (6,1,16,48,28,43,17,27),
9972 (6,1,17,50,29,44,17,27),
9973 (6,1,18,51,30,45,17,27),
9974 (6,1,19,53,31,47,17,28),
9975 (6,1,20,54,32,48,17,28),
9976 (6,1,21,56,33,50,17,28),
9977 (6,1,22,58,34,51,18,29),
9978 (6,1,23,59,35,52,18,29),
9979 (6,1,24,61,36,54,18,30),
9980 (6,1,25,62,37,55,18,30),
9981 (6,1,26,64,38,57,18,30),
9982 (6,1,27,66,39,58,18,31),
9983 (6,1,28,67,40,60,18,31),
9984 (6,1,29,69,41,61,19,32),
9985 (6,1,30,71,42,63,19,32),
9986 (6,1,31,72,43,64,19,32),
9987 (6,1,32,74,44,66,19,33),
9988 (6,1,33,76,45,67,19,33),
9989 (6,1,34,77,46,69,20,34),
9990 (6,1,35,79,47,71,20,34),
9991 (6,1,36,81,48,72,20,35),
9992 (6,1,37,83,49,74,20,35),
9993 (6,1,38,85,50,76,20,35),
9994 (6,1,39,86,51,77,21,36),
9995 (6,1,40,88,53,79,21,36),
9996 (6,1,41,90,54,81,21,37),
9997 (6,1,42,92,55,82,21,37),
9998 (6,1,43,94,56,84,21,38),
9999 (6,1,44,96,57,86,22,38),
10000 (6,1,45,98,58,87,22,39),
10001 (6,1,46,99,60,89,22,39),
10002 (6,1,47,101,61,91,22,40),
10003 (6,1,48,103,62,93,22,40),
10004 (6,1,49,105,63,94,23,41),
10005 (6,1,50,107,65,96,23,41),
10006 (6,1,51,109,66,98,23,42),
10007 (6,1,52,111,67,100,23,42),
10008 (6,1,53,113,68,102,24,43),
10009 (6,1,54,115,70,104,24,44),
10010 (6,1,55,117,71,105,24,44),
10011 (6,1,56,119,72,107,24,45),
10012 (6,1,57,122,73,109,25,45),
10013 (6,1,58,124,75,111,25,46),
10014 (6,1,59,126,76,113,25,46),
10015 (6,1,60,128,77,115,25,47),
10016 (6,1,61,130,79,117,26,48),
10017 (6,1,62,132,80,119,26,48),
10018 (6,1,63,134,81,121,26,49),
10019 (6,1,64,137,83,123,26,49),
10020 (6,1,65,139,84,125,27,50),
10021 (6,1,66,141,85,127,27,51),
10022 (6,1,67,143,87,129,27,51),
10023 (6,1,68,145,88,131,27,52),
10024 (6,1,69,148,90,133,28,52),
10025 (6,1,70,150,91,135,28,53),
10026 (6,1,71,153,92,137,28,54),
10027 (6,1,72,155,94,140,28,55),
10028 (6,1,73,158,96,142,28,56),
10029 (6,1,74,161,97,145,29,56),
10030 (6,1,75,164,99,147,29,57),
10031 (6,1,76,167,101,150,29,58),
10032 (6,1,77,170,103,153,30,59),
10033 (6,1,78,173,104,155,30,59),
10034 (6,1,79,176,106,164,30,60),
10035 (6,1,80,179,108,170,31,61),
10036 (6,1,81,182,111,162,32,62),
10037 (6,1,82,194,113,165,32,62),
10038 (6,1,83,197,115,168,32,63),
10039 (6,1,84,200,117,171,33,64),
10040 (6,1,85,203,119,174,33,65),
10041 (6,2,1,27,15,24,15,23),
10042 (6,2,81,165,87,147,95,109),
10043 (6,2,82,168,89,149,97,110),
10044 (6,2,83,171,90,152,98,112),
10045 (6,2,84,175,92,154,100,114),
10046 (6,2,85,177,93,157,102,116),
10047 (6,2,2,20,23,22,25,21),
10048 (6,2,3,21,23,23,25,21),
10049 (6,2,4,22,24,24,26,22),
10050 (6,2,5,23,24,25,27,23),
10051 (6,2,6,25,25,26,27,24),
10052 (6,2,7,26,25,27,28,24),
10053 (6,2,8,27,26,28,29,25),
10054 (6,2,9,28,27,29,29,26),
10055 (6,2,10,36,21,31,21,29),
10056 (6,2,11,37,21,32,22,30),
10057 (6,2,12,38,22,33,23,30),
10058 (6,2,13,39,23,34,23,31),
10059 (6,2,14,40,23,35,24,32),
10060 (6,2,15,41,24,37,25,32),
10061 (6,2,16,43,24,38,25,33),
10062 (6,2,17,44,25,39,26,34),
10063 (6,2,18,45,26,40,27,35),
10064 (6,2,19,46,26,41,27,35),
10065 (6,2,20,47,27,42,28,36),
10066 (6,2,21,48,28,43,29,37),
10067 (6,2,22,50,28,44,30,38),
10068 (6,2,23,51,29,45,30,39),
10069 (6,2,24,52,30,47,31,39),
10070 (6,2,25,53,30,48,32,40),
10071 (6,2,26,55,31,49,33,41),
10072 (6,2,27,56,32,50,33,42),
10073 (6,2,28,57,32,51,34,43),
10074 (6,2,29,59,33,53,35,44),
10075 (6,2,30,60,34,54,36,44),
10076 (6,2,31,61,35,55,37,45),
10077 (6,2,32,63,35,57,38,46),
10078 (6,2,33,64,36,58,38,47),
10079 (6,2,34,66,37,59,39,48),
10080 (6,2,35,67,38,61,40,49),
10081 (6,2,36,69,39,62,41,50),
10082 (6,2,37,70,39,63,42,51),
10083 (6,2,38,72,40,65,43,52),
10084 (6,2,39,73,41,66,44,53),
10085 (6,2,40,75,42,68,45,54),
10086 (6,2,41,76,43,69,46,55),
10087 (6,2,42,78,43,71,47,56),
10088 (6,2,43,79,44,72,48,57),
10089 (6,2,44,81,45,74,48,58),
10090 (6,2,45,83,46,75,49,59),
10091 (6,2,46,84,47,77,50,60),
10092 (6,2,47,86,48,78,52,61),
10093 (6,2,48,88,49,80,53,62),
10094 (6,2,49,89,50,82,54,64),
10095 (6,2,50,91,51,83,55,65),
10096 (6,2,51,93,52,85,56,66),
10097 (6,2,52,95,53,87,57,67),
10098 (6,2,53,97,54,88,58,68),
10099 (6,2,54,98,55,90,59,69),
10100 (6,2,55,100,56,92,60,71),
10101 (6,2,56,102,57,94,61,72),
10102 (6,2,57,104,58,95,62,73),
10103 (6,2,58,106,59,97,64,74),
10104 (6,2,59,113,60,99,65,76),
10105 (6,2,60,113,61,101,66,77),
10106 (6,2,61,113,62,103,67,78),
10107 (6,2,62,119,63,105,68,80),
10108 (6,2,63,121,64,107,70,81),
10109 (6,2,64,121,65,109,71,82),
10110 (6,2,65,121,67,111,72,84),
10111 (6,2,66,123,68,113,74,85),
10112 (6,2,67,125,69,115,75,87),
10113 (6,2,68,127,70,117,76,88),
10114 (6,2,69,135,71,119,78,89),
10115 (6,2,70,135,73,121,79,91),
10116 (6,2,71,135,74,123,80,92),
10117 (6,2,72,142,75,126,82,94),
10118 (6,2,73,144,76,128,83,96),
10119 (6,2,74,144,78,130,85,97),
10120 (6,2,75,149,79,132,86,99),
10121 (6,2,76,149,80,135,88,100),
10122 (6,2,77,155,82,137,89,102),
10123 (6,2,78,158,83,139,91,104),
10124 (6,2,79,160,84,142,92,105),
10125 (6,2,80,160,86,144,94,107),
10126 (6,3,1,25,18,23,15,23),
10127 (6,3,2,25,19,24,16,24),
10128 (6,3,3,26,21,25,16,24),
10129 (6,3,4,26,22,26,17,25),
10130 (6,3,5,27,24,27,17,25),
10131 (6,3,6,27,25,28,18,26),
10132 (6,3,7,28,26,28,19,27),
10133 (6,3,8,28,28,29,19,27),
10134 (6,3,9,28,29,30,20,28),
10135 (6,3,10,29,31,31,20,29),
10136 (6,3,11,29,32,32,21,29),
10137 (6,3,12,30,34,33,22,30),
10138 (6,3,13,30,35,34,22,31),
10139 (6,3,14,31,37,35,23,32),
10140 (6,3,15,31,38,36,24,32),
10141 (6,3,16,32,40,37,24,33),
10142 (6,3,17,32,41,39,25,34),
10143 (6,3,18,33,43,40,26,35),
10144 (6,3,19,33,45,41,27,35),
10145 (6,3,20,34,46,42,27,36),
10146 (6,3,21,34,48,43,28,37),
10147 (6,3,22,35,50,44,29,38),
10148 (6,3,23,35,51,45,29,38),
10149 (6,3,24,36,53,46,30,39),
10150 (6,3,25,37,55,47,31,40),
10151 (6,3,26,37,56,48,32,41),
10152 (6,3,27,38,58,50,32,42),
10153 (6,3,28,38,60,51,33,42),
10154 (6,3,29,39,62,52,34,43),
10155 (6,3,30,39,63,53,35,44),
10156 (6,3,31,40,65,54,36,45),
10157 (6,3,32,41,67,56,36,46),
10158 (6,3,33,41,69,57,37,47),
10159 (6,3,34,42,71,58,38,48),
10160 (6,3,35,43,72,59,39,48),
10161 (6,3,36,43,74,61,40,49),
10162 (6,3,37,44,76,62,40,50),
10163 (6,3,38,45,78,63,41,51),
10164 (6,3,39,45,80,64,42,52),
10165 (6,3,40,46,82,66,43,53),
10166 (6,3,41,47,84,67,44,54),
10167 (6,3,42,47,86,68,45,55),
10168 (6,3,43,48,88,70,46,56),
10169 (6,3,44,49,90,71,46,57),
10170 (6,3,45,49,92,72,47,58),
10171 (6,3,46,50,94,74,48,59),
10172 (6,3,47,51,96,75,49,60),
10173 (6,3,48,51,98,77,50,61),
10174 (6,3,49,52,100,78,51,62),
10175 (6,3,50,53,102,79,52,63),
10176 (6,3,51,54,104,81,53,64),
10177 (6,3,52,54,106,82,54,65),
10178 (6,3,53,55,108,84,55,66),
10179 (6,3,54,56,110,85,56,67),
10180 (6,3,55,57,112,87,57,68),
10181 (6,3,56,57,114,88,58,69),
10182 (6,3,57,58,117,90,59,70),
10183 (6,3,58,59,119,91,60,71),
10184 (6,3,59,60,121,93,61,72),
10185 (6,3,60,61,123,94,62,74),
10186 (6,3,61,61,125,96,63,75),
10187 (6,3,62,62,128,97,64,76),
10188 (6,3,63,63,130,99,65,77),
10189 (6,3,64,64,132,100,66,78),
10190 (6,3,65,65,134,102,67,79),
10191 (6,3,66,66,137,104,68,80),
10192 (6,3,67,66,139,105,69,81),
10193 (6,3,68,67,141,107,70,83),
10194 (6,3,69,68,144,108,71,84),
10195 (6,3,70,69,146,110,72,85),
10196 (6,3,71,70,149,112,73,86),
10197 (6,3,72,71,152,114,74,87),
10198 (6,3,73,72,155,116,75,89),
10199 (6,3,74,73,158,118,77,90),
10200 (6,3,75,74,161,120,78,92),
10201 (6,3,76,75,164,122,79,93),
10202 (6,3,77,76,167,124,81,95),
10203 (6,3,78,77,176,126,85,96),
10204 (6,3,79,78,179,128,86,98),
10205 (6,3,80,79,183,130,88,99),
10206 (6,3,81,80,190,131,87,101),
10207 (6,3,82,82,193,134,89,102),
10208 (6,3,83,83,196,136,90,104),
10209 (6,3,84,84,200,138,92,105),
10210 (6,3,85,85,204,140,93,107),
10211 (6,4,81,119,198,108,40,70),
10212 (6,4,82,121,201,109,40,70),
10213 (6,4,83,123,205,111,41,71),
10214 (6,4,84,125,209,113,41,72),
10215 (6,4,85,127,212,115,42,73),
10216 (6,4,10,32,31,28,18,25),
10217 (6,4,11,33,32,29,18,26),
10218 (6,4,12,34,33,29,18,26),
10219 (6,4,13,35,35,30,18,26),
10220 (6,4,14,35,36,31,18,27),
10221 (6,4,15,36,38,31,19,27),
10222 (6,4,16,37,39,32,19,28),
10223 (6,4,17,38,40,33,19,28),
10224 (6,4,18,39,42,34,19,28),
10225 (6,4,19,40,44,34,19,29),
10226 (6,4,20,40,45,35,20,29),
10227 (6,4,21,41,47,36,20,30),
10228 (6,4,22,42,48,37,20,30),
10229 (6,4,23,43,50,38,20,31),
10230 (6,4,24,44,51,38,21,31),
10231 (6,4,25,45,53,39,21,32),
10232 (6,4,26,46,55,40,21,32),
10233 (6,4,27,47,56,41,21,32),
10234 (6,4,28,48,58,42,21,33),
10235 (6,4,29,48,60,43,22,33),
10236 (6,4,30,49,62,43,22,34),
10237 (6,4,31,50,63,44,22,34),
10238 (6,4,32,51,65,45,22,35),
10239 (6,4,33,52,67,46,23,35),
10240 (6,4,34,53,69,47,23,36),
10241 (6,4,35,54,71,48,23,36),
10242 (6,4,36,56,73,49,24,37),
10243 (6,4,37,57,74,50,24,38),
10244 (6,4,38,58,76,51,24,38),
10245 (6,4,39,59,78,52,24,39),
10246 (6,4,40,60,80,53,25,39),
10247 (6,4,41,61,82,54,25,40),
10248 (6,4,42,62,84,55,25,40),
10249 (6,4,43,63,86,56,25,41),
10250 (6,4,44,64,89,57,26,41),
10251 (6,4,45,66,91,58,26,42),
10252 (6,4,46,67,93,59,26,43),
10253 (6,4,47,68,95,60,27,43),
10254 (6,4,48,69,97,61,27,44),
10255 (6,4,49,70,99,63,27,45),
10256 (6,4,50,72,102,64,28,45),
10257 (6,4,51,73,109,65,28,46),
10258 (6,4,52,74,109,66,28,46),
10259 (6,4,53,75,114,67,29,47),
10260 (6,4,54,77,116,68,29,48),
10261 (6,4,55,78,118,70,29,48),
10262 (6,4,56,79,122,71,30,49),
10263 (6,4,57,81,124,72,30,50),
10264 (6,4,58,82,127,73,30,51),
10265 (6,4,59,84,129,75,31,51),
10266 (6,4,60,85,132,76,31,52),
10267 (6,4,61,86,135,77,31,53),
10268 (6,4,62,88,137,79,32,53),
10269 (6,4,63,89,137,80,32,54),
10270 (6,4,64,91,144,81,32,55),
10271 (6,4,65,92,146,83,33,56),
10272 (6,4,66,94,149,84,33,57),
10273 (6,4,67,95,152,86,34,57),
10274 (6,4,68,97,155,87,34,58),
10275 (6,4,69,99,158,88,34,59),
10276 (6,4,70,100,158,90,35,60),
10277 (6,4,71,102,165,91,35,61),
10278 (6,4,72,104,168,93,36,61),
10279 (6,4,73,105,171,95,36,62),
10280 (6,4,74,107,174,96,37,63),
10281 (6,4,75,109,177,98,37,64),
10282 (6,4,76,110,180,99,37,65),
10283 (6,4,77,112,184,101,38,66),
10284 (6,4,78,114,188,103,38,67),
10285 (6,4,79,116,191,104,39,68),
10286 (6,4,80,118,194,106,39,69),
10287 (6,5,1,25,15,22,17,25),
10288 (6,5,81,49,48,69,181,187),
10289 (6,5,82,49,48,69,185,190),
10290 (6,5,83,50,49,70,189,193),
10291 (6,5,84,50,50,71,192,197),
10292 (6,5,85,51,50,72,195,200),
10293 (6,5,2,17,22,19,27,23),
10294 (6,5,3,17,22,20,29,25),
10295 (6,5,4,17,23,20,30,26),
10296 (6,5,5,18,23,20,31,27),
10297 (6,5,6,18,23,21,33,29),
10298 (6,5,7,18,23,21,34,30),
10299 (6,5,8,18,24,22,35,32),
10300 (6,5,9,18,24,22,37,33),
10301 (6,5,10,27,18,24,29,36),
10302 (6,5,11,27,18,25,30,37),
10303 (6,5,12,27,19,25,31,39),
10304 (6,5,13,27,19,25,32,40),
10305 (6,5,14,27,19,26,34,41),
10306 (6,5,15,28,19,26,35,43),
10307 (6,5,16,28,20,27,36,44),
10308 (6,5,17,28,20,27,38,45),
10309 (6,5,18,28,20,27,39,47),
10310 (6,5,19,28,21,28,40,48),
10311 (6,5,20,29,21,28,42,50),
10312 (6,5,21,29,21,29,43,51),
10313 (6,5,22,29,21,29,45,53),
10314 (6,5,23,29,22,30,46,54),
10315 (6,5,24,30,22,30,48,56),
10316 (6,5,25,30,22,31,49,57),
10317 (6,5,26,30,23,31,51,59),
10318 (6,5,27,30,23,31,52,61),
10319 (6,5,28,30,23,32,54,62),
10320 (6,5,29,31,24,32,55,64),
10321 (6,5,30,31,24,33,57,66),
10322 (6,5,31,31,24,33,59,67),
10323 (6,5,32,31,25,34,60,69),
10324 (6,5,33,32,25,34,62,71),
10325 (6,5,34,32,25,35,64,72),
10326 (6,5,35,32,26,35,65,74),
10327 (6,5,36,33,26,36,67,76),
10328 (6,5,37,33,26,37,69,78),
10329 (6,5,38,33,27,37,71,80),
10330 (6,5,39,33,27,38,72,82),
10331 (6,5,40,34,27,38,74,83),
10332 (6,5,41,34,28,39,76,85),
10333 (6,5,42,34,28,39,78,87),
10334 (6,5,43,34,29,40,80,89),
10335 (6,5,44,35,29,40,82,91),
10336 (6,5,45,35,29,41,84,93),
10337 (6,5,46,35,30,42,86,95),
10338 (6,5,47,36,30,42,88,97),
10339 (6,5,48,36,31,43,90,100),
10340 (6,5,49,36,31,44,92,102),
10341 (6,5,50,37,31,44,98,104),
10342 (6,5,51,37,32,45,101,106),
10343 (6,5,52,37,32,45,103,108),
10344 (6,5,53,38,33,46,105,110),
10345 (6,5,54,38,33,47,107,113),
10346 (6,5,55,38,34,47,110,115),
10347 (6,5,56,39,34,48,112,117),
10348 (6,5,57,39,35,49,114,120),
10349 (6,5,58,39,35,50,116,122),
10350 (6,5,59,40,36,50,119,125),
10351 (6,5,60,40,36,51,122,127),
10352 (6,5,61,40,36,52,124,129),
10353 (6,5,62,41,37,52,127,132),
10354 (6,5,63,41,37,53,129,135),
10355 (6,5,64,41,38,54,132,137),
10356 (6,5,65,42,39,55,134,140),
10357 (6,5,66,42,39,56,137,142),
10358 (6,5,67,43,40,56,139,145),
10359 (6,5,68,43,40,57,143,148),
10360 (6,5,69,43,41,58,146,151),
10361 (6,5,70,44,41,59,148,153),
10362 (6,5,71,44,42,60,151,156),
10363 (6,5,72,45,42,60,154,159),
10364 (6,5,73,45,43,61,157,162),
10365 (6,5,74,46,43,62,159,165),
10366 (6,5,75,46,44,63,162,168),
10367 (6,5,76,46,45,64,166,171),
10368 (6,5,77,47,45,65,169,174),
10369 (6,5,78,47,46,66,172,177),
10370 (6,5,79,48,46,67,175,180),
10371 (6,5,80,48,47,68,178,183),
10372 (6,6,1,28,15,24,15,22),
10373 (6,6,2,29,16,25,15,22),
10374 (6,6,3,31,17,26,15,23),
10375 (6,6,4,32,17,27,15,23),
10376 (6,6,5,33,18,29,15,23),
10377 (6,6,6,34,19,30,15,23),
10378 (6,6,7,36,20,31,16,24),
10379 (6,6,8,37,21,32,16,24),
10380 (6,6,9,38,22,34,16,24),
10381 (6,6,10,40,22,35,16,25),
10382 (6,6,11,41,23,36,16,25),
10383 (6,6,12,43,24,37,16,25),
10384 (6,6,13,44,25,39,16,26),
10385 (6,6,14,46,26,40,16,26),
10386 (6,6,15,47,27,41,17,26),
10387 (6,6,16,48,28,43,17,27),
10388 (6,6,17,50,29,44,17,27),
10389 (6,6,18,51,30,45,17,27),
10390 (6,6,19,53,31,47,17,28),
10391 (6,6,20,54,32,48,17,28),
10392 (6,6,21,56,33,50,17,28),
10393 (6,6,22,58,34,51,18,29),
10394 (6,6,23,59,35,52,18,29),
10395 (6,6,24,61,36,54,18,30),
10396 (6,6,25,62,37,55,18,30),
10397 (6,6,26,64,38,57,18,30),
10398 (6,6,27,66,39,58,18,31),
10399 (6,6,28,67,40,60,18,31),
10400 (6,6,29,69,41,61,19,32),
10401 (6,6,30,71,42,63,19,32),
10402 (6,6,31,72,43,64,19,32),
10403 (6,6,32,74,44,66,19,33),
10404 (6,6,33,76,45,67,19,33),
10405 (6,6,34,77,46,69,20,34),
10406 (6,6,35,79,47,71,20,34),
10407 (6,6,36,81,48,72,20,35),
10408 (6,6,37,83,49,74,20,35),
10409 (6,6,38,85,50,76,20,35),
10410 (6,6,39,86,51,77,21,36),
10411 (6,6,40,88,53,79,21,36),
10412 (6,6,41,90,54,81,21,37),
10413 (6,6,42,92,55,82,21,37),
10414 (6,6,43,94,56,84,21,38),
10415 (6,6,44,96,57,86,22,38),
10416 (6,6,45,98,58,87,22,39),
10417 (6,6,46,99,60,89,22,39),
10418 (6,6,47,101,60,91,22,40),
10419 (6,6,48,103,61,93,22,40),
10420 (6,6,49,105,62,94,23,41),
10421 (6,6,50,107,63,96,23,41),
10422 (6,6,51,109,64,97,23,42),
10423 (6,6,52,110,65,98,23,42),
10424 (6,6,53,111,66,99,24,43),
10425 (6,6,54,112,67,100,24,44),
10426 (6,6,55,113,68,101,24,44),
10427 (6,6,56,116,70,104,24,45),
10428 (6,6,57,121,71,106,24,45),
10429 (6,6,58,123,72,108,25,46),
10430 (6,6,59,123,74,110,25,46),
10431 (6,6,60,125,75,112,25,47),
10432 (6,6,61,127,76,114,25,48),
10433 (6,6,62,133,78,116,25,48),
10434 (6,6,63,135,79,119,26,49),
10435 (6,6,64,139,81,121,26,49),
10436 (6,6,65,142,82,123,26,50),
10437 (6,6,66,146,84,126,26,51),
10438 (6,6,67,150,85,132,27,51),
10439 (6,6,68,153,87,137,27,52),
10440 (6,6,69,157,88,140,27,53),
10441 (6,6,70,160,90,143,27,53),
10442 (6,6,71,163,92,146,28,54),
10443 (6,6,72,165,93,148,28,55),
10444 (6,6,73,167,95,150,28,56),
10445 (6,6,74,171,97,153,28,56),
10446 (6,6,75,174,98,156,29,57),
10447 (6,6,76,178,100,156,29,58),
10448 (6,6,77,179,102,156,29,59),
10449 (6,6,78,179,103,156,29,59),
10450 (6,6,79,182,105,159,30,60),
10451 (6,6,80,185,107,162,30,61),
10452 (6,6,81,183,110,164,31,62),
10453 (6,6,82,183,112,166,32,62),
10454 (6,6,83,190,114,169,32,63),
10455 (6,6,84,190,116,172,32,64),
10456 (6,6,85,196,117,175,32,65),
10457 (6,7,1,26,15,23,16,24),
10458 (6,7,2,27,15,24,17,25),
10459 (6,7,3,28,16,25,18,26),
10460 (6,7,4,28,16,26,19,27),
10461 (6,7,5,29,17,27,20,28),
10462 (6,7,6,30,17,28,21,29),
10463 (6,7,7,31,18,29,22,30),
10464 (6,7,8,32,18,30,23,31),
10465 (6,7,9,33,19,31,24,32),
10466 (6,7,10,34,19,32,25,33),
10467 (6,7,11,35,20,33,26,35),
10468 (6,7,12,35,20,34,27,36),
10469 (6,7,13,36,21,35,28,37),
10470 (6,7,14,37,21,36,29,38),
10471 (6,7,15,38,22,37,30,39),
10472 (6,7,16,39,22,39,31,40),
10473 (6,7,17,40,23,40,32,42),
10474 (6,7,18,41,23,41,33,43),
10475 (6,7,19,42,24,42,34,44),
10476 (6,7,20,43,24,43,35,45),
10477 (6,7,21,44,25,44,36,46),
10478 (6,7,22,45,25,45,37,48),
10479 (6,7,23,46,26,47,38,49),
10480 (6,7,24,47,27,48,40,50),
10481 (6,7,25,48,27,49,41,51),
10482 (6,7,26,49,28,50,42,53),
10483 (6,7,27,51,28,52,43,54),
10484 (6,7,28,52,29,53,44,55),
10485 (6,7,29,53,29,54,45,57),
10486 (6,7,30,54,30,55,47,58),
10487 (6,7,31,55,31,57,48,59),
10488 (6,7,32,56,31,58,49,61),
10489 (6,7,33,57,32,59,50,62),
10490 (6,7,34,58,33,61,51,64),
10491 (6,7,35,60,33,62,53,65),
10492 (6,7,36,61,34,63,54,66),
10493 (6,7,37,62,34,65,55,68),
10494 (6,7,38,63,35,66,57,69),
10495 (6,7,39,64,36,67,58,71),
10496 (6,7,40,66,36,69,59,72),
10497 (6,7,41,67,37,70,60,74),
10498 (6,7,42,68,38,72,62,75),
10499 (6,7,43,69,38,73,63,77),
10500 (6,7,44,70,39,74,64,78),
10501 (6,7,45,72,40,76,66,80),
10502 (6,7,46,73,41,77,67,81),
10503 (6,7,47,74,41,79,69,83),
10504 (6,7,48,76,42,80,70,84),
10505 (6,7,49,77,43,82,71,86),
10506 (6,7,50,78,43,83,73,88),
10507 (6,7,51,80,44,85,74,89),
10508 (6,7,52,81,45,86,76,91),
10509 (6,7,53,82,46,88,77,92),
10510 (6,7,54,84,46,90,78,94),
10511 (6,7,55,85,47,91,80,96),
10512 (6,7,56,86,48,93,81,97),
10513 (6,7,57,88,49,94,83,99),
10514 (6,7,58,89,49,96,84,101),
10515 (6,7,59,91,50,97,86,102),
10516 (6,7,60,92,51,99,87,104),
10517 (6,7,61,94,52,101,89,106),
10518 (6,7,62,95,52,102,90,108),
10519 (6,7,63,96,53,104,92,109),
10520 (6,7,64,98,54,106,93,111),
10521 (6,7,65,99,55,107,95,113),
10522 (6,7,66,101,56,109,97,115),
10523 (6,7,67,102,57,111,98,117),
10524 (6,7,68,104,57,113,100,118),
10525 (6,7,69,105,58,114,101,120),
10526 (6,7,70,107,59,116,103,122),
10527 (6,7,71,108,60,118,113,124),
10528 (6,7,72,110,61,120,117,127),
10529 (6,7,73,112,62,122,119,129),
10530 (6,7,74,114,63,125,122,131),
10531 (6,7,75,116,64,127,124,133),
10532 (6,7,76,118,65,129,126,136),
10533 (6,7,77,119,66,131,128,138),
10534 (6,7,78,121,67,133,130,140),
10535 (6,7,79,123,68,136,133,143),
10536 (6,7,80,125,69,138,135,145),
10537 (6,7,81,127,71,139,132,148),
10538 (6,7,82,129,73,142,135,150),
10539 (6,7,83,132,74,144,135,153),
10540 (6,7,84,134,75,146,135,155),
10541 (6,7,85,136,76,149,141,158),
10542 (6,8,81,41,40,61,190,179),
10543 (6,8,82,41,40,61,193,182),
10544 (6,8,83,41,41,62,196,186),
10545 (6,8,84,42,41,63,200,189),
10546 (6,8,85,42,42,64,203,192),
10547 (6,8,10,26,18,24,30,35),
10548 (6,8,11,26,18,24,31,36),
10549 (6,8,12,26,18,24,33,37),
10550 (6,8,13,26,18,25,34,38),
10551 (6,8,14,27,18,25,35,40),
10552 (6,8,15,27,19,25,37,41),
10553 (6,8,16,27,19,26,38,42),
10554 (6,8,17,27,19,26,39,44),
10555 (6,8,18,27,19,26,41,45),
10556 (6,8,19,27,19,27,42,46),
10557 (6,8,20,27,20,27,44,48),
10558 (6,8,21,28,20,27,45,49),
10559 (6,8,22,28,20,28,47,51),
10560 (6,8,23,28,20,28,48,52),
10561 (6,8,24,28,21,29,50,54),
10562 (6,8,25,28,21,29,51,55),
10563 (6,8,26,28,21,29,53,57),
10564 (6,8,27,28,21,30,55,58),
10565 (6,8,28,29,21,30,56,60),
10566 (6,8,29,29,22,31,58,61),
10567 (6,8,30,29,22,31,60,63),
10568 (6,8,31,29,22,31,61,65),
10569 (6,8,32,29,22,32,63,66),
10570 (6,8,33,29,23,32,65,68),
10571 (6,8,34,30,23,33,66,70),
10572 (6,8,35,30,23,33,68,71),
10573 (6,8,36,30,24,34,70,73),
10574 (6,8,37,30,24,34,72,75),
10575 (6,8,38,30,24,34,74,77),
10576 (6,8,39,31,24,35,76,78),
10577 (6,8,40,31,25,35,77,80),
10578 (6,8,41,31,25,36,79,82),
10579 (6,8,42,31,25,36,81,84),
10580 (6,8,43,31,25,37,83,86),
10581 (6,8,44,31,26,37,85,88),
10582 (6,8,45,32,26,38,87,90),
10583 (6,8,46,32,26,38,89,92),
10584 (6,8,47,32,27,39,91,94),
10585 (6,8,48,32,27,39,94,96),
10586 (6,8,49,33,27,40,96,98),
10587 (6,8,50,33,28,40,103,100),
10588 (6,8,51,33,28,41,105,102),
10589 (6,8,52,33,28,41,107,104),
10590 (6,8,53,33,29,42,109,106),
10591 (6,8,54,34,29,43,112,108),
10592 (6,8,55,34,29,43,114,111),
10593 (6,8,56,34,30,44,116,113),
10594 (6,8,57,34,30,44,119,115),
10595 (6,8,58,35,30,45,122,117),
10596 (6,8,59,35,31,45,125,120),
10597 (6,8,60,35,31,46,127,122),
10598 (6,8,61,35,31,47,129,124),
10599 (6,8,62,35,32,47,132,127),
10600 (6,8,63,36,32,48,135,129),
10601 (6,8,64,36,32,48,137,132),
10602 (6,8,65,36,33,49,140,134),
10603 (6,8,66,37,33,50,143,137),
10604 (6,8,67,37,34,50,146,139),
10605 (6,8,68,37,34,51,149,142),
10606 (6,8,69,37,34,52,152,145),
10607 (6,8,70,38,35,52,154,147),
10608 (6,8,71,38,35,53,157,150),
10609 (6,8,72,38,36,54,160,153),
10610 (6,8,73,38,36,55,164,156),
10611 (6,8,74,39,37,55,167,158),
10612 (6,8,75,39,37,56,170,161),
10613 (6,8,76,39,37,57,173,164),
10614 (6,8,77,40,38,58,176,167),
10615 (6,8,78,40,38,58,179,170),
10616 (6,8,79,40,39,59,182,173),
10617 (6,8,80,41,39,60,186,176),
10618 (6,9,81,65,64,92,165,171),
10619 (6,9,82,65,64,93,168,174),
10620 (6,9,83,66,65,95,171,177),
10621 (6,9,84,67,66,96,174,180),
10622 (6,9,85,68,67,97,177,183),
10623 (6,9,10,28,19,27,27,34),
10624 (6,9,11,28,20,27,29,35),
10625 (6,9,12,28,20,28,30,36),
10626 (6,9,13,29,20,28,31,38),
10627 (6,9,14,29,21,29,32,39),
10628 (6,9,15,29,21,30,33,40),
10629 (6,9,16,30,22,30,34,41),
10630 (6,9,17,30,22,31,36,43),
10631 (6,9,18,30,22,31,37,44),
10632 (6,9,19,31,23,32,38,45),
10633 (6,9,20,31,23,33,39,47),
10634 (6,9,21,31,24,33,41,48),
10635 (6,9,22,32,24,34,42,49),
10636 (6,9,23,32,25,35,43,51),
10637 (6,9,24,33,25,35,45,52),
10638 (6,9,25,33,26,36,46,54),
10639 (6,9,26,33,26,37,47,55),
10640 (6,9,27,34,26,37,49,56),
10641 (6,9,28,34,27,38,50,58),
10642 (6,9,29,35,27,39,52,59),
10643 (6,9,30,35,28,39,53,61),
10644 (6,9,31,35,28,40,54,63),
10645 (6,9,32,36,29,41,56,64),
10646 (6,9,33,36,29,42,57,66),
10647 (6,9,34,37,30,42,59,67),
10648 (6,9,35,37,30,43,60,69),
10649 (6,9,36,38,31,44,62,71),
10650 (6,9,37,38,32,45,64,72),
10651 (6,9,38,38,32,46,65,74),
10652 (6,9,39,39,33,46,67,76),
10653 (6,9,40,39,33,47,68,77),
10654 (6,9,41,40,34,48,70,79),
10655 (6,9,42,40,34,49,72,81),
10656 (6,9,43,41,35,50,73,83),
10657 (6,9,44,41,35,51,75,84),
10658 (6,9,45,42,36,51,77,86),
10659 (6,9,46,42,37,52,79,88),
10660 (6,9,47,43,37,53,80,90),
10661 (6,9,48,43,38,54,82,92),
10662 (6,9,49,44,39,55,84,94),
10663 (6,9,50,44,39,56,90,96),
10664 (6,9,51,45,40,57,92,98),
10665 (6,9,52,45,40,58,94,100),
10666 (6,9,53,46,41,59,96,102),
10667 (6,9,54,47,42,60,98,104),
10668 (6,9,55,47,42,61,101,106),
10669 (6,9,56,48,43,62,103,108),
10670 (6,9,57,48,44,63,105,110),
10671 (6,9,58,49,45,64,107,113),
10672 (6,9,59,49,45,65,109,115),
10673 (6,9,60,50,46,66,111,117),
10674 (6,9,61,51,47,67,113,119),
10675 (6,9,62,51,47,68,115,122),
10676 (6,9,63,52,48,69,118,124),
10677 (6,9,64,52,49,70,120,126),
10678 (6,9,65,53,50,72,123,129),
10679 (6,9,66,54,51,73,125,131),
10680 (6,9,67,54,51,74,128,134),
10681 (6,9,68,55,52,75,130,136),
10682 (6,9,69,56,53,76,132,138),
10683 (6,9,70,56,54,77,135,141),
10684 (6,9,71,57,55,79,137,144),
10685 (6,9,72,58,55,80,140,146),
10686 (6,9,73,59,56,81,143,149),
10687 (6,9,74,59,57,82,146,152),
10688 (6,9,75,60,58,84,148,154),
10689 (6,9,76,61,59,85,151,157),
10690 (6,9,77,62,60,86,154,160),
10691 (6,9,78,62,61,88,156,163),
10692 (6,9,79,63,62,89,159,166),
10693 (6,9,80,64,63,90,162,168),
10694 (6,11,1,26,15,22,17,24),
10695 (6,11,2,27,16,23,18,25),
10696 (6,11,3,27,16,23,19,26),
10697 (6,11,4,28,17,24,20,27),
10698 (6,11,5,28,17,25,21,29),
10699 (6,11,6,29,18,25,22,30),
10700 (6,11,7,29,18,26,23,31),
10701 (6,11,8,30,19,27,24,32),
10702 (6,11,9,30,19,27,26,34),
10703 (6,11,10,31,20,28,27,35),
10704 (6,11,11,32,20,29,28,36),
10705 (6,11,12,32,21,29,29,37),
10706 (6,11,13,33,21,30,30,39),
10707 (6,11,14,33,22,31,31,40),
10708 (6,11,15,34,23,32,32,41),
10709 (6,11,16,35,23,32,34,43),
10710 (6,11,17,35,24,33,35,44),
10711 (6,11,18,36,24,34,36,45),
10712 (6,11,19,37,25,35,37,47),
10713 (6,11,20,37,26,35,39,48),
10714 (6,11,21,38,26,36,40,50),
10715 (6,11,22,39,27,37,41,51),
10716 (6,11,23,39,28,38,42,52),
10717 (6,11,24,40,28,39,44,54),
10718 (6,11,25,41,29,39,45,55),
10719 (6,11,26,41,30,40,46,57),
10720 (6,11,27,42,30,41,47,58),
10721 (6,11,28,43,31,42,49,60),
10722 (6,11,29,44,32,43,50,61),
10723 (6,11,30,44,32,44,52,63),
10724 (6,11,31,45,33,44,53,64),
10725 (6,11,32,46,34,45,54,66),
10726 (6,11,33,47,34,46,56,67),
10727 (6,11,34,47,35,47,57,69),
10728 (6,11,35,48,36,48,58,71),
10729 (6,11,36,49,36,49,60,72),
10730 (6,11,37,50,37,50,61,74),
10731 (6,11,38,51,38,51,63,76),
10732 (6,11,39,52,39,52,64,77),
10733 (6,11,40,52,39,53,66,79),
10734 (6,11,41,53,40,54,67,81),
10735 (6,11,42,54,41,55,69,82),
10736 (6,11,43,55,42,56,70,84),
10737 (6,11,44,56,43,57,72,86),
10738 (6,11,45,57,43,57,73,87),
10739 (6,11,46,57,44,58,75,89),
10740 (6,11,47,58,45,60,76,91),
10741 (6,11,48,59,46,61,78,93),
10742 (6,11,49,60,47,62,79,94),
10743 (6,11,50,61,47,63,81,96),
10744 (6,11,51,62,48,64,83,98),
10745 (6,11,52,63,49,65,84,100),
10746 (6,11,53,64,50,66,86,102),
10747 (6,11,54,65,51,67,87,104),
10748 (6,11,55,66,51,68,89,105),
10749 (6,11,56,67,52,69,91,107),
10750 (6,11,57,68,53,70,92,109),
10751 (6,11,58,69,54,71,94,111),
10752 (6,11,59,70,55,72,96,113),
10753 (6,11,60,71,56,73,97,115),
10754 (6,11,61,72,57,74,99,117),
10755 (6,11,62,73,58,76,101,119),
10756 (6,11,63,74,59,77,103,121),
10757 (6,11,64,75,59,78,104,123),
10758 (6,11,65,76,60,79,106,125),
10759 (6,11,66,77,61,80,108,127),
10760 (6,11,67,78,62,81,110,129),
10761 (6,11,68,79,63,83,111,131),
10762 (6,11,69,80,64,84,113,133),
10763 (6,11,70,81,65,85,115,135),
10764 (6,11,71,83,66,86,117,137),
10765 (6,11,72,84,68,88,120,140),
10766 (6,11,73,85,69,89,122,142),
10767 (6,11,74,86,70,91,124,145),
10768 (6,11,75,88,71,92,126,147),
10769 (6,11,76,89,72,94,128,150),
10770 (6,11,77,90,73,95,131,153),
10771 (6,11,78,92,75,97,133,155),
10772 (6,11,79,93,76,98,136,158),
10773 (6,11,80,94,77,100,138,185),
10774 (6,11,81,96,79,100,142,163),
10775 (6,11,82,97,81,102,144,166),
10776 (6,11,83,99,82,103,147,169),
10777 (6,11,84,100,83,105,156,172),
10778 (6,11,85,101,85,107,156,175),
10779 (7,1,1,18,23,21,24,20),
10780 (7,1,2,19,24,22,24,20),
10781 (7,1,3,21,25,23,24,21),
10782 (7,1,4,22,25,25,24,21),
10783 (7,1,5,23,26,26,24,21),
10784 (7,1,6,25,27,27,24,21),
10785 (7,1,7,26,28,28,24,22),
10786 (7,1,8,27,29,29,25,22),
10787 (7,1,9,29,29,31,25,22),
10788 (7,1,10,30,30,32,25,23),
10789 (7,1,11,32,31,33,25,23),
10790 (7,1,12,33,32,34,25,23),
10791 (7,1,13,34,33,36,25,24),
10792 (7,1,14,36,34,37,25,24),
10793 (7,1,15,37,35,38,25,24),
10794 (7,1,16,39,36,40,25,25),
10795 (7,1,17,40,36,41,25,25),
10796 (7,1,18,42,37,43,26,25),
10797 (7,1,19,43,38,44,26,26),
10798 (7,1,20,45,39,45,26,26),
10799 (7,1,21,47,40,47,26,26),
10800 (7,1,22,48,41,48,26,27),
10801 (7,1,23,50,42,50,26,27),
10802 (7,1,24,51,43,51,26,28),
10803 (7,1,25,53,44,52,27,28),
10804 (7,1,26,55,45,54,27,28),
10805 (7,1,27,56,46,55,27,29),
10806 (7,1,28,58,47,57,27,29),
10807 (7,1,29,59,48,58,27,30),
10808 (7,1,30,61,49,60,27,30),
10809 (7,1,31,63,50,62,27,30),
10810 (7,1,32,65,51,63,28,31),
10811 (7,1,33,66,52,65,28,31),
10812 (7,1,34,68,53,66,28,32),
10813 (7,1,35,70,55,68,28,32),
10814 (7,1,36,72,56,69,28,33),
10815 (7,1,37,73,57,71,29,33),
10816 (7,1,38,75,58,73,29,34),
10817 (7,1,39,77,59,74,29,34),
10818 (7,1,40,79,60,76,29,35),
10819 (7,1,41,81,61,78,29,35),
10820 (7,1,42,82,62,79,30,35),
10821 (7,1,43,84,64,81,30,36),
10822 (7,1,44,86,65,83,30,36),
10823 (7,1,45,88,66,85,30,37),
10824 (7,1,46,90,67,86,30,37),
10825 (7,1,47,92,68,88,31,38),
10826 (7,1,48,94,70,90,31,38),
10827 (7,1,49,96,71,92,31,39),
10828 (7,1,50,98,72,93,31,40),
10829 (7,1,51,100,73,95,32,40),
10830 (7,1,52,102,75,97,32,41),
10831 (7,1,53,104,76,99,32,41),
10832 (7,1,54,106,77,101,32,42),
10833 (7,1,55,108,78,103,33,42),
10834 (7,1,56,110,80,104,33,43),
10835 (7,1,57,112,81,106,33,43),
10836 (7,1,58,114,82,108,33,44),
10837 (7,1,59,116,84,110,34,44),
10838 (7,1,60,118,85,112,34,45),
10839 (7,1,61,120,86,114,34,46),
10840 (7,1,62,122,88,116,35,46),
10841 (7,1,63,125,89,118,35,47),
10842 (7,1,64,127,91,120,35,47),
10843 (7,1,65,129,92,122,35,48),
10844 (7,1,66,131,93,124,36,49),
10845 (7,1,67,133,95,126,36,49),
10846 (7,1,68,136,96,128,36,50),
10847 (7,1,69,138,98,130,37,50),
10848 (7,1,70,140,99,132,37,51),
10849 (7,1,71,143,100,134,37,52),
10850 (7,1,72,145,102,137,37,53),
10851 (7,1,73,148,104,139,37,54),
10852 (7,1,74,151,105,142,38,54),
10853 (7,1,75,154,107,144,38,55),
10854 (7,1,76,157,109,147,38,56),
10855 (7,1,77,163,111,153,39,57),
10856 (7,1,78,169,112,158,39,57),
10857 (7,1,79,172,114,161,39,58),
10858 (7,1,80,175,116,164,40,59),
10859 (7,1,81,172,117,161,39,60),
10860 (7,1,82,184,119,164,39,60),
10861 (7,1,83,187,121,167,39,61),
10862 (7,1,84,190,123,170,40,62),
10863 (7,1,85,193,125,173,40,63),
10864 (7,2,81,155,93,146,102,107),
10865 (7,2,82,158,95,148,104,108),
10866 (7,2,83,161,96,151,105,110),
10867 (7,2,84,165,98,153,107,112),
10868 (7,2,85,167,99,156,109,114),
10869 (7,2,10,26,27,30,28,27),
10870 (7,2,11,27,27,31,29,28),
10871 (7,2,12,28,28,32,30,28),
10872 (7,2,13,29,29,33,30,29),
10873 (7,2,14,30,29,34,31,30),
10874 (7,2,15,31,30,36,32,30),
10875 (7,2,16,33,30,37,32,31),
10876 (7,2,17,34,31,38,33,32),
10877 (7,2,18,35,32,39,34,33),
10878 (7,2,19,36,32,40,34,33),
10879 (7,2,20,37,33,41,35,34),
10880 (7,2,21,38,34,42,36,35),
10881 (7,2,22,40,34,43,37,36),
10882 (7,2,23,41,35,44,37,37),
10883 (7,2,24,42,36,46,38,37),
10884 (7,2,25,43,36,47,39,38),
10885 (7,2,26,45,37,48,40,39),
10886 (7,2,27,46,38,49,40,40),
10887 (7,2,28,47,38,50,41,41),
10888 (7,2,29,49,39,52,42,42),
10889 (7,2,30,50,40,53,43,42),
10890 (7,2,31,51,41,54,44,43),
10891 (7,2,32,53,41,56,45,44),
10892 (7,2,33,54,42,57,45,45),
10893 (7,2,34,56,43,58,46,46),
10894 (7,2,35,57,44,60,47,47),
10895 (7,2,36,59,45,61,48,48),
10896 (7,2,37,60,45,62,49,49),
10897 (7,2,38,62,46,64,50,50),
10898 (7,2,39,63,47,65,51,51),
10899 (7,2,40,65,48,67,52,52),
10900 (7,2,41,66,49,68,53,53),
10901 (7,2,42,68,49,70,54,54),
10902 (7,2,43,69,50,71,55,55),
10903 (7,2,44,71,51,73,55,56),
10904 (7,2,45,73,52,74,56,57),
10905 (7,2,46,74,53,76,57,58),
10906 (7,2,47,76,54,77,59,59),
10907 (7,2,48,78,55,79,60,60),
10908 (7,2,49,79,56,81,61,62),
10909 (7,2,50,81,57,82,62,63),
10910 (7,2,51,83,58,84,63,64),
10911 (7,2,52,85,59,86,64,65),
10912 (7,2,53,87,60,87,65,66),
10913 (7,2,54,88,61,89,66,67),
10914 (7,2,55,90,62,91,67,69),
10915 (7,2,56,92,63,93,68,70),
10916 (7,2,57,94,64,94,69,71),
10917 (7,2,58,96,65,96,71,72),
10918 (7,2,59,103,66,98,72,74),
10919 (7,2,60,103,67,100,73,75),
10920 (7,2,61,103,68,102,74,76),
10921 (7,2,62,109,69,104,75,78),
10922 (7,2,63,111,70,106,77,79),
10923 (7,2,64,111,71,108,78,80),
10924 (7,2,65,111,73,110,79,82),
10925 (7,2,66,113,74,112,81,83),
10926 (7,2,67,115,75,114,82,85),
10927 (7,2,68,117,76,116,83,86),
10928 (7,2,69,125,77,118,85,87),
10929 (7,2,70,125,79,120,86,89),
10930 (7,2,71,125,80,122,87,90),
10931 (7,2,72,132,81,125,89,92),
10932 (7,2,73,134,82,127,90,94),
10933 (7,2,74,134,84,129,92,95),
10934 (7,2,75,139,85,131,93,97),
10935 (7,2,76,139,86,134,95,98),
10936 (7,2,77,145,88,136,96,100),
10937 (7,2,78,148,89,138,98,102),
10938 (7,2,79,150,90,141,99,103),
10939 (7,2,80,150,92,143,101,105),
10940 (7,3,81,70,196,130,94,99),
10941 (7,3,82,72,199,133,96,100),
10942 (7,3,83,73,202,135,97,102),
10943 (7,3,84,74,206,137,99,103),
10944 (7,3,85,75,210,139,100,105),
10945 (7,3,10,19,36,28,28,26),
10946 (7,3,11,19,37,29,28,27),
10947 (7,3,12,20,39,30,29,28),
10948 (7,3,13,20,40,31,30,28),
10949 (7,3,14,21,41,32,30,29),
10950 (7,3,15,21,43,33,31,29),
10951 (7,3,16,22,44,34,31,30),
10952 (7,3,17,22,45,35,32,31),
10953 (7,3,18,23,47,36,33,32),
10954 (7,3,19,23,48,37,33,32),
10955 (7,3,20,24,50,38,34,33),
10956 (7,3,21,24,51,39,35,34),
10957 (7,3,22,25,53,40,35,34),
10958 (7,3,23,25,54,41,36,35),
10959 (7,3,24,26,56,42,37,36),
10960 (7,3,25,26,57,43,37,37),
10961 (7,3,26,27,59,44,38,37),
10962 (7,3,27,27,61,45,39,38),
10963 (7,3,28,28,62,46,39,39),
10964 (7,3,29,28,64,47,40,40),
10965 (7,3,30,29,66,48,41,40),
10966 (7,3,31,29,67,50,42,41),
10967 (7,3,32,30,69,51,42,42),
10968 (7,3,33,31,71,52,43,43),
10969 (7,3,34,31,72,53,44,44),
10970 (7,3,35,32,74,54,45,45),
10971 (7,3,36,33,76,56,46,46),
10972 (7,3,37,33,78,57,46,46),
10973 (7,3,38,34,80,58,47,47),
10974 (7,3,39,34,82,59,48,48),
10975 (7,3,40,35,83,61,49,49),
10976 (7,3,41,36,85,62,50,50),
10977 (7,3,42,36,87,63,50,51),
10978 (7,3,43,37,89,64,51,52),
10979 (7,3,44,38,91,66,52,53),
10980 (7,3,45,38,93,67,53,54),
10981 (7,3,46,39,95,69,54,55),
10982 (7,3,47,40,97,70,55,56),
10983 (7,3,48,41,100,71,56,57),
10984 (7,3,49,41,102,73,57,58),
10985 (7,3,50,42,104,74,58,59),
10986 (7,3,51,43,106,76,59,60),
10987 (7,3,52,44,108,77,60,61),
10988 (7,3,53,44,110,79,61,62),
10989 (7,3,54,45,113,80,62,63),
10990 (7,3,55,46,115,82,63,64),
10991 (7,3,56,47,117,83,64,65),
10992 (7,3,57,48,120,85,65,67),
10993 (7,3,58,48,122,87,66,68),
10994 (7,3,59,49,125,88,67,69),
10995 (7,3,60,50,127,90,68,70),
10996 (7,3,61,51,129,92,69,71),
10997 (7,3,62,52,132,93,70,72),
10998 (7,3,63,53,135,95,71,74),
10999 (7,3,64,53,137,97,72,75),
11000 (7,3,65,54,140,99,74,76),
11001 (7,3,66,55,142,100,75,77),
11002 (7,3,67,56,145,102,76,79),
11003 (7,3,68,57,148,104,77,80),
11004 (7,3,69,58,151,106,78,81),
11005 (7,3,70,59,153,108,80,83),
11006 (7,3,71,60,156,110,81,84),
11007 (7,3,72,61,159,112,82,85),
11008 (7,3,73,62,162,114,83,87),
11009 (7,3,74,63,165,116,85,88),
11010 (7,3,75,64,168,118,86,90),
11011 (7,3,76,65,179,120,87,91),
11012 (7,3,77,66,182,122,89,93),
11013 (7,3,78,67,185,124,90,94),
11014 (7,3,79,68,188,126,91,96),
11015 (7,3,80,69,192,128,93,97),
11016 (7,4,1,16,26,20,24,20),
11017 (7,4,2,17,27,21,24,20),
11018 (7,4,3,18,29,21,24,21),
11019 (7,4,4,18,30,22,24,21),
11020 (7,4,5,19,32,23,25,21),
11021 (7,4,6,20,33,24,25,22),
11022 (7,4,7,21,35,24,25,22),
11023 (7,4,8,22,36,25,25,23),
11024 (7,4,9,22,38,26,25,23),
11025 (7,4,10,23,39,26,25,23),
11026 (7,4,11,24,41,27,25,24),
11027 (7,4,12,25,42,28,26,24),
11028 (7,4,13,26,44,29,26,25),
11029 (7,4,14,27,46,30,26,25),
11030 (7,4,15,28,47,30,26,25),
11031 (7,4,16,28,49,31,26,26),
11032 (7,4,17,29,50,32,27,26),
11033 (7,4,18,30,52,33,27,27),
11034 (7,4,19,31,54,34,27,27),
11035 (7,4,20,32,56,35,27,28),
11036 (7,4,21,33,57,35,27,28),
11037 (7,4,22,34,59,36,28,29),
11038 (7,4,23,35,61,37,28,29),
11039 (7,4,24,36,62,38,28,30),
11040 (7,4,25,37,64,39,28,30),
11041 (7,4,26,38,66,40,29,31),
11042 (7,4,27,39,68,41,29,31),
11043 (7,4,28,40,70,42,29,32),
11044 (7,4,29,41,72,43,29,32),
11045 (7,4,30,42,73,43,29,33),
11046 (7,4,31,43,75,44,30,33),
11047 (7,4,32,44,77,45,30,34),
11048 (7,4,33,45,79,46,30,34),
11049 (7,4,34,46,81,47,31,35),
11050 (7,4,35,47,83,48,31,35),
11051 (7,4,36,48,85,49,31,36),
11052 (7,4,37,49,87,50,31,36),
11053 (7,4,38,50,89,51,32,37),
11054 (7,4,39,51,91,52,32,38),
11055 (7,4,40,53,93,53,32,38),
11056 (7,4,41,54,95,54,33,39),
11057 (7,4,42,55,97,55,33,39),
11058 (7,4,43,56,99,56,33,40),
11059 (7,4,44,57,101,57,33,40),
11060 (7,4,45,58,103,59,34,41),
11061 (7,4,46,59,105,60,34,42),
11062 (7,4,47,61,107,61,34,42),
11063 (7,4,48,62,110,62,35,43),
11064 (7,4,49,63,112,63,35,44),
11065 (7,4,50,64,114,64,35,44),
11066 (7,4,51,65,116,65,36,45),
11067 (7,4,52,67,118,66,36,45),
11068 (7,4,53,68,121,67,36,46),
11069 (7,4,54,69,123,69,37,47),
11070 (7,4,55,70,125,70,37,47),
11071 (7,4,56,72,127,71,37,48),
11072 (7,4,57,73,130,72,38,49),
11073 (7,4,58,74,132,73,38,49),
11074 (7,4,59,75,134,74,39,50),
11075 (7,4,60,77,137,76,39,51),
11076 (7,4,61,78,139,77,39,51),
11077 (7,4,62,79,141,78,40,52),
11078 (7,4,63,81,144,79,40,53),
11079 (7,4,64,82,146,80,41,54),
11080 (7,4,65,83,149,82,41,54),
11081 (7,4,66,85,151,83,41,55),
11082 (7,4,67,86,154,84,42,56),
11083 (7,4,68,87,156,85,42,57),
11084 (7,4,69,89,158,87,43,57),
11085 (7,4,70,90,161,88,43,58),
11086 (7,4,71,92,164,89,44,59),
11087 (7,4,72,94,167,91,45,59),
11088 (7,4,73,95,170,93,45,60),
11089 (7,4,74,97,173,94,46,61),
11090 (7,4,75,99,176,96,46,62),
11091 (7,4,76,100,179,97,46,63),
11092 (7,4,77,102,182,102,47,64),
11093 (7,4,78,104,186,105,47,65),
11094 (7,4,79,106,189,106,48,66),
11095 (7,4,80,108,192,108,48,67),
11096 (7,4,81,109,204,107,47,68),
11097 (7,4,82,111,207,108,47,68),
11098 (7,4,83,113,211,110,48,69),
11099 (7,4,84,115,215,112,48,70),
11100 (7,4,85,117,218,114,49,71),
11101 (7,5,1,15,23,19,25,23),
11102 (7,5,81,39,54,68,188,185),
11103 (7,5,82,39,54,68,192,188),
11104 (7,5,83,40,55,69,196,191),
11105 (7,5,84,40,56,70,199,195),
11106 (7,5,85,41,56,71,202,198),
11107 (7,5,2,20,20,20,23,24),
11108 (7,5,3,20,20,21,25,26),
11109 (7,5,4,20,21,21,26,27),
11110 (7,5,5,21,21,21,27,28),
11111 (7,5,6,21,21,22,29,30),
11112 (7,5,7,21,21,22,30,31),
11113 (7,5,8,21,22,23,31,33),
11114 (7,5,9,21,22,23,33,34),
11115 (7,5,10,17,24,23,36,34),
11116 (7,5,11,17,24,24,37,35),
11117 (7,5,12,17,25,24,38,37),
11118 (7,5,13,17,25,24,39,38),
11119 (7,5,14,17,25,25,41,39),
11120 (7,5,15,18,25,25,42,41),
11121 (7,5,16,18,26,26,43,42),
11122 (7,5,17,18,26,26,45,43),
11123 (7,5,18,18,26,26,46,45),
11124 (7,5,19,18,27,27,47,46),
11125 (7,5,20,19,27,27,49,48),
11126 (7,5,21,19,27,28,50,49),
11127 (7,5,22,19,27,28,52,51),
11128 (7,5,23,19,28,29,53,52),
11129 (7,5,24,20,28,29,55,54),
11130 (7,5,25,20,28,30,56,55),
11131 (7,5,26,20,29,30,58,57),
11132 (7,5,27,20,29,30,59,59),
11133 (7,5,28,20,29,31,61,60),
11134 (7,5,29,21,30,31,62,62),
11135 (7,5,30,21,30,32,64,64),
11136 (7,5,31,21,30,32,66,65),
11137 (7,5,32,21,31,33,67,67),
11138 (7,5,33,22,31,33,69,69),
11139 (7,5,34,22,31,34,71,70),
11140 (7,5,35,22,32,34,72,72),
11141 (7,5,36,23,32,35,74,74),
11142 (7,5,37,23,32,36,76,76),
11143 (7,5,38,23,33,36,78,78),
11144 (7,5,39,23,33,37,79,80),
11145 (7,5,40,24,33,37,81,81),
11146 (7,5,41,24,34,38,83,83),
11147 (7,5,42,24,34,38,85,85),
11148 (7,5,43,24,35,39,87,87),
11149 (7,5,44,25,35,39,89,89),
11150 (7,5,45,25,35,40,91,91),
11151 (7,5,46,25,36,41,93,93),
11152 (7,5,47,26,36,41,95,95),
11153 (7,5,48,26,37,42,97,98),
11154 (7,5,49,26,37,43,99,100),
11155 (7,5,50,27,37,43,105,102),
11156 (7,5,51,27,38,44,108,104),
11157 (7,5,52,27,38,44,110,106),
11158 (7,5,53,28,39,45,112,108),
11159 (7,5,54,28,39,46,114,111),
11160 (7,5,55,28,40,46,117,113),
11161 (7,5,56,29,40,47,119,115),
11162 (7,5,57,29,41,48,121,118),
11163 (7,5,58,29,41,49,123,120),
11164 (7,5,59,30,42,49,126,123),
11165 (7,5,60,30,42,50,129,125),
11166 (7,5,61,30,42,51,131,127),
11167 (7,5,62,31,43,51,134,130),
11168 (7,5,63,31,43,52,136,133),
11169 (7,5,64,31,44,53,139,135),
11170 (7,5,65,32,45,54,141,138),
11171 (7,5,66,32,45,55,144,140),
11172 (7,5,67,33,46,55,146,143),
11173 (7,5,68,33,46,56,150,146),
11174 (7,5,69,33,47,57,153,149),
11175 (7,5,70,34,47,58,155,151),
11176 (7,5,71,34,48,59,158,154),
11177 (7,5,72,35,48,59,161,157),
11178 (7,5,73,35,49,60,164,160),
11179 (7,5,74,36,49,61,166,163),
11180 (7,5,75,36,50,62,169,166),
11181 (7,5,76,36,51,63,173,169),
11182 (7,5,77,37,51,64,176,172),
11183 (7,5,78,37,52,65,179,175),
11184 (7,5,79,38,52,66,182,178),
11185 (7,5,80,38,53,67,185,181),
11186 (7,6,1,18,23,21,24,20),
11187 (7,6,2,19,24,22,24,20),
11188 (7,6,3,21,25,23,24,21),
11189 (7,6,4,22,25,25,24,21),
11190 (7,6,5,23,26,26,24,21),
11191 (7,6,6,25,27,27,24,21),
11192 (7,6,7,26,28,28,24,22),
11193 (7,6,8,27,29,29,25,22),
11194 (7,6,9,29,29,31,25,22),
11195 (7,6,10,30,30,32,25,23),
11196 (7,6,11,32,31,33,25,23),
11197 (7,6,12,33,32,34,25,23),
11198 (7,6,13,34,33,36,25,24),
11199 (7,6,14,36,34,37,25,24),
11200 (7,6,15,37,35,38,25,24),
11201 (7,6,16,39,36,40,25,25),
11202 (7,6,17,40,36,41,25,25),
11203 (7,6,18,42,37,43,26,25),
11204 (7,6,19,43,38,44,26,26),
11205 (7,6,20,45,39,45,26,26),
11206 (7,6,21,47,40,47,26,26),
11207 (7,6,22,48,41,48,26,27),
11208 (7,6,23,50,42,50,26,27),
11209 (7,6,24,51,43,51,26,28),
11210 (7,6,25,53,44,52,27,28),
11211 (7,6,26,55,45,54,27,28),
11212 (7,6,27,56,46,55,27,29),
11213 (7,6,28,58,47,57,27,29),
11214 (7,6,29,59,48,58,27,30),
11215 (7,6,30,61,49,60,27,30),
11216 (7,6,31,63,50,62,27,30),
11217 (7,6,32,65,51,63,28,31),
11218 (7,6,33,66,52,65,28,31),
11219 (7,6,34,68,53,66,28,32),
11220 (7,6,35,70,55,68,28,32),
11221 (7,6,36,72,56,69,28,33),
11222 (7,6,37,73,57,71,29,33),
11223 (7,6,38,75,58,73,29,34),
11224 (7,6,39,77,59,74,29,34),
11225 (7,6,40,79,60,76,29,35),
11226 (7,6,41,81,61,78,29,35),
11227 (7,6,42,82,62,79,30,35),
11228 (7,6,43,84,64,81,30,36),
11229 (7,6,44,86,65,83,30,36),
11230 (7,6,45,88,66,85,30,37),
11231 (7,6,46,90,67,86,30,37),
11232 (7,6,47,92,68,88,31,38),
11233 (7,6,48,94,70,90,31,38),
11234 (7,6,49,96,71,92,31,39),
11235 (7,6,50,98,72,93,31,40),
11236 (7,6,51,99,72,93,32,40),
11237 (7,6,52,100,73,95,32,41),
11238 (7,6,53,101,74,96,32,41),
11239 (7,6,54,102,75,97,32,42),
11240 (7,6,55,103,76,98,33,42),
11241 (7,6,56,106,78,101,33,43),
11242 (7,6,57,111,79,103,33,43),
11243 (7,6,58,113,80,105,34,44),
11244 (7,6,59,116,82,107,34,44),
11245 (7,6,60,118,83,109,34,45),
11246 (7,6,61,120,84,111,34,46),
11247 (7,6,62,127,86,119,34,46),
11248 (7,6,63,129,87,122,35,47),
11249 (7,6,64,132,89,125,35,47),
11250 (7,6,65,135,90,127,35,48),
11251 (7,6,66,137,92,130,35,49),
11252 (7,6,67,138,93,130,36,49),
11253 (7,6,68,140,95,131,36,50),
11254 (7,6,69,142,96,131,36,51),
11255 (7,6,70,145,98,132,36,51),
11256 (7,6,71,148,100,135,37,52),
11257 (7,6,72,150,101,137,37,53),
11258 (7,6,73,153,103,140,37,54),
11259 (7,6,74,154,105,142,37,54),
11260 (7,6,75,155,106,145,38,55),
11261 (7,6,76,158,108,151,38,56),
11262 (7,6,77,161,110,157,38,57),
11263 (7,6,78,164,111,162,38,57),
11264 (7,6,79,167,113,165,39,58),
11265 (7,6,80,170,115,168,39,59),
11266 (7,6,81,173,116,163,38,60),
11267 (7,6,82,173,118,165,39,60),
11268 (7,6,83,180,120,168,39,61),
11269 (7,6,84,180,122,171,39,62),
11270 (7,6,85,186,123,174,39,63),
11271 (7,7,81,117,77,138,139,146),
11272 (7,7,82,119,79,141,142,148),
11273 (7,7,83,122,80,143,142,151),
11274 (7,7,84,124,81,145,142,153),
11275 (7,7,85,126,82,148,148,156),
11276 (7,7,10,23,26,29,31,30),
11277 (7,7,11,24,26,30,32,31),
11278 (7,7,12,25,27,31,33,32),
11279 (7,7,13,25,27,32,34,33),
11280 (7,7,14,26,28,33,35,34),
11281 (7,7,15,27,28,34,36,36),
11282 (7,7,16,28,29,35,37,37),
11283 (7,7,17,29,29,36,38,38),
11284 (7,7,18,30,30,37,39,39),
11285 (7,7,19,31,30,38,40,40),
11286 (7,7,20,32,31,39,41,41),
11287 (7,7,21,33,31,40,42,42),
11288 (7,7,22,33,32,41,43,43),
11289 (7,7,23,34,32,42,44,44),
11290 (7,7,24,35,33,43,45,46),
11291 (7,7,25,36,33,45,46,47),
11292 (7,7,26,37,34,46,47,48),
11293 (7,7,27,38,34,47,48,49),
11294 (7,7,28,39,35,48,49,50),
11295 (7,7,29,40,35,49,50,52),
11296 (7,7,30,41,36,50,51,53),
11297 (7,7,31,43,36,52,53,54),
11298 (7,7,32,44,37,53,54,56),
11299 (7,7,33,45,38,54,55,57),
11300 (7,7,34,46,38,55,56,58),
11301 (7,7,35,47,39,57,57,60),
11302 (7,7,36,48,40,58,59,61),
11303 (7,7,37,49,40,59,60,62),
11304 (7,7,38,50,41,61,61,64),
11305 (7,7,39,51,41,62,62,65),
11306 (7,7,40,53,42,63,64,67),
11307 (7,7,41,54,43,65,65,68),
11308 (7,7,42,55,43,66,66,70),
11309 (7,7,43,56,44,68,67,71),
11310 (7,7,44,58,45,69,69,73),
11311 (7,7,45,59,45,71,70,74),
11312 (7,7,46,60,46,72,72,76),
11313 (7,7,47,61,47,74,73,77),
11314 (7,7,48,63,48,75,74,79),
11315 (7,7,49,64,48,77,76,81),
11316 (7,7,50,65,49,78,77,82),
11317 (7,7,51,67,50,80,79,84),
11318 (7,7,52,68,51,81,80,86),
11319 (7,7,53,70,51,83,82,87),
11320 (7,7,54,71,52,85,83,89),
11321 (7,7,55,72,53,86,85,91),
11322 (7,7,56,74,54,88,86,93),
11323 (7,7,57,75,55,90,88,94),
11324 (7,7,58,77,55,91,90,96),
11325 (7,7,59,78,56,93,91,98),
11326 (7,7,60,80,57,95,93,100),
11327 (7,7,61,82,58,97,95,102),
11328 (7,7,62,83,59,99,96,104),
11329 (7,7,63,85,60,100,98,106),
11330 (7,7,64,86,60,102,100,108),
11331 (7,7,65,88,61,104,102,110),
11332 (7,7,66,90,62,106,103,112),
11333 (7,7,67,91,63,108,105,114),
11334 (7,7,68,93,64,110,107,116),
11335 (7,7,69,95,65,112,109,118),
11336 (7,7,70,97,66,114,111,120),
11337 (7,7,71,98,67,116,113,122),
11338 (7,7,72,100,68,118,115,125),
11339 (7,7,73,102,69,120,117,127),
11340 (7,7,74,104,70,123,119,129),
11341 (7,7,75,106,71,125,121,131),
11342 (7,7,76,108,72,127,123,134),
11343 (7,7,77,109,73,129,125,136),
11344 (7,7,78,111,74,131,127,138),
11345 (7,7,79,113,75,134,129,141),
11346 (7,7,80,115,76,136,131,143),
11347 (7,8,1,15,23,19,27,22),
11348 (7,8,2,15,23,19,28,23),
11349 (7,8,3,15,23,20,30,25),
11350 (7,8,4,15,23,20,31,26),
11351 (7,8,5,15,24,20,32,27),
11352 (7,8,6,15,24,20,34,29),
11353 (7,8,7,16,24,21,35,30),
11354 (7,8,8,16,24,21,37,31),
11355 (7,8,9,16,24,21,38,33),
11356 (7,8,10,16,24,22,40,34),
11357 (7,8,11,16,25,22,41,36),
11358 (7,8,12,16,25,22,42,37),
11359 (7,8,13,16,25,23,44,38),
11360 (7,8,14,16,25,23,45,40),
11361 (7,8,15,17,25,23,47,41),
11362 (7,8,16,17,25,24,49,43),
11363 (7,8,17,17,26,24,50,44),
11364 (7,8,18,17,26,24,52,46),
11365 (7,8,19,17,26,25,53,47),
11366 (7,8,20,17,26,25,55,49),
11367 (7,8,21,17,26,26,57,51),
11368 (7,8,22,18,27,26,58,52),
11369 (7,8,23,18,27,26,60,54),
11370 (7,8,24,18,27,27,61,55),
11371 (7,8,25,18,27,27,63,57),
11372 (7,8,26,18,28,27,65,59),
11373 (7,8,27,18,28,28,67,60),
11374 (7,8,28,18,28,28,68,62),
11375 (7,8,29,19,28,29,70,64),
11376 (7,8,30,19,29,29,72,65),
11377 (7,8,31,19,29,30,74,67),
11378 (7,8,32,19,29,30,75,69),
11379 (7,8,33,19,29,30,77,70),
11380 (7,8,34,20,30,31,79,72),
11381 (7,8,35,20,30,31,81,74),
11382 (7,8,36,20,30,32,83,76),
11383 (7,8,37,20,30,32,85,78),
11384 (7,8,38,20,31,33,86,79),
11385 (7,8,39,21,31,33,88,81),
11386 (7,8,40,21,31,34,90,83),
11387 (7,8,41,21,32,34,92,85),
11388 (7,8,42,21,32,35,94,87),
11389 (7,8,43,21,32,35,96,89),
11390 (7,8,44,22,32,36,98,91),
11391 (7,8,45,22,33,36,100,92),
11392 (7,8,46,22,33,37,102,94),
11393 (7,8,47,22,33,37,104,96),
11394 (7,8,48,22,34,38,106,98),
11395 (7,8,49,23,34,38,108,100),
11396 (7,8,50,23,34,39,110,102),
11397 (7,8,51,23,35,39,112,104),
11398 (7,8,52,23,35,40,114,106),
11399 (7,8,53,24,35,40,117,108),
11400 (7,8,54,24,36,41,119,110),
11401 (7,8,55,24,36,41,121,112),
11402 (7,8,56,24,37,42,123,114),
11403 (7,8,57,25,37,42,125,117),
11404 (7,8,58,25,37,43,127,119),
11405 (7,8,59,25,38,43,130,121),
11406 (7,8,60,25,38,44,132,123),
11407 (7,8,61,26,38,45,134,125),
11408 (7,8,62,26,39,45,136,127),
11409 (7,8,63,26,39,46,139,129),
11410 (7,8,64,26,40,46,141,132),
11411 (7,8,65,27,40,47,143,134),
11412 (7,8,66,27,40,48,146,136),
11413 (7,8,67,27,41,48,148,138),
11414 (7,8,68,27,41,49,150,140),
11415 (7,8,69,28,42,49,153,143),
11416 (7,8,70,28,42,50,155,145),
11417 (7,8,71,28,42,51,168,148),
11418 (7,8,72,28,43,52,168,151),
11419 (7,8,73,28,43,53,171,154),
11420 (7,8,74,29,44,53,174,156),
11421 (7,8,75,29,44,54,177,159),
11422 (7,8,76,29,44,55,180,162),
11423 (7,8,77,30,45,56,183,165),
11424 (7,8,78,30,45,56,186,168),
11425 (7,8,79,30,46,57,190,171),
11426 (7,8,80,31,46,58,193,174),
11427 (7,8,81,31,46,60,197,177),
11428 (7,8,82,31,46,60,200,180),
11429 (7,8,83,31,47,61,203,184),
11430 (7,8,84,32,47,62,207,187),
11431 (7,8,85,32,48,63,210,190),
11432 (7,9,1,15,23,20,26,22),
11433 (7,9,2,15,23,21,27,23),
11434 (7,9,3,16,24,21,28,24),
11435 (7,9,4,16,24,22,29,25),
11436 (7,9,5,16,24,22,31,27),
11437 (7,9,6,17,25,23,32,28),
11438 (7,9,7,17,25,23,33,29),
11439 (7,9,8,17,26,24,34,30),
11440 (7,9,9,17,26,25,36,31),
11441 (7,9,10,18,26,25,37,33),
11442 (7,9,11,18,27,26,38,34),
11443 (7,9,12,18,27,26,39,35),
11444 (7,9,13,19,28,27,41,36),
11445 (7,9,14,19,28,28,42,38),
11446 (7,9,15,20,28,28,43,39),
11447 (7,9,16,20,29,29,45,40),
11448 (7,9,17,20,29,30,46,42),
11449 (7,9,18,21,30,30,47,43),
11450 (7,9,19,21,30,31,49,44),
11451 (7,9,20,21,31,32,50,46),
11452 (7,9,21,22,31,32,51,47),
11453 (7,9,22,22,31,33,53,49),
11454 (7,9,23,23,32,34,54,50),
11455 (7,9,24,23,32,34,56,51),
11456 (7,9,25,23,33,35,57,53),
11457 (7,9,26,24,33,36,59,54),
11458 (7,9,27,24,34,37,60,56),
11459 (7,9,28,25,34,37,62,57),
11460 (7,9,29,25,35,38,63,59),
11461 (7,9,30,25,35,39,65,60),
11462 (7,9,31,26,36,40,66,62),
11463 (7,9,32,26,36,40,68,63),
11464 (7,9,33,27,37,41,69,65),
11465 (7,9,34,27,38,42,71,66),
11466 (7,9,35,28,38,43,73,68),
11467 (7,9,36,28,39,43,74,69),
11468 (7,9,37,28,39,44,76,71),
11469 (7,9,38,29,40,45,77,73),
11470 (7,9,39,29,40,46,79,74),
11471 (7,9,40,30,41,47,81,76),
11472 (7,9,41,30,41,48,82,78),
11473 (7,9,42,31,42,48,84,79),
11474 (7,9,43,31,43,49,86,81),
11475 (7,9,44,32,43,50,88,83),
11476 (7,9,45,32,44,51,89,84),
11477 (7,9,46,33,44,52,91,86),
11478 (7,9,47,33,45,53,93,88),
11479 (7,9,48,34,46,54,95,89),
11480 (7,9,49,34,46,54,96,91),
11481 (7,9,50,35,47,55,98,93),
11482 (7,9,51,35,48,56,100,95),
11483 (7,9,52,36,48,57,102,97),
11484 (7,9,53,36,49,58,104,98),
11485 (7,9,54,37,50,59,105,100),
11486 (7,9,55,37,50,60,107,102),
11487 (7,9,56,38,51,61,109,104),
11488 (7,9,57,38,52,62,111,106),
11489 (7,9,58,39,52,63,113,108),
11490 (7,9,59,40,53,64,115,109),
11491 (7,9,60,40,54,65,117,111),
11492 (7,9,61,41,54,66,119,113),
11493 (7,9,62,41,55,67,121,115),
11494 (7,9,63,42,56,68,123,117),
11495 (7,9,64,42,57,69,125,119),
11496 (7,9,65,43,57,70,127,121),
11497 (7,9,66,44,58,71,129,123),
11498 (7,9,67,44,59,72,131,125),
11499 (7,9,68,45,59,73,133,127),
11500 (7,9,69,45,60,74,135,129),
11501 (7,9,70,46,61,75,137,131),
11502 (7,9,71,47,62,84,147,142),
11503 (7,9,72,48,62,85,148,144),
11504 (7,9,73,49,63,85,153,147),
11505 (7,9,74,49,64,88,153,150),
11506 (7,9,75,50,65,90,155,152),
11507 (7,9,76,51,66,91,158,155),
11508 (7,9,77,52,67,92,161,158),
11509 (7,9,78,52,68,93,163,161),
11510 (7,9,79,53,69,95,166,164),
11511 (7,9,80,54,70,96,170,166),
11512 (7,9,81,55,70,91,172,169),
11513 (7,9,82,55,70,92,175,172),
11514 (7,9,83,56,71,94,178,175),
11515 (7,9,84,57,72,95,181,178),
11516 (7,9,85,58,73,96,184,181),
11517 (7,11,81,86,85,99,149,161),
11518 (7,11,82,87,87,101,151,164),
11519 (7,11,83,89,88,102,154,167),
11520 (7,11,84,90,89,104,163,170),
11521 (7,11,85,91,91,106,163,173),
11522 (7,11,10,21,26,25,33,31),
11523 (7,11,11,21,27,26,34,33),
11524 (7,11,12,22,27,27,35,34),
11525 (7,11,13,22,28,27,36,35),
11526 (7,11,14,23,28,28,37,36),
11527 (7,11,15,24,29,29,39,37),
11528 (7,11,16,24,29,29,40,38),
11529 (7,11,17,25,30,30,41,40),
11530 (7,11,18,25,31,31,42,41),
11531 (7,11,19,26,31,31,43,42),
11532 (7,11,20,27,32,32,44,43),
11533 (7,11,21,27,32,33,45,45),
11534 (7,11,22,28,33,34,46,46),
11535 (7,11,23,29,34,34,47,47),
11536 (7,11,24,29,34,35,49,49),
11537 (7,11,25,30,35,36,50,50),
11538 (7,11,26,31,35,37,51,51),
11539 (7,11,27,31,36,37,52,53),
11540 (7,11,28,32,37,38,53,54),
11541 (7,11,29,33,37,39,55,56),
11542 (7,11,30,33,38,40,56,57),
11543 (7,11,31,34,39,41,57,58),
11544 (7,11,32,35,39,42,59,60),
11545 (7,11,33,36,40,42,60,61),
11546 (7,11,34,36,41,43,61,63),
11547 (7,11,35,37,41,44,63,64),
11548 (7,11,36,38,42,45,64,66),
11549 (7,11,37,39,43,46,65,68),
11550 (7,11,38,40,43,47,67,69),
11551 (7,11,39,40,44,48,68,71),
11552 (7,11,40,41,45,49,70,72),
11553 (7,11,41,42,46,50,71,74),
11554 (7,11,42,43,46,51,73,76),
11555 (7,11,43,44,47,52,74,77),
11556 (7,11,44,45,48,52,76,79),
11557 (7,11,45,45,49,53,77,81),
11558 (7,11,46,46,50,54,79,83),
11559 (7,11,47,47,50,56,80,84),
11560 (7,11,48,48,51,57,82,86),
11561 (7,11,49,49,52,58,84,88),
11562 (7,11,50,50,53,59,85,90),
11563 (7,11,51,51,54,60,87,92),
11564 (7,11,52,52,55,61,89,94),
11565 (7,11,53,53,56,62,90,96),
11566 (7,11,54,54,56,63,92,98),
11567 (7,11,55,55,57,64,94,100),
11568 (7,11,56,56,58,65,96,102),
11569 (7,11,57,57,59,66,97,104),
11570 (7,11,58,58,60,68,99,106),
11571 (7,11,59,59,61,69,101,108),
11572 (7,11,60,60,62,70,103,110),
11573 (7,11,61,61,63,71,105,112),
11574 (7,11,62,62,64,72,107,114),
11575 (7,11,63,63,65,74,109,117),
11576 (7,11,64,64,66,75,111,119),
11577 (7,11,65,66,67,76,113,121),
11578 (7,11,66,67,68,78,115,123),
11579 (7,11,67,68,69,79,117,126),
11580 (7,11,68,69,70,80,119,128),
11581 (7,11,69,70,71,82,121,130),
11582 (7,11,70,71,72,83,123,133),
11583 (7,11,71,73,73,84,125,135),
11584 (7,11,72,74,75,86,128,138),
11585 (7,11,73,75,76,87,130,140),
11586 (7,11,74,76,77,89,132,143),
11587 (7,11,75,78,78,90,134,145),
11588 (7,11,76,79,79,92,137,148),
11589 (7,11,77,80,80,93,139,151),
11590 (7,11,78,82,82,95,141,153),
11591 (7,11,79,83,83,96,144,156),
11592 (7,11,80,84,84,98,146,159),
11593 (8,1,1,24,22,23,16,21),
11594 (8,1,2,25,23,24,16,21),
11595 (8,1,3,27,24,25,16,22),
11596 (8,1,4,28,24,26,16,22),
11597 (8,1,5,29,25,28,16,22),
11598 (8,1,6,31,26,29,16,22),
11599 (8,1,7,32,27,30,17,23),
11600 (8,1,8,33,28,31,17,23),
11601 (8,1,9,35,28,33,17,23),
11602 (8,1,10,36,29,34,17,24),
11603 (8,1,11,37,30,35,17,24),
11604 (8,1,12,39,31,36,17,24),
11605 (8,1,13,40,32,38,17,25),
11606 (8,1,14,42,33,39,17,25),
11607 (8,1,15,43,34,40,18,25),
11608 (8,1,16,45,35,42,18,26),
11609 (8,1,17,46,35,43,18,26),
11610 (8,1,18,48,36,44,18,26),
11611 (8,1,19,49,37,46,18,27),
11612 (8,1,20,51,38,47,18,27),
11613 (8,1,21,52,39,49,18,27),
11614 (8,1,22,54,40,50,18,28),
11615 (8,1,23,55,41,51,19,28),
11616 (8,1,24,57,42,53,19,29),
11617 (8,1,25,59,43,54,19,29),
11618 (8,1,26,60,44,56,19,29),
11619 (8,1,27,62,45,57,19,30),
11620 (8,1,28,63,46,59,19,30),
11621 (8,1,29,65,47,60,20,31),
11622 (8,1,30,67,48,62,20,31),
11623 (8,1,31,69,49,63,20,31),
11624 (8,1,32,70,50,65,20,32),
11625 (8,1,33,72,51,67,20,32),
11626 (8,1,34,74,53,68,20,33),
11627 (8,1,35,75,54,70,21,33),
11628 (8,1,36,77,55,71,21,34),
11629 (8,1,37,79,56,73,21,34),
11630 (8,1,38,81,57,75,21,35),
11631 (8,1,39,83,58,76,21,35),
11632 (8,1,40,84,59,78,22,35),
11633 (8,1,41,86,60,80,22,36),
11634 (8,1,42,88,62,81,22,36),
11635 (8,1,43,90,63,83,22,37),
11636 (8,1,44,92,64,85,22,37),
11637 (8,1,45,94,65,86,23,38),
11638 (8,1,46,96,66,88,23,38),
11639 (8,1,47,98,67,90,23,39),
11640 (8,1,48,100,69,92,23,39),
11641 (8,1,49,102,70,93,24,40),
11642 (8,1,50,103,71,95,24,40),
11643 (8,1,51,105,72,97,24,41),
11644 (8,1,52,107,74,99,24,42),
11645 (8,1,53,109,75,101,25,42),
11646 (8,1,54,112,76,103,25,43),
11647 (8,1,55,114,78,104,25,43),
11648 (8,1,56,116,79,106,25,44),
11649 (8,1,57,118,80,108,25,44),
11650 (8,1,58,120,81,110,26,45),
11651 (8,1,59,122,83,112,26,45),
11652 (8,1,60,124,84,114,26,46),
11653 (8,1,61,126,85,116,27,47),
11654 (8,1,62,128,87,118,27,47),
11655 (8,1,63,130,88,120,27,48),
11656 (8,1,64,133,90,122,27,48),
11657 (8,1,65,135,91,124,28,49),
11658 (8,1,66,137,92,126,28,50),
11659 (8,1,67,139,94,128,28,50),
11660 (8,1,68,141,95,130,28,51),
11661 (8,1,69,144,97,132,29,51),
11662 (8,1,70,146,98,134,29,52),
11663 (8,1,71,149,99,136,29,53),
11664 (8,1,72,151,101,139,29,54),
11665 (8,1,73,154,103,141,29,55),
11666 (8,1,74,157,104,144,30,55),
11667 (8,1,75,166,106,151,30,56),
11668 (8,1,76,172,108,157,30,57),
11669 (8,1,77,175,110,161,31,58),
11670 (8,1,78,179,111,163,31,58),
11671 (8,1,79,182,113,164,31,59),
11672 (8,1,80,185,115,169,32,60),
11673 (8,1,81,178,117,161,32,61),
11674 (8,1,82,190,119,164,32,61),
11675 (8,1,83,193,121,167,32,62),
11676 (8,1,84,196,123,170,33,63),
11677 (8,1,85,199,125,173,33,64),
11678 (8,2,81,161,93,146,95,108),
11679 (8,2,82,164,95,148,97,109),
11680 (8,2,83,167,96,151,98,111),
11681 (8,2,84,171,98,153,100,113),
11682 (8,2,85,173,99,156,102,115),
11683 (8,2,10,32,27,30,21,28),
11684 (8,2,11,33,27,31,22,29),
11685 (8,2,12,34,28,32,23,29),
11686 (8,2,13,35,29,33,23,30),
11687 (8,2,14,36,29,34,24,31),
11688 (8,2,15,37,30,36,25,31),
11689 (8,2,16,39,30,37,25,32),
11690 (8,2,17,40,31,38,26,33),
11691 (8,2,18,41,32,39,27,34),
11692 (8,2,19,42,32,40,27,34),
11693 (8,2,20,43,33,41,28,35),
11694 (8,2,21,44,34,42,29,36),
11695 (8,2,22,46,34,43,30,37),
11696 (8,2,23,47,35,44,30,38),
11697 (8,2,24,48,36,46,31,38),
11698 (8,2,25,49,36,47,32,39),
11699 (8,2,26,51,37,48,33,40),
11700 (8,2,27,52,38,49,33,41),
11701 (8,2,28,53,38,50,34,42),
11702 (8,2,29,55,39,52,35,43),
11703 (8,2,30,56,40,53,36,43),
11704 (8,2,31,57,41,54,37,44),
11705 (8,2,32,59,41,56,38,45),
11706 (8,2,33,60,42,57,38,46),
11707 (8,2,34,62,43,58,39,47),
11708 (8,2,35,63,44,60,40,48),
11709 (8,2,36,65,45,61,41,49),
11710 (8,2,37,66,45,62,42,50),
11711 (8,2,38,68,46,64,43,51),
11712 (8,2,39,69,47,65,44,52),
11713 (8,2,40,71,48,67,45,53),
11714 (8,2,41,72,49,68,46,54),
11715 (8,2,42,74,49,70,47,55),
11716 (8,2,43,75,50,71,48,56),
11717 (8,2,44,77,51,73,48,57),
11718 (8,2,45,79,52,74,49,58),
11719 (8,2,46,80,53,76,50,59),
11720 (8,2,47,82,54,77,52,60),
11721 (8,2,48,84,55,79,53,61),
11722 (8,2,49,85,56,81,54,63),
11723 (8,2,50,87,57,82,55,64),
11724 (8,2,51,89,58,84,56,65),
11725 (8,2,52,91,59,86,57,66),
11726 (8,2,53,93,60,87,58,67),
11727 (8,2,54,94,61,89,59,68),
11728 (8,2,55,96,62,91,60,70),
11729 (8,2,56,98,63,93,61,71),
11730 (8,2,57,100,64,94,62,72),
11731 (8,2,58,102,65,96,64,73),
11732 (8,2,59,109,66,98,65,75),
11733 (8,2,60,109,67,100,66,76),
11734 (8,2,61,109,68,102,67,77),
11735 (8,2,62,115,69,104,68,79),
11736 (8,2,63,117,70,106,70,80),
11737 (8,2,64,117,71,108,71,81),
11738 (8,2,65,117,73,110,72,83),
11739 (8,2,66,119,74,112,74,84),
11740 (8,2,67,121,75,114,75,86),
11741 (8,2,68,123,76,116,76,87),
11742 (8,2,69,131,77,118,78,88),
11743 (8,2,70,131,79,120,79,90),
11744 (8,2,71,131,80,122,80,91),
11745 (8,2,72,138,81,125,82,93),
11746 (8,2,73,140,82,127,83,95),
11747 (8,2,74,140,84,129,85,96),
11748 (8,2,75,145,85,131,86,98),
11749 (8,2,76,145,86,134,88,99),
11750 (8,2,77,151,88,136,89,101),
11751 (8,2,78,154,89,138,91,103),
11752 (8,2,79,156,90,141,92,104),
11753 (8,2,80,156,92,143,94,106),
11754 (8,3,1,21,25,22,16,22),
11755 (8,3,2,21,26,23,17,23),
11756 (8,3,3,22,28,24,17,23),
11757 (8,3,4,22,29,25,18,24),
11758 (8,3,5,23,30,26,18,25),
11759 (8,3,6,23,32,27,19,25),
11760 (8,3,7,24,33,28,20,26),
11761 (8,3,8,24,35,28,20,26),
11762 (8,3,9,25,36,29,21,27),
11763 (8,3,10,25,38,30,21,28),
11764 (8,3,11,25,39,31,22,29),
11765 (8,3,12,26,41,32,23,29),
11766 (8,3,13,26,42,33,23,30),
11767 (8,3,14,27,44,34,24,31),
11768 (8,3,15,27,45,35,25,31),
11769 (8,3,16,28,47,36,25,32),
11770 (8,3,17,28,48,38,26,33),
11771 (8,3,18,29,50,39,27,34),
11772 (8,3,19,29,51,40,28,34),
11773 (8,3,20,30,53,41,28,35),
11774 (8,3,21,31,55,42,29,36),
11775 (8,3,22,31,56,43,30,37),
11776 (8,3,23,32,58,44,30,37),
11777 (8,3,24,32,60,45,31,38),
11778 (8,3,25,33,61,46,32,39),
11779 (8,3,26,33,63,48,33,40),
11780 (8,3,27,34,65,49,33,41),
11781 (8,3,28,35,66,50,34,41),
11782 (8,3,29,35,68,51,35,42),
11783 (8,3,30,36,70,52,36,43),
11784 (8,3,31,36,72,53,37,44),
11785 (8,3,32,37,73,55,37,45),
11786 (8,3,33,38,75,56,38,46),
11787 (8,3,34,38,77,57,39,47),
11788 (8,3,35,39,79,58,40,48),
11789 (8,3,36,39,81,60,41,48),
11790 (8,3,37,40,83,61,41,49),
11791 (8,3,38,41,85,62,42,50),
11792 (8,3,39,41,86,63,43,51),
11793 (8,3,40,42,88,65,44,52),
11794 (8,3,41,43,90,66,45,53),
11795 (8,3,42,43,92,67,46,54),
11796 (8,3,43,44,94,69,47,55),
11797 (8,3,44,45,96,70,47,56),
11798 (8,3,45,45,98,71,48,57),
11799 (8,3,46,46,100,73,49,58),
11800 (8,3,47,47,102,74,50,59),
11801 (8,3,48,48,104,76,51,60),
11802 (8,3,49,48,106,77,52,61),
11803 (8,3,50,49,108,78,53,62),
11804 (8,3,51,50,110,80,54,63),
11805 (8,3,52,51,113,81,55,64),
11806 (8,3,53,51,115,83,56,65),
11807 (8,3,54,52,117,84,57,66),
11808 (8,3,55,53,119,86,58,67),
11809 (8,3,56,54,121,87,59,68),
11810 (8,3,57,54,123,89,60,69),
11811 (8,3,58,55,126,90,61,70),
11812 (8,3,59,56,128,92,62,71),
11813 (8,3,60,57,130,93,63,73),
11814 (8,3,61,58,132,95,64,74),
11815 (8,3,62,58,134,96,65,75),
11816 (8,3,63,59,137,98,66,76),
11817 (8,3,64,60,139,99,67,77),
11818 (8,3,65,61,141,101,68,78),
11819 (8,3,66,62,144,103,69,79),
11820 (8,3,67,62,146,104,70,80),
11821 (8,3,68,63,148,106,71,82),
11822 (8,3,69,64,151,107,72,83),
11823 (8,3,70,65,153,109,73,84),
11824 (8,3,71,66,156,111,74,85),
11825 (8,3,72,67,159,113,75,86),
11826 (8,3,73,68,162,115,76,88),
11827 (8,3,74,69,165,117,78,89),
11828 (8,3,75,70,174,119,82,91),
11829 (8,3,76,71,177,121,83,92),
11830 (8,3,77,72,180,123,85,94),
11831 (8,3,78,73,184,125,86,95),
11832 (8,3,79,74,187,127,87,97),
11833 (8,3,80,75,190,129,89,98),
11834 (8,3,81,76,196,130,87,100),
11835 (8,3,82,78,199,133,89,101),
11836 (8,3,83,79,202,135,90,103),
11837 (8,3,84,80,206,137,92,104),
11838 (8,3,85,81,210,139,93,106),
11839 (8,4,1,22,25,22,16,21),
11840 (8,4,2,23,26,23,16,21),
11841 (8,4,3,24,28,23,16,22),
11842 (8,4,4,24,29,24,16,22),
11843 (8,4,5,25,31,25,17,22),
11844 (8,4,6,26,32,25,17,23),
11845 (8,4,7,27,34,26,17,23),
11846 (8,4,8,27,35,27,17,24),
11847 (8,4,9,28,37,28,17,24),
11848 (8,4,10,29,38,28,18,24),
11849 (8,4,11,30,40,29,18,25),
11850 (8,4,12,31,41,30,18,25),
11851 (8,4,13,32,43,31,18,26),
11852 (8,4,14,32,45,32,18,26),
11853 (8,4,15,33,46,32,19,26),
11854 (8,4,16,34,48,33,19,27),
11855 (8,4,17,35,50,34,19,27),
11856 (8,4,18,36,51,35,19,28),
11857 (8,4,19,37,53,36,19,28),
11858 (8,4,20,38,55,36,20,29),
11859 (8,4,21,39,56,37,20,29),
11860 (8,4,22,40,58,38,20,30),
11861 (8,4,23,41,60,39,20,30),
11862 (8,4,24,42,62,40,20,31),
11863 (8,4,25,43,63,41,21,31),
11864 (8,4,26,44,65,42,21,32),
11865 (8,4,27,45,67,43,21,32),
11866 (8,4,28,46,69,44,21,33),
11867 (8,4,29,47,71,44,22,33),
11868 (8,4,30,48,72,45,22,34),
11869 (8,4,31,49,74,46,22,34),
11870 (8,4,32,50,76,47,22,35),
11871 (8,4,33,51,78,48,23,35),
11872 (8,4,34,52,80,49,23,36),
11873 (8,4,35,53,82,50,23,36),
11874 (8,4,36,54,84,51,24,37),
11875 (8,4,37,55,86,52,24,37),
11876 (8,4,38,56,88,53,24,38),
11877 (8,4,39,57,90,54,24,38),
11878 (8,4,40,58,92,55,25,39),
11879 (8,4,41,59,94,56,25,40),
11880 (8,4,42,60,96,57,25,40),
11881 (8,4,43,62,98,58,26,41),
11882 (8,4,44,63,100,59,26,41),
11883 (8,4,45,64,102,60,26,42),
11884 (8,4,46,65,104,61,27,43),
11885 (8,4,47,66,107,63,27,43),
11886 (8,4,48,67,109,64,27,44),
11887 (8,4,49,69,111,65,27,44),
11888 (8,4,50,70,113,66,28,45),
11889 (8,4,51,71,115,67,28,46),
11890 (8,4,52,72,117,68,28,46),
11891 (8,4,53,74,120,69,29,47),
11892 (8,4,54,75,122,70,29,48),
11893 (8,4,55,76,124,72,29,48),
11894 (8,4,56,77,126,73,30,49),
11895 (8,4,57,79,129,74,30,50),
11896 (8,4,58,80,131,75,30,50),
11897 (8,4,59,81,133,76,31,51),
11898 (8,4,60,82,136,77,31,52),
11899 (8,4,61,84,138,79,32,52),
11900 (8,4,62,85,140,80,32,53),
11901 (8,4,63,86,143,81,32,54),
11902 (8,4,64,88,145,82,33,55),
11903 (8,4,65,89,148,84,33,55),
11904 (8,4,66,90,150,85,33,56),
11905 (8,4,67,92,153,86,34,57),
11906 (8,4,68,93,155,87,34,58),
11907 (8,4,69,95,157,89,35,58),
11908 (8,4,70,96,160,90,35,59),
11909 (8,4,71,98,163,94,35,60),
11910 (8,4,72,100,166,96,36,60),
11911 (8,4,73,101,169,96,36,61),
11912 (8,4,74,103,172,97,37,62),
11913 (8,4,75,105,175,98,37,63),
11914 (8,4,76,106,178,99,37,64),
11915 (8,4,77,108,181,105,38,65),
11916 (8,4,78,110,185,107,38,66),
11917 (8,4,79,112,188,109,39,67),
11918 (8,4,80,114,191,110,39,68),
11919 (8,4,81,115,204,107,40,69),
11920 (8,4,82,117,207,108,40,69),
11921 (8,4,83,119,211,110,41,70),
11922 (8,4,84,121,215,112,41,71),
11923 (8,4,85,123,218,114,42,72),
11924 (8,5,1,21,22,21,18,24),
11925 (8,5,2,21,22,21,19,25),
11926 (8,5,3,21,22,22,21,27),
11927 (8,5,4,21,23,22,22,28),
11928 (8,5,5,22,23,22,23,29),
11929 (8,5,6,22,23,23,25,31),
11930 (8,5,7,22,23,23,26,32),
11931 (8,5,8,22,24,24,27,34),
11932 (8,5,9,22,24,24,29,35),
11933 (8,5,10,22,24,24,30,37),
11934 (8,5,11,23,24,25,32,38),
11935 (8,5,12,23,24,25,33,40),
11936 (8,5,13,23,25,26,35,41),
11937 (8,5,14,23,25,26,36,43),
11938 (8,5,15,23,25,26,38,44),
11939 (8,5,16,24,26,27,39,46),
11940 (8,5,17,24,26,27,41,47),
11941 (8,5,18,24,26,28,42,49),
11942 (8,5,19,24,26,28,44,50),
11943 (8,5,20,24,27,29,45,52),
11944 (8,5,21,25,27,29,47,54),
11945 (8,5,22,25,27,30,48,55),
11946 (8,5,23,25,28,30,50,57),
11947 (8,5,24,25,28,31,52,59),
11948 (8,5,25,25,28,31,53,60),
11949 (8,5,26,26,28,32,55,62),
11950 (8,5,27,26,29,32,56,64),
11951 (8,5,28,26,29,33,58,65),
11952 (8,5,29,26,29,33,60,67),
11953 (8,5,30,27,30,34,62,69),
11954 (8,5,31,27,30,34,63,71),
11955 (8,5,32,27,30,35,65,73),
11956 (8,5,33,27,31,35,67,74),
11957 (8,5,34,28,31,36,68,76),
11958 (8,5,35,28,32,36,70,78),
11959 (8,5,36,28,32,37,72,80),
11960 (8,5,37,29,32,37,74,82),
11961 (8,5,38,29,33,38,76,84),
11962 (8,5,39,29,33,38,77,86),
11963 (8,5,40,29,33,39,79,87),
11964 (8,5,41,30,34,40,81,89),
11965 (8,5,42,30,34,40,83,91),
11966 (8,5,43,30,35,41,85,93),
11967 (8,5,44,31,35,41,87,95),
11968 (8,5,45,31,35,42,89,97),
11969 (8,5,46,31,36,43,91,99),
11970 (8,5,47,32,36,43,93,101),
11971 (8,5,48,32,37,44,94,103),
11972 (8,5,49,32,37,44,96,105),
11973 (8,5,50,33,37,45,98,107),
11974 (8,5,51,33,38,46,100,110),
11975 (8,5,52,33,38,46,102,112),
11976 (8,5,53,34,39,47,104,114),
11977 (8,5,54,34,39,48,106,116),
11978 (8,5,55,34,40,48,109,118),
11979 (8,5,56,35,40,49,111,120),
11980 (8,5,57,35,41,50,113,122),
11981 (8,5,58,35,41,50,115,125),
11982 (8,5,59,36,42,51,117,127),
11983 (8,5,60,36,42,52,119,129),
11984 (8,5,61,36,42,52,121,131),
11985 (8,5,62,37,43,53,123,133),
11986 (8,5,63,37,43,54,125,136),
11987 (8,5,64,38,44,55,128,138),
11988 (8,5,65,38,44,55,130,140),
11989 (8,5,66,38,45,56,132,143),
11990 (8,5,67,39,45,57,134,145),
11991 (8,5,68,39,46,58,136,147),
11992 (8,5,69,40,46,58,139,150),
11993 (8,5,70,40,47,59,141,152),
11994 (8,5,71,40,48,60,144,155),
11995 (8,5,72,41,48,60,147,158),
11996 (8,5,73,41,49,61,150,161),
11997 (8,5,74,42,49,62,152,164),
11998 (8,5,75,42,50,63,155,167),
11999 (8,5,76,42,51,64,158,170),
12000 (8,5,77,43,51,65,161,173),
12001 (8,5,78,43,52,66,164,176),
12002 (8,5,79,44,52,67,167,179),
12003 (8,5,80,44,53,68,170,182),
12004 (8,5,81,45,54,68,181,186),
12005 (8,5,82,45,54,68,185,189),
12006 (8,5,83,46,55,69,189,192),
12007 (8,5,84,46,56,70,192,196),
12008 (8,5,85,47,56,71,195,199),
12009 (8,6,1,24,22,23,16,21),
12010 (8,6,2,25,23,24,16,21),
12011 (8,6,3,27,24,25,16,22),
12012 (8,6,4,28,24,26,16,22),
12013 (8,6,5,29,25,28,16,22),
12014 (8,6,6,31,26,29,16,22),
12015 (8,6,7,32,27,30,17,23),
12016 (8,6,8,33,28,31,17,23),
12017 (8,6,9,35,28,33,17,23),
12018 (8,6,10,36,29,34,17,24),
12019 (8,6,11,37,30,35,17,24),
12020 (8,6,12,39,31,36,17,24),
12021 (8,6,13,40,32,38,17,25),
12022 (8,6,14,42,33,39,17,25),
12023 (8,6,15,43,34,40,18,25),
12024 (8,6,16,45,35,42,18,26),
12025 (8,6,17,46,35,43,18,26),
12026 (8,6,18,48,36,44,18,26),
12027 (8,6,19,49,37,46,18,27),
12028 (8,6,20,51,38,47,18,27),
12029 (8,6,21,52,39,49,18,27),
12030 (8,6,22,54,40,50,18,28),
12031 (8,6,23,55,41,51,19,28),
12032 (8,6,24,57,42,53,19,29),
12033 (8,6,25,59,43,54,19,29),
12034 (8,6,26,60,44,56,19,29),
12035 (8,6,27,62,45,57,19,30),
12036 (8,6,28,63,46,59,19,30),
12037 (8,6,29,65,47,60,20,31),
12038 (8,6,30,67,48,62,20,31),
12039 (8,6,31,69,49,63,20,31),
12040 (8,6,32,70,50,65,20,32),
12041 (8,6,33,72,51,67,20,32),
12042 (8,6,34,74,53,68,20,33),
12043 (8,6,35,75,54,70,21,33),
12044 (8,6,36,77,55,71,21,34),
12045 (8,6,37,79,56,73,21,34),
12046 (8,6,38,81,57,75,21,35),
12047 (8,6,39,83,58,76,21,35),
12048 (8,6,40,84,59,78,22,35),
12049 (8,6,41,86,60,80,22,36),
12050 (8,6,42,88,62,81,22,36),
12051 (8,6,43,90,63,83,22,37),
12052 (8,6,44,92,64,85,22,37),
12053 (8,6,45,94,65,86,23,38),
12054 (8,6,46,96,66,88,23,38),
12055 (8,6,47,98,67,90,23,39),
12056 (8,6,48,100,69,92,23,39),
12057 (8,6,49,102,70,93,24,40),
12058 (8,6,50,103,71,95,24,40),
12059 (8,6,51,105,72,96,24,41),
12060 (8,6,52,106,74,97,24,42),
12061 (8,6,53,107,73,98,25,42),
12062 (8,6,54,108,74,99,25,43),
12063 (8,6,55,109,75,100,25,43),
12064 (8,6,56,112,77,103,25,44),
12065 (8,6,57,114,78,105,25,44),
12066 (8,6,58,118,79,107,26,45),
12067 (8,6,59,119,81,109,26,45),
12068 (8,6,60,121,82,111,26,46),
12069 (8,6,61,123,83,113,26,47),
12070 (8,6,62,126,85,115,26,47),
12071 (8,6,63,128,86,118,27,48),
12072 (8,6,64,131,88,120,27,48),
12073 (8,6,65,138,89,122,27,49),
12074 (8,6,66,140,91,125,27,50),
12075 (8,6,67,143,92,127,28,50),
12076 (8,6,68,145,94,129,28,51),
12077 (8,6,69,148,95,132,28,52),
12078 (8,6,70,151,97,134,28,52),
12079 (8,6,71,154,99,137,29,53),
12080 (8,6,72,156,100,139,29,54),
12081 (8,6,73,159,102,142,29,55),
12082 (8,6,74,162,104,144,29,55),
12083 (8,6,75,165,105,147,30,56),
12084 (8,6,76,168,107,150,30,57),
12085 (8,6,77,169,109,153,30,58),
12086 (8,6,78,170,110,155,30,58),
12087 (8,6,79,178,112,158,31,59),
12088 (8,6,80,181,114,161,31,60),
12089 (8,6,81,179,116,163,31,61),
12090 (8,6,82,179,118,165,32,61),
12091 (8,6,83,186,120,168,32,62),
12092 (8,6,84,186,122,171,32,63),
12093 (8,6,85,192,123,174,32,64),
12094 (8,7,1,22,22,22,17,23),
12095 (8,7,2,23,22,23,18,24),
12096 (8,7,3,24,23,24,19,25),
12097 (8,7,4,25,23,25,20,26),
12098 (8,7,5,25,24,26,21,27),
12099 (8,7,6,26,24,27,22,28),
12100 (8,7,7,27,25,28,23,29),
12101 (8,7,8,28,25,29,24,30),
12102 (8,7,9,29,25,30,25,31),
12103 (8,7,10,30,26,31,26,33),
12104 (8,7,11,31,26,32,27,34),
12105 (8,7,12,32,27,33,28,35),
12106 (8,7,13,33,27,34,29,36),
12107 (8,7,14,34,28,35,30,37),
12108 (8,7,15,34,28,36,31,38),
12109 (8,7,16,35,29,38,32,39),
12110 (8,7,17,36,29,39,33,41),
12111 (8,7,18,37,30,40,34,42),
12112 (8,7,19,38,30,41,35,43),
12113 (8,7,20,39,31,42,36,44),
12114 (8,7,21,40,32,43,37,45),
12115 (8,7,22,41,32,45,38,47),
12116 (8,7,23,43,33,46,39,48),
12117 (8,7,24,44,33,47,40,49),
12118 (8,7,25,45,34,48,42,51),
12119 (8,7,26,46,34,49,43,52),
12120 (8,7,27,47,35,51,44,53),
12121 (8,7,28,48,35,52,45,54),
12122 (8,7,29,49,36,53,46,56),
12123 (8,7,30,50,37,54,48,57),
12124 (8,7,31,51,37,56,49,59),
12125 (8,7,32,52,38,57,50,60),
12126 (8,7,33,53,38,58,51,61),
12127 (8,7,34,55,39,60,52,63),
12128 (8,7,35,56,40,61,54,64),
12129 (8,7,36,57,40,62,55,66),
12130 (8,7,37,58,41,64,56,67),
12131 (8,7,38,59,42,65,57,68),
12132 (8,7,39,61,42,66,59,70),
12133 (8,7,40,62,43,68,60,71),
12134 (8,7,41,63,44,69,61,73),
12135 (8,7,42,64,44,71,63,74),
12136 (8,7,43,65,45,72,64,76),
12137 (8,7,44,67,46,74,65,77),
12138 (8,7,45,68,46,75,67,79),
12139 (8,7,46,69,47,76,68,80),
12140 (8,7,47,71,48,78,69,82),
12141 (8,7,48,72,49,79,71,83),
12142 (8,7,49,73,49,81,72,85),
12143 (8,7,50,74,50,82,74,87),
12144 (8,7,51,76,51,84,75,88),
12145 (8,7,52,77,51,85,77,90),
12146 (8,7,53,78,52,87,78,92),
12147 (8,7,54,80,53,89,79,93),
12148 (8,7,55,81,54,90,81,95),
12149 (8,7,56,83,55,92,82,96),
12150 (8,7,57,84,55,93,84,98),
12151 (8,7,58,85,56,95,85,100),
12152 (8,7,59,87,57,97,87,102),
12153 (8,7,60,88,58,98,88,103),
12154 (8,7,61,90,58,100,90,105),
12155 (8,7,62,91,59,101,91,107),
12156 (8,7,63,93,60,103,93,108),
12157 (8,7,64,94,61,105,94,110),
12158 (8,7,65,95,62,106,96,112),
12159 (8,7,66,97,63,108,98,114),
12160 (8,7,67,98,63,110,99,116),
12161 (8,7,68,100,64,112,101,117),
12162 (8,7,69,101,65,113,102,119),
12163 (8,7,70,103,66,115,104,121),
12164 (8,7,71,104,67,117,116,123),
12165 (8,7,72,106,68,119,118,126),
12166 (8,7,73,108,69,121,121,128),
12167 (8,7,74,110,70,124,123,130),
12168 (8,7,75,112,71,126,125,132),
12169 (8,7,76,114,72,128,127,135),
12170 (8,7,77,115,73,130,129,137),
12171 (8,7,78,117,74,132,132,139),
12172 (8,7,79,119,75,135,134,142),
12173 (8,7,80,121,76,137,136,144),
12174 (8,7,81,123,77,138,132,147),
12175 (8,7,82,125,79,141,135,149),
12176 (8,7,83,128,80,143,135,152),
12177 (8,7,84,130,81,145,135,154),
12178 (8,7,85,132,82,148,141,157),
12179 (8,8,1,21,22,21,19,23),
12180 (8,8,2,21,22,21,20,24),
12181 (8,8,3,21,22,22,22,26),
12182 (8,8,4,21,22,22,23,27),
12183 (8,8,5,21,23,22,25,28),
12184 (8,8,6,21,23,22,26,30),
12185 (8,8,7,21,23,23,27,31),
12186 (8,8,8,22,23,23,29,32),
12187 (8,8,9,22,23,23,30,34),
12188 (8,8,10,22,23,24,32,35),
12189 (8,8,11,22,24,24,33,37),
12190 (8,8,12,22,24,24,35,38),
12191 (8,8,13,22,24,25,36,39),
12192 (8,8,14,22,24,25,38,41),
12193 (8,8,15,22,24,25,39,42),
12194 (8,8,16,22,24,26,41,44),
12195 (8,8,17,23,25,26,42,45),
12196 (8,8,18,23,25,26,44,47),
12197 (8,8,19,23,25,27,46,48),
12198 (8,8,20,23,25,27,47,50),
12199 (8,8,21,23,25,27,49,51),
12200 (8,8,22,23,26,28,51,53),
12201 (8,8,23,23,26,28,52,55),
12202 (8,8,24,24,26,29,54,56),
12203 (8,8,25,24,26,29,56,58),
12204 (8,8,26,24,27,29,57,60),
12205 (8,8,27,24,27,30,59,61),
12206 (8,8,28,24,27,30,61,63),
12207 (8,8,29,24,27,31,63,65),
12208 (8,8,30,24,28,31,64,66),
12209 (8,8,31,25,28,31,66,68),
12210 (8,8,32,25,28,32,68,70),
12211 (8,8,33,25,28,32,70,71),
12212 (8,8,34,25,29,33,71,73),
12213 (8,8,35,25,29,33,73,75),
12214 (8,8,36,26,29,34,75,77),
12215 (8,8,37,26,29,34,77,79),
12216 (8,8,38,26,30,35,79,80),
12217 (8,8,39,26,30,35,81,82),
12218 (8,8,40,26,30,35,83,84),
12219 (8,8,41,27,31,36,85,86),
12220 (8,8,42,27,31,36,87,88),
12221 (8,8,43,27,31,37,89,90),
12222 (8,8,44,27,32,37,91,91),
12223 (8,8,45,27,32,38,93,93),
12224 (8,8,46,28,32,38,95,95),
12225 (8,8,47,28,32,39,97,97),
12226 (8,8,48,28,33,39,99,99),
12227 (8,8,49,28,33,40,101,101),
12228 (8,8,50,29,33,40,103,103),
12229 (8,8,51,29,34,41,105,105),
12230 (8,8,52,29,34,42,107,107),
12231 (8,8,53,29,35,42,109,109),
12232 (8,8,54,30,35,43,111,111),
12233 (8,8,55,30,35,43,113,113),
12234 (8,8,56,30,36,44,115,115),
12235 (8,8,57,30,36,44,118,118),
12236 (8,8,58,31,36,45,120,120),
12237 (8,8,59,31,37,45,122,122),
12238 (8,8,60,31,37,46,124,124),
12239 (8,8,61,31,37,47,126,126),
12240 (8,8,62,32,38,47,129,128),
12241 (8,8,63,32,38,48,131,130),
12242 (8,8,64,32,39,48,133,133),
12243 (8,8,65,33,39,49,135,135),
12244 (8,8,66,33,39,50,138,137),
12245 (8,8,67,33,40,50,140,139),
12246 (8,8,68,33,40,51,142,141),
12247 (8,8,69,34,41,51,145,144),
12248 (8,8,70,34,41,52,147,146),
12249 (8,8,71,34,41,53,150,149),
12250 (8,8,72,34,42,54,153,152),
12251 (8,8,73,34,42,55,156,155),
12252 (8,8,74,35,43,55,159,157),
12253 (8,8,75,35,43,56,162,160),
12254 (8,8,76,35,43,57,168,163),
12255 (8,8,77,36,44,58,168,166),
12256 (8,8,78,36,44,58,171,169),
12257 (8,8,79,36,45,59,177,172),
12258 (8,8,80,37,45,60,177,175),
12259 (8,8,81,37,46,60,190,178),
12260 (8,8,82,37,46,60,193,181),
12261 (8,8,83,37,47,61,196,185),
12262 (8,8,84,38,47,62,200,188),
12263 (8,8,85,38,48,63,203,191),
12264 (8,9,1,21,22,22,18,23),
12265 (8,9,81,61,70,91,165,170),
12266 (8,9,82,61,70,92,168,173),
12267 (8,9,83,62,71,94,171,176),
12268 (8,9,84,63,72,95,174,179),
12269 (8,9,85,64,73,96,177,182),
12270 (8,9,2,19,18,23,21,28),
12271 (8,9,3,20,19,23,22,29),
12272 (8,9,4,20,19,24,24,30),
12273 (8,9,5,20,19,24,25,32),
12274 (8,9,6,20,20,25,26,33),
12275 (8,9,7,21,20,25,27,34),
12276 (8,9,8,21,21,26,28,35),
12277 (8,9,9,21,21,26,30,36),
12278 (8,9,10,24,25,26,27,33),
12279 (8,9,11,24,26,26,29,34),
12280 (8,9,12,24,26,27,30,35),
12281 (8,9,13,25,26,27,31,37),
12282 (8,9,14,25,27,28,32,38),
12283 (8,9,15,25,27,29,33,39),
12284 (8,9,16,26,28,29,34,40),
12285 (8,9,17,26,28,30,36,42),
12286 (8,9,18,26,28,30,37,43),
12287 (8,9,19,27,29,31,38,44),
12288 (8,9,20,27,29,32,39,46),
12289 (8,9,21,27,30,32,41,47),
12290 (8,9,22,28,30,33,42,48),
12291 (8,9,23,28,31,34,43,50),
12292 (8,9,24,29,31,34,45,51),
12293 (8,9,25,29,32,35,46,53),
12294 (8,9,26,29,32,36,47,54),
12295 (8,9,27,30,32,36,49,55),
12296 (8,9,28,30,33,37,50,57),
12297 (8,9,29,31,33,38,52,58),
12298 (8,9,30,31,34,38,53,60),
12299 (8,9,31,31,34,39,54,62),
12300 (8,9,32,32,35,40,56,63),
12301 (8,9,33,32,35,41,57,65),
12302 (8,9,34,33,36,41,59,66),
12303 (8,9,35,33,36,42,60,68),
12304 (8,9,36,34,37,43,62,70),
12305 (8,9,37,34,38,44,64,71),
12306 (8,9,38,34,38,45,65,73),
12307 (8,9,39,35,39,45,67,75),
12308 (8,9,40,35,39,46,68,76),
12309 (8,9,41,36,40,47,70,78),
12310 (8,9,42,36,40,48,72,80),
12311 (8,9,43,37,41,49,73,82),
12312 (8,9,44,37,41,50,75,83),
12313 (8,9,45,38,42,50,77,85),
12314 (8,9,46,38,43,51,79,87),
12315 (8,9,47,39,43,52,80,89),
12316 (8,9,48,39,44,53,82,91),
12317 (8,9,49,40,45,54,84,93),
12318 (8,9,50,40,45,55,90,95),
12319 (8,9,51,41,46,56,92,97),
12320 (8,9,52,41,46,57,94,99),
12321 (8,9,53,42,47,58,96,101),
12322 (8,9,54,43,48,59,98,103),
12323 (8,9,55,43,48,60,101,105),
12324 (8,9,56,44,49,61,103,107),
12325 (8,9,57,44,50,62,105,109),
12326 (8,9,58,45,51,63,107,112),
12327 (8,9,59,45,51,64,109,114),
12328 (8,9,60,46,52,65,111,116),
12329 (8,9,61,47,53,66,113,118),
12330 (8,9,62,47,53,67,115,121),
12331 (8,9,63,48,54,68,118,123),
12332 (8,9,64,48,55,69,120,125),
12333 (8,9,65,49,56,71,123,128),
12334 (8,9,66,50,57,72,125,130),
12335 (8,9,67,50,57,73,128,133),
12336 (8,9,68,51,58,74,130,135),
12337 (8,9,69,52,59,75,132,137),
12338 (8,9,70,52,60,76,135,140),
12339 (8,9,71,53,61,78,137,143),
12340 (8,9,72,54,61,79,140,145),
12341 (8,9,73,55,62,80,143,148),
12342 (8,9,74,55,63,81,146,151),
12343 (8,9,75,56,64,83,148,153),
12344 (8,9,76,57,65,84,151,156),
12345 (8,9,77,58,66,85,154,159),
12346 (8,9,78,58,67,87,156,162),
12347 (8,9,79,59,68,88,159,165),
12348 (8,9,80,60,69,89,162,167),
12349 (8,11,1,22,22,21,18,23),
12350 (8,11,81,92,85,99,142,162),
12351 (8,11,82,93,87,101,144,165),
12352 (8,11,83,95,88,102,147,168),
12353 (8,11,84,96,89,104,156,171),
12354 (8,11,85,97,91,106,156,174),
12355 (8,11,2,27,16,23,18,25),
12356 (8,11,3,27,16,23,19,26),
12357 (8,11,4,28,17,24,20,27),
12358 (8,11,5,28,17,25,21,29),
12359 (8,11,6,29,18,25,22,30),
12360 (8,11,7,29,18,26,23,31),
12361 (8,11,8,30,19,27,24,32),
12362 (8,11,9,30,19,27,26,34),
12363 (8,11,10,27,26,25,26,32),
12364 (8,11,11,27,27,26,27,34),
12365 (8,11,12,28,27,27,28,35),
12366 (8,11,13,28,28,27,29,36),
12367 (8,11,14,29,28,28,30,37),
12368 (8,11,15,30,29,29,32,38),
12369 (8,11,16,30,29,29,33,39),
12370 (8,11,17,31,30,30,34,41),
12371 (8,11,18,31,31,31,35,42),
12372 (8,11,19,32,31,31,36,43),
12373 (8,11,20,33,32,32,37,44),
12374 (8,11,21,33,32,33,38,46),
12375 (8,11,22,34,33,34,39,47),
12376 (8,11,23,35,34,34,40,48),
12377 (8,11,24,35,34,35,42,50),
12378 (8,11,25,36,35,36,43,51),
12379 (8,11,26,37,35,37,44,52),
12380 (8,11,27,37,36,37,45,54),
12381 (8,11,28,38,37,38,46,55),
12382 (8,11,29,39,37,39,48,57),
12383 (8,11,30,39,38,40,49,58),
12384 (8,11,31,40,39,41,50,59),
12385 (8,11,32,41,39,42,52,61),
12386 (8,11,33,42,40,42,53,62),
12387 (8,11,34,42,41,43,54,64),
12388 (8,11,35,43,41,44,56,65),
12389 (8,11,36,44,42,45,57,67),
12390 (8,11,37,45,43,46,58,69),
12391 (8,11,38,46,43,47,60,70),
12392 (8,11,39,46,44,48,61,72),
12393 (8,11,40,47,45,49,63,73),
12394 (8,11,41,48,46,50,64,75),
12395 (8,11,42,49,46,51,66,77),
12396 (8,11,43,50,47,52,67,78),
12397 (8,11,44,51,48,52,69,80),
12398 (8,11,45,51,49,53,70,82),
12399 (8,11,46,52,50,54,72,84),
12400 (8,11,47,53,50,56,73,85),
12401 (8,11,48,54,51,57,75,87),
12402 (8,11,49,55,52,58,77,89),
12403 (8,11,50,56,53,59,78,91),
12404 (8,11,51,57,54,60,80,93),
12405 (8,11,52,58,55,61,82,95),
12406 (8,11,53,59,56,62,83,97),
12407 (8,11,54,60,56,63,85,99),
12408 (8,11,55,61,57,64,87,101),
12409 (8,11,56,62,58,65,89,103),
12410 (8,11,57,63,59,66,90,105),
12411 (8,11,58,64,60,68,92,107),
12412 (8,11,59,65,61,69,94,109),
12413 (8,11,60,66,62,70,96,111),
12414 (8,11,61,67,63,71,98,113),
12415 (8,11,62,68,64,72,100,115),
12416 (8,11,63,69,65,74,102,118),
12417 (8,11,64,70,66,75,104,120),
12418 (8,11,65,72,67,76,106,122),
12419 (8,11,66,73,68,78,108,124),
12420 (8,11,67,74,69,79,110,127),
12421 (8,11,68,75,70,80,112,129),
12422 (8,11,69,76,71,82,114,131),
12423 (8,11,70,77,72,83,116,134),
12424 (8,11,71,79,73,84,118,136),
12425 (8,11,72,80,75,86,121,139),
12426 (8,11,73,81,76,87,123,141),
12427 (8,11,74,82,77,89,125,144),
12428 (8,11,75,84,78,90,127,146),
12429 (8,11,76,85,79,92,130,149),
12430 (8,11,77,86,80,93,132,152),
12431 (8,11,78,88,82,95,134,154),
12432 (8,11,79,89,83,96,137,157),
12433 (8,11,80,90,84,98,139,160),
12434 (9,1,8,32,26,30,21,22),
12435 (9,1,7,31,25,29,21,22),
12436 (9,1,6,30,24,28,20,21),
12437 (9,1,5,28,23,27,20,21),
12438 (9,1,4,27,22,26,20,21),
12439 (9,1,3,26,22,24,20,21),
12440 (9,1,2,24,21,23,20,20),
12441 (9,1,1,23,20,22,20,20),
12442 (9,1,9,34,26,32,21,22),
12443 (9,1,10,35,27,33,21,23),
12444 (9,1,11,36,28,34,21,23),
12445 (9,1,12,38,29,35,21,23),
12446 (9,1,13,39,30,37,21,24),
12447 (9,1,14,41,31,38,21,24),
12448 (9,1,15,42,32,39,21,24),
12449 (9,1,16,44,33,41,21,25),
12450 (9,1,17,45,34,42,22,25),
12451 (9,1,18,47,34,43,22,25),
12452 (9,1,19,48,35,45,22,26),
12453 (9,1,20,50,36,46,22,26),
12454 (9,1,21,51,37,48,22,26),
12455 (9,1,22,53,38,49,22,27),
12456 (9,1,23,54,39,51,22,27),
12457 (9,1,24,56,40,52,23,28),
12458 (9,1,25,58,41,53,23,28),
12459 (9,1,26,59,42,55,23,28),
12460 (9,1,27,61,43,56,23,29),
12461 (9,1,28,63,44,58,23,29),
12462 (9,1,29,64,45,59,23,30),
12463 (9,1,30,66,46,61,24,30),
12464 (9,1,31,68,47,62,24,30),
12465 (9,1,32,69,48,64,24,31),
12466 (9,1,33,71,50,66,24,31),
12467 (9,1,34,73,51,67,24,32),
12468 (9,1,35,74,52,69,24,32),
12469 (9,1,36,76,53,70,25,33),
12470 (9,1,37,78,54,72,25,33),
12471 (9,1,38,80,55,74,25,34),
12472 (9,1,39,82,56,75,25,34),
12473 (9,1,40,83,57,77,25,35),
12474 (9,1,41,85,58,79,26,35),
12475 (9,1,42,87,60,80,26,35),
12476 (9,1,43,89,61,82,26,36),
12477 (9,1,44,91,62,84,26,36),
12478 (9,1,45,93,63,85,26,37),
12479 (9,1,46,95,64,87,27,37),
12480 (9,1,47,97,66,89,27,38),
12481 (9,1,48,99,67,91,27,38),
12482 (9,1,49,101,68,93,27,39),
12483 (9,1,50,103,69,94,28,40),
12484 (9,1,51,105,71,96,28,40),
12485 (9,1,52,107,72,98,28,41),
12486 (9,1,53,109,73,100,28,41),
12487 (9,1,54,111,74,102,29,42),
12488 (9,1,55,113,76,103,29,42),
12489 (9,1,56,115,77,105,29,43),
12490 (9,1,57,117,78,107,29,43),
12491 (9,1,58,119,79,109,30,44),
12492 (9,1,59,121,81,111,30,44),
12493 (9,1,60,123,82,113,30,45),
12494 (9,1,61,125,83,115,30,46),
12495 (9,1,62,127,85,117,31,46),
12496 (9,1,63,129,86,119,31,47),
12497 (9,1,64,132,88,121,31,47),
12498 (9,1,65,134,89,123,32,48),
12499 (9,1,66,136,90,125,32,49),
12500 (9,1,67,138,92,127,32,49),
12501 (9,1,68,140,93,129,32,50),
12502 (9,1,69,143,95,131,33,50),
12503 (9,1,70,145,96,133,33,51),
12504 (9,1,71,148,97,140,33,53),
12505 (9,1,72,156,99,143,33,54),
12506 (9,1,73,162,101,148,33,55),
12507 (9,1,74,162,102,148,34,55),
12508 (9,1,75,165,104,150,34,56),
12509 (9,1,76,171,106,156,34,57),
12510 (9,1,77,171,108,157,35,58),
12511 (9,1,78,174,109,159,35,58),
12512 (9,1,79,181,111,165,35,59),
12513 (9,1,80,184,113,168,36,60),
12514 (9,1,81,194,123,178,46,70),
12515 (9,1,82,204,133,188,56,80),
12516 (9,1,83,214,143,198,66,90),
12517 (9,1,84,224,153,208,76,100),
12518 (9,1,85,234,163,218,86,110),
12519 (9,3,1,22,20,22,20,21),
12520 (9,3,2,23,21,23,21,22),
12521 (9,3,3,24,21,24,21,22),
12522 (9,3,4,25,22,25,22,23),
12523 (9,3,5,26,22,26,23,24),
12524 (9,3,6,28,23,27,23,25),
12525 (9,3,7,29,24,28,24,25),
12526 (9,3,8,30,24,29,25,26),
12527 (9,3,9,31,25,30,25,27),
12528 (9,3,10,32,25,32,26,27),
12529 (9,3,11,33,26,33,27,28),
12530 (9,3,12,35,27,34,27,29),
12531 (9,3,13,36,27,35,28,30),
12532 (9,3,14,37,28,36,29,31),
12533 (9,3,15,38,29,37,30,31),
12534 (9,3,16,40,29,38,30,32),
12535 (9,3,17,41,30,40,31,33),
12536 (9,3,18,42,31,41,32,34),
12537 (9,3,19,43,31,42,33,35),
12538 (9,3,20,45,32,43,33,35),
12539 (9,3,21,46,33,45,34,36),
12540 (9,3,22,47,33,46,35,37),
12541 (9,3,23,49,34,47,36,38),
12542 (9,3,24,50,35,48,37,39),
12543 (9,3,25,51,36,50,37,40),
12544 (9,3,26,53,36,51,38,41),
12545 (9,3,27,54,37,52,39,42),
12546 (9,3,28,56,38,54,40,43),
12547 (9,3,29,57,39,55,41,43),
12548 (9,3,30,58,39,56,42,44),
12549 (9,3,31,60,40,58,43,45),
12550 (9,3,32,61,41,59,43,46),
12551 (9,3,33,63,42,60,44,47),
12552 (9,3,34,64,43,62,45,48),
12553 (9,3,35,66,44,63,46,49),
12554 (9,3,36,67,44,65,47,50),
12555 (9,3,37,69,45,66,48,51),
12556 (9,3,38,70,46,67,49,52),
12557 (9,3,39,72,47,69,50,53),
12558 (9,3,40,73,48,70,51,54),
12559 (9,3,41,75,49,72,52,55),
12560 (9,3,42,77,49,73,53,56),
12561 (9,3,43,78,50,75,54,57),
12562 (9,3,44,80,51,76,55,58),
12563 (9,3,45,81,52,78,56,59),
12564 (9,3,46,83,53,79,57,61),
12565 (9,3,47,85,54,81,58,62),
12566 (9,3,48,86,55,83,59,63),
12567 (9,3,49,88,56,84,60,64),
12568 (9,3,50,90,57,86,61,65),
12569 (9,3,51,91,58,87,62,66),
12570 (9,3,52,93,59,89,63,67),
12571 (9,3,53,95,60,91,64,68),
12572 (9,3,54,97,61,92,65,69),
12573 (9,3,55,98,61,94,66,71),
12574 (9,3,56,100,62,95,67,72),
12575 (9,3,57,102,63,97,68,73),
12576 (9,3,58,104,64,99,69,74),
12577 (9,3,59,105,65,101,70,75),
12578 (9,3,60,107,66,102,71,77),
12579 (9,3,61,109,67,104,73,78),
12580 (9,3,62,111,69,106,74,79),
12581 (9,3,63,113,70,107,75,80),
12582 (9,3,64,115,71,109,76,81),
12583 (9,3,65,116,72,111,77,83),
12584 (9,3,66,118,73,113,78,84),
12585 (9,3,67,120,74,115,79,85),
12586 (9,3,68,122,75,116,81,86),
12587 (9,3,69,124,76,118,82,88),
12588 (9,3,70,126,77,120,83,89),
12589 (9,3,71,148,78,122,84,92),
12590 (9,3,72,150,79,125,86,94),
12591 (9,3,73,152,80,127,87,96),
12592 (9,3,74,156,82,129,89,97),
12593 (9,3,75,158,83,131,90,99),
12594 (9,3,76,162,84,134,92,100),
12595 (9,3,77,164,86,136,93,103),
12596 (9,3,78,167,87,138,95,105),
12597 (9,3,79,170,88,153,96,106),
12598 (9,3,80,173,90,160,98,108),
12599 (9,3,81,183,100,170,108,118),
12600 (9,3,82,193,110,180,118,128),
12601 (9,3,83,203,120,190,128,138),
12602 (9,3,84,213,130,200,138,148),
12603 (9,3,85,223,140,210,148,158),
12604 (9,4,1,21,23,21,20,20),
12605 (9,4,2,22,24,22,20,20),
12606 (9,4,3,23,26,22,20,21),
12607 (9,4,4,23,27,23,20,21),
12608 (9,4,5,24,29,24,21,21),
12609 (9,4,6,25,30,25,21,22),
12610 (9,4,7,26,32,25,21,22),
12611 (9,4,8,26,33,26,21,23),
12612 (9,4,9,27,35,27,21,23),
12613 (9,4,10,28,36,27,21,23),
12614 (9,4,11,29,38,28,22,24),
12615 (9,4,12,30,39,29,22,24),
12616 (9,4,13,31,41,30,22,25),
12617 (9,4,14,31,43,31,22,25),
12618 (9,4,15,32,44,31,22,25),
12619 (9,4,16,33,46,32,23,26),
12620 (9,4,17,34,48,33,23,26),
12621 (9,4,18,35,49,34,23,27),
12622 (9,4,19,36,51,35,23,27),
12623 (9,4,20,37,53,35,23,28),
12624 (9,4,21,38,54,36,24,28),
12625 (9,4,22,39,56,37,24,29),
12626 (9,4,23,40,58,38,24,29),
12627 (9,4,24,41,60,39,24,30),
12628 (9,4,25,42,61,40,25,30),
12629 (9,4,26,43,63,41,25,31),
12630 (9,4,27,44,65,42,25,31),
12631 (9,4,28,45,67,43,25,32),
12632 (9,4,29,46,69,43,25,32),
12633 (9,4,30,47,71,44,26,33),
12634 (9,4,31,48,72,45,26,33),
12635 (9,4,32,49,74,46,26,34),
12636 (9,4,33,50,76,47,27,34),
12637 (9,4,34,51,78,48,27,35),
12638 (9,4,35,52,80,49,27,35),
12639 (9,4,36,53,82,50,27,36),
12640 (9,4,37,54,84,51,28,36),
12641 (9,4,38,55,86,52,28,37),
12642 (9,4,39,56,88,53,28,38),
12643 (9,4,40,57,90,54,28,38),
12644 (9,4,41,58,92,55,29,39),
12645 (9,4,42,60,94,56,29,39),
12646 (9,4,43,61,96,57,29,40),
12647 (9,4,44,62,98,58,30,40),
12648 (9,4,45,63,100,59,30,41),
12649 (9,4,46,64,103,61,30,42),
12650 (9,4,47,65,105,62,31,42),
12651 (9,4,48,66,107,63,31,43),
12652 (9,4,49,68,109,64,31,44),
12653 (9,4,50,69,111,65,32,44),
12654 (9,4,51,70,113,66,32,45),
12655 (9,4,52,71,116,67,32,45),
12656 (9,4,53,73,118,68,33,46),
12657 (9,4,54,74,120,69,33,47),
12658 (9,4,55,75,122,71,33,47),
12659 (9,4,56,76,125,72,34,48),
12660 (9,4,57,78,127,73,34,49),
12661 (9,4,58,79,129,74,34,49),
12662 (9,4,59,80,131,75,35,50),
12663 (9,4,60,81,134,77,35,51),
12664 (9,4,61,83,136,78,35,51),
12665 (9,4,62,84,138,79,36,52),
12666 (9,4,63,85,141,80,36,53),
12667 (9,4,64,87,143,81,37,54),
12668 (9,4,65,88,146,83,37,54),
12669 (9,4,66,89,148,84,37,55),
12670 (9,4,67,91,151,85,38,56),
12671 (9,4,68,92,153,86,38,57),
12672 (9,4,69,94,156,88,39,57),
12673 (9,4,70,95,158,89,39,58),
12674 (9,4,71,97,161,90,39,60),
12675 (9,4,72,99,164,92,40,60),
12676 (9,4,73,100,167,94,40,61),
12677 (9,4,74,102,170,95,41,62),
12678 (9,4,75,104,173,97,41,63),
12679 (9,4,76,105,176,98,41,64),
12680 (9,4,77,107,179,100,42,65),
12681 (9,4,78,109,183,106,42,66),
12682 (9,4,79,111,186,107,43,67),
12683 (9,4,80,113,189,109,43,69),
12684 (9,4,81,123,199,119,53,79),
12685 (9,4,82,133,209,129,63,89),
12686 (9,4,83,143,219,139,73,99),
12687 (9,4,84,153,229,149,83,109),
12688 (9,4,85,163,239,159,93,119),
12689 (9,5,1,20,20,20,22,23),
12690 (9,5,2,20,20,20,23,24),
12691 (9,5,3,20,20,21,25,26),
12692 (9,5,4,20,21,21,26,27),
12693 (9,5,5,21,21,21,27,28),
12694 (9,5,6,21,21,22,29,30),
12695 (9,5,7,21,21,22,30,31),
12696 (9,5,8,21,22,23,31,33),
12697 (9,5,9,21,22,23,33,34),
12698 (9,5,10,21,22,23,34,36),
12699 (9,5,11,22,22,24,36,37),
12700 (9,5,12,22,23,24,37,39),
12701 (9,5,13,22,23,25,38,40),
12702 (9,5,14,22,23,25,40,42),
12703 (9,5,15,22,23,25,41,43),
12704 (9,5,16,23,24,26,43,45),
12705 (9,5,17,23,24,26,44,46),
12706 (9,5,18,23,24,27,46,48),
12707 (9,5,19,23,24,27,47,49),
12708 (9,5,20,23,25,28,49,51),
12709 (9,5,21,24,25,28,51,53),
12710 (9,5,22,24,25,29,52,54),
12711 (9,5,23,24,26,29,54,56),
12712 (9,5,24,24,26,30,55,58),
12713 (9,5,25,25,26,30,57,59),
12714 (9,5,26,25,27,31,59,61),
12715 (9,5,27,25,27,31,60,63),
12716 (9,5,28,25,27,32,62,65),
12717 (9,5,29,25,28,32,64,66),
12718 (9,5,30,26,28,33,65,68),
12719 (9,5,31,26,28,33,67,70),
12720 (9,5,32,26,29,34,69,72),
12721 (9,5,33,27,29,34,70,73),
12722 (9,5,34,27,29,35,72,75),
12723 (9,5,35,27,30,35,74,77),
12724 (9,5,36,27,30,36,76,79),
12725 (9,5,37,28,30,36,78,81),
12726 (9,5,38,28,31,37,79,83),
12727 (9,5,39,28,31,38,81,85),
12728 (9,5,40,28,31,38,83,87),
12729 (9,5,41,29,32,39,85,88),
12730 (9,5,42,29,32,39,87,90),
12731 (9,5,43,29,33,40,89,92),
12732 (9,5,44,30,33,40,91,94),
12733 (9,5,45,30,33,41,92,96),
12734 (9,5,46,30,34,42,94,98),
12735 (9,5,47,31,34,42,96,100),
12736 (9,5,48,31,35,43,98,102),
12737 (9,5,49,31,35,44,100,104),
12738 (9,5,50,32,36,44,102,106),
12739 (9,5,51,32,36,45,104,109),
12740 (9,5,52,32,36,45,106,111),
12741 (9,5,53,33,37,46,108,113),
12742 (9,5,54,33,37,47,110,115),
12743 (9,5,55,33,38,47,112,117),
12744 (9,5,56,34,38,48,114,119),
12745 (9,5,57,34,39,49,117,121),
12746 (9,5,58,34,39,49,119,124),
12747 (9,5,59,35,40,50,121,126),
12748 (9,5,60,35,40,51,123,128),
12749 (9,5,61,35,41,51,125,130),
12750 (9,5,62,36,41,52,127,132),
12751 (9,5,63,36,41,53,129,135),
12752 (9,5,64,37,42,54,132,137),
12753 (9,5,65,37,42,54,134,139),
12754 (9,5,66,37,43,55,136,142),
12755 (9,5,67,38,43,56,138,144),
12756 (9,5,68,38,44,57,140,146),
12757 (9,5,69,39,44,57,143,149),
12758 (9,5,70,39,45,58,145,151),
12759 (9,5,71,39,46,59,148,158),
12760 (9,5,72,40,46,59,151,161),
12761 (9,5,73,40,47,60,154,164),
12762 (9,5,74,41,47,61,156,167),
12763 (9,5,75,41,48,62,159,170),
12764 (9,5,76,41,49,63,162,174),
12765 (9,5,77,42,49,64,165,177),
12766 (9,5,78,42,50,65,168,180),
12767 (9,5,79,43,50,66,171,183),
12768 (9,5,80,43,51,67,174,186),
12769 (9,5,81,53,61,77,184,196),
12770 (9,5,82,63,71,87,194,206),
12771 (9,5,83,73,81,97,204,216),
12772 (9,5,84,83,91,107,214,226),
12773 (9,5,85,93,101,117,224,236),
12774 (9,6,1,23,20,22,20,20),
12775 (9,6,2,24,21,23,20,20),
12776 (9,6,3,26,22,24,20,21),
12777 (9,6,4,27,22,26,20,21),
12778 (9,6,5,28,23,27,20,21),
12779 (9,6,6,30,24,28,20,21),
12780 (9,6,7,31,25,29,21,22),
12781 (9,6,8,32,26,30,21,22),
12782 (9,6,9,34,26,32,21,22),
12783 (9,6,10,35,27,33,21,23),
12784 (9,6,11,36,28,34,21,23),
12785 (9,6,12,38,29,35,21,23),
12786 (9,6,13,39,30,37,21,24),
12787 (9,6,14,41,31,38,21,24),
12788 (9,6,15,42,32,39,21,24),
12789 (9,6,16,44,33,41,21,25),
12790 (9,6,17,45,34,42,22,25),
12791 (9,6,18,47,34,43,22,25),
12792 (9,6,19,48,35,45,22,26),
12793 (9,6,20,50,36,46,22,26),
12794 (9,6,21,51,37,48,22,26),
12795 (9,6,22,53,38,49,22,27),
12796 (9,6,23,54,39,51,22,27),
12797 (9,6,24,56,40,52,23,28),
12798 (9,6,25,58,41,53,23,28),
12799 (9,6,26,59,42,55,23,28),
12800 (9,6,27,61,43,56,23,29),
12801 (9,6,28,63,44,58,23,29),
12802 (9,6,29,64,45,59,23,30),
12803 (9,6,30,66,46,61,24,30),
12804 (9,6,31,68,47,62,24,30),
12805 (9,6,32,69,48,64,24,31),
12806 (9,6,33,71,50,66,24,31),
12807 (9,6,34,73,51,67,24,32),
12808 (9,6,35,74,52,69,24,32),
12809 (9,6,36,76,53,70,25,33),
12810 (9,6,37,78,54,72,25,33),
12811 (9,6,38,80,55,74,25,34),
12812 (9,6,39,82,56,75,25,34),
12813 (9,6,40,83,57,77,25,35),
12814 (9,6,41,85,58,79,26,35),
12815 (9,6,42,87,60,80,26,35),
12816 (9,6,43,89,61,82,26,36),
12817 (9,6,44,91,62,84,26,36),
12818 (9,6,45,93,63,85,26,37),
12819 (9,6,46,95,64,87,27,37),
12820 (9,6,47,97,66,89,27,38),
12821 (9,6,48,99,67,91,27,38),
12822 (9,6,49,101,68,93,27,39),
12823 (9,6,50,103,69,94,28,40),
12824 (9,6,51,105,71,96,28,40),
12825 (9,6,52,106,72,97,28,41),
12826 (9,6,53,107,72,98,28,41),
12827 (9,6,54,107,73,98,29,42),
12828 (9,6,55,108,73,99,29,43),
12829 (9,6,56,111,75,102,29,44),
12830 (9,6,57,113,76,104,29,44),
12831 (9,6,58,118,77,106,30,45),
12832 (9,6,59,118,79,108,30,45),
12833 (9,6,60,123,80,110,30,46),
12834 (9,6,61,125,81,112,30,47),
12835 (9,6,62,128,83,114,30,47),
12836 (9,6,63,130,84,117,31,48),
12837 (9,6,64,130,86,119,31,48),
12838 (9,6,65,140,87,128,31,49),
12839 (9,6,66,143,89,131,31,50),
12840 (9,6,67,146,90,133,32,50),
12841 (9,6,68,148,92,135,32,51),
12842 (9,6,69,151,93,138,32,52),
12843 (9,6,70,154,95,140,32,52),
12844 (9,6,71,162,97,144,33,53),
12845 (9,6,72,164,98,146,33,54),
12846 (9,6,73,165,100,148,33,55),
12847 (9,6,74,166,102,151,33,55),
12848 (9,6,75,169,103,154,34,56),
12849 (9,6,76,172,105,157,34,57),
12850 (9,6,77,175,107,157,34,58),
12851 (9,6,78,176,108,157,34,58),
12852 (9,6,79,177,110,157,35,59),
12853 (9,6,80,180,112,160,35,60),
12854 (9,6,81,190,122,170,45,70),
12855 (9,6,82,200,132,180,55,80),
12856 (9,6,83,210,142,190,65,90),
12857 (9,6,84,220,152,200,75,100),
12858 (9,6,85,230,162,210,85,110),
12859 (9,7,1,24,17,23,18,25),
12860 (9,7,2,25,17,24,19,26),
12861 (9,7,3,26,18,25,20,27),
12862 (9,7,4,26,18,26,21,28),
12863 (9,7,5,27,19,27,22,29),
12864 (9,7,6,28,19,28,23,30),
12865 (9,7,7,29,20,29,24,31),
12866 (9,7,8,30,20,30,25,32),
12867 (9,7,9,31,21,31,26,33),
12868 (9,7,10,32,21,32,27,34),
12869 (9,7,11,33,22,33,28,36),
12870 (9,7,12,34,22,34,29,37),
12871 (9,7,13,34,23,35,30,38),
12872 (9,7,14,35,23,36,31,39),
12873 (9,7,15,36,24,37,32,40),
12874 (9,7,16,37,24,39,33,41),
12875 (9,7,17,38,25,40,34,43),
12876 (9,7,18,39,25,41,35,44),
12877 (9,7,19,40,26,42,36,45),
12878 (9,7,20,41,26,43,37,46),
12879 (9,7,21,42,27,44,38,47),
12880 (9,7,22,43,27,45,39,49),
12881 (9,7,23,44,28,47,40,50),
12882 (9,7,24,45,28,48,41,51),
12883 (9,7,25,47,29,49,43,52),
12884 (9,7,26,48,30,50,44,54),
12885 (9,7,27,49,30,52,45,55),
12886 (9,7,28,50,31,53,46,56),
12887 (9,7,29,51,31,54,47,58),
12888 (9,7,30,52,32,55,48,59),
12889 (9,7,31,53,33,57,50,60),
12890 (9,7,32,54,33,58,51,62),
12891 (9,7,33,55,34,59,52,63),
12892 (9,7,34,57,34,61,53,65),
12893 (9,7,35,58,35,62,55,66),
12894 (9,7,36,59,36,63,56,67),
12895 (9,7,37,60,36,65,57,69),
12896 (9,7,38,61,37,66,58,70),
12897 (9,7,39,62,38,67,60,72),
12898 (9,7,40,64,38,69,61,73),
12899 (9,7,41,65,39,70,62,75),
12900 (9,7,42,66,40,72,64,76),
12901 (9,7,43,67,40,73,65,78),
12902 (9,7,44,69,41,74,66,79),
12903 (9,7,45,70,42,76,68,81),
12904 (9,7,46,71,42,77,69,82),
12905 (9,7,47,72,43,79,70,84),
12906 (9,7,48,74,44,80,72,85),
12907 (9,7,49,75,45,82,73,87),
12908 (9,7,50,76,45,83,75,89),
12909 (9,7,51,78,46,85,76,90),
12910 (9,7,52,79,47,86,77,92),
12911 (9,7,53,80,47,88,79,93),
12912 (9,7,54,82,48,90,80,95),
12913 (9,7,55,83,49,91,82,97),
12914 (9,7,56,85,50,93,83,98),
12915 (9,7,57,86,50,94,85,100),
12916 (9,7,58,87,51,96,86,102),
12917 (9,7,59,89,52,97,88,103),
12918 (9,7,60,90,53,99,89,105),
12919 (9,7,61,92,54,101,91,107),
12920 (9,7,62,93,54,102,92,109),
12921 (9,7,63,95,55,104,94,110),
12922 (9,7,64,96,56,106,95,112),
12923 (9,7,65,97,57,107,97,114),
12924 (9,7,66,99,58,109,99,116),
12925 (9,7,67,100,58,111,100,118),
12926 (9,7,68,102,59,113,102,119),
12927 (9,7,69,103,60,114,103,121),
12928 (9,7,70,105,61,116,105,123),
12929 (9,7,71,106,62,118,117,125),
12930 (9,7,72,108,63,120,119,128),
12931 (9,7,73,110,64,122,122,130),
12932 (9,7,74,112,65,125,124,132),
12933 (9,7,75,114,66,127,126,134),
12934 (9,7,76,116,67,129,128,137),
12935 (9,7,77,117,68,131,128,139),
12936 (9,7,78,119,69,133,133,141),
12937 (9,7,79,121,70,136,135,144),
12938 (9,7,80,123,71,138,137,146),
12939 (9,7,81,133,81,148,147,156),
12940 (9,7,82,143,91,158,157,166),
12941 (9,7,83,153,101,168,167,176),
12942 (9,7,84,163,111,178,177,186),
12943 (9,7,85,173,121,188,187,196),
12944 (9,8,1,20,20,20,23,22),
12945 (9,8,2,20,20,20,24,23),
12946 (9,8,3,20,20,21,26,25),
12947 (9,8,4,20,20,21,27,26),
12948 (9,8,5,20,21,21,28,27),
12949 (9,8,6,20,21,21,30,29),
12950 (9,8,7,21,21,22,31,30),
12951 (9,8,8,21,21,22,33,31),
12952 (9,8,9,21,21,22,34,33),
12953 (9,8,10,21,21,23,36,34),
12954 (9,8,11,21,22,23,37,36),
12955 (9,8,12,21,22,23,39,37),
12956 (9,8,13,21,22,24,40,38),
12957 (9,8,14,21,22,24,42,40),
12958 (9,8,15,21,22,24,43,41),
12959 (9,8,16,21,23,25,45,43),
12960 (9,8,17,22,23,25,46,44),
12961 (9,8,18,22,23,25,48,46),
12962 (9,8,19,22,23,26,49,47),
12963 (9,8,20,22,23,26,51,49),
12964 (9,8,21,22,24,26,53,51),
12965 (9,8,22,22,24,27,54,52),
12966 (9,8,23,22,24,27,56,54),
12967 (9,8,24,23,24,28,58,55),
12968 (9,8,25,23,25,28,59,57),
12969 (9,8,26,23,25,28,61,59),
12970 (9,8,27,23,25,29,63,60),
12971 (9,8,28,23,25,29,65,62),
12972 (9,8,29,23,25,30,66,64),
12973 (9,8,30,24,26,30,68,65),
12974 (9,8,31,24,26,30,70,67),
12975 (9,8,32,24,26,31,72,69),
12976 (9,8,33,24,27,31,73,70),
12977 (9,8,34,24,27,32,75,72),
12978 (9,8,35,24,27,32,77,74),
12979 (9,8,36,25,27,33,79,76),
12980 (9,8,37,25,28,33,81,78),
12981 (9,8,38,25,28,34,83,79),
12982 (9,8,39,25,28,34,85,81),
12983 (9,8,40,25,28,35,87,83),
12984 (9,8,41,26,29,35,88,85),
12985 (9,8,42,26,29,35,90,87),
12986 (9,8,43,26,29,36,92,89),
12987 (9,8,44,26,30,36,94,91),
12988 (9,8,45,26,30,37,96,92),
12989 (9,8,46,27,30,37,98,94),
12990 (9,8,47,27,31,38,100,96),
12991 (9,8,48,27,31,38,102,98),
12992 (9,8,49,27,31,39,104,100),
12993 (9,8,50,28,32,40,106,102),
12994 (9,8,51,28,32,40,109,104),
12995 (9,8,52,28,32,41,111,106),
12996 (9,8,53,28,33,41,113,108),
12997 (9,8,54,29,33,42,115,110),
12998 (9,8,55,29,33,42,117,112),
12999 (9,8,56,29,34,43,119,114),
13000 (9,8,57,29,34,43,121,117),
13001 (9,8,58,30,34,44,124,119),
13002 (9,8,59,30,35,44,126,121),
13003 (9,8,60,30,35,45,128,123),
13004 (9,8,61,30,35,46,130,125),
13005 (9,8,62,31,36,46,132,127),
13006 (9,8,63,31,36,47,135,129),
13007 (9,8,64,31,37,47,137,132),
13008 (9,8,65,32,37,48,139,134),
13009 (9,8,66,32,37,49,142,136),
13010 (9,8,67,32,38,49,144,138),
13011 (9,8,68,32,38,50,146,140),
13012 (9,8,69,33,39,50,149,143),
13013 (9,8,70,33,39,51,151,145),
13014 (9,8,71,33,39,52,154,152),
13015 (9,8,72,33,40,53,160,155),
13016 (9,8,73,33,40,54,160,158),
13017 (9,8,74,34,41,54,163,160),
13018 (9,8,75,34,41,55,166,163),
13019 (9,8,76,34,41,56,169,166),
13020 (9,8,77,35,42,57,172,169),
13021 (9,8,78,35,42,57,175,173),
13022 (9,8,79,35,43,58,178,176),
13023 (9,8,80,36,43,59,181,179),
13024 (9,8,81,46,53,69,191,189),
13025 (9,8,82,56,63,79,201,199),
13026 (9,8,83,66,73,89,211,209),
13027 (9,8,84,76,83,99,221,219),
13028 (9,8,85,86,93,109,231,229),
13029 (9,9,1,20,20,21,22,22),
13030 (9,9,2,20,20,22,23,23),
13031 (9,9,3,21,21,22,24,24),
13032 (9,9,4,21,21,23,26,25),
13033 (9,9,5,21,21,23,27,27),
13034 (9,9,6,21,22,24,28,28),
13035 (9,9,7,22,22,24,29,29),
13036 (9,9,8,22,23,25,30,30),
13037 (9,9,9,22,23,26,32,31),
13038 (9,9,10,23,23,26,33,33),
13039 (9,9,11,23,24,27,34,34),
13040 (9,9,12,23,24,27,35,35),
13041 (9,9,13,24,25,28,37,36),
13042 (9,9,14,24,25,29,38,38),
13043 (9,9,15,24,25,29,39,39),
13044 (9,9,16,25,26,30,41,40),
13045 (9,9,17,25,26,31,42,42),
13046 (9,9,18,25,27,31,43,43),
13047 (9,9,19,26,27,32,45,44),
13048 (9,9,20,26,28,33,46,46),
13049 (9,9,21,26,28,33,48,47),
13050 (9,9,22,27,29,34,49,49),
13051 (9,9,23,27,29,35,51,50),
13052 (9,9,24,28,30,35,52,51),
13053 (9,9,25,28,30,36,53,53),
13054 (9,9,26,28,31,37,55,54),
13055 (9,9,27,29,31,37,56,56),
13056 (9,9,28,29,32,38,58,57),
13057 (9,9,29,30,32,39,59,59),
13058 (9,9,30,30,33,40,61,60),
13059 (9,9,31,30,33,40,62,62),
13060 (9,9,32,31,34,41,64,63),
13061 (9,9,33,31,34,42,66,65),
13062 (9,9,34,32,35,43,67,66),
13063 (9,9,35,32,35,44,69,68),
13064 (9,9,36,33,36,44,70,69),
13065 (9,9,37,33,36,45,72,71),
13066 (9,9,38,34,37,46,74,73),
13067 (9,9,39,34,38,47,75,74),
13068 (9,9,40,35,38,48,77,76),
13069 (9,9,41,35,39,48,79,78),
13070 (9,9,42,35,39,49,80,79),
13071 (9,9,43,36,40,50,82,81),
13072 (9,9,44,36,40,51,84,83),
13073 (9,9,45,37,41,52,85,84),
13074 (9,9,46,37,42,53,87,86),
13075 (9,9,47,38,42,54,89,88),
13076 (9,9,48,38,43,55,91,89),
13077 (9,9,49,39,44,55,93,91),
13078 (9,9,50,40,44,56,94,93),
13079 (9,9,51,40,45,57,96,95),
13080 (9,9,52,41,45,58,98,97),
13081 (9,9,53,41,46,59,100,98),
13082 (9,9,54,42,47,60,102,100),
13083 (9,9,55,42,47,61,103,102),
13084 (9,9,56,43,48,62,105,104),
13085 (9,9,57,43,49,63,107,106),
13086 (9,9,58,44,49,64,109,108),
13087 (9,9,59,44,50,65,111,109),
13088 (9,9,60,45,51,66,113,111),
13089 (9,9,61,46,51,67,115,113),
13090 (9,9,62,46,52,68,117,115),
13091 (9,9,63,47,53,69,119,117),
13092 (9,9,64,47,54,70,121,119),
13093 (9,9,65,48,54,71,123,121),
13094 (9,9,66,49,55,72,125,123),
13095 (9,9,67,49,56,73,127,125),
13096 (9,9,68,50,57,74,129,127),
13097 (9,9,69,50,57,75,131,129),
13098 (9,9,70,51,58,76,133,131),
13099 (9,9,71,52,59,78,135,146),
13100 (9,9,72,53,59,79,138,148),
13101 (9,9,73,54,60,80,140,151),
13102 (9,9,74,54,61,89,143,154),
13103 (9,9,75,55,62,91,145,156),
13104 (9,9,76,56,63,92,148,159),
13105 (9,9,77,57,64,93,151,162),
13106 (9,9,78,57,65,95,153,165),
13107 (9,9,79,58,66,96,156,168),
13108 (9,9,80,59,67,97,159,170),
13109 (9,9,81,69,77,107,169,180),
13110 (9,9,82,79,87,117,179,190),
13111 (9,9,83,89,97,127,189,200),
13112 (9,9,84,99,107,137,199,210),
13113 (9,9,85,109,117,147,209,220),
13114 (10,1,1,20,22,20,24,19),
13115 (10,1,81,174,117,161,39,58),
13116 (10,1,82,186,119,164,39,58),
13117 (10,1,83,189,121,167,39,59),
13118 (10,1,84,192,123,170,40,60),
13119 (10,1,85,195,125,173,40,61),
13120 (10,1,2,24,21,23,20,20),
13121 (10,1,3,26,22,24,20,21),
13122 (10,1,4,27,22,26,20,21),
13123 (10,1,5,28,23,27,20,21),
13124 (10,1,6,30,24,28,20,21),
13125 (10,1,7,31,25,29,21,22),
13126 (10,1,8,32,26,30,21,22),
13127 (10,1,9,34,26,32,21,22),
13128 (10,1,10,30,28,31,24,21),
13129 (10,1,11,32,29,33,24,21),
13130 (10,1,12,33,30,34,24,21),
13131 (10,1,13,34,31,35,24,22),
13132 (10,1,14,36,32,36,25,22),
13133 (10,1,15,37,32,37,25,22),
13134 (10,1,16,38,33,38,25,23),
13135 (10,1,17,39,34,40,25,23),
13136 (10,1,18,41,35,41,25,23),
13137 (10,1,19,42,36,42,25,24),
13138 (10,1,20,44,37,43,25,24),
13139 (10,1,21,45,37,45,26,24),
13140 (10,1,22,46,38,46,26,25),
13141 (10,1,23,48,39,47,26,25),
13142 (10,1,24,49,40,49,26,26),
13143 (10,1,25,51,41,50,26,26),
13144 (10,1,26,52,42,51,26,26),
13145 (10,1,27,54,43,53,26,27),
13146 (10,1,28,55,44,54,27,27),
13147 (10,1,29,57,45,56,27,28),
13148 (10,1,30,59,46,57,27,28),
13149 (10,1,31,60,47,58,27,28),
13150 (10,1,32,62,48,60,27,29),
13151 (10,1,33,63,49,61,27,29),
13152 (10,1,34,65,50,63,28,30),
13153 (10,1,35,67,51,64,28,30),
13154 (10,1,36,69,52,66,28,31),
13155 (10,1,37,70,53,68,28,31),
13156 (10,1,38,72,54,69,28,31),
13157 (10,1,39,74,55,71,29,32),
13158 (10,1,40,76,56,72,29,32),
13159 (10,1,41,77,58,74,29,33),
13160 (10,1,42,79,59,76,29,33),
13161 (10,1,43,81,60,77,29,34),
13162 (10,1,44,83,61,79,29,34),
13163 (10,1,45,85,62,81,30,35),
13164 (10,1,46,87,63,83,30,35),
13165 (10,1,47,89,65,84,30,36),
13166 (10,1,48,91,66,86,30,36),
13167 (10,1,49,93,67,88,31,37),
13168 (10,1,50,95,68,90,31,37),
13169 (10,1,51,97,70,92,31,38),
13170 (10,1,52,99,71,94,31,38),
13171 (10,1,53,101,72,96,31,39),
13172 (10,1,54,103,74,98,32,40),
13173 (10,1,55,106,75,100,32,40),
13174 (10,1,56,108,76,102,32,41),
13175 (10,1,57,110,78,104,32,41),
13176 (10,1,58,112,79,106,33,42),
13177 (10,1,59,115,81,108,33,42),
13178 (10,1,60,117,82,110,33,43),
13179 (10,1,61,119,83,112,33,44),
13180 (10,1,62,122,85,114,33,44),
13181 (10,1,63,124,86,117,34,45),
13182 (10,1,64,127,88,119,34,45),
13183 (10,1,65,129,90,121,34,46),
13184 (10,1,66,132,91,123,35,47),
13185 (10,1,67,134,93,126,35,47),
13186 (10,1,68,137,94,128,35,48),
13187 (10,1,69,139,96,130,35,49),
13188 (10,1,70,142,98,133,36,49),
13189 (10,1,71,145,99,135,36,50),
13190 (10,1,72,147,101,138,36,51),
13191 (10,1,73,150,103,140,36,52),
13192 (10,1,74,153,104,143,37,52),
13193 (10,1,75,156,106,145,37,53),
13194 (10,1,76,159,108,148,37,54),
13195 (10,1,77,162,110,151,38,55),
13196 (10,1,78,165,111,153,38,55),
13197 (10,1,79,168,113,156,38,56),
13198 (10,1,80,171,115,159,39,57),
13199 (10,2,1,19,22,21,24,20),
13200 (10,2,2,20,23,22,25,21),
13201 (10,2,3,21,23,23,25,21),
13202 (10,2,4,22,24,24,26,22),
13203 (10,2,5,23,24,25,27,23),
13204 (10,2,6,25,25,26,27,24),
13205 (10,2,7,26,25,27,28,24),
13206 (10,2,8,27,26,28,29,25),
13207 (10,2,9,28,27,29,29,26),
13208 (10,2,10,29,27,31,30,26),
13209 (10,2,11,30,28,32,31,27),
13210 (10,2,12,32,29,33,31,28),
13211 (10,2,13,33,29,34,32,29),
13212 (10,2,14,34,30,35,33,30),
13213 (10,2,15,35,31,36,33,30),
13214 (10,2,16,37,31,37,34,31),
13215 (10,2,17,38,32,39,35,32),
13216 (10,2,18,39,33,40,36,33),
13217 (10,2,19,40,33,41,36,34),
13218 (10,2,20,42,34,42,37,35),
13219 (10,2,21,43,35,44,38,35),
13220 (10,2,22,44,35,45,39,36),
13221 (10,2,23,46,36,46,40,37),
13222 (10,2,24,47,37,47,40,38),
13223 (10,2,25,49,38,49,41,39),
13224 (10,2,26,50,38,50,42,40),
13225 (10,2,27,51,39,51,43,41),
13226 (10,2,28,53,40,53,44,42),
13227 (10,2,29,54,41,54,45,43),
13228 (10,2,30,56,41,55,45,43),
13229 (10,2,31,57,42,57,46,44),
13230 (10,2,32,58,43,58,47,45),
13231 (10,2,33,60,44,59,48,46),
13232 (10,2,34,61,45,61,49,47),
13233 (10,2,35,63,45,62,50,48),
13234 (10,2,36,64,46,64,51,49),
13235 (10,2,37,66,47,65,52,50),
13236 (10,2,38,67,48,67,53,51),
13237 (10,2,39,69,49,68,54,52),
13238 (10,2,40,71,50,69,55,53),
13239 (10,2,41,72,50,71,55,54),
13240 (10,2,42,74,51,72,56,55),
13241 (10,2,43,75,52,74,57,56),
13242 (10,2,44,77,53,75,58,57),
13243 (10,2,45,79,54,77,59,59),
13244 (10,2,46,80,55,78,60,60),
13245 (10,2,47,82,56,80,61,61),
13246 (10,2,48,83,57,82,62,62),
13247 (10,2,49,85,58,83,63,63),
13248 (10,2,50,87,59,85,64,64),
13249 (10,2,51,89,60,86,66,65),
13250 (10,2,52,90,61,88,67,66),
13251 (10,2,53,92,61,90,68,67),
13252 (10,2,54,94,62,91,69,69),
13253 (10,2,55,95,63,93,70,70),
13254 (10,2,56,97,64,95,71,71),
13255 (10,2,57,99,65,96,72,72),
13256 (10,2,58,101,66,98,73,73),
13257 (10,2,59,102,67,100,74,74),
13258 (10,2,60,104,68,101,75,76),
13259 (10,2,61,106,69,103,76,77),
13260 (10,2,62,108,70,105,78,78),
13261 (10,2,63,110,72,106,79,79),
13262 (10,2,64,112,73,108,80,80),
13263 (10,2,65,113,74,110,81,82),
13264 (10,2,66,115,75,112,82,83),
13265 (10,2,67,117,76,114,83,84),
13266 (10,2,68,119,77,115,85,85),
13267 (10,2,69,121,78,117,86,87),
13268 (10,2,70,123,79,119,87,88),
13269 (10,2,71,125,80,120,88,89),
13270 (10,2,72,128,81,123,90,91),
13271 (10,2,73,130,82,125,91,93),
13272 (10,2,74,133,84,127,93,94),
13273 (10,2,75,135,85,129,94,96),
13274 (10,2,76,137,86,132,96,97),
13275 (10,2,77,140,88,134,97,99),
13276 (10,2,78,143,89,136,99,101),
13277 (10,2,79,145,90,139,100,102),
13278 (10,2,80,148,92,141,102,104),
13279 (10,2,81,157,93,146,102,105),
13280 (10,2,82,160,95,148,104,106),
13281 (10,2,83,163,96,151,105,108),
13282 (10,2,84,167,98,153,107,110),
13283 (10,2,85,169,99,156,109,112),
13284 (10,3,1,17,25,20,24,20),
13285 (10,3,2,17,26,21,25,21),
13286 (10,3,3,18,28,22,25,21),
13287 (10,3,4,18,29,23,26,22),
13288 (10,3,5,19,30,24,26,23),
13289 (10,3,6,19,32,25,27,23),
13290 (10,3,7,20,33,26,27,24),
13291 (10,3,8,20,35,27,28,25),
13292 (10,3,9,21,36,27,29,25),
13293 (10,3,10,21,38,28,29,26),
13294 (10,3,11,22,39,29,30,27),
13295 (10,3,12,22,41,30,31,27),
13296 (10,3,13,23,42,31,31,28),
13297 (10,3,14,23,44,32,32,29),
13298 (10,3,15,24,45,34,32,29),
13299 (10,3,16,24,47,35,33,30),
13300 (10,3,17,25,48,36,34,31),
13301 (10,3,18,25,50,37,34,32),
13302 (10,3,19,26,51,38,35,32),
13303 (10,3,20,26,53,39,36,33),
13304 (10,3,21,27,55,40,37,34),
13305 (10,3,22,27,56,41,37,35),
13306 (10,3,23,28,58,42,38,36),
13307 (10,3,24,28,60,43,39,36),
13308 (10,3,25,29,61,44,39,37),
13309 (10,3,26,30,63,46,40,38),
13310 (10,3,27,30,65,47,41,39),
13311 (10,3,28,31,66,48,42,40),
13312 (10,3,29,31,68,49,42,40),
13313 (10,3,30,32,70,50,43,41),
13314 (10,3,31,33,72,52,44,42),
13315 (10,3,32,33,73,53,45,43),
13316 (10,3,33,34,75,54,46,44),
13317 (10,3,34,34,77,55,46,45),
13318 (10,3,35,35,79,57,47,46),
13319 (10,3,36,36,81,58,48,47),
13320 (10,3,37,36,83,59,49,47),
13321 (10,3,38,37,85,60,50,48),
13322 (10,3,39,38,86,62,51,49),
13323 (10,3,40,38,88,63,51,50),
13324 (10,3,41,39,90,64,52,51),
13325 (10,3,42,40,92,66,53,52),
13326 (10,3,43,40,94,67,54,53),
13327 (10,3,44,41,96,68,55,54),
13328 (10,3,45,42,98,70,56,55),
13329 (10,3,46,42,100,71,57,56),
13330 (10,3,47,43,102,72,58,57),
13331 (10,3,48,44,104,74,59,58),
13332 (10,3,49,45,106,75,60,59),
13333 (10,3,50,45,108,77,61,60),
13334 (10,3,51,46,110,78,61,61),
13335 (10,3,52,47,113,79,62,62),
13336 (10,3,53,47,115,81,63,63),
13337 (10,3,54,48,117,82,64,64),
13338 (10,3,55,49,119,84,65,65),
13339 (10,3,56,50,121,85,66,66),
13340 (10,3,57,50,123,87,67,67),
13341 (10,3,58,51,126,88,68,68),
13342 (10,3,59,52,128,90,69,70),
13343 (10,3,60,53,130,91,70,71),
13344 (10,3,61,54,132,93,71,72),
13345 (10,3,62,54,134,94,72,73),
13346 (10,3,63,55,137,96,73,74),
13347 (10,3,64,56,139,97,75,75),
13348 (10,3,65,57,141,99,76,76),
13349 (10,3,66,58,144,101,77,77),
13350 (10,3,67,58,146,102,78,78),
13351 (10,3,68,59,148,104,79,80),
13352 (10,3,69,60,151,105,80,81),
13353 (10,3,70,61,153,107,81,82),
13354 (10,3,71,62,156,108,82,83),
13355 (10,3,72,63,159,110,83,84),
13356 (10,3,73,64,162,112,84,86),
13357 (10,3,74,65,165,114,86,87),
13358 (10,3,75,66,168,116,87,89),
13359 (10,3,76,67,171,118,89,90),
13360 (10,3,77,68,174,120,90,92),
13361 (10,3,78,69,177,122,91,93),
13362 (10,3,79,70,180,124,92,95),
13363 (10,3,80,71,183,126,94,96),
13364 (10,3,81,72,196,130,94,97),
13365 (10,3,82,74,199,133,96,98),
13366 (10,3,83,75,202,135,97,100),
13367 (10,3,84,76,206,137,99,101),
13368 (10,3,85,77,210,139,100,103),
13369 (10,4,1,18,25,20,24,19),
13370 (10,4,2,19,26,21,24,19),
13371 (10,4,3,20,28,21,24,20),
13372 (10,4,4,20,29,22,24,20),
13373 (10,4,5,21,31,23,25,20),
13374 (10,4,6,22,32,24,25,21),
13375 (10,4,7,23,34,24,25,21),
13376 (10,4,8,24,35,25,25,22),
13377 (10,4,9,24,37,26,25,22),
13378 (10,4,10,25,38,26,25,22),
13379 (10,4,11,26,40,27,25,23),
13380 (10,4,12,27,41,28,26,23),
13381 (10,4,13,28,43,29,26,24),
13382 (10,4,14,29,45,30,26,24),
13383 (10,4,15,29,46,30,26,25),
13384 (10,4,16,30,48,31,26,25),
13385 (10,4,17,31,50,32,27,25),
13386 (10,4,18,32,51,33,27,26),
13387 (10,4,19,33,53,34,27,26),
13388 (10,4,20,34,55,35,27,27),
13389 (10,4,21,35,56,35,27,27),
13390 (10,4,22,36,58,36,28,28),
13391 (10,4,23,37,60,37,28,28),
13392 (10,4,24,38,62,38,28,29),
13393 (10,4,25,39,63,39,28,29),
13394 (10,4,26,40,65,40,29,30),
13395 (10,4,27,41,67,41,29,30),
13396 (10,4,28,42,69,42,29,31),
13397 (10,4,29,43,71,43,29,31),
13398 (10,4,30,44,72,43,29,32),
13399 (10,4,31,45,74,44,30,32),
13400 (10,4,32,46,76,45,30,33),
13401 (10,4,33,47,78,46,30,33),
13402 (10,4,34,48,80,47,31,34),
13403 (10,4,35,49,82,48,31,34),
13404 (10,4,36,50,84,49,31,35),
13405 (10,4,37,51,86,50,31,35),
13406 (10,4,38,52,88,51,32,36),
13407 (10,4,39,53,90,52,32,37),
13408 (10,4,40,54,92,53,32,37),
13409 (10,4,41,56,94,54,33,38),
13410 (10,4,42,57,96,55,33,38),
13411 (10,4,43,58,98,56,33,39),
13412 (10,4,44,59,100,57,33,39),
13413 (10,4,45,60,102,59,34,40),
13414 (10,4,46,61,104,60,34,41),
13415 (10,4,47,62,107,61,34,41),
13416 (10,4,48,64,109,62,35,42),
13417 (10,4,49,65,111,63,35,43),
13418 (10,4,50,66,113,64,35,43),
13419 (10,4,51,67,115,65,36,44),
13420 (10,4,52,68,117,66,36,44),
13421 (10,4,53,70,120,67,36,45),
13422 (10,4,54,71,122,69,37,46),
13423 (10,4,55,72,124,70,37,46),
13424 (10,4,56,73,126,71,37,47),
13425 (10,4,57,75,129,72,38,48),
13426 (10,4,58,76,131,73,38,48),
13427 (10,4,59,77,133,74,39,49),
13428 (10,4,60,79,136,76,39,50),
13429 (10,4,61,80,138,77,39,51),
13430 (10,4,62,81,140,78,40,51),
13431 (10,4,63,82,143,79,40,52),
13432 (10,4,64,84,145,80,41,53),
13433 (10,4,65,85,148,82,41,53),
13434 (10,4,66,87,150,83,41,54),
13435 (10,4,67,88,153,84,42,55),
13436 (10,4,68,89,155,85,42,56),
13437 (10,4,69,91,157,87,43,56),
13438 (10,4,70,92,160,88,43,57),
13439 (10,4,71,94,163,88,43,58),
13440 (10,4,72,96,166,90,44,58),
13441 (10,4,73,97,169,92,44,59),
13442 (10,4,74,99,172,93,45,60),
13443 (10,4,75,101,175,95,45,61),
13444 (10,4,76,102,178,96,45,62),
13445 (10,4,77,104,181,101,46,63),
13446 (10,4,78,106,185,104,46,64),
13447 (10,4,79,108,188,105,47,65),
13448 (10,4,80,110,191,107,47,66),
13449 (10,4,81,111,204,107,47,66),
13450 (10,4,82,113,207,108,47,66),
13451 (10,4,83,115,211,110,48,67),
13452 (10,4,84,117,215,112,48,68),
13453 (10,4,85,119,218,114,49,69),
13454 (10,5,1,17,22,19,26,22),
13455 (10,5,2,17,22,19,27,23),
13456 (10,5,3,17,22,20,29,25),
13457 (10,5,4,17,23,20,30,26),
13458 (10,5,5,18,23,20,31,27),
13459 (10,5,6,18,23,21,33,29),
13460 (10,5,7,18,23,21,34,30),
13461 (10,5,8,18,24,22,35,32),
13462 (10,5,9,18,24,22,37,33),
13463 (10,5,10,19,24,22,38,35),
13464 (10,5,11,19,24,23,39,36),
13465 (10,5,12,19,24,23,41,38),
13466 (10,5,13,19,25,24,42,39),
13467 (10,5,14,19,25,24,44,41),
13468 (10,5,15,19,25,25,45,42),
13469 (10,5,16,20,26,25,47,44),
13470 (10,5,17,20,26,25,48,45),
13471 (10,5,18,20,26,26,50,47),
13472 (10,5,19,20,26,26,51,49),
13473 (10,5,20,21,27,27,53,50),
13474 (10,5,21,21,27,27,54,52),
13475 (10,5,22,21,27,28,56,53),
13476 (10,5,23,21,28,28,58,55),
13477 (10,5,24,21,28,29,59,57),
13478 (10,5,25,22,28,29,61,58),
13479 (10,5,26,22,28,30,62,60),
13480 (10,5,27,22,29,30,64,62),
13481 (10,5,28,22,29,31,66,64),
13482 (10,5,29,23,29,31,67,65),
13483 (10,5,30,23,30,32,69,67),
13484 (10,5,31,23,30,32,71,69),
13485 (10,5,32,23,30,33,72,71),
13486 (10,5,33,24,31,33,74,72),
13487 (10,5,34,24,31,34,76,74),
13488 (10,5,35,24,32,34,78,76),
13489 (10,5,36,24,32,35,80,78),
13490 (10,5,37,25,32,35,81,80),
13491 (10,5,38,25,33,36,83,82),
13492 (10,5,39,25,33,37,85,84),
13493 (10,5,40,26,33,37,87,86),
13494 (10,5,41,26,34,38,89,88),
13495 (10,5,42,26,34,38,91,89),
13496 (10,5,43,27,35,39,92,91),
13497 (10,5,44,27,35,39,94,93),
13498 (10,5,45,27,35,40,96,95),
13499 (10,5,46,27,36,41,98,97),
13500 (10,5,47,28,36,41,100,99),
13501 (10,5,48,28,37,42,102,101),
13502 (10,5,49,28,37,43,104,103),
13503 (10,5,50,29,37,43,106,106),
13504 (10,5,51,29,38,44,108,108),
13505 (10,5,52,29,38,44,110,110),
13506 (10,5,53,30,39,45,112,112),
13507 (10,5,54,30,39,46,114,114),
13508 (10,5,55,30,40,46,116,116),
13509 (10,5,56,31,40,47,118,118),
13510 (10,5,57,31,41,48,120,120),
13511 (10,5,58,31,41,48,123,123),
13512 (10,5,59,32,42,49,125,125),
13513 (10,5,60,32,42,50,127,127),
13514 (10,5,61,33,42,51,129,129),
13515 (10,5,62,33,43,51,131,131),
13516 (10,5,63,33,43,52,133,134),
13517 (10,5,64,34,44,53,135,136),
13518 (10,5,65,34,44,53,138,138),
13519 (10,5,66,34,45,54,140,141),
13520 (10,5,67,35,45,55,142,143),
13521 (10,5,68,35,46,56,144,145),
13522 (10,5,69,36,46,56,147,148),
13523 (10,5,70,36,47,57,149,150),
13524 (10,5,71,36,48,57,152,153),
13525 (10,5,72,37,48,57,155,156),
13526 (10,5,73,37,49,58,158,159),
13527 (10,5,74,38,49,59,160,163),
13528 (10,5,75,38,50,60,163,165),
13529 (10,5,76,38,51,61,166,170),
13530 (10,5,77,39,51,62,168,175),
13531 (10,5,78,39,52,63,172,174),
13532 (10,5,79,40,52,64,175,177),
13533 (10,5,80,40,53,65,178,180),
13534 (10,5,81,41,54,68,188,183),
13535 (10,5,82,41,54,68,192,186),
13536 (10,5,83,42,55,69,196,189),
13537 (10,5,84,42,56,70,199,193),
13538 (10,5,85,43,56,71,202,196),
13539 (10,6,1,18,23,21,24,20),
13540 (10,6,2,19,24,22,24,20),
13541 (10,6,3,21,25,23,24,21),
13542 (10,6,4,22,25,25,24,21),
13543 (10,6,5,23,26,26,24,21),
13544 (10,6,6,25,27,27,24,21),
13545 (10,6,7,26,28,28,24,22),
13546 (10,6,8,27,29,29,25,22),
13547 (10,6,9,29,29,31,25,22),
13548 (10,6,10,30,30,32,25,23),
13549 (10,6,11,32,31,33,25,23),
13550 (10,6,12,33,32,34,25,23),
13551 (10,6,13,34,33,36,25,24),
13552 (10,6,14,36,34,37,25,24),
13553 (10,6,15,37,35,38,25,24),
13554 (10,6,16,39,36,40,25,25),
13555 (10,6,17,40,36,41,25,25),
13556 (10,6,18,42,37,43,26,25),
13557 (10,6,19,43,38,44,26,26),
13558 (10,6,20,45,39,45,26,26),
13559 (10,6,21,47,40,47,26,26),
13560 (10,6,22,48,41,48,26,27),
13561 (10,6,23,50,42,50,26,27),
13562 (10,6,24,51,43,51,26,28),
13563 (10,6,25,53,44,52,27,28),
13564 (10,6,26,55,45,54,27,28),
13565 (10,6,27,56,46,55,27,29),
13566 (10,6,28,58,47,57,27,29),
13567 (10,6,29,59,48,58,27,30),
13568 (10,6,30,61,49,60,27,30),
13569 (10,6,31,63,50,62,27,30),
13570 (10,6,32,65,51,63,28,31),
13571 (10,6,33,66,52,65,28,31),
13572 (10,6,34,68,53,66,28,32),
13573 (10,6,35,70,55,68,28,32),
13574 (10,6,36,72,56,69,28,33),
13575 (10,6,37,73,57,71,29,33),
13576 (10,6,38,75,58,73,29,34),
13577 (10,6,39,77,59,74,29,34),
13578 (10,6,40,79,60,76,29,35),
13579 (10,6,41,81,61,78,29,35),
13580 (10,6,42,82,62,79,30,35),
13581 (10,6,43,84,64,81,30,36),
13582 (10,6,44,86,65,83,30,36),
13583 (10,6,45,88,66,85,30,37),
13584 (10,6,46,90,67,86,30,37),
13585 (10,6,47,92,68,88,31,38),
13586 (10,6,48,94,69,90,31,38),
13587 (10,6,49,96,69,92,31,39),
13588 (10,6,50,98,70,93,31,40),
13589 (10,6,51,100,71,95,32,40),
13590 (10,6,52,102,72,96,32,41),
13591 (10,6,53,103,73,97,32,41),
13592 (10,6,54,104,74,98,32,41),
13593 (10,6,55,105,75,97,33,41),
13594 (10,6,56,108,77,100,33,42),
13595 (10,6,57,113,78,102,33,42),
13596 (10,6,58,115,79,104,34,43),
13597 (10,6,59,117,81,106,34,43),
13598 (10,6,60,118,82,108,34,44),
13599 (10,6,61,119,83,110,34,45),
13600 (10,6,62,121,85,112,34,45),
13601 (10,6,63,124,86,115,35,46),
13602 (10,6,64,127,88,117,35,46),
13603 (10,6,65,133,89,119,35,47),
13604 (10,6,66,135,91,122,35,48),
13605 (10,6,67,139,92,124,36,48),
13606 (10,6,68,141,94,126,36,49),
13607 (10,6,69,142,95,129,36,50),
13608 (10,6,70,145,97,131,36,50),
13609 (10,6,71,150,99,134,37,51),
13610 (10,6,72,152,100,136,37,52),
13611 (10,6,73,155,102,139,37,53),
13612 (10,6,74,158,104,141,37,53),
13613 (10,6,75,159,105,144,38,54),
13614 (10,6,76,160,107,147,38,55),
13615 (10,6,77,163,109,149,38,56),
13616 (10,6,78,166,110,152,38,56),
13617 (10,6,79,169,112,155,39,57),
13618 (10,6,80,172,114,158,39,58),
13619 (10,6,81,175,116,163,38,58),
13620 (10,6,82,175,118,165,39,58),
13621 (10,6,83,182,120,168,39,59),
13622 (10,6,84,182,122,171,39,60),
13623 (10,6,85,188,123,174,39,61),
13624 (10,7,81,119,77,138,139,144),
13625 (10,7,82,121,79,141,142,146),
13626 (10,7,83,124,80,143,142,149),
13627 (10,7,84,126,81,145,142,151),
13628 (10,7,85,128,82,148,148,154),
13629 (10,7,10,25,26,29,31,28),
13630 (10,7,11,26,26,30,32,29),
13631 (10,7,12,27,27,31,33,30),
13632 (10,7,13,27,27,32,34,31),
13633 (10,7,14,28,28,33,35,32),
13634 (10,7,15,29,28,34,36,34),
13635 (10,7,16,30,29,35,37,35),
13636 (10,7,17,31,29,36,38,36),
13637 (10,7,18,32,30,37,39,37),
13638 (10,7,19,33,30,38,40,38),
13639 (10,7,20,34,31,39,41,39),
13640 (10,7,21,35,31,40,42,40),
13641 (10,7,22,35,32,41,43,41),
13642 (10,7,23,36,32,42,44,42),
13643 (10,7,24,37,33,43,45,44),
13644 (10,7,25,38,33,45,46,45),
13645 (10,7,26,39,34,46,47,46),
13646 (10,7,27,40,34,47,48,47),
13647 (10,7,28,41,35,48,49,48),
13648 (10,7,29,42,35,49,50,50),
13649 (10,7,30,43,36,50,51,51),
13650 (10,7,31,45,36,52,53,52),
13651 (10,7,32,46,37,53,54,54),
13652 (10,7,33,47,38,54,55,55),
13653 (10,7,34,48,38,55,56,56),
13654 (10,7,35,49,39,57,57,58),
13655 (10,7,36,50,40,58,59,59),
13656 (10,7,37,51,40,59,60,60),
13657 (10,7,38,52,41,61,61,62),
13658 (10,7,39,53,41,62,62,63),
13659 (10,7,40,55,42,63,64,65),
13660 (10,7,41,56,43,65,65,66),
13661 (10,7,42,57,43,66,66,68),
13662 (10,7,43,58,44,68,67,69),
13663 (10,7,44,60,45,69,69,71),
13664 (10,7,45,61,45,71,70,72),
13665 (10,7,46,62,46,72,72,74),
13666 (10,7,47,63,47,74,73,75),
13667 (10,7,48,65,48,75,74,77),
13668 (10,7,49,66,48,77,76,79),
13669 (10,7,50,67,49,78,77,80),
13670 (10,7,51,69,50,80,79,82),
13671 (10,7,52,70,51,81,80,84),
13672 (10,7,53,72,51,83,82,85),
13673 (10,7,54,73,52,85,83,87),
13674 (10,7,55,74,53,86,85,89),
13675 (10,7,56,76,54,88,86,91),
13676 (10,7,57,77,55,90,88,92),
13677 (10,7,58,79,55,91,90,94),
13678 (10,7,59,80,56,93,91,96),
13679 (10,7,60,82,57,95,93,98),
13680 (10,7,61,84,58,97,95,100),
13681 (10,7,62,85,59,99,96,102),
13682 (10,7,63,87,60,100,98,104),
13683 (10,7,64,88,60,102,100,106),
13684 (10,7,65,90,61,104,102,108),
13685 (10,7,66,92,62,106,103,110),
13686 (10,7,67,93,63,108,105,112),
13687 (10,7,68,95,64,110,107,114),
13688 (10,7,69,97,65,112,109,116),
13689 (10,7,70,99,66,114,111,118),
13690 (10,7,71,100,67,116,113,120),
13691 (10,7,72,102,68,118,115,123),
13692 (10,7,73,104,69,120,117,125),
13693 (10,7,74,106,70,123,119,127),
13694 (10,7,75,108,71,125,121,129),
13695 (10,7,76,110,72,127,123,132),
13696 (10,7,77,111,73,129,125,134),
13697 (10,7,78,113,74,131,127,136),
13698 (10,7,79,115,75,134,129,139),
13699 (10,7,80,117,76,136,131,141),
13700 (10,8,1,17,22,19,27,21),
13701 (10,8,2,17,22,19,28,22),
13702 (10,8,3,17,22,20,30,24),
13703 (10,8,4,17,22,20,31,25),
13704 (10,8,5,17,23,20,32,26),
13705 (10,8,6,17,23,20,34,28),
13706 (10,8,7,18,23,21,35,29),
13707 (10,8,8,18,23,21,37,30),
13708 (10,8,9,18,23,21,38,32),
13709 (10,8,10,18,23,22,40,33),
13710 (10,8,11,18,24,22,41,35),
13711 (10,8,12,18,24,22,42,36),
13712 (10,8,13,18,24,23,44,37),
13713 (10,8,14,18,24,23,45,39),
13714 (10,8,15,18,24,23,47,40),
13715 (10,8,16,19,24,24,49,42),
13716 (10,8,17,19,25,24,50,43),
13717 (10,8,18,19,25,24,52,45),
13718 (10,8,19,19,25,25,53,46),
13719 (10,8,20,19,25,25,55,48),
13720 (10,8,21,19,25,26,57,50),
13721 (10,8,22,19,26,26,58,51),
13722 (10,8,23,20,26,26,60,53),
13723 (10,8,24,20,26,27,61,54),
13724 (10,8,25,20,26,27,63,56),
13725 (10,8,26,20,27,27,65,58),
13726 (10,8,27,20,27,28,67,59),
13727 (10,8,28,20,27,28,68,61),
13728 (10,8,29,21,27,29,70,63),
13729 (10,8,30,21,28,29,72,64),
13730 (10,8,31,21,28,30,74,66),
13731 (10,8,32,21,28,30,75,68),
13732 (10,8,33,21,28,30,77,70),
13733 (10,8,34,21,29,31,79,71),
13734 (10,8,35,22,29,31,81,73),
13735 (10,8,36,22,29,32,83,75),
13736 (10,8,37,22,29,32,85,77),
13737 (10,8,38,22,30,33,86,78),
13738 (10,8,39,22,30,33,88,80),
13739 (10,8,40,23,30,34,90,82),
13740 (10,8,41,23,31,34,92,84),
13741 (10,8,42,23,31,35,94,86),
13742 (10,8,43,23,31,35,96,88),
13743 (10,8,44,23,32,36,98,90),
13744 (10,8,45,24,32,36,100,92),
13745 (10,8,46,24,32,37,102,93),
13746 (10,8,47,24,32,37,104,95),
13747 (10,8,48,24,33,38,106,97),
13748 (10,8,49,25,33,38,108,99),
13749 (10,8,50,25,33,39,110,101),
13750 (10,8,51,25,34,39,112,103),
13751 (10,8,52,25,34,40,114,105),
13752 (10,8,53,25,35,40,117,107),
13753 (10,8,54,26,35,41,119,109),
13754 (10,8,55,26,35,41,121,111),
13755 (10,8,56,26,36,42,123,113),
13756 (10,8,57,26,36,42,125,116),
13757 (10,8,58,27,36,43,127,118),
13758 (10,8,59,27,37,43,130,120),
13759 (10,8,60,27,37,44,132,122),
13760 (10,8,61,27,37,45,134,124),
13761 (10,8,62,28,38,45,136,126),
13762 (10,8,63,28,38,46,139,128),
13763 (10,8,64,28,39,46,141,131),
13764 (10,8,65,29,39,47,143,133),
13765 (10,8,66,29,39,48,146,135),
13766 (10,8,67,29,40,48,148,137),
13767 (10,8,68,29,40,49,150,139),
13768 (10,8,69,30,41,49,153,142),
13769 (10,8,70,30,41,50,155,144),
13770 (10,8,71,30,41,50,158,147),
13771 (10,8,72,30,42,51,161,150),
13772 (10,8,73,30,42,52,164,153),
13773 (10,8,74,31,43,52,167,155),
13774 (10,8,75,31,43,53,170,158),
13775 (10,8,76,31,43,54,173,161),
13776 (10,8,77,32,44,55,176,164),
13777 (10,8,78,32,44,55,179,167),
13778 (10,8,79,32,45,56,182,170),
13779 (10,8,80,33,45,57,185,173),
13780 (10,8,81,33,46,60,197,175),
13781 (10,8,82,33,46,60,200,178),
13782 (10,8,83,33,47,61,203,182),
13783 (10,8,84,34,47,62,207,185),
13784 (10,8,85,34,48,63,210,188),
13785 (10,9,1,17,22,20,26,21),
13786 (10,9,2,17,22,21,27,22),
13787 (10,9,3,18,23,21,28,23),
13788 (10,9,4,18,23,22,29,24),
13789 (10,9,5,18,23,22,31,26),
13790 (10,9,6,18,24,23,32,27),
13791 (10,9,7,19,24,23,33,28),
13792 (10,9,8,19,25,24,34,29),
13793 (10,9,9,19,25,25,36,30),
13794 (10,9,10,20,25,25,37,32),
13795 (10,9,11,20,26,26,38,33),
13796 (10,9,12,20,26,26,39,34),
13797 (10,9,13,21,27,27,41,36),
13798 (10,9,14,21,27,28,42,37),
13799 (10,9,15,21,27,28,43,38),
13800 (10,9,16,22,28,29,45,39),
13801 (10,9,17,22,28,30,46,41),
13802 (10,9,18,23,29,30,47,42),
13803 (10,9,19,23,29,31,49,43),
13804 (10,9,20,23,30,32,50,45),
13805 (10,9,21,24,30,32,51,46),
13806 (10,9,22,24,31,33,53,48),
13807 (10,9,23,24,31,34,54,49),
13808 (10,9,24,25,31,34,56,50),
13809 (10,9,25,25,32,35,57,52),
13810 (10,9,26,26,32,36,59,53),
13811 (10,9,27,26,33,37,60,55),
13812 (10,9,28,26,33,37,62,56),
13813 (10,9,29,27,34,38,63,58),
13814 (10,9,30,27,34,39,65,59),
13815 (10,9,31,28,35,40,66,61),
13816 (10,9,32,28,36,40,68,62),
13817 (10,9,33,29,36,41,69,64),
13818 (10,9,34,29,37,42,71,65),
13819 (10,9,35,29,37,43,73,67),
13820 (10,9,36,30,38,43,74,69),
13821 (10,9,37,30,38,44,76,70),
13822 (10,9,38,31,39,45,77,72),
13823 (10,9,39,31,39,46,79,73),
13824 (10,9,40,32,40,47,81,75),
13825 (10,9,41,32,41,48,82,77),
13826 (10,9,42,33,41,48,84,78),
13827 (10,9,43,33,42,49,86,80),
13828 (10,9,44,34,42,50,88,82),
13829 (10,9,45,34,43,51,89,83),
13830 (10,9,46,35,44,52,91,85),
13831 (10,9,47,35,44,53,93,87),
13832 (10,9,48,36,45,54,95,89),
13833 (10,9,49,36,45,54,96,90),
13834 (10,9,50,37,46,55,98,92),
13835 (10,9,51,37,47,56,100,94),
13836 (10,9,52,38,47,57,102,96),
13837 (10,9,53,38,48,58,104,97),
13838 (10,9,54,39,49,59,105,99),
13839 (10,9,55,39,49,60,107,101),
13840 (10,9,56,40,50,61,109,103),
13841 (10,9,57,40,51,62,111,105),
13842 (10,9,58,41,51,63,113,107),
13843 (10,9,59,42,52,64,115,108),
13844 (10,9,60,42,53,65,117,110),
13845 (10,9,61,43,53,66,119,112),
13846 (10,9,62,43,54,67,121,114),
13847 (10,9,63,44,55,68,123,116),
13848 (10,9,64,44,56,69,125,118),
13849 (10,9,65,45,56,70,127,120),
13850 (10,9,66,46,57,71,129,122),
13851 (10,9,67,46,58,72,131,124),
13852 (10,9,68,47,58,73,133,126),
13853 (10,9,69,47,59,74,135,128),
13854 (10,9,70,48,60,75,137,130),
13855 (10,9,71,49,61,83,139,141),
13856 (10,9,72,50,61,84,142,143),
13857 (10,9,73,51,62,84,144,146),
13858 (10,9,74,51,63,86,147,149),
13859 (10,9,75,52,64,89,149,151),
13860 (10,9,76,53,65,90,155,154),
13861 (10,9,77,54,66,91,155,157),
13862 (10,9,78,54,67,93,157,160),
13863 (10,9,79,55,68,94,160,163),
13864 (10,9,80,56,69,95,163,165),
13865 (10,9,81,57,70,91,172,167),
13866 (10,9,82,57,70,92,175,170),
13867 (10,9,83,58,71,94,178,173),
13868 (10,9,84,59,72,95,181,176),
13869 (10,9,85,60,73,96,184,179),
13870 (10,11,81,88,85,99,149,159),
13871 (10,11,82,89,87,101,151,162),
13872 (10,11,83,91,88,102,154,165),
13873 (10,11,84,92,89,104,163,168),
13874 (10,11,85,93,91,106,163,171),
13875 (10,11,10,23,26,25,33,29),
13876 (10,11,11,23,27,26,34,31),
13877 (10,11,12,24,27,27,35,32),
13878 (10,11,13,24,28,27,36,33),
13879 (10,11,14,25,28,28,37,34),
13880 (10,11,15,26,29,29,39,35),
13881 (10,11,16,26,29,29,40,36),
13882 (10,11,17,27,30,30,41,38),
13883 (10,11,18,27,31,31,42,39),
13884 (10,11,19,28,31,31,43,40),
13885 (10,11,20,29,32,32,44,41),
13886 (10,11,21,29,32,33,45,43),
13887 (10,11,22,30,33,34,46,44),
13888 (10,11,23,31,34,34,47,45),
13889 (10,11,24,31,34,35,49,47),
13890 (10,11,25,32,35,36,50,48),
13891 (10,11,26,33,35,37,51,49),
13892 (10,11,27,33,36,37,52,51),
13893 (10,11,28,34,37,38,53,52),
13894 (10,11,29,35,37,39,55,54),
13895 (10,11,30,35,38,40,56,55),
13896 (10,11,31,36,39,41,57,56),
13897 (10,11,32,37,39,42,59,58),
13898 (10,11,33,38,40,42,60,59),
13899 (10,11,34,38,41,43,61,61),
13900 (10,11,35,39,41,44,63,62),
13901 (10,11,36,40,42,45,64,64),
13902 (10,11,37,41,43,46,65,66),
13903 (10,11,38,42,43,47,67,67),
13904 (10,11,39,42,44,48,68,69),
13905 (10,11,40,43,45,49,70,70),
13906 (10,11,41,44,46,50,71,72),
13907 (10,11,42,45,46,51,73,74),
13908 (10,11,43,46,47,52,74,75),
13909 (10,11,44,47,48,52,76,77),
13910 (10,11,45,47,49,53,77,79),
13911 (10,11,46,48,50,54,79,81),
13912 (10,11,47,49,50,56,80,82),
13913 (10,11,48,50,51,57,82,84),
13914 (10,11,49,51,52,58,84,86),
13915 (10,11,50,52,53,59,85,88),
13916 (10,11,51,53,54,60,87,90),
13917 (10,11,52,54,55,61,89,92),
13918 (10,11,53,55,56,62,90,94),
13919 (10,11,54,56,56,63,92,96),
13920 (10,11,55,57,57,64,94,98),
13921 (10,11,56,58,58,65,96,100),
13922 (10,11,57,59,59,66,97,102),
13923 (10,11,58,60,60,68,99,104),
13924 (10,11,59,61,61,69,101,106),
13925 (10,11,60,62,62,70,103,108),
13926 (10,11,61,63,63,71,105,110),
13927 (10,11,62,64,64,72,107,112),
13928 (10,11,63,65,65,74,109,115),
13929 (10,11,64,66,66,75,111,117),
13930 (10,11,65,68,67,76,113,119),
13931 (10,11,66,69,68,78,115,121),
13932 (10,11,67,70,69,79,117,124),
13933 (10,11,68,71,70,80,119,126),
13934 (10,11,69,72,71,82,121,128),
13935 (10,11,70,73,72,83,123,131),
13936 (10,11,71,75,73,84,125,133),
13937 (10,11,72,76,75,86,128,136),
13938 (10,11,73,77,76,87,130,138),
13939 (10,11,74,78,77,89,132,141),
13940 (10,11,75,80,78,90,134,143),
13941 (10,11,76,81,79,92,137,146),
13942 (10,11,77,82,80,93,139,149),
13943 (10,11,78,84,82,95,141,151),
13944 (10,11,79,85,83,96,144,154),
13945 (10,11,80,86,84,98,146,157),
13946 (11,1,1,24,17,21,21,22),
13947 (11,1,2,25,18,22,21,22),
13948 (11,1,3,27,19,23,21,23),
13949 (11,1,4,28,19,25,21,23),
13950 (11,1,5,29,20,26,21,23),
13951 (11,1,6,31,21,27,21,23),
13952 (11,1,7,32,22,28,21,24),
13953 (11,1,8,33,23,29,22,24),
13954 (11,1,9,35,24,31,22,24),
13955 (11,1,10,36,24,32,22,25),
13956 (11,1,11,37,25,33,22,25),
13957 (11,1,12,39,26,34,22,25),
13958 (11,1,13,40,27,36,22,26),
13959 (11,1,14,42,28,37,22,26),
13960 (11,1,15,43,29,38,22,26),
13961 (11,1,16,45,30,40,22,27),
13962 (11,1,17,46,31,41,23,27),
13963 (11,1,18,48,32,43,23,27),
13964 (11,1,19,49,33,44,23,28),
13965 (11,1,20,51,34,45,23,28),
13966 (11,1,21,52,34,47,23,28),
13967 (11,1,22,54,35,48,23,29),
13968 (11,1,23,55,36,50,23,29),
13969 (11,1,24,57,37,51,24,30),
13970 (11,1,25,59,38,52,24,30),
13971 (11,1,26,60,39,54,24,30),
13972 (11,1,27,62,40,55,24,31),
13973 (11,1,28,63,41,57,24,31),
13974 (11,1,29,65,43,58,24,32),
13975 (11,1,30,67,44,60,24,32),
13976 (11,1,31,69,45,62,25,32),
13977 (11,1,32,70,46,63,25,33),
13978 (11,1,33,72,47,65,25,33),
13979 (11,1,34,74,48,66,25,34),
13980 (11,1,35,75,49,68,25,34),
13981 (11,1,36,77,50,69,26,35),
13982 (11,1,37,79,51,71,26,35),
13983 (11,1,38,81,52,73,26,35),
13984 (11,1,39,83,53,74,26,36),
13985 (11,1,40,84,55,76,26,36),
13986 (11,1,41,86,56,78,27,37),
13987 (11,1,42,88,57,79,27,37),
13988 (11,1,43,90,58,81,27,38),
13989 (11,1,44,92,59,83,27,38),
13990 (11,1,45,94,60,85,27,39),
13991 (11,1,46,96,62,86,28,39),
13992 (11,1,47,98,63,88,28,40),
13993 (11,1,48,100,64,90,28,40),
13994 (11,1,49,102,65,92,28,41),
13995 (11,1,50,103,66,93,29,41),
13996 (11,1,51,105,68,95,29,42),
13997 (11,1,52,107,69,97,29,42),
13998 (11,1,53,109,70,99,29,43),
13999 (11,1,54,112,71,101,30,44),
14000 (11,1,55,114,73,103,30,44),
14001 (11,1,56,116,74,104,30,45),
14002 (11,1,57,118,75,106,30,45),
14003 (11,1,58,120,77,108,31,46),
14004 (11,1,59,122,78,110,31,46),
14005 (11,1,60,124,79,112,31,47),
14006 (11,1,61,126,81,114,31,48),
14007 (11,1,62,128,82,116,32,48),
14008 (11,1,63,130,83,118,32,49),
14009 (11,1,64,133,85,120,32,49),
14010 (11,1,65,135,86,122,33,50),
14011 (11,1,66,137,87,124,33,51),
14012 (11,1,67,139,89,126,33,51),
14013 (11,1,68,141,90,128,33,52),
14014 (11,1,69,144,92,130,34,52),
14015 (11,1,70,146,93,132,34,53),
14016 (11,1,71,149,94,134,34,54),
14017 (11,1,72,151,96,137,34,55),
14018 (11,1,73,154,98,139,34,56),
14019 (11,1,74,157,99,142,35,56),
14020 (11,1,75,166,101,149,35,57),
14021 (11,1,76,172,103,155,35,58),
14022 (11,1,77,175,105,159,36,59),
14023 (11,1,78,179,106,161,36,59),
14024 (11,1,79,182,108,164,36,60),
14025 (11,1,80,185,110,167,37,61),
14026 (11,1,81,178,112,161,36,62),
14027 (11,1,82,190,114,164,36,62),
14028 (11,1,83,193,116,167,36,63),
14029 (11,1,84,196,118,170,37,64),
14030 (11,1,85,199,120,173,37,65),
14031 (11,2,1,23,17,21,21,23),
14032 (11,2,2,24,18,22,22,24),
14033 (11,2,3,25,18,23,22,24),
14034 (11,2,4,26,19,24,23,25),
14035 (11,2,5,27,19,25,24,26),
14036 (11,2,6,29,20,26,24,26),
14037 (11,2,7,30,21,27,25,27),
14038 (11,2,8,31,21,28,26,28),
14039 (11,2,9,32,22,29,26,29),
14040 (11,2,10,33,22,31,27,29),
14041 (11,2,11,34,23,32,28,30),
14042 (11,2,12,36,24,33,28,31),
14043 (11,2,13,37,24,34,29,32),
14044 (11,2,14,38,25,35,30,32),
14045 (11,2,15,39,26,36,31,33),
14046 (11,2,16,40,26,37,31,34),
14047 (11,2,17,42,27,39,32,35),
14048 (11,2,18,43,28,40,33,36),
14049 (11,2,19,44,28,41,34,37),
14050 (11,2,20,46,29,42,34,37),
14051 (11,2,21,47,30,44,35,38),
14052 (11,2,22,48,31,45,36,39),
14053 (11,2,23,50,31,46,37,40),
14054 (11,2,24,51,32,47,38,41),
14055 (11,2,25,52,33,49,38,42),
14056 (11,2,26,54,34,50,39,43),
14057 (11,2,27,55,34,51,40,44),
14058 (11,2,28,56,35,53,41,44),
14059 (11,2,29,58,36,54,42,45),
14060 (11,2,30,59,37,55,43,46),
14061 (11,2,31,61,37,57,43,47),
14062 (11,2,32,62,38,58,44,48),
14063 (11,2,33,64,39,59,45,49),
14064 (11,2,34,65,40,61,46,50),
14065 (11,2,35,67,41,62,47,51),
14066 (11,2,36,68,42,64,48,52),
14067 (11,2,37,70,42,65,49,53),
14068 (11,2,38,71,43,67,50,54),
14069 (11,2,39,73,44,68,51,55),
14070 (11,2,40,74,45,69,52,56),
14071 (11,2,41,76,46,71,53,57),
14072 (11,2,42,78,47,72,54,58),
14073 (11,2,43,79,47,74,55,59),
14074 (11,2,44,81,48,75,56,60),
14075 (11,2,45,82,49,77,57,61),
14076 (11,2,46,84,50,78,58,62),
14077 (11,2,47,86,51,80,59,64),
14078 (11,2,48,87,52,82,60,65),
14079 (11,2,49,89,53,83,61,66),
14080 (11,2,50,91,54,85,62,67),
14081 (11,2,51,92,55,86,63,68),
14082 (11,2,52,94,56,88,64,69),
14083 (11,2,53,96,57,90,65,70),
14084 (11,2,54,97,58,91,66,71),
14085 (11,2,55,99,59,93,67,73),
14086 (11,2,56,101,60,95,68,74),
14087 (11,2,57,103,61,96,69,75),
14088 (11,2,58,105,62,98,70,76),
14089 (11,2,59,106,63,100,71,77),
14090 (11,2,60,108,64,101,72,78),
14091 (11,2,61,110,65,103,74,80),
14092 (11,2,62,112,66,105,75,81),
14093 (11,2,63,114,67,106,76,82),
14094 (11,2,64,116,68,108,77,83),
14095 (11,2,65,117,69,110,78,85),
14096 (11,2,66,119,70,112,79,86),
14097 (11,2,67,121,71,114,80,87),
14098 (11,2,68,123,72,115,82,88),
14099 (11,2,69,125,73,117,83,90),
14100 (11,2,70,127,74,119,84,91),
14101 (11,2,71,130,75,121,87,92),
14102 (11,2,72,132,76,124,90,94),
14103 (11,2,73,134,77,126,93,96),
14104 (11,2,74,137,79,128,97,97),
14105 (11,2,75,139,80,130,101,99),
14106 (11,2,76,142,81,133,106,100),
14107 (11,2,77,144,83,135,108,102),
14108 (11,2,78,147,84,137,110,104),
14109 (11,2,79,149,85,140,111,105),
14110 (11,2,80,152,87,142,113,107),
14111 (11,2,81,161,88,146,99,109),
14112 (11,2,82,164,90,148,101,110),
14113 (11,2,83,167,91,151,102,112),
14114 (11,2,84,171,93,153,104,114),
14115 (11,2,85,173,94,156,106,116),
14116 (11,3,1,21,20,20,21,23),
14117 (11,3,2,21,21,21,22,24),
14118 (11,3,3,22,23,22,22,24),
14119 (11,3,4,22,24,23,23,25),
14120 (11,3,5,23,25,24,23,25),
14121 (11,3,6,23,27,25,24,26),
14122 (11,3,7,24,28,26,24,27),
14123 (11,3,8,24,30,27,25,27),
14124 (11,3,9,25,31,27,26,28),
14125 (11,3,10,25,33,28,26,29),
14126 (11,3,11,25,34,29,27,29),
14127 (11,3,12,26,36,30,28,30),
14128 (11,3,13,26,37,31,28,31),
14129 (11,3,14,27,39,32,29,32),
14130 (11,3,15,27,40,34,30,32),
14131 (11,3,16,28,42,35,30,33),
14132 (11,3,17,28,43,36,31,34),
14133 (11,3,18,29,45,37,32,35),
14134 (11,3,19,29,47,38,32,35),
14135 (11,3,20,30,48,39,33,36),
14136 (11,3,21,31,50,40,34,37),
14137 (11,3,22,31,51,41,34,38),
14138 (11,3,23,32,53,42,35,38),
14139 (11,3,24,32,55,43,36,39),
14140 (11,3,25,33,57,44,37,40),
14141 (11,3,26,33,58,46,37,41),
14142 (11,3,27,34,60,47,38,42),
14143 (11,3,28,35,62,48,39,42),
14144 (11,3,29,35,63,49,40,43),
14145 (11,3,30,36,65,50,40,44),
14146 (11,3,31,36,67,52,41,45),
14147 (11,3,32,37,69,53,42,46),
14148 (11,3,33,38,71,54,43,47),
14149 (11,3,34,38,72,55,44,48),
14150 (11,3,35,39,74,57,44,48),
14151 (11,3,36,39,76,58,45,49),
14152 (11,3,37,40,78,59,46,50),
14153 (11,3,38,41,80,60,47,51),
14154 (11,3,39,41,82,62,48,52),
14155 (11,3,40,42,84,63,49,53),
14156 (11,3,41,43,86,64,50,54),
14157 (11,3,42,43,88,66,50,55),
14158 (11,3,43,44,90,67,51,56),
14159 (11,3,44,45,91,68,52,57),
14160 (11,3,45,45,93,70,53,58),
14161 (11,3,46,46,95,71,54,59),
14162 (11,3,47,47,98,72,55,60),
14163 (11,3,48,48,100,74,56,61),
14164 (11,3,49,48,102,75,57,62),
14165 (11,3,50,49,104,77,58,63),
14166 (11,3,51,50,106,78,59,64),
14167 (11,3,52,51,108,79,60,65),
14168 (11,3,53,51,110,81,61,66),
14169 (11,3,54,52,112,82,61,67),
14170 (11,3,55,53,114,84,62,68),
14171 (11,3,56,54,116,85,63,69),
14172 (11,3,57,54,118,87,64,70),
14173 (11,3,58,55,121,88,65,71),
14174 (11,3,59,56,123,90,66,72),
14175 (11,3,60,57,125,91,67,74),
14176 (11,3,61,58,127,93,68,75),
14177 (11,3,62,58,130,94,69,76),
14178 (11,3,63,59,132,96,71,77),
14179 (11,3,64,60,134,97,72,78),
14180 (11,3,65,61,136,99,73,79),
14181 (11,3,66,62,139,101,74,80),
14182 (11,3,67,62,141,102,75,81),
14183 (11,3,68,63,143,104,76,83),
14184 (11,3,69,64,146,105,77,84),
14185 (11,3,70,65,148,107,78,85),
14186 (11,3,71,66,151,109,79,86),
14187 (11,3,72,67,154,111,80,87),
14188 (11,3,73,68,157,113,81,89),
14189 (11,3,74,69,160,115,83,90),
14190 (11,3,75,70,163,117,84,92),
14191 (11,3,76,71,166,119,85,93),
14192 (11,3,77,72,169,121,87,95),
14193 (11,3,78,73,172,123,88,96),
14194 (11,3,79,74,175,125,89,98),
14195 (11,3,80,75,178,127,91,99),
14196 (11,3,81,76,191,130,91,101),
14197 (11,3,82,78,194,133,93,102),
14198 (11,3,83,79,197,135,94,104),
14199 (11,3,84,80,201,137,96,105),
14200 (11,3,85,81,205,139,97,107),
14201 (11,4,81,115,199,107,44,70),
14202 (11,4,82,117,202,108,44,70),
14203 (11,4,83,119,206,110,45,71),
14204 (11,4,84,121,210,112,45,72),
14205 (11,4,85,123,213,114,46,73),
14206 (11,4,10,28,32,27,22,25),
14207 (11,4,11,29,33,28,22,26),
14208 (11,4,12,30,34,28,22,26),
14209 (11,4,13,31,36,29,22,26),
14210 (11,4,14,31,37,30,22,27),
14211 (11,4,15,32,39,30,23,27),
14212 (11,4,16,33,40,31,23,28),
14213 (11,4,17,34,41,32,23,28),
14214 (11,4,18,35,43,33,23,28),
14215 (11,4,19,36,45,33,23,29),
14216 (11,4,20,36,46,34,24,29),
14217 (11,4,21,37,48,35,24,30),
14218 (11,4,22,38,49,36,24,30),
14219 (11,4,23,39,51,37,24,31),
14220 (11,4,24,40,52,37,25,31),
14221 (11,4,25,41,54,38,25,32),
14222 (11,4,26,42,56,39,25,32),
14223 (11,4,27,43,57,40,25,32),
14224 (11,4,28,44,59,41,25,33),
14225 (11,4,29,44,61,42,26,33),
14226 (11,4,30,45,63,42,26,34),
14227 (11,4,31,46,64,43,26,34),
14228 (11,4,32,47,66,44,26,35),
14229 (11,4,33,48,68,45,27,35),
14230 (11,4,34,49,70,46,27,36),
14231 (11,4,35,50,72,47,27,36),
14232 (11,4,36,52,74,48,28,37),
14233 (11,4,37,53,75,49,28,38),
14234 (11,4,38,54,77,50,28,38),
14235 (11,4,39,55,79,51,28,39),
14236 (11,4,40,56,81,52,29,39),
14237 (11,4,41,57,83,53,29,40),
14238 (11,4,42,58,85,54,29,40),
14239 (11,4,43,59,87,55,29,41),
14240 (11,4,44,60,90,56,30,41),
14241 (11,4,45,62,92,57,30,42),
14242 (11,4,46,63,94,58,30,43),
14243 (11,4,47,64,96,59,31,43),
14244 (11,4,48,65,98,60,31,44),
14245 (11,4,49,66,100,62,31,45),
14246 (11,4,50,68,103,63,32,45),
14247 (11,4,51,69,110,64,32,46),
14248 (11,4,52,70,110,65,32,46),
14249 (11,4,53,71,115,66,33,47),
14250 (11,4,54,73,117,67,33,48),
14251 (11,4,55,74,119,69,33,48),
14252 (11,4,56,75,123,70,34,49),
14253 (11,4,57,77,125,71,34,50),
14254 (11,4,58,78,128,72,34,51),
14255 (11,4,59,80,130,74,35,51),
14256 (11,4,60,81,133,75,35,52),
14257 (11,4,61,82,136,76,35,53),
14258 (11,4,62,84,138,78,36,53),
14259 (11,4,63,85,138,79,36,54),
14260 (11,4,64,87,145,80,36,55),
14261 (11,4,65,88,147,82,37,56),
14262 (11,4,66,90,150,83,37,57),
14263 (11,4,67,91,153,85,38,57),
14264 (11,4,68,93,156,86,38,58),
14265 (11,4,69,95,159,87,38,59),
14266 (11,4,70,96,159,89,39,60),
14267 (11,4,71,98,166,90,39,61),
14268 (11,4,72,100,169,92,40,61),
14269 (11,4,73,101,172,94,40,62),
14270 (11,4,74,103,175,95,41,63),
14271 (11,4,75,105,178,97,41,64),
14272 (11,4,76,106,181,98,41,65),
14273 (11,4,77,108,185,100,42,66),
14274 (11,4,78,110,189,102,42,67),
14275 (11,4,79,112,192,103,43,68),
14276 (11,4,80,114,195,105,43,69),
14277 (11,5,1,21,17,19,23,25),
14278 (11,5,2,21,17,19,24,26),
14279 (11,5,3,21,17,20,26,28),
14280 (11,5,4,21,18,20,27,29),
14281 (11,5,5,22,18,20,28,30),
14282 (11,5,6,22,18,21,30,32),
14283 (11,5,7,22,18,21,31,33),
14284 (11,5,8,22,19,22,32,35),
14285 (11,5,9,22,19,22,34,36),
14286 (11,5,10,22,19,22,35,38),
14287 (11,5,11,23,19,23,37,39),
14288 (11,5,12,23,20,23,38,41),
14289 (11,5,13,23,20,24,39,42),
14290 (11,5,14,23,20,24,41,44),
14291 (11,5,15,23,20,25,42,45),
14292 (11,5,16,24,21,25,44,47),
14293 (11,5,17,24,21,25,45,48),
14294 (11,5,18,24,21,26,47,50),
14295 (11,5,19,24,22,26,48,51),
14296 (11,5,20,24,22,27,50,53),
14297 (11,5,21,25,22,27,51,55),
14298 (11,5,22,25,22,28,53,56),
14299 (11,5,23,25,23,28,55,58),
14300 (11,5,24,25,23,29,56,60),
14301 (11,5,25,25,23,29,58,61),
14302 (11,5,26,26,24,30,60,63),
14303 (11,5,27,26,24,30,61,65),
14304 (11,5,28,26,24,31,63,66),
14305 (11,5,29,26,25,31,65,68),
14306 (11,5,30,27,25,32,66,70),
14307 (11,5,31,27,25,32,68,72),
14308 (11,5,32,27,26,33,70,73),
14309 (11,5,33,27,26,33,71,75),
14310 (11,5,34,28,26,34,73,77),
14311 (11,5,35,28,27,34,75,79),
14312 (11,5,36,28,27,35,77,81),
14313 (11,5,37,29,28,35,79,83),
14314 (11,5,38,29,28,36,80,85),
14315 (11,5,39,29,28,37,82,86),
14316 (11,5,40,29,29,37,84,88),
14317 (11,5,41,30,29,38,86,90),
14318 (11,5,42,30,29,38,88,92),
14319 (11,5,43,30,30,39,90,94),
14320 (11,5,44,31,30,39,91,96),
14321 (11,5,45,31,31,40,93,98),
14322 (11,5,46,31,31,41,95,100),
14323 (11,5,47,32,31,41,97,102),
14324 (11,5,48,32,32,42,99,104),
14325 (11,5,49,32,32,43,101,106),
14326 (11,5,50,33,33,43,103,108),
14327 (11,5,51,33,33,44,105,110),
14328 (11,5,52,33,34,44,107,113),
14329 (11,5,53,34,34,45,109,115),
14330 (11,5,54,34,34,46,111,117),
14331 (11,5,55,34,35,46,113,119),
14332 (11,5,56,35,35,47,115,121),
14333 (11,5,57,35,36,48,118,123),
14334 (11,5,58,35,36,48,120,126),
14335 (11,5,59,36,37,49,122,128),
14336 (11,5,60,36,37,50,124,130),
14337 (11,5,61,36,38,51,126,132),
14338 (11,5,62,37,38,51,128,134),
14339 (11,5,63,37,39,52,130,137),
14340 (11,5,64,38,39,53,133,139),
14341 (11,5,65,38,40,53,135,141),
14342 (11,5,66,38,40,54,137,144),
14343 (11,5,67,39,40,55,139,146),
14344 (11,5,68,39,41,56,141,148),
14345 (11,5,69,40,41,56,144,151),
14346 (11,5,70,40,42,57,146,153),
14347 (11,5,71,40,43,58,149,156),
14348 (11,5,72,41,43,58,155,159),
14349 (11,5,73,41,44,59,157,160),
14350 (11,5,74,42,44,61,160,163),
14351 (11,5,75,42,45,62,164,166),
14352 (11,5,76,42,46,62,167,169),
14353 (11,5,77,43,46,63,168,172),
14354 (11,5,78,43,47,64,169,177),
14355 (11,5,79,44,47,65,172,180),
14356 (11,5,80,44,48,66,175,183),
14357 (11,5,81,45,49,68,185,187),
14358 (11,5,82,45,49,68,189,190),
14359 (11,5,83,46,50,69,193,193),
14360 (11,5,84,46,51,70,196,197),
14361 (11,5,85,47,51,71,199,200),
14362 (11,6,1,24,17,21,21,22),
14363 (11,6,2,25,18,22,21,22),
14364 (11,6,3,27,19,23,21,23),
14365 (11,6,4,28,19,25,21,23),
14366 (11,6,5,29,20,26,21,23),
14367 (11,6,6,31,21,27,21,23),
14368 (11,6,7,32,22,28,21,24),
14369 (11,6,8,33,23,29,22,24),
14370 (11,6,9,35,24,31,22,24),
14371 (11,6,10,36,24,32,22,25),
14372 (11,6,11,37,25,33,22,25),
14373 (11,6,12,39,26,34,22,25),
14374 (11,6,13,40,27,36,22,26),
14375 (11,6,14,42,28,37,22,26),
14376 (11,6,15,43,29,38,22,26),
14377 (11,6,16,45,30,40,22,27),
14378 (11,6,17,46,31,41,23,27),
14379 (11,6,18,48,32,43,23,27),
14380 (11,6,19,49,33,44,23,28),
14381 (11,6,20,51,34,45,23,28),
14382 (11,6,21,52,34,47,23,28),
14383 (11,6,22,54,35,48,23,29),
14384 (11,6,23,55,36,50,23,29),
14385 (11,6,24,57,37,51,24,30),
14386 (11,6,25,59,38,52,24,30),
14387 (11,6,26,60,39,54,24,30),
14388 (11,6,27,62,40,55,24,31),
14389 (11,6,28,63,41,57,24,31),
14390 (11,6,29,65,43,58,24,32),
14391 (11,6,30,67,44,60,24,32),
14392 (11,6,31,69,45,62,25,32),
14393 (11,6,32,70,46,63,25,33),
14394 (11,6,33,72,47,65,25,33),
14395 (11,6,34,74,48,66,25,34),
14396 (11,6,35,75,49,68,25,34),
14397 (11,6,36,77,50,69,26,35),
14398 (11,6,37,79,51,71,26,35),
14399 (11,6,38,81,52,73,26,35),
14400 (11,6,39,83,53,74,26,36),
14401 (11,6,40,84,55,76,26,36),
14402 (11,6,41,86,56,78,27,37),
14403 (11,6,42,88,57,79,27,37),
14404 (11,6,43,90,58,81,27,38),
14405 (11,6,44,92,59,83,27,38),
14406 (11,6,45,94,60,85,27,39),
14407 (11,6,46,96,62,86,28,39),
14408 (11,6,47,98,63,88,28,40),
14409 (11,6,48,100,64,90,28,40),
14410 (11,6,49,102,65,92,28,41),
14411 (11,6,50,103,65,93,29,41),
14412 (11,6,51,105,66,94,29,42),
14413 (11,6,52,106,67,95,29,42),
14414 (11,6,53,107,68,96,29,43),
14415 (11,6,54,108,69,97,30,44),
14416 (11,6,55,109,70,98,30,44),
14417 (11,6,56,112,72,101,30,45),
14418 (11,6,57,114,73,103,30,45),
14419 (11,6,58,117,74,105,31,46),
14420 (11,6,59,119,76,107,31,46),
14421 (11,6,60,121,77,109,31,47),
14422 (11,6,61,123,78,111,31,48),
14423 (11,6,62,126,80,113,31,48),
14424 (11,6,63,128,81,116,32,49),
14425 (11,6,64,131,83,118,32,49),
14426 (11,6,65,136,84,120,32,50),
14427 (11,6,66,140,86,123,32,51),
14428 (11,6,67,141,87,125,33,51),
14429 (11,6,68,141,89,127,33,52),
14430 (11,6,69,144,90,130,33,53),
14431 (11,6,70,147,92,132,33,53),
14432 (11,6,71,150,94,135,34,54),
14433 (11,6,72,152,95,137,34,55),
14434 (11,6,73,155,97,140,34,56),
14435 (11,6,74,162,99,142,34,56),
14436 (11,6,75,165,100,145,35,57),
14437 (11,6,76,167,102,146,35,58),
14438 (11,6,77,169,104,150,35,59),
14439 (11,6,78,170,105,152,35,59),
14440 (11,6,79,173,107,156,36,60),
14441 (11,6,80,176,109,159,36,61),
14442 (11,6,81,179,111,163,35,62),
14443 (11,6,82,179,113,165,36,62),
14444 (11,6,83,186,115,168,36,63),
14445 (11,6,84,186,117,171,36,64),
14446 (11,6,85,192,118,174,36,65),
14447 (11,7,1,22,17,20,22,24),
14448 (11,7,2,23,17,21,23,25),
14449 (11,7,3,24,18,22,24,26),
14450 (11,7,4,25,18,23,25,27),
14451 (11,7,5,25,19,24,26,28),
14452 (11,7,6,26,19,25,27,29),
14453 (11,7,7,27,20,26,28,30),
14454 (11,7,8,28,20,27,28,31),
14455 (11,7,9,29,21,28,29,32),
14456 (11,7,10,30,21,29,30,33),
14457 (11,7,11,31,22,30,31,35),
14458 (11,7,12,32,22,31,32,36),
14459 (11,7,13,33,23,32,33,37),
14460 (11,7,14,34,23,33,34,38),
14461 (11,7,15,34,24,35,35,39),
14462 (11,7,16,35,24,36,36,40),
14463 (11,7,17,36,25,37,38,42),
14464 (11,7,18,37,25,38,39,43),
14465 (11,7,19,38,26,39,40,44),
14466 (11,7,20,39,26,40,41,45),
14467 (11,7,21,40,27,41,42,46),
14468 (11,7,22,41,27,43,43,48),
14469 (11,7,23,43,28,44,44,49),
14470 (11,7,24,44,28,45,45,50),
14471 (11,7,25,45,29,46,46,51),
14472 (11,7,26,46,30,47,48,53),
14473 (11,7,27,47,30,49,49,54),
14474 (11,7,28,48,31,50,50,55),
14475 (11,7,29,49,31,51,51,57),
14476 (11,7,30,50,32,53,52,58),
14477 (11,7,31,51,33,54,53,59),
14478 (11,7,32,52,33,55,55,61),
14479 (11,7,33,53,34,56,56,62),
14480 (11,7,34,55,34,58,57,64),
14481 (11,7,35,56,35,59,58,65),
14482 (11,7,36,57,36,60,60,66),
14483 (11,7,37,58,36,62,61,68),
14484 (11,7,38,59,37,63,62,69),
14485 (11,7,39,61,38,65,63,71),
14486 (11,7,40,62,38,66,65,72),
14487 (11,7,41,63,39,67,66,74),
14488 (11,7,42,64,40,69,67,75),
14489 (11,7,43,65,40,70,69,77),
14490 (11,7,44,67,41,72,70,78),
14491 (11,7,45,68,42,73,71,80),
14492 (11,7,46,69,42,75,73,81),
14493 (11,7,47,71,43,76,74,83),
14494 (11,7,48,72,44,78,76,84),
14495 (11,7,49,73,45,79,77,86),
14496 (11,7,50,74,45,81,78,88),
14497 (11,7,51,76,46,82,80,89),
14498 (11,7,52,77,47,84,81,91),
14499 (11,7,53,78,47,85,83,92),
14500 (11,7,54,80,48,87,84,94),
14501 (11,7,55,81,49,88,86,96),
14502 (11,7,56,83,50,90,87,97),
14503 (11,7,57,84,50,91,89,99),
14504 (11,7,58,85,51,93,90,101),
14505 (11,7,59,87,52,95,92,102),
14506 (11,7,60,88,53,96,93,104),
14507 (11,7,61,90,54,98,95,106),
14508 (11,7,62,91,54,99,96,108),
14509 (11,7,63,93,55,101,98,109),
14510 (11,7,64,94,56,103,99,111),
14511 (11,7,65,95,57,104,101,113),
14512 (11,7,66,97,58,106,103,115),
14513 (11,7,67,98,58,108,104,117),
14514 (11,7,68,100,59,110,106,118),
14515 (11,7,69,101,60,111,107,120),
14516 (11,7,70,103,61,113,109,122),
14517 (11,7,71,104,62,115,122,124),
14518 (11,7,72,106,63,117,124,127),
14519 (11,7,73,108,64,119,126,129),
14520 (11,7,74,110,65,122,128,131),
14521 (11,7,75,112,66,124,130,133),
14522 (11,7,76,114,67,126,133,136),
14523 (11,7,77,115,68,128,135,138),
14524 (11,7,78,117,69,130,137,140),
14525 (11,7,79,119,70,133,139,143),
14526 (11,7,80,121,71,135,141,145),
14527 (11,7,81,123,72,138,136,148),
14528 (11,7,82,125,74,141,139,150),
14529 (11,7,83,128,75,143,139,153),
14530 (11,7,84,130,76,145,139,155),
14531 (11,7,85,132,77,148,145,158),
14532 (11,8,1,21,17,19,24,24),
14533 (11,8,2,21,17,19,25,25),
14534 (11,8,3,21,17,20,27,27),
14535 (11,8,4,21,17,20,28,28),
14536 (11,8,5,21,18,20,29,29),
14537 (11,8,6,21,18,20,31,31),
14538 (11,8,7,21,18,21,32,32),
14539 (11,8,8,22,18,21,34,33),
14540 (11,8,9,22,18,21,35,35),
14541 (11,8,10,22,19,22,37,36),
14542 (11,8,11,22,19,22,38,37),
14543 (11,8,12,22,19,22,40,39),
14544 (11,8,13,22,19,23,41,40),
14545 (11,8,14,22,19,23,43,42),
14546 (11,8,15,22,19,23,44,43),
14547 (11,8,16,22,20,24,46,45),
14548 (11,8,17,23,20,24,47,46),
14549 (11,8,18,23,20,24,49,48),
14550 (11,8,19,23,20,25,50,49),
14551 (11,8,20,23,21,25,52,51),
14552 (11,8,21,23,21,26,54,52),
14553 (11,8,22,23,21,26,55,54),
14554 (11,8,23,23,21,26,57,56),
14555 (11,8,24,24,21,27,59,57),
14556 (11,8,25,24,22,27,60,59),
14557 (11,8,26,24,22,27,62,60),
14558 (11,8,27,24,22,28,64,62),
14559 (11,8,28,24,22,28,65,64),
14560 (11,8,29,24,23,29,67,65),
14561 (11,8,30,24,23,29,69,67),
14562 (11,8,31,25,23,30,71,69),
14563 (11,8,32,25,23,30,73,71),
14564 (11,8,33,25,24,30,74,72),
14565 (11,8,34,25,24,31,76,74),
14566 (11,8,35,25,24,31,78,76),
14567 (11,8,36,26,24,32,80,78),
14568 (11,8,37,26,25,32,82,79),
14569 (11,8,38,26,25,33,84,81),
14570 (11,8,39,26,25,33,86,83),
14571 (11,8,40,26,26,34,87,85),
14572 (11,8,41,27,26,34,89,87),
14573 (11,8,42,27,26,35,91,89),
14574 (11,8,43,27,27,35,93,91),
14575 (11,8,44,27,27,36,95,92),
14576 (11,8,45,27,27,36,97,94),
14577 (11,8,46,28,27,37,99,96),
14578 (11,8,47,28,28,37,101,98),
14579 (11,8,48,28,28,38,103,100),
14580 (11,8,49,28,28,38,105,102),
14581 (11,8,50,29,29,39,107,104),
14582 (11,8,51,29,29,39,110,106),
14583 (11,8,52,29,29,40,112,108),
14584 (11,8,53,29,30,40,114,110),
14585 (11,8,54,30,30,41,116,112),
14586 (11,8,55,30,30,41,118,114),
14587 (11,8,56,30,31,42,120,116),
14588 (11,8,57,30,31,42,122,118),
14589 (11,8,58,31,31,43,125,121),
14590 (11,8,59,31,32,43,127,123),
14591 (11,8,60,31,32,44,129,125),
14592 (11,8,61,31,33,45,131,127),
14593 (11,8,62,32,33,45,133,129),
14594 (11,8,63,32,33,46,136,131),
14595 (11,8,64,32,34,46,138,134),
14596 (11,8,65,33,34,47,140,136),
14597 (11,8,66,33,34,48,143,138),
14598 (11,8,67,33,35,48,145,140),
14599 (11,8,68,33,35,49,147,142),
14600 (11,8,69,34,36,49,150,145),
14601 (11,8,70,34,36,50,152,147),
14602 (11,8,71,34,36,51,155,150),
14603 (11,8,72,34,37,52,161,153),
14604 (11,8,73,34,37,53,161,156),
14605 (11,8,74,35,38,53,164,158),
14606 (11,8,75,35,38,54,167,161),
14607 (11,8,76,35,38,55,170,164),
14608 (11,8,77,36,39,56,173,167),
14609 (11,8,78,36,39,56,176,170),
14610 (11,8,79,36,40,57,179,173),
14611 (11,8,80,37,40,58,182,176),
14612 (11,8,81,37,41,60,194,179),
14613 (11,8,82,37,41,60,197,182),
14614 (11,8,83,37,42,61,200,186),
14615 (11,8,84,38,42,62,204,189),
14616 (11,8,85,38,43,63,207,192),
14617 (11,9,81,61,65,91,169,171),
14618 (11,9,82,61,65,92,172,174),
14619 (11,9,83,62,66,94,175,177),
14620 (11,9,84,63,67,95,178,180),
14621 (11,9,85,64,68,96,181,183),
14622 (11,9,10,24,20,26,31,34),
14623 (11,9,11,24,21,26,33,35),
14624 (11,9,12,24,21,27,34,36),
14625 (11,9,13,25,21,27,35,38),
14626 (11,9,14,25,22,28,36,39),
14627 (11,9,15,25,22,29,37,40),
14628 (11,9,16,26,23,29,38,41),
14629 (11,9,17,26,23,30,40,43),
14630 (11,9,18,26,23,30,41,44),
14631 (11,9,19,27,24,31,42,45),
14632 (11,9,20,27,24,32,43,47),
14633 (11,9,21,27,25,32,45,48),
14634 (11,9,22,28,25,33,46,49),
14635 (11,9,23,28,26,34,47,51),
14636 (11,9,24,29,26,34,49,52),
14637 (11,9,25,29,27,35,50,54),
14638 (11,9,26,29,27,36,51,55),
14639 (11,9,27,30,27,36,53,56),
14640 (11,9,28,30,28,37,54,58),
14641 (11,9,29,31,28,38,56,59),
14642 (11,9,30,31,29,38,57,61),
14643 (11,9,31,31,29,39,58,63),
14644 (11,9,32,32,30,40,60,64),
14645 (11,9,33,32,30,41,61,66),
14646 (11,9,34,33,31,41,63,67),
14647 (11,9,35,33,31,42,64,69),
14648 (11,9,36,34,32,43,66,71),
14649 (11,9,37,34,33,44,68,72),
14650 (11,9,38,34,33,45,69,74),
14651 (11,9,39,35,34,45,71,76),
14652 (11,9,40,35,34,46,72,77),
14653 (11,9,41,36,35,47,74,79),
14654 (11,9,42,36,35,48,76,81),
14655 (11,9,43,37,36,49,77,83),
14656 (11,9,44,37,36,50,79,84),
14657 (11,9,45,38,37,50,81,86),
14658 (11,9,46,38,38,51,83,88),
14659 (11,9,47,39,38,52,84,90),
14660 (11,9,48,39,39,53,86,92),
14661 (11,9,49,40,40,54,88,94),
14662 (11,9,50,40,40,55,94,96),
14663 (11,9,51,41,41,56,96,98),
14664 (11,9,52,41,41,57,98,100),
14665 (11,9,53,42,42,58,100,102),
14666 (11,9,54,43,43,59,102,104),
14667 (11,9,55,43,43,60,105,106),
14668 (11,9,56,44,44,61,107,108),
14669 (11,9,57,44,45,62,109,110),
14670 (11,9,58,45,46,63,111,113),
14671 (11,9,59,45,46,64,113,115),
14672 (11,9,60,46,47,65,115,117),
14673 (11,9,61,47,48,66,117,119),
14674 (11,9,62,47,48,67,119,122),
14675 (11,9,63,48,49,68,122,124),
14676 (11,9,64,48,50,69,124,126),
14677 (11,9,65,49,51,71,127,129),
14678 (11,9,66,50,52,72,129,131),
14679 (11,9,67,50,52,73,132,134),
14680 (11,9,68,51,53,74,134,136),
14681 (11,9,69,52,54,75,136,138),
14682 (11,9,70,52,55,76,139,141),
14683 (11,9,71,53,56,78,141,144),
14684 (11,9,72,54,56,79,144,146),
14685 (11,9,73,55,57,80,147,149),
14686 (11,9,74,55,58,81,150,152),
14687 (11,9,75,56,59,83,152,154),
14688 (11,9,76,57,60,84,155,157),
14689 (11,9,77,58,61,85,158,160),
14690 (11,9,78,58,62,87,160,163),
14691 (11,9,79,59,63,88,163,166),
14692 (11,9,80,60,64,89,166,168),
14693 (11,11,81,92,80,99,146,163),
14694 (11,11,82,93,82,101,148,166),
14695 (11,11,83,95,83,102,151,169),
14696 (11,11,84,96,84,104,160,172),
14697 (11,11,85,97,86,106,160,175),
14698 (11,11,10,27,21,25,30,33),
14699 (11,11,11,27,22,26,31,35),
14700 (11,11,12,28,22,27,32,36),
14701 (11,11,13,28,23,27,33,37),
14702 (11,11,14,29,23,28,34,38),
14703 (11,11,15,30,24,29,36,39),
14704 (11,11,16,30,24,29,37,40),
14705 (11,11,17,31,25,30,38,42),
14706 (11,11,18,31,26,31,39,43),
14707 (11,11,19,32,26,31,40,44),
14708 (11,11,20,33,27,32,41,45),
14709 (11,11,21,33,27,33,42,47),
14710 (11,11,22,34,28,34,43,48),
14711 (11,11,23,35,29,34,44,49),
14712 (11,11,24,35,29,35,46,51),
14713 (11,11,25,36,30,36,47,52),
14714 (11,11,26,37,30,37,48,53),
14715 (11,11,27,37,31,37,49,55),
14716 (11,11,28,38,32,38,50,56),
14717 (11,11,29,39,32,39,52,58),
14718 (11,11,30,39,33,40,53,59),
14719 (11,11,31,40,34,41,54,60),
14720 (11,11,32,41,34,42,56,62),
14721 (11,11,33,42,35,42,57,63),
14722 (11,11,34,42,36,43,58,65),
14723 (11,11,35,43,36,44,60,66),
14724 (11,11,36,44,37,45,61,68),
14725 (11,11,37,45,38,46,62,70),
14726 (11,11,38,46,38,47,64,71),
14727 (11,11,39,46,39,48,65,73),
14728 (11,11,40,47,40,49,67,74),
14729 (11,11,41,48,41,50,68,76),
14730 (11,11,42,49,41,51,70,78),
14731 (11,11,43,50,42,52,71,79),
14732 (11,11,44,51,43,52,73,81),
14733 (11,11,45,51,44,53,74,83),
14734 (11,11,46,52,45,54,76,85),
14735 (11,11,47,53,45,56,77,86),
14736 (11,11,48,54,46,57,79,88),
14737 (11,11,49,55,47,58,81,90),
14738 (11,11,50,56,48,59,82,92),
14739 (11,11,51,57,49,60,84,94),
14740 (11,11,52,58,50,61,86,96),
14741 (11,11,53,59,51,62,87,98),
14742 (11,11,54,60,51,63,89,100),
14743 (11,11,55,61,52,64,91,102),
14744 (11,11,56,62,53,65,93,104),
14745 (11,11,57,63,54,66,94,106),
14746 (11,11,58,64,55,68,96,108),
14747 (11,11,59,65,56,69,98,110),
14748 (11,11,60,66,57,70,100,112),
14749 (11,11,61,67,58,71,102,114),
14750 (11,11,62,68,59,72,104,116),
14751 (11,11,63,69,60,74,106,119),
14752 (11,11,64,70,61,75,108,121),
14753 (11,11,65,72,62,76,110,123),
14754 (11,11,66,73,63,78,112,125),
14755 (11,11,67,74,64,79,114,128),
14756 (11,11,68,75,65,80,116,130),
14757 (11,11,69,76,66,82,118,132),
14758 (11,11,70,77,67,83,120,135),
14759 (11,11,71,79,68,84,122,137),
14760 (11,11,72,80,70,86,125,140),
14761 (11,11,73,81,71,87,127,142),
14762 (11,11,74,82,72,89,129,145),
14763 (11,11,75,84,73,90,131,147),
14764 (11,11,76,85,74,92,134,150),
14765 (11,11,77,86,75,93,136,153),
14766 (11,11,78,88,77,95,138,155),
14767 (11,11,79,89,78,96,141,158),
14768 (11,11,80,90,79,98,143,161),
14769 (22,1,8,32,26,30,21,22),
14770 (22,1,7,31,25,29,21,22),
14771 (22,1,6,30,24,28,20,21),
14772 (22,1,5,28,23,27,20,21),
14773 (22,1,4,27,22,26,20,21),
14774 (22,1,3,26,22,24,20,21),
14775 (22,1,2,24,21,23,20,20),
14776 (22,1,1,23,20,22,20,20),
14777 (22,1,9,34,26,32,21,22),
14778 (22,1,10,35,27,33,21,23),
14779 (22,1,11,36,28,34,21,23),
14780 (22,1,12,38,29,35,21,23),
14781 (22,1,13,39,30,37,21,24),
14782 (22,1,14,41,31,38,21,24),
14783 (22,1,15,42,32,39,21,24),
14784 (22,1,16,44,33,41,21,25),
14785 (22,1,17,45,34,42,22,25),
14786 (22,1,18,47,34,43,22,25),
14787 (22,1,19,48,35,45,22,26),
14788 (22,1,20,50,36,46,22,26),
14789 (22,1,21,51,37,48,22,26),
14790 (22,1,22,53,38,49,22,27),
14791 (22,1,23,54,39,51,22,27),
14792 (22,1,24,56,40,52,23,28),
14793 (22,1,25,58,41,53,23,28),
14794 (22,1,26,59,42,55,23,28),
14795 (22,1,27,61,43,56,23,29),
14796 (22,1,28,63,44,58,23,29),
14797 (22,1,29,64,45,59,23,30),
14798 (22,1,30,66,46,61,24,30),
14799 (22,1,31,68,47,62,24,30),
14800 (22,1,32,69,48,64,24,31),
14801 (22,1,33,71,50,66,24,31),
14802 (22,1,34,73,51,67,24,32),
14803 (22,1,35,74,52,69,24,32),
14804 (22,1,36,76,53,70,25,33),
14805 (22,1,37,78,54,72,25,33),
14806 (22,1,38,80,55,74,25,34),
14807 (22,1,39,82,56,75,25,34),
14808 (22,1,40,83,57,77,25,35),
14809 (22,1,41,85,58,79,26,35),
14810 (22,1,42,87,60,80,26,35),
14811 (22,1,43,89,61,82,26,36),
14812 (22,1,44,91,62,84,26,36),
14813 (22,1,45,93,63,85,26,37),
14814 (22,1,46,95,64,87,27,37),
14815 (22,1,47,97,66,89,27,38),
14816 (22,1,48,99,67,91,27,38),
14817 (22,1,49,101,68,93,27,39),
14818 (22,1,50,103,69,94,28,40),
14819 (22,1,51,105,71,96,28,40),
14820 (22,1,52,107,72,98,28,41),
14821 (22,1,53,109,73,100,28,41),
14822 (22,1,54,111,74,102,29,42),
14823 (22,1,55,113,76,103,29,42),
14824 (22,1,56,115,77,105,29,43),
14825 (22,1,57,117,78,107,29,43),
14826 (22,1,58,119,79,109,30,44),
14827 (22,1,59,121,81,111,30,44),
14828 (22,1,60,123,82,113,30,45),
14829 (22,1,61,125,83,115,30,46),
14830 (22,1,62,127,85,117,31,46),
14831 (22,1,63,129,86,119,31,47),
14832 (22,1,64,132,88,121,31,47),
14833 (22,1,65,134,89,123,32,48),
14834 (22,1,66,136,90,125,32,49),
14835 (22,1,67,138,92,127,32,49),
14836 (22,1,68,140,93,129,32,50),
14837 (22,1,69,143,95,131,33,50),
14838 (22,1,70,145,96,133,33,51),
14839 (22,1,71,148,97,140,33,53),
14840 (22,1,72,156,99,143,33,54),
14841 (22,1,73,162,101,148,33,55),
14842 (22,1,74,162,102,148,34,55),
14843 (22,1,75,165,104,150,34,56),
14844 (22,1,76,171,106,156,34,57),
14845 (22,1,77,171,108,157,35,58),
14846 (22,1,78,174,109,159,35,58),
14847 (22,1,79,181,111,165,35,59),
14848 (22,1,80,184,113,168,36,60),
14849 (22,1,81,194,123,178,46,70),
14850 (22,1,82,204,133,188,56,80),
14851 (22,1,83,214,143,198,66,90),
14852 (22,1,84,224,153,208,76,100),
14853 (22,1,85,234,163,218,86,110),
14854 (22,3,1,22,20,22,20,21),
14855 (22,3,2,23,21,23,21,22),
14856 (22,3,3,24,21,24,21,22),
14857 (22,3,4,25,22,25,22,23),
14858 (22,3,5,26,22,26,23,24),
14859 (22,3,6,28,23,27,23,25),
14860 (22,3,7,29,24,28,24,25),
14861 (22,3,8,30,24,29,25,26),
14862 (22,3,9,31,25,30,25,27),
14863 (22,3,10,32,25,32,26,27),
14864 (22,3,11,33,26,33,27,28),
14865 (22,3,12,35,27,34,27,29),
14866 (22,3,13,36,27,35,28,30),
14867 (22,3,14,37,28,36,29,31),
14868 (22,3,15,38,29,37,30,31),
14869 (22,3,16,40,29,38,30,32),
14870 (22,3,17,41,30,40,31,33),
14871 (22,3,18,42,31,41,32,34),
14872 (22,3,19,43,31,42,33,35),
14873 (22,3,20,45,32,43,33,35),
14874 (22,3,21,46,33,45,34,36),
14875 (22,3,22,47,33,46,35,37),
14876 (22,3,23,49,34,47,36,38),
14877 (22,3,24,50,35,48,37,39),
14878 (22,3,25,51,36,50,37,40),
14879 (22,3,26,53,36,51,38,41),
14880 (22,3,27,54,37,52,39,42),
14881 (22,3,28,56,38,54,40,43),
14882 (22,3,29,57,39,55,41,43),
14883 (22,3,30,58,39,56,42,44),
14884 (22,3,31,60,40,58,43,45),
14885 (22,3,32,61,41,59,43,46),
14886 (22,3,33,63,42,60,44,47),
14887 (22,3,34,64,43,62,45,48),
14888 (22,3,35,66,44,63,46,49),
14889 (22,3,36,67,44,65,47,50),
14890 (22,3,37,69,45,66,48,51),
14891 (22,3,38,70,46,67,49,52),
14892 (22,3,39,72,47,69,50,53),
14893 (22,3,40,73,48,70,51,54),
14894 (22,3,41,75,49,72,52,55),
14895 (22,3,42,77,49,73,53,56),
14896 (22,3,43,78,50,75,54,57),
14897 (22,3,44,80,51,76,55,58),
14898 (22,3,45,81,52,78,56,59),
14899 (22,3,46,83,53,79,57,61),
14900 (22,3,47,85,54,81,58,62),
14901 (22,3,48,86,55,83,59,63),
14902 (22,3,49,88,56,84,60,64),
14903 (22,3,50,90,57,86,61,65),
14904 (22,3,51,91,58,87,62,66),
14905 (22,3,52,93,59,89,63,67),
14906 (22,3,53,95,60,91,64,68),
14907 (22,3,54,97,61,92,65,69),
14908 (22,3,55,98,61,94,66,71),
14909 (22,3,56,100,62,95,67,72),
14910 (22,3,57,102,63,97,68,73),
14911 (22,3,58,104,64,99,69,74),
14912 (22,3,59,105,65,101,70,75),
14913 (22,3,60,107,66,102,71,77),
14914 (22,3,61,109,67,104,73,78),
14915 (22,3,62,111,69,106,74,79),
14916 (22,3,63,113,70,107,75,80),
14917 (22,3,64,115,71,109,76,81),
14918 (22,3,65,116,72,111,77,83),
14919 (22,3,66,118,73,113,78,84),
14920 (22,3,67,120,74,115,79,85),
14921 (22,3,68,122,75,116,81,86),
14922 (22,3,69,124,76,118,82,88),
14923 (22,3,70,126,77,120,83,89),
14924 (22,3,71,148,78,122,84,92),
14925 (22,3,72,150,79,125,86,94),
14926 (22,3,73,152,80,127,87,96),
14927 (22,3,74,156,82,129,89,97),
14928 (22,3,75,158,83,131,90,99),
14929 (22,3,76,162,84,134,92,100),
14930 (22,3,77,164,86,136,93,103),
14931 (22,3,78,167,87,138,95,105),
14932 (22,3,79,170,88,153,96,106),
14933 (22,3,80,173,90,160,98,108),
14934 (22,3,81,183,100,170,108,118),
14935 (22,3,82,193,110,180,118,128),
14936 (22,3,83,203,120,190,128,138),
14937 (22,3,84,213,130,200,138,148),
14938 (22,3,85,223,140,210,148,158),
14939 (22,4,1,21,23,21,20,20),
14940 (22,4,2,22,24,22,20,20),
14941 (22,4,3,23,26,22,20,21),
14942 (22,4,4,23,27,23,20,21),
14943 (22,4,5,24,29,24,21,21),
14944 (22,4,6,25,30,25,21,22),
14945 (22,4,7,26,32,25,21,22),
14946 (22,4,8,26,33,26,21,23),
14947 (22,4,9,27,35,27,21,23),
14948 (22,4,10,28,36,27,21,23),
14949 (22,4,11,29,38,28,22,24),
14950 (22,4,12,30,39,29,22,24),
14951 (22,4,13,31,41,30,22,25),
14952 (22,4,14,31,43,31,22,25),
14953 (22,4,15,32,44,31,22,25),
14954 (22,4,16,33,46,32,23,26),
14955 (22,4,17,34,48,33,23,26),
14956 (22,4,18,35,49,34,23,27),
14957 (22,4,19,36,51,35,23,27),
14958 (22,4,20,37,53,35,23,28),
14959 (22,4,21,38,54,36,24,28),
14960 (22,4,22,39,56,37,24,29),
14961 (22,4,23,40,58,38,24,29),
14962 (22,4,24,41,60,39,24,30),
14963 (22,4,25,42,61,40,25,30),
14964 (22,4,26,43,63,41,25,31),
14965 (22,4,27,44,65,42,25,31),
14966 (22,4,28,45,67,43,25,32),
14967 (22,4,29,46,69,43,25,32),
14968 (22,4,30,47,71,44,26,33),
14969 (22,4,31,48,72,45,26,33),
14970 (22,4,32,49,74,46,26,34),
14971 (22,4,33,50,76,47,27,34),
14972 (22,4,34,51,78,48,27,35),
14973 (22,4,35,52,80,49,27,35),
14974 (22,4,36,53,82,50,27,36),
14975 (22,4,37,54,84,51,28,36),
14976 (22,4,38,55,86,52,28,37),
14977 (22,4,39,56,88,53,28,38),
14978 (22,4,40,57,90,54,28,38),
14979 (22,4,41,58,92,55,29,39),
14980 (22,4,42,60,94,56,29,39),
14981 (22,4,43,61,96,57,29,40),
14982 (22,4,44,62,98,58,30,40),
14983 (22,4,45,63,100,59,30,41),
14984 (22,4,46,64,103,61,30,42),
14985 (22,4,47,65,105,62,31,42),
14986 (22,4,48,66,107,63,31,43),
14987 (22,4,49,68,109,64,31,44),
14988 (22,4,50,69,111,65,32,44),
14989 (22,4,51,70,113,66,32,45),
14990 (22,4,52,71,116,67,32,45),
14991 (22,4,53,73,118,68,33,46),
14992 (22,4,54,74,120,69,33,47),
14993 (22,4,55,75,122,71,33,47),
14994 (22,4,56,76,125,72,34,48),
14995 (22,4,57,78,127,73,34,49),
14996 (22,4,58,79,129,74,34,49),
14997 (22,4,59,80,131,75,35,50),
14998 (22,4,60,81,134,77,35,51),
14999 (22,4,61,83,136,78,35,51),
15000 (22,4,62,84,138,79,36,52),
15001 (22,4,63,85,141,80,36,53),
15002 (22,4,64,87,143,81,37,54),
15003 (22,4,65,88,146,83,37,54),
15004 (22,4,66,89,148,84,37,55),
15005 (22,4,67,91,151,85,38,56),
15006 (22,4,68,92,153,86,38,57),
15007 (22,4,69,94,156,88,39,57),
15008 (22,4,70,95,158,89,39,58),
15009 (22,4,71,97,161,90,39,60),
15010 (22,4,72,99,164,92,40,60),
15011 (22,4,73,100,167,94,40,61),
15012 (22,4,74,102,170,95,41,62),
15013 (22,4,75,104,173,97,41,63),
15014 (22,4,76,105,176,98,41,64),
15015 (22,4,77,107,179,100,42,65),
15016 (22,4,78,109,183,106,42,66),
15017 (22,4,79,111,186,107,43,67),
15018 (22,4,80,113,189,109,43,69),
15019 (22,4,81,123,199,119,53,79),
15020 (22,4,82,133,209,129,63,89),
15021 (22,4,83,143,219,139,73,99),
15022 (22,4,84,153,229,149,83,109),
15023 (22,4,85,163,239,159,93,119),
15024 (22,5,1,20,20,20,22,23),
15025 (22,5,2,20,20,20,23,24),
15026 (22,5,3,20,20,21,25,26),
15027 (22,5,4,20,21,21,26,27),
15028 (22,5,5,21,21,21,27,28),
15029 (22,5,6,21,21,22,29,30),
15030 (22,5,7,21,21,22,30,31),
15031 (22,5,8,21,22,23,31,33),
15032 (22,5,9,21,22,23,33,34),
15033 (22,5,10,21,22,23,34,36),
15034 (22,5,11,22,22,24,36,37),
15035 (22,5,12,22,23,24,37,39),
15036 (22,5,13,22,23,25,38,40),
15037 (22,5,14,22,23,25,40,42),
15038 (22,5,15,22,23,25,41,43),
15039 (22,5,16,23,24,26,43,45),
15040 (22,5,17,23,24,26,44,46),
15041 (22,5,18,23,24,27,46,48),
15042 (22,5,19,23,24,27,47,49),
15043 (22,5,20,23,25,28,49,51),
15044 (22,5,21,24,25,28,51,53),
15045 (22,5,22,24,25,29,52,54),
15046 (22,5,23,24,26,29,54,56),
15047 (22,5,24,24,26,30,55,58),
15048 (22,5,25,25,26,30,57,59),
15049 (22,5,26,25,27,31,59,61),
15050 (22,5,27,25,27,31,60,63),
15051 (22,5,28,25,27,32,62,65),
15052 (22,5,29,25,28,32,64,66),
15053 (22,5,30,26,28,33,65,68),
15054 (22,5,31,26,28,33,67,70),
15055 (22,5,32,26,29,34,69,72),
15056 (22,5,33,27,29,34,70,73),
15057 (22,5,34,27,29,35,72,75),
15058 (22,5,35,27,30,35,74,77),
15059 (22,5,36,27,30,36,76,79),
15060 (22,5,37,28,30,36,78,81),
15061 (22,5,38,28,31,37,79,83),
15062 (22,5,39,28,31,38,81,85),
15063 (22,5,40,28,31,38,83,87),
15064 (22,5,41,29,32,39,85,88),
15065 (22,5,42,29,32,39,87,90),
15066 (22,5,43,29,33,40,89,92),
15067 (22,5,44,30,33,40,91,94),
15068 (22,5,45,30,33,41,92,96),
15069 (22,5,46,30,34,42,94,98),
15070 (22,5,47,31,34,42,96,100),
15071 (22,5,48,31,35,43,98,102),
15072 (22,5,49,31,35,44,100,104),
15073 (22,5,50,32,36,44,102,106),
15074 (22,5,51,32,36,45,104,109),
15075 (22,5,52,32,36,45,106,111),
15076 (22,5,53,33,37,46,108,113),
15077 (22,5,54,33,37,47,110,115),
15078 (22,5,55,33,38,47,112,117),
15079 (22,5,56,34,38,48,114,119),
15080 (22,5,57,34,39,49,117,121),
15081 (22,5,58,34,39,49,119,124),
15082 (22,5,59,35,40,50,121,126),
15083 (22,5,60,35,40,51,123,128),
15084 (22,5,61,35,41,51,125,130),
15085 (22,5,62,36,41,52,127,132),
15086 (22,5,63,36,41,53,129,135),
15087 (22,5,64,37,42,54,132,137),
15088 (22,5,65,37,42,54,134,139),
15089 (22,5,66,37,43,55,136,142),
15090 (22,5,67,38,43,56,138,144),
15091 (22,5,68,38,44,57,140,146),
15092 (22,5,69,39,44,57,143,149),
15093 (22,5,70,39,45,58,145,151),
15094 (22,5,71,39,46,59,148,158),
15095 (22,5,72,40,46,59,151,161),
15096 (22,5,73,40,47,60,154,164),
15097 (22,5,74,41,47,61,156,167),
15098 (22,5,75,41,48,62,159,170),
15099 (22,5,76,41,49,63,162,174),
15100 (22,5,77,42,49,64,165,177),
15101 (22,5,78,42,50,65,168,180),
15102 (22,5,79,43,50,66,171,183),
15103 (22,5,80,43,51,67,174,186),
15104 (22,5,81,53,61,77,184,196),
15105 (22,5,82,63,71,87,194,206),
15106 (22,5,83,73,81,97,204,216),
15107 (22,5,84,83,91,107,214,226),
15108 (22,5,85,93,101,117,224,236),
15109 (22,6,1,23,20,22,20,20),
15110 (22,6,2,24,21,23,20,20),
15111 (22,6,3,26,22,24,20,21),
15112 (22,6,4,27,22,26,20,21),
15113 (22,6,5,28,23,27,20,21),
15114 (22,6,6,30,24,28,20,21),
15115 (22,6,7,31,25,29,21,22),
15116 (22,6,8,32,26,30,21,22),
15117 (22,6,9,34,26,32,21,22),
15118 (22,6,10,35,27,33,21,23),
15119 (22,6,11,36,28,34,21,23),
15120 (22,6,12,38,29,35,21,23),
15121 (22,6,13,39,30,37,21,24),
15122 (22,6,14,41,31,38,21,24),
15123 (22,6,15,42,32,39,21,24),
15124 (22,6,16,44,33,41,21,25),
15125 (22,6,17,45,34,42,22,25),
15126 (22,6,18,47,34,43,22,25),
15127 (22,6,19,48,35,45,22,26),
15128 (22,6,20,50,36,46,22,26),
15129 (22,6,21,51,37,48,22,26),
15130 (22,6,22,53,38,49,22,27),
15131 (22,6,23,54,39,51,22,27),
15132 (22,6,24,56,40,52,23,28),
15133 (22,6,25,58,41,53,23,28),
15134 (22,6,26,59,42,55,23,28),
15135 (22,6,27,61,43,56,23,29),
15136 (22,6,28,63,44,58,23,29),
15137 (22,6,29,64,45,59,23,30),
15138 (22,6,30,66,46,61,24,30),
15139 (22,6,31,68,47,62,24,30),
15140 (22,6,32,69,48,64,24,31),
15141 (22,6,33,71,50,66,24,31),
15142 (22,6,34,73,51,67,24,32),
15143 (22,6,35,74,52,69,24,32),
15144 (22,6,36,76,53,70,25,33),
15145 (22,6,37,78,54,72,25,33),
15146 (22,6,38,80,55,74,25,34),
15147 (22,6,39,82,56,75,25,34),
15148 (22,6,40,83,57,77,25,35),
15149 (22,6,41,85,58,79,26,35),
15150 (22,6,42,87,60,80,26,35),
15151 (22,6,43,89,61,82,26,36),
15152 (22,6,44,91,62,84,26,36),
15153 (22,6,45,93,63,85,26,37),
15154 (22,6,46,95,64,87,27,37),
15155 (22,6,47,97,66,89,27,38),
15156 (22,6,48,99,67,91,27,38),
15157 (22,6,49,101,68,93,27,39),
15158 (22,6,50,103,69,94,28,40),
15159 (22,6,51,105,71,96,28,40),
15160 (22,6,52,106,72,97,28,41),
15161 (22,6,53,107,72,98,28,41),
15162 (22,6,54,107,73,98,29,42),
15163 (22,6,55,108,73,99,29,43),
15164 (22,6,56,111,75,102,29,44),
15165 (22,6,57,113,76,104,29,44),
15166 (22,6,58,118,77,106,30,45),
15167 (22,6,59,118,79,108,30,45),
15168 (22,6,60,123,80,110,30,46),
15169 (22,6,61,125,81,112,30,47),
15170 (22,6,62,128,83,114,30,47),
15171 (22,6,63,130,84,117,31,48),
15172 (22,6,64,130,86,119,31,48),
15173 (22,6,65,140,87,128,31,49),
15174 (22,6,66,143,89,131,31,50),
15175 (22,6,67,146,90,133,32,50),
15176 (22,6,68,148,92,135,32,51),
15177 (22,6,69,151,93,138,32,52),
15178 (22,6,70,154,95,140,32,52),
15179 (22,6,71,162,97,144,33,53),
15180 (22,6,72,164,98,146,33,54),
15181 (22,6,73,165,100,148,33,55),
15182 (22,6,74,166,102,151,33,55),
15183 (22,6,75,169,103,154,34,56),
15184 (22,6,76,172,105,157,34,57),
15185 (22,6,77,175,107,157,34,58),
15186 (22,6,78,176,108,157,34,58),
15187 (22,6,79,177,110,157,35,59),
15188 (22,6,80,180,112,160,35,60),
15189 (22,6,81,190,122,170,45,70),
15190 (22,6,82,200,132,180,55,80),
15191 (22,6,83,210,142,190,65,90),
15192 (22,6,84,220,152,200,75,100),
15193 (22,6,85,230,162,210,85,110),
15194 (22,8,1,20,20,20,23,22),
15195 (22,8,2,20,20,20,24,23),
15196 (22,8,3,20,20,21,26,25),
15197 (22,8,4,20,20,21,27,26),
15198 (22,8,5,20,21,21,28,27),
15199 (22,8,6,20,21,21,30,29),
15200 (22,8,7,21,21,22,31,30),
15201 (22,8,8,21,21,22,33,31),
15202 (22,8,9,21,21,22,34,33),
15203 (22,8,10,21,21,23,36,34),
15204 (22,8,11,21,22,23,37,36),
15205 (22,8,12,21,22,23,39,37),
15206 (22,8,13,21,22,24,40,38),
15207 (22,8,14,21,22,24,42,40),
15208 (22,8,15,21,22,24,43,41),
15209 (22,8,16,21,23,25,45,43),
15210 (22,8,17,22,23,25,46,44),
15211 (22,8,18,22,23,25,48,46),
15212 (22,8,19,22,23,26,49,47),
15213 (22,8,20,22,23,26,51,49),
15214 (22,8,21,22,24,26,53,51),
15215 (22,8,22,22,24,27,54,52),
15216 (22,8,23,22,24,27,56,54),
15217 (22,8,24,23,24,28,58,55),
15218 (22,8,25,23,25,28,59,57),
15219 (22,8,26,23,25,28,61,59),
15220 (22,8,27,23,25,29,63,60),
15221 (22,8,28,23,25,29,65,62),
15222 (22,8,29,23,25,30,66,64),
15223 (22,8,30,24,26,30,68,65),
15224 (22,8,31,24,26,30,70,67),
15225 (22,8,32,24,26,31,72,69),
15226 (22,8,33,24,27,31,73,70),
15227 (22,8,34,24,27,32,75,72),
15228 (22,8,35,24,27,32,77,74),
15229 (22,8,36,25,27,33,79,76),
15230 (22,8,37,25,28,33,81,78),
15231 (22,8,38,25,28,34,83,79),
15232 (22,8,39,25,28,34,85,81),
15233 (22,8,40,25,28,35,87,83),
15234 (22,8,41,26,29,35,88,85),
15235 (22,8,42,26,29,35,90,87),
15236 (22,8,43,26,29,36,92,89),
15237 (22,8,44,26,30,36,94,91),
15238 (22,8,45,26,30,37,96,92),
15239 (22,8,46,27,30,37,98,94),
15240 (22,8,47,27,31,38,100,96),
15241 (22,8,48,27,31,38,102,98),
15242 (22,8,49,27,31,39,104,100),
15243 (22,8,50,28,32,40,106,102),
15244 (22,8,51,28,32,40,109,104),
15245 (22,8,52,28,32,41,111,106),
15246 (22,8,53,28,33,41,113,108),
15247 (22,8,54,29,33,42,115,110),
15248 (22,8,55,29,33,42,117,112),
15249 (22,8,56,29,34,43,119,114),
15250 (22,8,57,29,34,43,121,117),
15251 (22,8,58,30,34,44,124,119),
15252 (22,8,59,30,35,44,126,121),
15253 (22,8,60,30,35,45,128,123),
15254 (22,8,61,30,35,46,130,125),
15255 (22,8,62,31,36,46,132,127),
15256 (22,8,63,31,36,47,135,129),
15257 (22,8,64,31,37,47,137,132),
15258 (22,8,65,32,37,48,139,134),
15259 (22,8,66,32,37,49,142,136),
15260 (22,8,67,32,38,49,144,138),
15261 (22,8,68,32,38,50,146,140),
15262 (22,8,69,33,39,50,149,143),
15263 (22,8,70,33,39,51,151,145),
15264 (22,8,71,33,39,52,154,152),
15265 (22,8,72,33,40,53,160,155),
15266 (22,8,73,33,40,54,160,158),
15267 (22,8,74,34,41,54,163,160),
15268 (22,8,75,34,41,55,166,163),
15269 (22,8,76,34,41,56,169,166),
15270 (22,8,77,35,42,57,172,169),
15271 (22,8,78,35,42,57,175,173),
15272 (22,8,79,35,43,58,178,176),
15273 (22,8,80,36,43,59,181,179),
15274 (22,8,81,46,53,69,191,189),
15275 (22,8,82,56,63,79,201,199),
15276 (22,8,83,66,73,89,211,209),
15277 (22,8,84,76,83,99,221,219),
15278 (22,8,85,86,93,109,231,229),
15279 (22,9,1,20,20,21,22,22),
15280 (22,9,2,20,20,22,23,23),
15281 (22,9,3,21,21,22,24,24),
15282 (22,9,4,21,21,23,26,25),
15283 (22,9,5,21,21,23,27,27),
15284 (22,9,6,21,22,24,28,28),
15285 (22,9,7,22,22,24,29,29),
15286 (22,9,8,22,23,25,30,30),
15287 (22,9,9,22,23,26,32,31),
15288 (22,9,10,23,23,26,33,33),
15289 (22,9,11,23,24,27,34,34),
15290 (22,9,12,23,24,27,35,35),
15291 (22,9,13,24,25,28,37,36),
15292 (22,9,14,24,25,29,38,38),
15293 (22,9,15,24,25,29,39,39),
15294 (22,9,16,25,26,30,41,40),
15295 (22,9,17,25,26,31,42,42),
15296 (22,9,18,25,27,31,43,43),
15297 (22,9,19,26,27,32,45,44),
15298 (22,9,20,26,28,33,46,46),
15299 (22,9,21,26,28,33,48,47),
15300 (22,9,22,27,29,34,49,49),
15301 (22,9,23,27,29,35,51,50),
15302 (22,9,24,28,30,35,52,51),
15303 (22,9,25,28,30,36,53,53),
15304 (22,9,26,28,31,37,55,54),
15305 (22,9,27,29,31,37,56,56),
15306 (22,9,28,29,32,38,58,57),
15307 (22,9,29,30,32,39,59,59),
15308 (22,9,30,30,33,40,61,60),
15309 (22,9,31,30,33,40,62,62),
15310 (22,9,32,31,34,41,64,63),
15311 (22,9,33,31,34,42,66,65),
15312 (22,9,34,32,35,43,67,66),
15313 (22,9,35,32,35,44,69,68),
15314 (22,9,36,33,36,44,70,69),
15315 (22,9,37,33,36,45,72,71),
15316 (22,9,38,34,37,46,74,73),
15317 (22,9,39,34,38,47,75,74),
15318 (22,9,40,35,38,48,77,76),
15319 (22,9,41,35,39,48,79,78),
15320 (22,9,42,35,39,49,80,79),
15321 (22,9,43,36,40,50,82,81),
15322 (22,9,44,36,40,51,84,83),
15323 (22,9,45,37,41,52,85,84),
15324 (22,9,46,37,42,53,87,86),
15325 (22,9,47,38,42,54,89,88),
15326 (22,9,48,38,43,55,91,89),
15327 (22,9,49,39,44,55,93,91),
15328 (22,9,50,40,44,56,94,93),
15329 (22,9,51,40,45,57,96,95),
15330 (22,9,52,41,45,58,98,97),
15331 (22,9,53,41,46,59,100,98),
15332 (22,9,54,42,47,60,102,100),
15333 (22,9,55,42,47,61,103,102),
15334 (22,9,56,43,48,62,105,104),
15335 (22,9,57,43,49,63,107,106),
15336 (22,9,58,44,49,64,109,108),
15337 (22,9,59,44,50,65,111,109),
15338 (22,9,60,45,51,66,113,111),
15339 (22,9,61,46,51,67,115,113),
15340 (22,9,62,46,52,68,117,115),
15341 (22,9,63,47,53,69,119,117),
15342 (22,9,64,47,54,70,121,119),
15343 (22,9,65,48,54,71,123,121),
15344 (22,9,66,49,55,72,125,123),
15345 (22,9,67,49,56,73,127,125),
15346 (22,9,68,50,57,74,129,127),
15347 (22,9,69,50,57,75,131,129),
15348 (22,9,70,51,58,76,133,131),
15349 (22,9,71,52,59,78,135,146),
15350 (22,9,72,53,59,79,138,148),
15351 (22,9,73,54,60,80,140,151),
15352 (22,9,74,54,61,89,143,154),
15353 (22,9,75,55,62,91,145,156),
15354 (22,9,76,56,63,92,148,159),
15355 (22,9,77,57,64,93,151,162),
15356 (22,9,78,57,65,95,153,165),
15357 (22,9,79,58,66,96,156,168),
15358 (22,9,80,59,67,97,159,170),
15359 (22,9,81,69,77,107,169,180),
15360 (22,9,82,79,87,117,179,190),
15361 (22,9,83,89,97,127,189,200),
15362 (22,9,84,99,107,137,199,210),
15363 (22,9,85,109,117,147,209,220),
15364 (22,11,1,26,15,22,17,24),
15365 (22,11,2,27,16,23,18,25),
15366 (22,11,3,27,16,23,19,26),
15367 (22,11,4,28,17,24,20,27),
15368 (22,11,5,28,17,25,21,29),
15369 (22,11,6,29,18,25,22,30),
15370 (22,11,7,29,18,26,23,31),
15371 (22,11,8,30,19,27,24,32),
15372 (22,11,9,30,19,27,26,34),
15373 (22,11,10,31,20,28,27,35),
15374 (22,11,11,32,20,29,28,36),
15375 (22,11,12,32,21,29,29,37),
15376 (22,11,13,33,21,30,30,39),
15377 (22,11,14,33,22,31,31,40),
15378 (22,11,15,34,23,32,32,41),
15379 (22,11,16,35,23,32,34,43),
15380 (22,11,17,35,24,33,35,44),
15381 (22,11,18,36,24,34,36,45),
15382 (22,11,19,37,25,35,37,47),
15383 (22,11,20,37,26,35,39,48),
15384 (22,11,21,38,26,36,40,50),
15385 (22,11,22,39,27,37,41,51),
15386 (22,11,23,39,28,38,42,52),
15387 (22,11,24,40,28,39,44,54),
15388 (22,11,25,41,29,39,45,55),
15389 (22,11,26,41,30,40,46,57),
15390 (22,11,27,42,30,41,47,58),
15391 (22,11,28,43,31,42,49,60),
15392 (22,11,29,44,32,43,50,61),
15393 (22,11,30,44,32,44,52,63),
15394 (22,11,31,45,33,44,53,64),
15395 (22,11,32,46,34,45,54,66),
15396 (22,11,33,47,34,46,56,67),
15397 (22,11,34,47,35,47,57,69),
15398 (22,11,35,48,36,48,58,71),
15399 (22,11,36,49,36,49,60,72),
15400 (22,11,37,50,37,50,61,74),
15401 (22,11,38,51,38,51,63,76),
15402 (22,11,39,52,39,52,64,77),
15403 (22,11,40,52,39,53,66,79),
15404 (22,11,41,53,40,54,67,81),
15405 (22,11,42,54,41,55,69,82),
15406 (22,11,43,55,42,56,70,84),
15407 (22,11,44,56,43,57,72,86),
15408 (22,11,45,57,43,57,73,87),
15409 (22,11,46,57,44,58,75,89),
15410 (22,11,47,58,45,60,76,91),
15411 (22,11,48,59,46,61,78,93),
15412 (22,11,49,60,47,62,79,94),
15413 (22,11,50,61,47,63,81,96),
15414 (22,11,51,62,48,64,83,98),
15415 (22,11,52,63,49,65,84,100),
15416 (22,11,53,64,50,66,86,102),
15417 (22,11,54,65,51,67,87,104),
15418 (22,11,55,66,51,68,89,105),
15419 (22,11,56,67,52,69,91,107),
15420 (22,11,57,68,53,70,92,109),
15421 (22,11,58,69,54,71,94,111),
15422 (22,11,59,70,55,72,96,113),
15423 (22,11,60,71,56,73,97,115),
15424 (22,11,61,72,57,74,99,117),
15425 (22,11,62,73,58,76,101,119),
15426 (22,11,63,74,59,77,103,121),
15427 (22,11,64,75,59,78,104,123),
15428 (22,11,65,76,60,79,106,125),
15429 (22,11,66,77,61,80,108,127),
15430 (22,11,67,78,62,81,110,129),
15431 (22,11,68,79,63,83,111,131),
15432 (22,11,69,80,64,84,113,133),
15433 (22,11,70,81,65,85,115,135),
15434 (22,11,71,83,66,86,117,137),
15435 (22,11,72,84,68,88,120,140),
15436 (22,11,73,85,69,89,122,142),
15437 (22,11,74,86,70,91,124,145),
15438 (22,11,75,88,71,92,126,147),
15439 (22,11,76,89,72,94,128,150),
15440 (22,11,77,90,73,95,131,153),
15441 (22,11,78,92,75,97,133,155),
15442 (22,11,79,93,76,98,136,158),
15443 (22,11,80,94,77,100,138,185),
15444 (22,11,81,104,87,110,148,195),
15445 (22,11,82,114,97,120,158,205),
15446 (22,11,83,124,107,130,168,215),
15447 (22,11,84,134,117,140,178,225),
15448 (22,11,85,144,127,150,188,235);
15449 /*!40000 ALTER TABLE `player_levelstats` ENABLE KEYS */;
15450 UNLOCK TABLES;
15453 -- Table structure for table `player_xp_for_level`
15456 DROP TABLE IF EXISTS `player_xp_for_level`;
15457 /*!40101 SET @saved_cs_client     = @@character_set_client */;
15458 /*!40101 SET character_set_client = utf8 */;
15459 CREATE TABLE `player_xp_for_level` (
15460   `lvl` int(3) unsigned NOT NULL,
15461   `xp_for_next_level` int(10) unsigned NOT NULL,
15462   PRIMARY KEY (`lvl`)
15463 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
15464 /*!40101 SET character_set_client = @saved_cs_client */;
15467 -- Dumping data for table `player_xp_for_level`
15470 LOCK TABLES `player_xp_for_level` WRITE;
15471 /*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
15472 INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES
15473 (1,400),
15474 (2,900),
15475 (3,1400),
15476 (4,2100),
15477 (5,2800),
15478 (6,3600),
15479 (7,4500),
15480 (8,5400),
15481 (9,6500),
15482 (10,7600),
15483 (11,8700),
15484 (12,9800),
15485 (13,11000),
15486 (14,12300),
15487 (15,13600),
15488 (16,15000),
15489 (17,16400),
15490 (18,17800),
15491 (19,19300),
15492 (20,20800),
15493 (21,22400),
15494 (22,24000),
15495 (23,25500),
15496 (24,27200),
15497 (25,28900),
15498 (26,30500),
15499 (27,32200),
15500 (28,33900),
15501 (29,36300),
15502 (30,38800),
15503 (31,41600),
15504 (32,44600),
15505 (33,48000),
15506 (34,51400),
15507 (35,55000),
15508 (36,58700),
15509 (37,62400),
15510 (38,66200),
15511 (39,70200),
15512 (40,74300),
15513 (41,78500),
15514 (42,82800),
15515 (43,87100),
15516 (44,91600),
15517 (45,96300),
15518 (46,101000),
15519 (47,105800),
15520 (48,110700),
15521 (49,115700),
15522 (50,120900),
15523 (51,126100),
15524 (52,131500),
15525 (53,137000),
15526 (54,142500),
15527 (55,148200),
15528 (56,154000),
15529 (57,159900),
15530 (58,165800),
15531 (59,172000),
15532 (60,290000),
15533 (61,317000),
15534 (62,349000),
15535 (63,386000),
15536 (64,428000),
15537 (65,475000),
15538 (66,527000),
15539 (67,585000),
15540 (68,648000),
15541 (69,717000),
15542 (70,1219040),
15543 (71,1231680),
15544 (72,1244560),
15545 (73,1257440),
15546 (74,1270320),
15547 (75,1283360),
15548 (76,1296560),
15549 (77,1309920),
15550 (78,1323120),
15551 (79,1336640),
15552 (80,1686300),
15553 (81,2121500),
15554 (82,4004000),
15555 (83,5203400),
15556 (84,9165100);
15557 /*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
15558 UNLOCK TABLES;
15561 -- Table structure for table `playercreateinfo`
15564 DROP TABLE IF EXISTS `playercreateinfo`;
15565 /*!40101 SET @saved_cs_client     = @@character_set_client */;
15566 /*!40101 SET character_set_client = utf8 */;
15567 CREATE TABLE `playercreateinfo` (
15568   `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
15569   `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
15570   `map` smallint(5) unsigned NOT NULL DEFAULT '0',
15571   `zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
15572   `position_x` float NOT NULL DEFAULT '0',
15573   `position_y` float NOT NULL DEFAULT '0',
15574   `position_z` float NOT NULL DEFAULT '0',
15575   `orientation` float NOT NULL DEFAULT '0',
15576   `phaseMap` smallint(5) unsigned NOT NULL DEFAULT '0',
15577   PRIMARY KEY (`race`,`class`)
15578 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
15579 /*!40101 SET character_set_client = @saved_cs_client */;
15582 -- Dumping data for table `playercreateinfo`
15585 LOCK TABLES `playercreateinfo` WRITE;
15586 /*!40000 ALTER TABLE `playercreateinfo` DISABLE KEYS */;
15587 INSERT INTO `playercreateinfo` (`race`, `class`, `map`, `zone`, `position_x`, `position_y`, `position_z`, `orientation`, `phaseMap`) VALUES
15588 (1,9,0,9,-8914.57,-133.909,80.5378,0,0),
15589 (1,8,0,9,-8914.57,-133.909,80.5378,0,0),
15590 (1,5,0,9,-8914.57,-133.909,80.5378,0,0),
15591 (1,4,0,9,-8914.57,-133.909,80.5378,0,0),
15592 (1,2,0,9,-8914.57,-133.909,80.5378,0,0),
15593 (1,1,0,9,-8914.57,-133.909,80.5378,0,0),
15594 (1,3,0,9,-8914.57,-133.909,80.5378,0,0),
15595 (1,6,609,0,2355.84,-5664.77,426.028,0,0),
15596 (2,1,1,14,-618.518,-4251.67,38.718,0,0),
15597 (2,3,1,14,-618.518,-4251.67,38.718,0,0),
15598 (2,4,1,14,-618.518,-4251.67,38.718,0,0),
15599 (2,7,1,14,-618.518,-4251.67,38.718,0,0),
15600 (2,9,1,14,-618.518,-4251.67,38.718,0,0),
15601 (2,6,609,0,2358.44,-5666.9,426.023,0,0),
15602 (2,8,1,14,-618.518,-4251.67,38.718,0,0),
15603 (3,1,0,1,-6240.32,331.033,382.758,6.17716,0),
15604 (3,2,0,1,-6240.32,331.033,382.758,6.17716,0),
15605 (3,3,0,1,-6240.32,331.033,382.758,6.17716,0),
15606 (3,4,0,1,-6240.32,331.033,382.758,6.17716,0),
15607 (3,5,0,1,-6240.32,331.033,382.758,6.17716,0),
15608 (3,6,609,0,2358.44,-5666.9,426.023,0,0),
15609 (3,7,0,1,-6240.32,331.033,382.758,6.17716,0),
15610 (3,8,0,1,-6240.32,331.033,382.758,6.17716,0),
15611 (3,9,0,1,-6240.32,331.033,382.758,6.17716,0),
15612 (4,1,1,141,10311.3,832.463,1326.41,5.69632,0),
15613 (4,3,1,141,10311.3,832.463,1326.41,5.69632,0),
15614 (4,4,1,141,10311.3,832.463,1326.41,5.69632,0),
15615 (4,5,1,141,10311.3,832.463,1326.41,5.69632,0),
15616 (4,11,1,141,10311.3,832.463,1326.41,5.69632,0),
15617 (4,8,1,141,10311.3,832.463,1326.41,5.69632,0),
15618 (4,6,609,0,2356.21,-5662.21,426.026,0,0),
15619 (5,9,0,5692,1699.85,1706.56,135.928,0,0),
15620 (5,8,0,5692,1699.85,1706.56,135.928,0,0),
15621 (5,5,0,5692,1699.85,1706.56,135.928,0,0),
15622 (5,3,0,5692,1699.85,1706.56,135.928,0,0),
15623 (5,1,0,5692,1699.85,1706.56,135.928,0,0),
15624 (5,4,0,5692,1699.85,1706.56,135.928,0,0),
15625 (5,6,609,0,2356.21,-5662.21,426.026,0,0),
15626 (6,7,1,221,-2915.55,-257.347,59.2693,0,0),
15627 (6,5,1,221,-2915.55,-257.347,59.2693,0,0),
15628 (6,2,1,221,-2915.55,-257.347,59.2693,0,0),
15629 (6,1,1,221,-2915.55,-257.347,59.2693,0,0),
15630 (6,3,1,221,-2915.55,-257.347,59.2693,0,0),
15631 (6,11,1,221,-2915.55,-257.347,59.2693,0,0),
15632 (6,6,609,0,2358.17,-5663.21,426.027,0,0),
15633 (7,9,0,5495,-4983.42,877.7,274.31,0,0),
15634 (7,1,0,5495,-4983.42,877.7,274.31,0,0),
15635 (7,4,0,5495,-4983.42,877.7,274.31,0,0),
15636 (7,8,0,5495,-4983.42,877.7,274.31,0,0),
15637 (7,5,0,5495,-4983.42,877.7,274.31,0,0),
15638 (7,6,609,0,2355.05,-5661.7,426.026,0,0),
15639 (8,9,1,5691,-1171.45,-5263.65,0.847728,0,0),
15640 (8,8,1,5691,-1171.45,-5263.65,0.847728,0,0),
15641 (8,7,1,5691,-1171.45,-5263.65,0.847728,0,0),
15642 (8,5,1,5691,-1171.45,-5263.65,0.847728,0,0),
15643 (8,3,1,5691,-1171.45,-5263.65,0.847728,0,0),
15644 (8,1,1,5691,-1171.45,-5263.65,0.847728,0,0),
15645 (8,4,1,5691,-1171.45,-5263.65,0.847728,0,0),
15646 (8,11,1,5691,-1171.45,-5263.65,0.847728,0,0),
15647 (8,6,609,0,2355.05,-5661.7,426.026,0,0),
15648 (9,6,609,0,2355.05,-5661.7,426.026,0,0),
15649 (9,1,648,4765,-8423.81,1361.3,104.671,0,0),
15650 (9,3,648,4765,-8423.81,1361.3,104.671,0,0),
15651 (9,4,648,4765,-8423.81,1361.3,104.671,0,0),
15652 (9,5,648,4765,-8423.81,1361.3,104.671,0,0),
15653 (9,7,648,4765,-8423.81,1361.3,104.671,0,0),
15654 (9,8,648,4765,-8423.81,1361.3,104.671,0,0),
15655 (9,9,648,4765,-8423.81,1361.3,104.671,0,0),
15656 (10,2,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15657 (10,3,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15658 (10,4,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15659 (10,5,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15660 (10,8,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15661 (10,9,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15662 (10,6,609,0,2355.84,-5664.77,426.028,0,0),
15663 (10,1,530,3431,10349.6,-6357.29,33.4026,5.31605,0),
15664 (11,1,530,3526,-3961.64,-13931.2,100.615,2.08364,0),
15665 (11,2,530,3526,-3961.64,-13931.2,100.615,2.08364,0),
15666 (11,3,530,3526,-3961.64,-13931.2,100.615,2.08364,0),
15667 (11,5,530,3526,-3961.64,-13931.2,100.615,2.08364,0),
15668 (11,7,530,3526,-3961.64,-13931.2,100.615,2.08364,0),
15669 (11,8,530,3526,-3961.64,-13931.2,100.615,2.08364,0),
15670 (11,6,609,0,2358.17,-5663.21,426.027,0,0),
15671 (22,1,654,4756,-1451.53,1403.35,35.5561,0,638),
15672 (22,3,654,4756,-1451.53,1403.35,35.5561,0,638),
15673 (22,4,654,4756,-1451.53,1403.35,35.5561,0,638),
15674 (22,5,654,4756,-1451.53,1403.35,35.5561,0,638),
15675 (22,8,654,4756,-1451.53,1403.35,35.5561,0,638),
15676 (22,9,654,4756,-1451.53,1403.35,35.5561,0,638),
15677 (22,11,654,4756,-1451.53,1403.35,35.5561,0,638),
15678 (22,6,609,0,2356.21,-5662.21,426.026,0,0);
15679 /*!40000 ALTER TABLE `playercreateinfo` ENABLE KEYS */;
15680 UNLOCK TABLES;
15683 -- Table structure for table `playercreateinfo_action`
15686 DROP TABLE IF EXISTS `playercreateinfo_action`;
15687 /*!40101 SET @saved_cs_client     = @@character_set_client */;
15688 /*!40101 SET character_set_client = utf8 */;
15689 CREATE TABLE `playercreateinfo_action` (
15690   `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
15691   `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
15692   `button` smallint(5) unsigned NOT NULL DEFAULT '0',
15693   `action` int(11) unsigned NOT NULL DEFAULT '0',
15694   `type` smallint(5) unsigned NOT NULL DEFAULT '0',
15695   PRIMARY KEY (`race`,`class`,`button`),
15696   KEY `playercreateinfo_race_class_index` (`race`,`class`)
15697 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
15698 /*!40101 SET character_set_client = @saved_cs_client */;
15701 -- Dumping data for table `playercreateinfo_action`
15704 LOCK TABLES `playercreateinfo_action` WRITE;
15705 /*!40000 ALTER TABLE `playercreateinfo_action` DISABLE KEYS */;
15706 INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
15707 (1,1,72,88163,0),
15708 (1,1,73,88161,0),
15709 (1,1,81,59752,0),
15710 (1,1,84,6603,0),
15711 (1,1,96,6603,0),
15712 (1,1,108,6603,0),
15713 (1,2,0,35395,0),
15714 (1,2,9,59752,0),
15715 (1,3,0,3044,0),
15716 (1,3,9,59752,0),
15717 (1,3,10,9,48),
15718 (1,3,11,982,0),
15719 (1,4,0,1752,0),
15720 (1,4,9,59752,0),
15721 (1,5,0,585,0),
15722 (1,5,9,59752,0),
15723 (1,8,0,133,0),
15724 (1,8,9,59752,0),
15725 (1,9,0,686,0),
15726 (1,9,9,59752,0),
15727 (1,9,10,10,48),
15728 (1,6,0,6603,0),
15729 (1,6,1,49576,0),
15730 (1,6,2,45477,0),
15731 (1,6,3,45462,0),
15732 (1,6,4,45902,0),
15733 (1,6,5,47541,0),
15734 (1,6,11,59752,0),
15735 (2,1,72,88163,0),
15736 (2,1,73,88161,0),
15737 (2,1,81,20572,0),
15738 (2,1,84,6603,0),
15739 (2,1,96,6603,0),
15740 (2,1,108,6603,0),
15741 (2,3,0,3044,0),
15742 (2,3,9,20572,0),
15743 (2,3,10,9,48),
15744 (2,3,11,982,0),
15745 (2,4,0,1752,0),
15746 (2,4,9,20572,0),
15747 (2,7,0,403,0),
15748 (2,7,9,20572,0),
15749 (2,7,72,403,0),
15750 (2,8,0,133,0),
15751 (2,8,9,33702,0),
15752 (2,9,0,686,0),
15753 (2,9,9,33702,0),
15754 (2,9,10,10,48),
15755 (2,6,0,6603,0),
15756 (2,6,1,49576,0),
15757 (2,6,2,45477,0),
15758 (2,6,3,45462,0),
15759 (2,6,4,45902,0),
15760 (2,6,5,47541,0),
15761 (2,6,10,20572,0),
15762 (3,1,72,88163,0),
15763 (3,1,73,88161,0),
15764 (3,1,81,20594,0),
15765 (3,1,84,6603,0),
15766 (3,1,96,6603,0),
15767 (3,1,108,6603,0),
15768 (3,2,0,35395,0),
15769 (3,2,9,20594,0),
15770 (3,3,0,3044,0),
15771 (3,3,9,20594,0),
15772 (3,3,10,9,48),
15773 (3,3,11,982,0),
15774 (3,3,75,20594,0),
15775 (3,4,0,1752,0),
15776 (3,4,9,20594,0),
15777 (3,5,0,585,0),
15778 (3,5,9,20594,0),
15779 (3,7,0,6603,0),
15780 (3,7,1,403,0),
15781 (3,7,9,20594,0),
15782 (3,7,72,403,0),
15783 (3,8,0,133,0),
15784 (3,8,9,20594,0),
15785 (3,9,0,686,0),
15786 (3,9,9,20594,0),
15787 (3,9,10,10,48),
15788 (3,6,0,6603,0),
15789 (3,6,1,49576,0),
15790 (3,6,2,45477,0),
15791 (3,6,3,45462,0),
15792 (3,6,4,45902,0),
15793 (3,6,5,47541,0),
15794 (4,1,72,88163,0),
15795 (4,1,73,88161,0),
15796 (4,1,81,58984,0),
15797 (4,1,84,6603,0),
15798 (4,1,96,6603,0),
15799 (4,1,108,6603,0),
15800 (4,3,0,3044,0),
15801 (4,3,9,58984,0),
15802 (4,3,10,9,48),
15803 (4,3,11,982,0),
15804 (4,3,81,58984,0),
15805 (4,4,0,1752,0),
15806 (4,4,9,58984,0),
15807 (4,4,81,58984,0),
15808 (4,5,0,585,0),
15809 (4,5,9,58984,0),
15810 (4,5,81,58984,0),
15811 (4,8,0,133,0),
15812 (4,8,9,58984,0),
15813 (4,11,0,5176,0),
15814 (4,11,9,58984,0),
15815 (4,11,72,6603,0),
15816 (4,11,74,58984,0),
15817 (4,11,84,6603,0),
15818 (4,11,96,6603,0),
15819 (4,11,108,6603,0),
15820 (4,6,0,6603,0),
15821 (4,6,1,49576,0),
15822 (4,6,2,45477,0),
15823 (4,6,3,45462,0),
15824 (4,6,4,45902,0),
15825 (4,6,5,47541,0),
15826 (4,6,10,58984,0),
15827 (4,6,83,58984,0),
15828 (5,1,72,88163,0),
15829 (5,1,73,88161,0),
15830 (5,1,81,20577,0),
15831 (5,1,84,6603,0),
15832 (5,1,96,6603,0),
15833 (5,1,108,6603,0),
15834 (5,3,0,3044,0),
15835 (5,3,9,20577,0),
15836 (5,3,10,9,48),
15837 (5,3,11,982,0),
15838 (5,4,0,1752,0),
15839 (5,4,9,20577,0),
15840 (5,5,0,585,0),
15841 (5,5,9,20577,0),
15842 (5,8,0,133,0),
15843 (5,8,9,20577,0),
15844 (5,9,0,686,0),
15845 (5,9,9,20577,0),
15846 (5,9,10,10,48),
15847 (5,6,0,6603,0),
15848 (5,6,1,49576,0),
15849 (5,6,2,45477,0),
15850 (5,6,3,45462,0),
15851 (5,6,4,45902,0),
15852 (5,6,5,47541,0),
15853 (5,6,10,20577,0),
15854 (6,1,72,88163,0),
15855 (6,1,73,88161,0),
15856 (6,1,81,20549,0),
15857 (6,1,84,6603,0),
15858 (6,1,96,6603,0),
15859 (6,1,108,6603,0),
15860 (6,2,0,35395,0),
15861 (6,2,9,20549,0),
15862 (6,3,0,3044,0),
15863 (6,3,9,20549,0),
15864 (6,3,10,9,48),
15865 (6,3,11,982,0),
15866 (6,3,75,20549,0),
15867 (6,5,0,585,0),
15868 (6,5,9,20549,0),
15869 (6,7,0,403,0),
15870 (6,7,9,20549,0),
15871 (6,7,75,20549,0),
15872 (6,11,0,403,0),
15873 (6,11,9,20549,0),
15874 (6,11,72,6603,0),
15875 (6,11,75,20549,0),
15876 (6,11,84,6603,0),
15877 (6,11,96,6603,0),
15878 (6,11,108,6603,0),
15879 (6,6,0,6603,0),
15880 (6,6,1,49576,0),
15881 (6,6,2,45477,0),
15882 (6,6,3,45462,0),
15883 (6,6,4,45902,0),
15884 (6,6,5,47541,0),
15885 (6,6,10,20549,0),
15886 (6,6,75,20549,0),
15887 (7,1,72,88163,0),
15888 (7,1,73,88161,0),
15889 (7,1,84,6603,0),
15890 (7,1,96,6603,0),
15891 (7,1,108,6603,0),
15892 (7,4,0,1752,0),
15893 (7,5,0,585,0),
15894 (7,8,0,133,0),
15895 (7,9,0,686,0),
15896 (7,9,10,10,48),
15897 (7,6,0,6603,0),
15898 (7,6,1,49576,0),
15899 (7,6,2,45477,0),
15900 (7,6,3,45462,0),
15901 (7,6,4,45902,0),
15902 (7,6,5,47541,0),
15903 (7,6,10,20589,0),
15904 (7,6,72,6603,0),
15905 (7,6,83,117,128),
15906 (7,6,84,6603,0),
15907 (7,6,96,6603,0),
15908 (7,6,108,6603,0),
15909 (8,1,72,88163,0),
15910 (8,1,73,88161,0),
15911 (8,1,81,26297,0),
15912 (8,1,84,6603,0),
15913 (8,1,96,6603,0),
15914 (8,1,108,6603,0),
15915 (8,3,0,3044,0),
15916 (8,3,9,26297,0),
15917 (8,3,10,9,48),
15918 (8,3,11,982,0),
15919 (8,4,0,1752,0),
15920 (8,4,9,26297,0),
15921 (8,4,76,26297,0),
15922 (8,5,0,585,0),
15923 (8,5,9,26297,0),
15924 (8,7,0,403,0),
15925 (8,7,9,26297,0),
15926 (8,7,72,403,0),
15927 (8,8,0,133,0),
15928 (8,8,9,26297,0),
15929 (8,9,0,686,0),
15930 (8,9,9,26297,0),
15931 (8,9,10,10,48),
15932 (8,11,0,5176,0),
15933 (8,11,9,26297,0),
15934 (8,11,72,6603,0),
15935 (8,11,84,6603,0),
15936 (8,11,96,6603,0),
15937 (8,6,0,6603,0),
15938 (8,6,1,49576,0),
15939 (8,6,2,45477,0),
15940 (8,6,3,45462,0),
15941 (8,6,4,45902,0),
15942 (8,6,5,47541,0),
15943 (8,6,10,26297,0),
15944 (9,1,72,88163,0),
15945 (9,1,73,88161,0),
15946 (9,1,81,69070,0),
15947 (9,1,82,69041,0),
15948 (9,3,0,3044,0),
15949 (9,3,8,982,0),
15950 (9,3,9,69070,0),
15951 (9,3,10,69041,0),
15952 (9,3,11,9,48),
15953 (9,4,0,1752,0),
15954 (9,4,9,69070,0),
15955 (9,4,10,69041,0),
15956 (9,5,0,585,0),
15957 (9,5,9,69070,0),
15958 (9,5,10,69041,0),
15959 (9,7,0,403,0),
15960 (9,7,9,69070,0),
15961 (9,7,10,69041,0),
15962 (9,7,72,403,0),
15963 (9,8,0,133,0),
15964 (9,8,9,69070,0),
15965 (9,8,10,69041,0),
15966 (9,9,0,686,0),
15967 (9,9,9,69070,0),
15968 (9,9,10,69041,0),
15969 (9,9,11,10,48),
15970 (9,6,0,6603,0),
15971 (9,6,1,49576,0),
15972 (9,6,2,45477,0),
15973 (9,6,3,45462,0),
15974 (9,6,4,45902,0),
15975 (9,6,5,47541,0),
15976 (9,6,9,69070,0),
15977 (9,6,10,69041,0),
15978 (9,6,11,69046,0),
15979 (10,1,72,88163,0),
15980 (10,1,73,88161,0),
15981 (10,1,81,69179,0),
15982 (10,2,0,35395,0),
15983 (10,2,9,28730,0),
15984 (10,3,0,3044,0),
15985 (10,3,9,80483,0),
15986 (10,3,10,9,48),
15987 (10,3,11,982,0),
15988 (10,4,0,1752,0),
15989 (10,4,9,25046,0),
15990 (10,5,0,585,0),
15991 (10,5,9,28730,0),
15992 (10,8,0,133,0),
15993 (10,8,9,28730,0),
15994 (10,9,0,686,0),
15995 (10,9,9,28730,0),
15996 (10,9,10,10,48),
15997 (10,6,0,6603,0),
15998 (10,6,1,49576,0),
15999 (10,6,2,45477,0),
16000 (10,6,3,45462,0),
16001 (10,6,4,45902,0),
16002 (10,6,5,47541,0),
16003 (10,6,6,50613,0),
16004 (11,1,72,88163,0),
16005 (11,1,73,88161,0),
16006 (11,1,81,28880,0),
16007 (11,1,84,6603,0),
16008 (11,1,96,6603,0),
16009 (11,1,108,6603,0),
16010 (11,2,0,35395,0),
16011 (11,2,9,59542,0),
16012 (11,2,83,4540,128),
16013 (11,3,0,3044,0),
16014 (11,3,9,59543,0),
16015 (11,3,10,9,48),
16016 (11,3,11,982,0),
16017 (11,3,72,6603,0),
16018 (11,3,74,75,0),
16019 (11,3,82,159,128),
16020 (11,3,83,4540,128),
16021 (11,5,0,585,0),
16022 (11,5,9,59544,0),
16023 (11,5,83,4540,128),
16024 (11,7,0,403,0),
16025 (11,7,9,59547,0),
16026 (11,8,0,133,0),
16027 (11,8,9,59548,0),
16028 (11,8,83,4540,128),
16029 (11,6,0,6603,0),
16030 (11,6,1,49576,0),
16031 (11,6,2,45477,0),
16032 (11,6,3,45462,0),
16033 (11,6,4,45902,0),
16034 (11,6,5,47541,0),
16035 (11,6,10,59545,0),
16036 (22,1,72,88163,0),
16037 (22,1,73,88161,0),
16038 (22,3,0,3044,0),
16039 (22,3,10,9,48),
16040 (22,3,11,982,0),
16041 (22,4,0,1752,0),
16042 (22,5,0,585,0),
16043 (22,8,0,133,0),
16044 (22,9,0,686,0),
16045 (22,9,10,10,48),
16046 (22,11,0,5176,0),
16047 (22,11,72,6603,0),
16048 (22,11,84,6603,0),
16049 (22,11,96,6603,0),
16050 (22,6,0,6603,0),
16051 (22,6,1,49576,0),
16052 (22,6,2,45477,0),
16053 (22,6,3,45462,0),
16054 (22,6,4,45902,0),
16055 (22,6,5,47541,0),
16056 (22,6,9,68992,0),
16057 (22,6,10,68996,0),
16058 (22,6,11,87840,0);
16059 /*!40000 ALTER TABLE `playercreateinfo_action` ENABLE KEYS */;
16060 UNLOCK TABLES;
16063 -- Table structure for table `playercreateinfo_item`
16066 DROP TABLE IF EXISTS `playercreateinfo_item`;
16067 /*!40101 SET @saved_cs_client     = @@character_set_client */;
16068 /*!40101 SET character_set_client = utf8 */;
16069 CREATE TABLE `playercreateinfo_item` (
16070   `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
16071   `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
16072   `itemid` mediumint(8) unsigned NOT NULL DEFAULT '0',
16073   `amount` tinyint(3) unsigned NOT NULL DEFAULT '1',
16074   KEY `playercreateinfo_race_class_index` (`race`,`class`)
16075 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
16076 /*!40101 SET character_set_client = @saved_cs_client */;
16079 -- Dumping data for table `playercreateinfo_item`
16082 LOCK TABLES `playercreateinfo_item` WRITE;
16083 /*!40000 ALTER TABLE `playercreateinfo_item` DISABLE KEYS */;
16084 /*!40000 ALTER TABLE `playercreateinfo_item` ENABLE KEYS */;
16085 UNLOCK TABLES;
16088 -- Table structure for table `playercreateinfo_spell`
16091 DROP TABLE IF EXISTS `playercreateinfo_spell`;
16092 /*!40101 SET @saved_cs_client     = @@character_set_client */;
16093 /*!40101 SET character_set_client = utf8 */;
16094 CREATE TABLE `playercreateinfo_spell` (
16095   `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
16096   `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
16097   `Spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
16098   `Note` varchar(255) DEFAULT NULL,
16099   PRIMARY KEY (`race`,`class`,`Spell`)
16100 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
16101 /*!40101 SET character_set_client = @saved_cs_client */;
16104 -- Dumping data for table `playercreateinfo_spell`
16107 LOCK TABLES `playercreateinfo_spell` WRITE;
16108 /*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
16109 INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
16110 (1,1,202,'Two-Handed Swords'),
16111 (1,1,196,'One-Handed Axes'),
16112 (1,1,2457,'Battle Stance'),
16113 (1,1,88161,'Strike'),
16114 (1,1,5011,'Crossbows'),
16115 (1,1,3018,'Shoot'),
16116 (1,1,197,'Two-Handed Axes'),
16117 (1,1,1180,'Daggers'),
16118 (1,1,45927,'Summon Friend'),
16119 (1,1,6478,'Opening'),
16120 (1,1,6603,'Auto Attack'),
16121 (1,1,22027,'Remove Insignia'),
16122 (1,1,22810,'Opening - No Text'),
16123 (1,1,21651,'Opening'),
16124 (1,1,21652,'Closing'),
16125 (1,1,2382,'Generic'),
16126 (1,1,3365,'Opening'),
16127 (1,1,3050,'Detect'),
16128 (1,1,9125,'Generic'),
16129 (1,1,8386,'Attacking'),
16130 (1,1,7266,'Duel'),
16131 (1,1,7267,'Grovel'),
16132 (1,1,7355,'Stuck'),
16133 (1,1,6233,'Closing'),
16134 (1,1,6246,'Closing'),
16135 (1,1,6247,'Opening'),
16136 (1,1,6477,'Opening'),
16137 (1,1,61437,'Opening'),
16138 (1,1,68398,'Opening'),
16139 (1,1,96220,'Opening'),
16140 (1,1,203,'Unarmed'),
16141 (1,1,20864,'Mace Specialization'),
16142 (1,1,20599,'Diplomacy'),
16143 (1,1,20597,'Sword Specialization'),
16144 (1,1,20598,'The Human Spirit'),
16145 (1,1,59752,'Every Man for Himself'),
16146 (1,1,79738,'Languages'),
16147 (1,1,49410,'Forceful Deflection'),
16148 (1,1,199,'Two-Handed Maces'),
16149 (1,1,15590,'Fist Weapons'),
16150 (1,1,76268,'Armor Skills'),
16151 (1,1,76290,'Weapon Skills'),
16152 (1,1,88163,'Attack'),
16153 (1,1,200,'Polearms'),
16154 (1,1,668,'Language Common'),
16155 (1,1,227,'Staves'),
16156 (1,1,9116,'Shield'),
16157 (1,1,8737,'Mail'),
16158 (1,1,9077,'Leather'),
16159 (1,1,264,'Bows'),
16160 (1,1,266,'Guns'),
16161 (1,1,107,'Block'),
16162 (1,1,81,'Dodge'),
16163 (1,1,32215,'Victorious State'),
16164 (1,1,5301,'Defensive State (DND)'),
16165 (1,1,204,'Defense'),
16166 (1,1,522,'SPELLDEFENSE (DND)'),
16167 (1,1,2764,'Throw'),
16168 (1,1,2567,'Thrown'),
16169 (1,1,9078,'Cloth'),
16170 (1,1,198,'One-Handed Maces'),
16171 (1,1,201,'One-Handed Swords'),
16172 (1,2,202,'Two-Handed Swords'),
16173 (1,2,196,'One-Handed Axes'),
16174 (1,2,197,'Two-Handed Axes'),
16175 (1,2,45927,'Summon Friend'),
16176 (1,2,6478,'Opening'),
16177 (1,2,6603,'Auto Attack'),
16178 (1,2,22027,'Remove Insignia'),
16179 (1,2,22810,'Opening - No Text'),
16180 (1,2,21651,'Opening'),
16181 (1,2,21652,'Closing'),
16182 (1,2,2382,'Generic'),
16183 (1,2,3365,'Opening'),
16184 (1,2,3050,'Detect'),
16185 (1,2,9125,'Generic'),
16186 (1,2,8386,'Attacking'),
16187 (1,2,7266,'Duel'),
16188 (1,2,7267,'Grovel'),
16189 (1,2,7355,'Stuck'),
16190 (1,2,6233,'Closing'),
16191 (1,2,6246,'Closing'),
16192 (1,2,6247,'Opening'),
16193 (1,2,6477,'Opening'),
16194 (1,2,27762,'Relic'),
16195 (1,2,61437,'Opening'),
16196 (1,2,68398,'Opening'),
16197 (1,2,96220,'Opening'),
16198 (1,2,49410,'Forceful Deflection'),
16199 (1,2,203,'Unarmed'),
16200 (1,2,20864,'Mace Specialization'),
16201 (1,2,20599,'Diplomacy'),
16202 (1,2,20597,'Sword Specialization'),
16203 (1,2,20598,'The Human Spirit'),
16204 (1,2,59752,'Every Man for Himself'),
16205 (1,2,79738,'Languages'),
16206 (1,2,199,'Two-Handed Maces'),
16207 (1,2,76271,'Armor Skills'),
16208 (1,2,76294,'Weapon Skills'),
16209 (1,2,200,'Polearms'),
16210 (1,2,668,'Language Common'),
16211 (1,2,35395,'Crusader Strike'),
16212 (1,2,60091,'Judgement Anti-Parry/Dodge Passive'),
16213 (1,2,9116,'Shield'),
16214 (1,2,8737,'Mail'),
16215 (1,2,9077,'Leather'),
16216 (1,2,107,'Block'),
16217 (1,2,81,'Dodge'),
16218 (1,2,204,'Defense'),
16219 (1,2,522,'SPELLDEFENSE (DND)'),
16220 (1,2,9078,'Cloth'),
16221 (1,2,20208,'Paladin pushback resistance'),
16222 (1,2,198,'One-Handed Maces'),
16223 (1,2,201,'One-Handed Swords'),
16224 (1,3,202,'Two-Handed Swords'),
16225 (1,3,196,'One-Handed Axes'),
16226 (1,3,3044,'Arcane Shot'),
16227 (1,3,75,'Auto Shot'),
16228 (1,3,82928,'Aimed Shot!'),
16229 (1,3,5011,'Crossbows'),
16230 (1,3,197,'Two-Handed Axes'),
16231 (1,3,1180,'Daggers'),
16232 (1,3,45927,'Summon Friend'),
16233 (1,3,6478,'Opening'),
16234 (1,3,6603,'Auto Attack'),
16235 (1,3,22027,'Remove Insignia'),
16236 (1,3,22810,'Opening - No Text'),
16237 (1,3,21651,'Opening'),
16238 (1,3,21652,'Closing'),
16239 (1,3,34082,'Hunter Passive Auras (DND)'),
16240 (1,3,2382,'Generic'),
16241 (1,3,3365,'Opening'),
16242 (1,3,3050,'Detect'),
16243 (1,3,9125,'Generic'),
16244 (1,3,8386,'Attacking'),
16245 (1,3,7266,'Duel'),
16246 (1,3,7267,'Grovel'),
16247 (1,3,7355,'Stuck'),
16248 (1,3,6233,'Closing'),
16249 (1,3,6246,'Closing'),
16250 (1,3,6247,'Opening'),
16251 (1,3,6477,'Opening'),
16252 (1,3,61437,'Opening'),
16253 (1,3,68398,'Opening'),
16254 (1,3,96220,'Opening'),
16255 (1,3,203,'Unarmed'),
16256 (1,3,883,'Call Pet 1'),
16257 (1,3,982,'Revive Pet'),
16258 (1,3,20864,'Mace Specialization'),
16259 (1,3,20599,'Diplomacy'),
16260 (1,3,20597,'Sword Specialization'),
16261 (1,3,20598,'The Human Spirit'),
16262 (1,3,59752,'Every Man for Himself'),
16263 (1,3,79738,'Languages'),
16264 (1,3,15590,'Fist Weapons'),
16265 (1,3,200,'Polearms'),
16266 (1,3,668,'Language Common'),
16267 (1,3,227,'Staves'),
16268 (1,3,9077,'Leather'),
16269 (1,3,264,'Bows'),
16270 (1,3,266,'Guns'),
16271 (1,3,13358,'Defensive State (DND)'),
16272 (1,3,81,'Dodge'),
16273 (1,3,204,'Defense'),
16274 (1,3,522,'SPELLDEFENSE (DND)'),
16275 (1,3,24949,'Defensive State 2 (DND)'),
16276 (1,3,9078,'Cloth'),
16277 (1,3,77442,'Focus'),
16278 (1,3,76249,'Weapon Skills'),
16279 (1,3,76250,'Armor Skills'),
16280 (1,3,87324,'Focused Aim'),
16281 (1,3,87816,'General Hunter Passives'),
16282 (1,3,201,'One-Handed Swords'),
16283 (1,4,196,'One-Handed Axes'),
16284 (1,4,1752,'Sinister Strike'),
16285 (1,4,5011,'Crossbows'),
16286 (1,4,3018,'Shoot'),
16287 (1,4,674,'Dual Wield'),
16288 (1,4,1180,'Daggers'),
16289 (1,4,45927,'Summon Friend'),
16290 (1,4,6478,'Opening'),
16291 (1,4,6603,'Auto Attack'),
16292 (1,4,22027,'Remove Insignia'),
16293 (1,4,22810,'Opening - No Text'),
16294 (1,4,21651,'Opening'),
16295 (1,4,21652,'Closing'),
16296 (1,4,2382,'Generic'),
16297 (1,4,3365,'Opening'),
16298 (1,4,3050,'Detect'),
16299 (1,4,9125,'Generic'),
16300 (1,4,8386,'Attacking'),
16301 (1,4,7266,'Duel'),
16302 (1,4,7267,'Grovel'),
16303 (1,4,7355,'Stuck'),
16304 (1,4,6233,'Closing'),
16305 (1,4,6246,'Closing'),
16306 (1,4,6247,'Opening'),
16307 (1,4,6477,'Opening'),
16308 (1,4,61437,'Opening'),
16309 (1,4,68398,'Opening'),
16310 (1,4,96220,'Opening'),
16311 (1,4,203,'Unarmed'),
16312 (1,4,20864,'Mace Specialization'),
16313 (1,4,20599,'Diplomacy'),
16314 (1,4,20597,'Sword Specialization'),
16315 (1,4,20598,'The Human Spirit'),
16316 (1,4,59752,'Every Man for Himself'),
16317 (1,4,79738,'Languages'),
16318 (1,4,15590,'Fist Weapons'),
16319 (1,4,76273,'Armor Skills'),
16320 (1,4,76297,'Weapon Skills'),
16321 (1,4,668,'Language Common'),
16322 (1,4,9077,'Leather'),
16323 (1,4,264,'Bows'),
16324 (1,4,266,'Guns'),
16325 (1,4,81,'Dodge'),
16326 (1,4,204,'Defense'),
16327 (1,4,522,'SPELLDEFENSE (DND)'),
16328 (1,4,16092,'Defensive State (DND)'),
16329 (1,4,2764,'Throw'),
16330 (1,4,2567,'Thrown'),
16331 (1,4,9078,'Cloth'),
16332 (1,4,198,'One-Handed Maces'),
16333 (1,4,201,'One-Handed Swords'),
16334 (1,5,5009,'Wands'),
16335 (1,5,5019,'Shoot'),
16336 (1,5,1180,'Daggers'),
16337 (1,5,45927,'Summon Friend'),
16338 (1,5,6478,'Opening'),
16339 (1,5,6603,'Auto Attack'),
16340 (1,5,22027,'Remove Insignia'),
16341 (1,5,22810,'Opening - No Text'),
16342 (1,5,21651,'Opening'),
16343 (1,5,21652,'Closing'),
16344 (1,5,2382,'Generic'),
16345 (1,5,3365,'Opening'),
16346 (1,5,3050,'Detect'),
16347 (1,5,9125,'Generic'),
16348 (1,5,8386,'Attacking'),
16349 (1,5,7266,'Duel'),
16350 (1,5,7267,'Grovel'),
16351 (1,5,7355,'Stuck'),
16352 (1,5,6233,'Closing'),
16353 (1,5,6246,'Closing'),
16354 (1,5,6247,'Opening'),
16355 (1,5,6477,'Opening'),
16356 (1,5,61437,'Opening'),
16357 (1,5,68398,'Opening'),
16358 (1,5,96220,'Opening'),
16359 (1,5,203,'Unarmed'),
16360 (1,5,585,'Smite'),
16361 (1,5,84733,'Holy Focus'),
16362 (1,5,88685,'Holy Word: Sanctuary'),
16363 (1,5,88684,'Holy Word: Serenity'),
16364 (1,5,101062,'Flash Heal'),
16365 (1,5,20864,'Mace Specialization'),
16366 (1,5,20599,'Diplomacy'),
16367 (1,5,20597,'Sword Specialization'),
16368 (1,5,20598,'The Human Spirit'),
16369 (1,5,59752,'Every Man for Himself'),
16370 (1,5,79738,'Languages'),
16371 (1,5,76301,'Weapon Skills'),
16372 (1,5,76279,'Armor Skills'),
16373 (1,5,84734,'Dark Thoughts'),
16374 (1,5,668,'Language Common'),
16375 (1,5,227,'Staves'),
16376 (1,5,77486,'Shadow Orb Power'),
16377 (1,5,81,'Dodge'),
16378 (1,5,204,'Defense'),
16379 (1,5,522,'SPELLDEFENSE (DND)'),
16380 (1,5,9078,'Cloth'),
16381 (1,5,198,'One-Handed Maces'),
16382 (1,8,71761,'Deep Freeze Immunity State'),
16383 (1,8,5009,'Wands'),
16384 (1,8,5019,'Shoot'),
16385 (1,8,1180,'Daggers'),
16386 (1,8,45927,'Summon Friend'),
16387 (1,8,6478,'Opening'),
16388 (1,8,6603,'Auto Attack'),
16389 (1,8,22027,'Remove Insignia'),
16390 (1,8,22810,'Opening - No Text'),
16391 (1,8,21651,'Opening'),
16392 (1,8,21652,'Closing'),
16393 (1,8,2382,'Generic'),
16394 (1,8,3365,'Opening'),
16395 (1,8,3050,'Detect'),
16396 (1,8,9125,'Generic'),
16397 (1,8,8386,'Attacking'),
16398 (1,8,7266,'Duel'),
16399 (1,8,7267,'Grovel'),
16400 (1,8,7355,'Stuck'),
16401 (1,8,6233,'Closing'),
16402 (1,8,6246,'Closing'),
16403 (1,8,6247,'Opening'),
16404 (1,8,6477,'Opening'),
16405 (1,8,61437,'Opening'),
16406 (1,8,68398,'Opening'),
16407 (1,8,96220,'Opening'),
16408 (1,8,79684,'Offensive State (DND)'),
16409 (1,8,203,'Unarmed'),
16410 (1,8,20864,'Mace Specialization'),
16411 (1,8,20599,'Diplomacy'),
16412 (1,8,20597,'Sword Specialization'),
16413 (1,8,20598,'The Human Spirit'),
16414 (1,8,59752,'Every Man for Himself'),
16415 (1,8,79738,'Languages'),
16416 (1,8,133,'Fireball'),
16417 (1,8,92315,'Pyroblast!'),
16418 (1,8,85801,'DPS Caster Crit Damage Bonus'),
16419 (1,8,76298,'Weapon Skills'),
16420 (1,8,76276,'Armor Skills'),
16421 (1,8,668,'Language Common'),
16422 (1,8,227,'Staves'),
16423 (1,8,81,'Dodge'),
16424 (1,8,204,'Defense'),
16425 (1,8,522,'SPELLDEFENSE (DND)'),
16426 (1,8,9078,'Cloth'),
16427 (1,8,201,'One-Handed Swords'),
16428 (1,9,5009,'Wands'),
16429 (1,9,5019,'Shoot'),
16430 (1,9,1180,'Daggers'),
16431 (1,9,45927,'Summon Friend'),
16432 (1,9,6478,'Opening'),
16433 (1,9,6603,'Auto Attack'),
16434 (1,9,22027,'Remove Insignia'),
16435 (1,9,22810,'Opening - No Text'),
16436 (1,9,21651,'Opening'),
16437 (1,9,21652,'Closing'),
16438 (1,9,2382,'Generic'),
16439 (1,9,3365,'Opening'),
16440 (1,9,3050,'Detect'),
16441 (1,9,9125,'Generic'),
16442 (1,9,8386,'Attacking'),
16443 (1,9,7266,'Duel'),
16444 (1,9,7267,'Grovel'),
16445 (1,9,7355,'Stuck'),
16446 (1,9,6233,'Closing'),
16447 (1,9,6246,'Closing'),
16448 (1,9,6247,'Opening'),
16449 (1,9,6477,'Opening'),
16450 (1,9,61437,'Opening'),
16451 (1,9,68398,'Opening'),
16452 (1,9,96220,'Opening'),
16453 (1,9,203,'Unarmed'),
16454 (1,9,20864,'Mace Specialization'),
16455 (1,9,20599,'Diplomacy'),
16456 (1,9,20597,'Sword Specialization'),
16457 (1,9,20598,'The Human Spirit'),
16458 (1,9,59752,'Every Man for Himself'),
16459 (1,9,79738,'Languages'),
16460 (1,9,688,'Summon Imp'),
16461 (1,9,86213,'Soul Swap Exhale'),
16462 (1,9,89420,'Drain Life'),
16463 (1,9,85801,'DPS Caster Crit Damage Bonus'),
16464 (1,9,76299,'Weapon Skills'),
16465 (1,9,76277,'Armor Skills'),
16466 (1,9,87330,'Suppression'),
16467 (1,9,668,'Language Common'),
16468 (1,9,227,'Staves'),
16469 (1,9,75445,'Demonic Immolate'),
16470 (1,9,686,'Shadow Bolt'),
16471 (1,9,58284,'Chaos Bolt Passive'),
16472 (1,9,81,'Dodge'),
16473 (1,9,204,'Defense'),
16474 (1,9,522,'SPELLDEFENSE (DND)'),
16475 (1,9,9078,'Cloth'),
16476 (1,9,201,'One-Handed Swords'),
16477 (1,6,6478,'Opening'),
16478 (1,6,6603,'Auto Attack'),
16479 (1,6,45927,'Summon Friend'),
16480 (1,6,22027,'Remove Insignia'),
16481 (1,6,22810,'Opening - No Text'),
16482 (1,6,21651,'Opening'),
16483 (1,6,21652,'Closing'),
16484 (1,6,2382,'Generic'),
16485 (1,6,3365,'Opening'),
16486 (1,6,3050,'Detect'),
16487 (1,6,9125,'Generic'),
16488 (1,6,8386,'Attacking'),
16489 (1,6,7266,'Duel'),
16490 (1,6,7267,'Grovel'),
16491 (1,6,7355,'Stuck'),
16492 (1,6,6233,'Closing'),
16493 (1,6,6246,'Closing'),
16494 (1,6,6247,'Opening'),
16495 (1,6,6477,'Opening'),
16496 (1,6,52665,'Relic'),
16497 (1,6,61437,'Opening'),
16498 (1,6,68398,'Opening'),
16499 (1,6,63645,'Activating Primary Spec'),
16500 (1,6,63644,'Activating Secondary Spec'),
16501 (1,6,96220,'Opening'),
16502 (1,6,203,'Unarmed'),
16503 (1,6,674,'Dual Wield'),
16504 (1,6,20864,'Mace Specialization'),
16505 (1,6,20599,'Diplomacy'),
16506 (1,6,20597,'Sword Specialization'),
16507 (1,6,20598,'The Human Spirit'),
16508 (1,6,59752,'Every Man for Himself'),
16509 (1,6,79738,'Languages'),
16510 (1,6,197,'Two-Handed Axes'),
16511 (1,6,45902,'Blood Strike'),
16512 (1,6,49410,'Forceful Deflection'),
16513 (1,6,82246,'Parry'),
16514 (1,6,89832,'Death Strike Enabler'),
16515 (1,6,45477,'Icy Touch'),
16516 (1,6,48266,'Frost Presence'),
16517 (1,6,61455,'Runic Focus'),
16518 (1,6,59921,'Frost Fever'),
16519 (1,6,202,'Two-Handed Swords'),
16520 (1,6,196,'One-Handed Axes'),
16521 (1,6,33391,'Journeyman Riding'),
16522 (1,6,89964,'Clear Glyph'),
16523 (1,6,76282,'Armor Skills'),
16524 (1,6,76292,'Weapon Skills'),
16525 (1,6,750,'Plate Mail'),
16526 (1,6,199,'Two-Handed Maces'),
16527 (1,6,200,'Polearms'),
16528 (1,6,668,'Language Common'),
16529 (1,6,8737,'Mail'),
16530 (1,6,9077,'Leather'),
16531 (1,6,45462,'Plague Strike'),
16532 (1,6,47541,'Death Coil'),
16533 (1,6,49576,'Death Grip'),
16534 (1,6,59879,'Blood Plague'),
16535 (1,6,45903,'Offensive State (DND)'),
16536 (1,6,81,'Dodge'),
16537 (1,6,204,'Defense'),
16538 (1,6,522,'SPELLDEFENSE (DND)'),
16539 (1,6,198,'One-Handed Maces'),
16540 (1,6,201,'One-Handed Swords'),
16541 (1,6,9078,'Cloth'),
16542 (1,6,10846,'First Aid'),
16543 (1,6,3275,'Linen Bandage'),
16544 (1,6,18630,'Heavy Runecloth Bandage'),
16545 (1,6,3276,'Heavy Linen Bandage'),
16546 (1,6,3277,'Wool Bandage'),
16547 (1,6,3278,'Heavy Wool Bandage'),
16548 (1,6,7928,'Silk Bandage'),
16549 (1,6,7929,'Heavy Silk Bandage'),
16550 (1,6,10840,'Mageweave Bandage'),
16551 (1,6,10841,'Heavy Mageweave Bandage'),
16552 (1,6,18629,'Runecloth Bandage'),
16553 (1,6,7934,'Anti-Venom'),
16554 (2,1,202,'Two-Handed Swords'),
16555 (2,1,196,'One-Handed Axes'),
16556 (2,1,2457,'Battle Stance'),
16557 (2,1,88161,'Strike'),
16558 (2,1,5011,'Crossbows'),
16559 (2,1,3018,'Shoot'),
16560 (2,1,669,'Language Orcish'),
16561 (2,1,197,'Two-Handed Axes'),
16562 (2,1,1180,'Daggers'),
16563 (2,1,45927,'Summon Friend'),
16564 (2,1,6478,'Opening'),
16565 (2,1,6603,'Auto Attack'),
16566 (2,1,22027,'Remove Insignia'),
16567 (2,1,22810,'Opening - No Text'),
16568 (2,1,21651,'Opening'),
16569 (2,1,21652,'Closing'),
16570 (2,1,2382,'Generic'),
16571 (2,1,3365,'Opening'),
16572 (2,1,3050,'Detect'),
16573 (2,1,9125,'Generic'),
16574 (2,1,8386,'Attacking'),
16575 (2,1,7266,'Duel'),
16576 (2,1,7267,'Grovel'),
16577 (2,1,7355,'Stuck'),
16578 (2,1,6233,'Closing'),
16579 (2,1,6246,'Closing'),
16580 (2,1,6247,'Opening'),
16581 (2,1,6477,'Opening'),
16582 (2,1,61437,'Opening'),
16583 (2,1,68398,'Opening'),
16584 (2,1,96220,'Opening'),
16585 (2,1,203,'Unarmed'),
16586 (2,1,49410,'Forceful Deflection'),
16587 (2,1,21563,'Command'),
16588 (2,1,20572,'Blood Fury'),
16589 (2,1,20573,'Hardiness'),
16590 (2,1,20574,'Axe Specialization'),
16591 (2,1,79743,'Languages'),
16592 (2,1,199,'Two-Handed Maces'),
16593 (2,1,15590,'Fist Weapons'),
16594 (2,1,76268,'Armor Skills'),
16595 (2,1,76290,'Weapon Skills'),
16596 (2,1,88163,'Attack'),
16597 (2,1,200,'Polearms'),
16598 (2,1,227,'Staves'),
16599 (2,1,9116,'Shield'),
16600 (2,1,8737,'Mail'),
16601 (2,1,9077,'Leather'),
16602 (2,1,264,'Bows'),
16603 (2,1,266,'Guns'),
16604 (2,1,107,'Block'),
16605 (2,1,81,'Dodge'),
16606 (2,1,32215,'Victorious State'),
16607 (2,1,5301,'Defensive State (DND)'),
16608 (2,1,204,'Defense'),
16609 (2,1,522,'SPELLDEFENSE (DND)'),
16610 (2,1,2764,'Throw'),
16611 (2,1,2567,'Thrown'),
16612 (2,1,9078,'Cloth'),
16613 (2,1,198,'One-Handed Maces'),
16614 (2,1,201,'One-Handed Swords'),
16615 (2,3,202,'Two-Handed Swords'),
16616 (2,3,196,'One-Handed Axes'),
16617 (2,3,3044,'Arcane Shot'),
16618 (2,3,75,'Auto Shot'),
16619 (2,3,82928,'Aimed Shot!'),
16620 (2,3,5011,'Crossbows'),
16621 (2,3,669,'Language Orcish'),
16622 (2,3,197,'Two-Handed Axes'),
16623 (2,3,1180,'Daggers'),
16624 (2,3,45927,'Summon Friend'),
16625 (2,3,6478,'Opening'),
16626 (2,3,6603,'Auto Attack'),
16627 (2,3,22027,'Remove Insignia'),
16628 (2,3,22810,'Opening - No Text'),
16629 (2,3,21651,'Opening'),
16630 (2,3,21652,'Closing'),
16631 (2,3,34082,'Hunter Passive Auras (DND)'),
16632 (2,3,2382,'Generic'),
16633 (2,3,3365,'Opening'),
16634 (2,3,3050,'Detect'),
16635 (2,3,9125,'Generic'),
16636 (2,3,8386,'Attacking'),
16637 (2,3,7266,'Duel'),
16638 (2,3,7267,'Grovel'),
16639 (2,3,7355,'Stuck'),
16640 (2,3,6233,'Closing'),
16641 (2,3,6246,'Closing'),
16642 (2,3,6247,'Opening'),
16643 (2,3,6477,'Opening'),
16644 (2,3,61437,'Opening'),
16645 (2,3,68398,'Opening'),
16646 (2,3,96220,'Opening'),
16647 (2,3,203,'Unarmed'),
16648 (2,3,883,'Call Pet 1'),
16649 (2,3,982,'Revive Pet'),
16650 (2,3,20572,'Blood Fury'),
16651 (2,3,20573,'Hardiness'),
16652 (2,3,20574,'Axe Specialization'),
16653 (2,3,20576,'Command'),
16654 (2,3,79743,'Languages'),
16655 (2,3,15590,'Fist Weapons'),
16656 (2,3,200,'Polearms'),
16657 (2,3,227,'Staves'),
16658 (2,3,9077,'Leather'),
16659 (2,3,264,'Bows'),
16660 (2,3,266,'Guns'),
16661 (2,3,13358,'Defensive State (DND)'),
16662 (2,3,81,'Dodge'),
16663 (2,3,204,'Defense'),
16664 (2,3,522,'SPELLDEFENSE (DND)'),
16665 (2,3,24949,'Defensive State 2 (DND)'),
16666 (2,3,9078,'Cloth'),
16667 (2,3,77442,'Focus'),
16668 (2,3,76249,'Weapon Skills'),
16669 (2,3,76250,'Armor Skills'),
16670 (2,3,87324,'Focused Aim'),
16671 (2,3,87816,'General Hunter Passives'),
16672 (2,3,201,'One-Handed Swords'),
16673 (2,4,196,'One-Handed Axes'),
16674 (2,4,1752,'Sinister Strike'),
16675 (2,4,5011,'Crossbows'),
16676 (2,4,3018,'Shoot'),
16677 (2,4,669,'Language Orcish'),
16678 (2,4,674,'Dual Wield'),
16679 (2,4,1180,'Daggers'),
16680 (2,4,45927,'Summon Friend'),
16681 (2,4,6478,'Opening'),
16682 (2,4,6603,'Auto Attack'),
16683 (2,4,22027,'Remove Insignia'),
16684 (2,4,22810,'Opening - No Text'),
16685 (2,4,21651,'Opening'),
16686 (2,4,21652,'Closing'),
16687 (2,4,2382,'Generic'),
16688 (2,4,3365,'Opening'),
16689 (2,4,3050,'Detect'),
16690 (2,4,9125,'Generic'),
16691 (2,4,8386,'Attacking'),
16692 (2,4,7266,'Duel'),
16693 (2,4,7267,'Grovel'),
16694 (2,4,7355,'Stuck'),
16695 (2,4,6233,'Closing'),
16696 (2,4,6246,'Closing'),
16697 (2,4,6247,'Opening'),
16698 (2,4,6477,'Opening'),
16699 (2,4,61437,'Opening'),
16700 (2,4,68398,'Opening'),
16701 (2,4,96220,'Opening'),
16702 (2,4,203,'Unarmed'),
16703 (2,4,21563,'Command'),
16704 (2,4,20572,'Blood Fury'),
16705 (2,4,20573,'Hardiness'),
16706 (2,4,20574,'Axe Specialization'),
16707 (2,4,79743,'Languages'),
16708 (2,4,15590,'Fist Weapons'),
16709 (2,4,76273,'Armor Skills'),
16710 (2,4,76297,'Weapon Skills'),
16711 (2,4,9077,'Leather'),
16712 (2,4,264,'Bows'),
16713 (2,4,266,'Guns'),
16714 (2,4,81,'Dodge'),
16715 (2,4,204,'Defense'),
16716 (2,4,522,'SPELLDEFENSE (DND)'),
16717 (2,4,16092,'Defensive State (DND)'),
16718 (2,4,2764,'Throw'),
16719 (2,4,2567,'Thrown'),
16720 (2,4,9078,'Cloth'),
16721 (2,4,198,'One-Handed Maces'),
16722 (2,4,201,'One-Handed Swords'),
16723 (2,7,196,'One-Handed Axes'),
16724 (2,7,669,'Language Orcish'),
16725 (2,7,197,'Two-Handed Axes'),
16726 (2,7,1180,'Daggers'),
16727 (2,7,45927,'Summon Friend'),
16728 (2,7,6478,'Opening'),
16729 (2,7,6603,'Auto Attack'),
16730 (2,7,22027,'Remove Insignia'),
16731 (2,7,22810,'Opening - No Text'),
16732 (2,7,21651,'Opening'),
16733 (2,7,21652,'Closing'),
16734 (2,7,2382,'Generic'),
16735 (2,7,3365,'Opening'),
16736 (2,7,3050,'Detect'),
16737 (2,7,9125,'Generic'),
16738 (2,7,8386,'Attacking'),
16739 (2,7,7266,'Duel'),
16740 (2,7,7267,'Grovel'),
16741 (2,7,7355,'Stuck'),
16742 (2,7,6233,'Closing'),
16743 (2,7,6246,'Closing'),
16744 (2,7,6247,'Opening'),
16745 (2,7,6477,'Opening'),
16746 (2,7,27763,'Relic'),
16747 (2,7,61437,'Opening'),
16748 (2,7,68398,'Opening'),
16749 (2,7,96220,'Opening'),
16750 (2,7,203,'Unarmed'),
16751 (2,7,20573,'Hardiness'),
16752 (2,7,20574,'Axe Specialization'),
16753 (2,7,65222,'Command'),
16754 (2,7,79743,'Languages'),
16755 (2,7,33697,'Blood Fury'),
16756 (2,7,199,'Two-Handed Maces'),
16757 (2,7,15590,'Fist Weapons'),
16758 (2,7,76272,'Armor Skills'),
16759 (2,7,76296,'Weapon Skills'),
16760 (2,7,89920,'Ancestral Focus'),
16761 (2,7,227,'Staves'),
16762 (2,7,9116,'Shield'),
16763 (2,7,9077,'Leather'),
16764 (2,7,107,'Block'),
16765 (2,7,81,'Dodge'),
16766 (2,7,204,'Defense'),
16767 (2,7,522,'SPELLDEFENSE (DND)'),
16768 (2,7,403,'Lightning Bolt'),
16769 (2,7,9078,'Cloth'),
16770 (2,7,198,'One-Handed Maces'),
16771 (2,8,71761,'Deep Freeze Immunity State'),
16772 (2,8,5009,'Wands'),
16773 (2,8,5019,'Shoot'),
16774 (2,8,669,'Language Orcish'),
16775 (2,8,1180,'Daggers'),
16776 (2,8,45927,'Summon Friend'),
16777 (2,8,6478,'Opening'),
16778 (2,8,6603,'Auto Attack'),
16779 (2,8,22027,'Remove Insignia'),
16780 (2,8,22810,'Opening - No Text'),
16781 (2,8,21651,'Opening'),
16782 (2,8,21652,'Closing'),
16783 (2,8,2382,'Generic'),
16784 (2,8,3365,'Opening'),
16785 (2,8,3050,'Detect'),
16786 (2,8,9125,'Generic'),
16787 (2,8,8386,'Attacking'),
16788 (2,8,7266,'Duel'),
16789 (2,8,7267,'Grovel'),
16790 (2,8,7355,'Stuck'),
16791 (2,8,6233,'Closing'),
16792 (2,8,6246,'Closing'),
16793 (2,8,6247,'Opening'),
16794 (2,8,6477,'Opening'),
16795 (2,8,61437,'Opening'),
16796 (2,8,68398,'Opening'),
16797 (2,8,96220,'Opening'),
16798 (2,8,79684,'Offensive State (DND)'),
16799 (2,8,203,'Unarmed'),
16800 (2,8,21563,'Command'),
16801 (2,8,33702,'Blood Fury'),
16802 (2,8,20573,'Hardiness'),
16803 (2,8,20574,'Axe Specialization'),
16804 (2,8,79743,'Languages'),
16805 (2,8,133,'Fireball'),
16806 (2,8,92315,'Pyroblast!'),
16807 (2,8,85801,'DPS Caster Crit Damage Bonus'),
16808 (2,8,76298,'Weapon Skills'),
16809 (2,8,76276,'Armor Skills'),
16810 (2,8,227,'Staves'),
16811 (2,8,81,'Dodge'),
16812 (2,8,204,'Defense'),
16813 (2,8,522,'SPELLDEFENSE (DND)'),
16814 (2,8,9078,'Cloth'),
16815 (2,8,201,'One-Handed Swords'),
16816 (2,9,5009,'Wands'),
16817 (2,9,5019,'Shoot'),
16818 (2,9,669,'Language Common'),
16819 (2,9,1180,'Daggers'),
16820 (2,9,45927,'Summon Friend'),
16821 (2,9,6478,'Opening'),
16822 (2,9,6603,'Auto Attack'),
16823 (2,9,22027,'Remove Insignia'),
16824 (2,9,22810,'Opening - No Text'),
16825 (2,9,21651,'Opening'),
16826 (2,9,21652,'Closing'),
16827 (2,9,2382,'Generic'),
16828 (2,9,3365,'Opening'),
16829 (2,9,3050,'Detect'),
16830 (2,9,9125,'Generic'),
16831 (2,9,8386,'Attacking'),
16832 (2,9,7266,'Duel'),
16833 (2,9,7267,'Grovel'),
16834 (2,9,7355,'Stuck'),
16835 (2,9,6233,'Closing'),
16836 (2,9,6246,'Closing'),
16837 (2,9,6247,'Opening'),
16838 (2,9,6477,'Opening'),
16839 (2,9,61437,'Opening'),
16840 (2,9,68398,'Opening'),
16841 (2,9,96220,'Opening'),
16842 (2,9,203,'Unarmed'),
16843 (2,9,33702,'Blood Fury'),
16844 (2,9,20573,'Hardiness'),
16845 (2,9,20574,'Axe Specialization'),
16846 (2,9,79743,'Languages'),
16847 (2,9,688,'Summon Imp'),
16848 (2,9,86213,'Soul Swap Exhale'),
16849 (2,9,89420,'Drain Life'),
16850 (2,9,85801,'DPS Caster Crit Damage Bonus'),
16851 (2,9,76299,'Weapon Skills'),
16852 (2,9,76277,'Armor Skills'),
16853 (2,9,87330,'Suppression'),
16854 (2,9,227,'Staves'),
16855 (2,9,75445,'Demonic Immolate'),
16856 (2,9,686,'Shadow Bolt'),
16857 (2,9,58284,'Chaos Bolt Passive'),
16858 (2,9,81,'Dodge'),
16859 (2,9,204,'Defense'),
16860 (2,9,522,'SPELLDEFENSE (DND)'),
16861 (2,9,9078,'Cloth'),
16862 (2,9,201,'One-Handed Swords'),
16863 (2,6,6478,'Opening'),
16864 (2,6,6603,'Auto Attack'),
16865 (2,6,45927,'Summon Friend'),
16866 (2,6,22027,'Remove Insignia'),
16867 (2,6,22810,'Opening - No Text'),
16868 (2,6,21651,'Opening'),
16869 (2,6,21652,'Closing'),
16870 (2,6,2382,'Generic'),
16871 (2,6,3365,'Opening'),
16872 (2,6,3050,'Detect'),
16873 (2,6,9125,'Generic'),
16874 (2,6,8386,'Attacking'),
16875 (2,6,7266,'Duel'),
16876 (2,6,7267,'Grovel'),
16877 (2,6,7355,'Stuck'),
16878 (2,6,6233,'Closing'),
16879 (2,6,6246,'Closing'),
16880 (2,6,6247,'Opening'),
16881 (2,6,6477,'Opening'),
16882 (2,6,52665,'Relic'),
16883 (2,6,61437,'Opening'),
16884 (2,6,68398,'Opening'),
16885 (2,6,63645,'Activating Primary Spec'),
16886 (2,6,63644,'Activating Secondary Spec'),
16887 (2,6,96220,'Opening'),
16888 (2,6,203,'Unarmed'),
16889 (2,6,674,'Dual Wield'),
16890 (2,6,669,'Language Orcish'),
16891 (2,6,197,'Two-Handed Axes'),
16892 (2,6,45902,'Blood Strike'),
16893 (2,6,49410,'Forceful Deflection'),
16894 (2,6,82246,'Parry'),
16895 (2,6,89832,'Death Strike Enabler'),
16896 (2,6,45477,'Icy Touch'),
16897 (2,6,48266,'Frost Presence'),
16898 (2,6,61455,'Runic Focus'),
16899 (2,6,59921,'Frost Fever'),
16900 (2,6,202,'Two-Handed Swords'),
16901 (2,6,196,'One-Handed Axes'),
16902 (2,6,33391,'Journeyman Riding'),
16903 (2,6,89964,'Clear Glyph'),
16904 (2,6,76282,'Armor Skills'),
16905 (2,6,76292,'Weapon Skills'),
16906 (2,6,20572,'Blood Fury'),
16907 (2,6,20573,'Hardiness'),
16908 (2,6,20574,'Axe Specialization'),
16909 (2,6,54562,'Command'),
16910 (2,6,79743,'Languages'),
16911 (2,6,750,'Plate Mail'),
16912 (2,6,199,'Two-Handed Maces'),
16913 (2,6,200,'Polearms'),
16914 (2,6,8737,'Mail'),
16915 (2,6,9077,'Leather'),
16916 (2,6,45462,'Plague Strike'),
16917 (2,6,47541,'Death Coil'),
16918 (2,6,49576,'Death Grip'),
16919 (2,6,59879,'Blood Plague'),
16920 (2,6,45903,'Offensive State (DND)'),
16921 (2,6,81,'Dodge'),
16922 (2,6,204,'Defense'),
16923 (2,6,522,'SPELLDEFENSE (DND)'),
16924 (2,6,198,'One-Handed Maces'),
16925 (2,6,201,'One-Handed Swords'),
16926 (2,6,9078,'Cloth'),
16927 (2,6,10846,'First Aid'),
16928 (2,6,3275,'Linen Bandage'),
16929 (2,6,18630,'Heavy Runecloth Bandage'),
16930 (2,6,3276,'Heavy Linen Bandage'),
16931 (2,6,3277,'Wool Bandage'),
16932 (2,6,3278,'Heavy Wool Bandage'),
16933 (2,6,7928,'Silk Bandage'),
16934 (2,6,7929,'Heavy Silk Bandage'),
16935 (2,6,10840,'Mageweave Bandage'),
16936 (2,6,10841,'Heavy Mageweave Bandage'),
16937 (2,6,18629,'Runecloth Bandage'),
16938 (2,6,7934,'Anti-Venom'),
16939 (3,1,202,'Two-Handed Swords'),
16940 (3,1,196,'One-Handed Axes'),
16941 (3,1,2457,'Battle Stance'),
16942 (3,1,88161,'Strike'),
16943 (3,1,5011,'Crossbows'),
16944 (3,1,3018,'Shoot'),
16945 (3,1,197,'Two-Handed Axes'),
16946 (3,1,1180,'Daggers'),
16947 (3,1,45927,'Summon Friend'),
16948 (3,1,6478,'Opening'),
16949 (3,1,6603,'Auto Attack'),
16950 (3,1,22027,'Remove Insignia'),
16951 (3,1,22810,'Opening - No Text'),
16952 (3,1,21651,'Opening'),
16953 (3,1,21652,'Closing'),
16954 (3,1,2382,'Generic'),
16955 (3,1,3365,'Opening'),
16956 (3,1,3050,'Detect'),
16957 (3,1,9125,'Generic'),
16958 (3,1,8386,'Attacking'),
16959 (3,1,7266,'Duel'),
16960 (3,1,7267,'Grovel'),
16961 (3,1,7355,'Stuck'),
16962 (3,1,6233,'Closing'),
16963 (3,1,6246,'Closing'),
16964 (3,1,6247,'Opening'),
16965 (3,1,6477,'Opening'),
16966 (3,1,61437,'Opening'),
16967 (3,1,68398,'Opening'),
16968 (3,1,96220,'Opening'),
16969 (3,1,203,'Unarmed'),
16970 (3,1,20596,'Frost Resistance'),
16971 (3,1,20595,'Gun Specialization'),
16972 (3,1,20594,'Stoneform'),
16973 (3,1,59224,'Mace Specialization'),
16974 (3,1,92682,'Explorer'),
16975 (3,1,79739,'Languages'),
16976 (3,1,672,'Language Dwarven'),
16977 (3,1,49410,'Forceful Deflection'),
16978 (3,1,199,'Two-Handed Maces'),
16979 (3,1,15590,'Fist Weapons'),
16980 (3,1,76268,'Armor Skills'),
16981 (3,1,76290,'Weapon Skills'),
16982 (3,1,88163,'Attack'),
16983 (3,1,200,'Polearms'),
16984 (3,1,668,'Language Common'),
16985 (3,1,227,'Staves'),
16986 (3,1,9116,'Shield'),
16987 (3,1,8737,'Mail'),
16988 (3,1,9077,'Leather'),
16989 (3,1,264,'Bows'),
16990 (3,1,266,'Guns'),
16991 (3,1,107,'Block'),
16992 (3,1,81,'Dodge'),
16993 (3,1,32215,'Victorious State'),
16994 (3,1,5301,'Defensive State (DND)'),
16995 (3,1,204,'Defense'),
16996 (3,1,522,'SPELLDEFENSE (DND)'),
16997 (3,1,2764,'Throw'),
16998 (3,1,2567,'Thrown'),
16999 (3,1,9078,'Cloth'),
17000 (3,1,198,'One-Handed Maces'),
17001 (3,1,201,'One-Handed Swords'),
17002 (3,2,202,'Two-Handed Swords'),
17003 (3,2,196,'One-Handed Axes'),
17004 (3,2,197,'Two-Handed Axes'),
17005 (3,2,45927,'Summon Friend'),
17006 (3,2,6478,'Opening'),
17007 (3,2,6603,'Auto Attack'),
17008 (3,2,22027,'Remove Insignia'),
17009 (3,2,22810,'Opening - No Text'),
17010 (3,2,21651,'Opening'),
17011 (3,2,21652,'Closing'),
17012 (3,2,2382,'Generic'),
17013 (3,2,3365,'Opening'),
17014 (3,2,3050,'Detect'),
17015 (3,2,9125,'Generic'),
17016 (3,2,8386,'Attacking'),
17017 (3,2,7266,'Duel'),
17018 (3,2,7267,'Grovel'),
17019 (3,2,7355,'Stuck'),
17020 (3,2,6233,'Closing'),
17021 (3,2,6246,'Closing'),
17022 (3,2,6247,'Opening'),
17023 (3,2,6477,'Opening'),
17024 (3,2,27762,'Relic'),
17025 (3,2,61437,'Opening'),
17026 (3,2,68398,'Opening'),
17027 (3,2,96220,'Opening'),
17028 (3,2,49410,'Forceful Deflection'),
17029 (3,2,203,'Unarmed'),
17030 (3,2,20596,'Frost Resistance'),
17031 (3,2,20595,'Gun Specialization'),
17032 (3,2,20594,'Stoneform'),
17033 (3,2,59224,'Mace Specialization'),
17034 (3,2,92682,'Explorer'),
17035 (3,2,79739,'Languages'),
17036 (3,2,672,'Language Dwarven'),
17037 (3,2,199,'Two-Handed Maces'),
17038 (3,2,76271,'Armor Skills'),
17039 (3,2,76294,'Weapon Skills'),
17040 (3,2,200,'Polearms'),
17041 (3,2,668,'Language Common'),
17042 (3,2,35395,'Crusader Strike'),
17043 (3,2,60091,'Judgement Anti-Parry/Dodge Passive'),
17044 (3,2,9116,'Shield'),
17045 (3,2,8737,'Mail'),
17046 (3,2,9077,'Leather'),
17047 (3,2,107,'Block'),
17048 (3,2,81,'Dodge'),
17049 (3,2,204,'Defense'),
17050 (3,2,522,'SPELLDEFENSE (DND)'),
17051 (3,2,9078,'Cloth'),
17052 (3,2,20208,'Paladin pushback resistance'),
17053 (3,2,198,'One-Handed Maces'),
17054 (3,2,201,'One-Handed Swords'),
17055 (3,3,202,'Two-Handed Swords'),
17056 (3,3,196,'One-Handed Axes'),
17057 (3,3,3044,'Arcane Shot'),
17058 (3,3,75,'Auto Shot'),
17059 (3,3,82928,'Aimed Shot!'),
17060 (3,3,5011,'Crossbows'),
17061 (3,3,197,'Two-Handed Axes'),
17062 (3,3,1180,'Daggers'),
17063 (3,3,45927,'Summon Friend'),
17064 (3,3,6478,'Opening'),
17065 (3,3,6603,'Auto Attack'),
17066 (3,3,22027,'Remove Insignia'),
17067 (3,3,22810,'Opening - No Text'),
17068 (3,3,21651,'Opening'),
17069 (3,3,21652,'Closing'),
17070 (3,3,34082,'Hunter Passive Auras (DND)'),
17071 (3,3,2382,'Generic'),
17072 (3,3,3365,'Opening'),
17073 (3,3,3050,'Detect'),
17074 (3,3,9125,'Generic'),
17075 (3,3,8386,'Attacking'),
17076 (3,3,7266,'Duel'),
17077 (3,3,7267,'Grovel'),
17078 (3,3,7355,'Stuck'),
17079 (3,3,6233,'Closing'),
17080 (3,3,6246,'Closing'),
17081 (3,3,6247,'Opening'),
17082 (3,3,6477,'Opening'),
17083 (3,3,61437,'Opening'),
17084 (3,3,68398,'Opening'),
17085 (3,3,96220,'Opening'),
17086 (3,3,203,'Unarmed'),
17087 (3,3,883,'Call Pet 1'),
17088 (3,3,982,'Revive Pet'),
17089 (3,3,20596,'Frost Resistance'),
17090 (3,3,20595,'Gun Specialization'),
17091 (3,3,20594,'Stoneform'),
17092 (3,3,59224,'Mace Specialization'),
17093 (3,3,92682,'Explorer'),
17094 (3,3,79739,'Languages'),
17095 (3,3,672,'Language Dwarven'),
17096 (3,3,15590,'Fist Weapons'),
17097 (3,3,200,'Polearms'),
17098 (3,3,668,'Language Common'),
17099 (3,3,227,'Staves'),
17100 (3,3,9077,'Leather'),
17101 (3,3,264,'Bows'),
17102 (3,3,266,'Guns'),
17103 (3,3,13358,'Defensive State (DND)'),
17104 (3,3,81,'Dodge'),
17105 (3,3,204,'Defense'),
17106 (3,3,522,'SPELLDEFENSE (DND)'),
17107 (3,3,24949,'Defensive State 2 (DND)'),
17108 (3,3,9078,'Cloth'),
17109 (3,3,77442,'Focus'),
17110 (3,3,76249,'Weapon Skills'),
17111 (3,3,76250,'Armor Skills'),
17112 (3,3,87324,'Focused Aim'),
17113 (3,3,87816,'General Hunter Passives'),
17114 (3,3,201,'One-Handed Swords'),
17115 (3,4,196,'One-Handed Axes'),
17116 (3,4,1752,'Sinister Strike'),
17117 (3,4,5011,'Crossbows'),
17118 (3,4,3018,'Shoot'),
17119 (3,4,674,'Dual Wield'),
17120 (3,4,1180,'Daggers'),
17121 (3,4,45927,'Summon Friend'),
17122 (3,4,6478,'Opening'),
17123 (3,4,6603,'Auto Attack'),
17124 (3,4,22027,'Remove Insignia'),
17125 (3,4,22810,'Opening - No Text'),
17126 (3,4,21651,'Opening'),
17127 (3,4,21652,'Closing'),
17128 (3,4,2382,'Generic'),
17129 (3,4,3365,'Opening'),
17130 (3,4,3050,'Detect'),
17131 (3,4,9125,'Generic'),
17132 (3,4,8386,'Attacking'),
17133 (3,4,7266,'Duel'),
17134 (3,4,7267,'Grovel'),
17135 (3,4,7355,'Stuck'),
17136 (3,4,6233,'Closing'),
17137 (3,4,6246,'Closing'),
17138 (3,4,6247,'Opening'),
17139 (3,4,6477,'Opening'),
17140 (3,4,61437,'Opening'),
17141 (3,4,68398,'Opening'),
17142 (3,4,96220,'Opening'),
17143 (3,4,203,'Unarmed'),
17144 (3,4,20596,'Frost Resistance'),
17145 (3,4,20595,'Gun Specialization'),
17146 (3,4,20594,'Stoneform'),
17147 (3,4,59224,'Mace Specialization'),
17148 (3,4,92682,'Explorer'),
17149 (3,4,79739,'Languages'),
17150 (3,4,672,'Language Dwarven'),
17151 (3,4,15590,'Fist Weapons'),
17152 (3,4,76273,'Armor Skills'),
17153 (3,4,76297,'Weapon Skills'),
17154 (3,4,668,'Language Common'),
17155 (3,4,9077,'Leather'),
17156 (3,4,264,'Bows'),
17157 (3,4,266,'Guns'),
17158 (3,4,81,'Dodge'),
17159 (3,4,204,'Defense'),
17160 (3,4,522,'SPELLDEFENSE (DND)'),
17161 (3,4,16092,'Defensive State (DND)'),
17162 (3,4,2764,'Throw'),
17163 (3,4,2567,'Thrown'),
17164 (3,4,9078,'Cloth'),
17165 (3,4,198,'One-Handed Maces'),
17166 (3,4,201,'One-Handed Swords'),
17167 (3,5,5009,'Wands'),
17168 (3,5,5019,'Shoot'),
17169 (3,5,1180,'Daggers'),
17170 (3,5,45927,'Summon Friend'),
17171 (3,5,6478,'Opening'),
17172 (3,5,6603,'Auto Attack'),
17173 (3,5,22027,'Remove Insignia'),
17174 (3,5,22810,'Opening - No Text'),
17175 (3,5,21651,'Opening'),
17176 (3,5,21652,'Closing'),
17177 (3,5,2382,'Generic'),
17178 (3,5,3365,'Opening'),
17179 (3,5,3050,'Detect'),
17180 (3,5,9125,'Generic'),
17181 (3,5,8386,'Attacking'),
17182 (3,5,7266,'Duel'),
17183 (3,5,7267,'Grovel'),
17184 (3,5,7355,'Stuck'),
17185 (3,5,6233,'Closing'),
17186 (3,5,6246,'Closing'),
17187 (3,5,6247,'Opening'),
17188 (3,5,6477,'Opening'),
17189 (3,5,61437,'Opening'),
17190 (3,5,68398,'Opening'),
17191 (3,5,96220,'Opening'),
17192 (3,5,203,'Unarmed'),
17193 (3,5,585,'Smite'),
17194 (3,5,84733,'Holy Focus'),
17195 (3,5,88685,'Holy Word: Sanctuary'),
17196 (3,5,88684,'Holy Word: Serenity'),
17197 (3,5,101062,'Flash Heal'),
17198 (3,5,20596,'Frost Resistance'),
17199 (3,5,20595,'Gun Specialization'),
17200 (3,5,20594,'Stoneform'),
17201 (3,5,59224,'Mace Specialization'),
17202 (3,5,92682,'Explorer'),
17203 (3,5,79739,'Languages'),
17204 (3,5,672,'Language Dwarven'),
17205 (3,5,76301,'Weapon Skills'),
17206 (3,5,76279,'Armor Skills'),
17207 (3,5,84734,'Dark Thoughts'),
17208 (3,5,668,'Language Common'),
17209 (3,5,227,'Staves'),
17210 (3,5,77486,'Shadow Orb Power'),
17211 (3,5,81,'Dodge'),
17212 (3,5,204,'Defense'),
17213 (3,5,522,'SPELLDEFENSE (DND)'),
17214 (3,5,9078,'Cloth'),
17215 (3,5,198,'One-Handed Maces'),
17216 (3,7,196,'One-Handed Axes'),
17217 (3,7,197,'Two-Handed Axes'),
17218 (3,7,1180,'Daggers'),
17219 (3,7,45927,'Summon Friend'),
17220 (3,7,6478,'Opening'),
17221 (3,7,6603,'Auto Attack'),
17222 (3,7,22027,'Remove Insignia'),
17223 (3,7,22810,'Opening - No Text'),
17224 (3,7,21651,'Opening'),
17225 (3,7,21652,'Closing'),
17226 (3,7,2382,'Generic'),
17227 (3,7,3365,'Opening'),
17228 (3,7,3050,'Detect'),
17229 (3,7,9125,'Generic'),
17230 (3,7,8386,'Attacking'),
17231 (3,7,7266,'Duel'),
17232 (3,7,7267,'Grovel'),
17233 (3,7,7355,'Stuck'),
17234 (3,7,6233,'Closing'),
17235 (3,7,6246,'Closing'),
17236 (3,7,6247,'Opening'),
17237 (3,7,6477,'Opening'),
17238 (3,7,27763,'Relic'),
17239 (3,7,61437,'Opening'),
17240 (3,7,68398,'Opening'),
17241 (3,7,96220,'Opening'),
17242 (3,7,203,'Unarmed'),
17243 (3,7,20596,'Frost Resistance'),
17244 (3,7,20595,'Gun Specialization'),
17245 (3,7,20594,'Stoneform'),
17246 (3,7,59224,'Mace Specialization'),
17247 (3,7,92682,'Explorer'),
17248 (3,7,79739,'Languages'),
17249 (3,7,672,'Language Dwarven'),
17250 (3,7,199,'Two-Handed Maces'),
17251 (3,7,15590,'Fist Weapons'),
17252 (3,7,76272,'Armor Skills'),
17253 (3,7,76296,'Weapon Skills'),
17254 (3,7,89920,'Ancestral Focus'),
17255 (3,7,668,'Language Common'),
17256 (3,7,227,'Staves'),
17257 (3,7,9116,'Shield'),
17258 (3,7,9077,'Leather'),
17259 (3,7,107,'Block'),
17260 (3,7,81,'Dodge'),
17261 (3,7,204,'Defense'),
17262 (3,7,522,'SPELLDEFENSE (DND)'),
17263 (3,7,403,'Lightning Bolt'),
17264 (3,7,9078,'Cloth'),
17265 (3,7,198,'One-Handed Maces'),
17266 (3,8,71761,'Deep Freeze Immunity State'),
17267 (3,8,5009,'Wands'),
17268 (3,8,5019,'Shoot'),
17269 (3,8,1180,'Daggers'),
17270 (3,8,45927,'Summon Friend'),
17271 (3,8,6478,'Opening'),
17272 (3,8,6603,'Auto Attack'),
17273 (3,8,22027,'Remove Insignia'),
17274 (3,8,22810,'Opening - No Text'),
17275 (3,8,21651,'Opening'),
17276 (3,8,21652,'Closing'),
17277 (3,8,2382,'Generic'),
17278 (3,8,3365,'Opening'),
17279 (3,8,3050,'Detect'),
17280 (3,8,9125,'Generic'),
17281 (3,8,8386,'Attacking'),
17282 (3,8,7266,'Duel'),
17283 (3,8,7267,'Grovel'),
17284 (3,8,7355,'Stuck'),
17285 (3,8,6233,'Closing'),
17286 (3,8,6246,'Closing'),
17287 (3,8,6247,'Opening'),
17288 (3,8,6477,'Opening'),
17289 (3,8,61437,'Opening'),
17290 (3,8,68398,'Opening'),
17291 (3,8,96220,'Opening'),
17292 (3,8,79684,'Offensive State (DND)'),
17293 (3,8,203,'Unarmed'),
17294 (3,8,20596,'Frost Resistance'),
17295 (3,8,20595,'Gun Specialization'),
17296 (3,8,20594,'Stoneform'),
17297 (3,8,59224,'Mace Specialization'),
17298 (3,8,92682,'Explorer'),
17299 (3,8,79739,'Languages'),
17300 (3,8,672,'Language Dwarven'),
17301 (3,8,133,'Fireball'),
17302 (3,8,92315,'Pyroblast!'),
17303 (3,8,85801,'DPS Caster Crit Damage Bonus'),
17304 (3,8,76298,'Weapon Skills'),
17305 (3,8,76276,'Armor Skills'),
17306 (3,8,668,'Language Common'),
17307 (3,8,227,'Staves'),
17308 (3,8,81,'Dodge'),
17309 (3,8,204,'Defense'),
17310 (3,8,522,'SPELLDEFENSE (DND)'),
17311 (3,8,9078,'Cloth'),
17312 (3,8,201,'One-Handed Swords'),
17313 (3,9,5009,'Wands'),
17314 (3,9,5019,'Shoot'),
17315 (3,9,1180,'Daggers'),
17316 (3,9,45927,'Summon Friend'),
17317 (3,9,6478,'Opening'),
17318 (3,9,6603,'Auto Attack'),
17319 (3,9,22027,'Remove Insignia'),
17320 (3,9,22810,'Opening - No Text'),
17321 (3,9,21651,'Opening'),
17322 (3,9,21652,'Closing'),
17323 (3,9,2382,'Generic'),
17324 (3,9,3365,'Opening'),
17325 (3,9,3050,'Detect'),
17326 (3,9,9125,'Generic'),
17327 (3,9,8386,'Attacking'),
17328 (3,9,7266,'Duel'),
17329 (3,9,7267,'Grovel'),
17330 (3,9,7355,'Stuck'),
17331 (3,9,6233,'Closing'),
17332 (3,9,6246,'Closing'),
17333 (3,9,6247,'Opening'),
17334 (3,9,6477,'Opening'),
17335 (3,9,61437,'Opening'),
17336 (3,9,68398,'Opening'),
17337 (3,9,96220,'Opening'),
17338 (3,9,203,'Unarmed'),
17339 (3,9,20596,'Frost Resistance'),
17340 (3,9,20595,'Gun Specialization'),
17341 (3,9,20594,'Stoneform'),
17342 (3,9,59224,'Mace Specialization'),
17343 (3,9,92682,'Explorer'),
17344 (3,9,79739,'Languages'),
17345 (3,9,672,'Language Dwarven'),
17346 (3,9,688,'Summon Imp'),
17347 (3,9,86213,'Soul Swap Exhale'),
17348 (3,9,89420,'Drain Life'),
17349 (3,9,85801,'DPS Caster Crit Damage Bonus'),
17350 (3,9,76299,'Weapon Skills'),
17351 (3,9,76277,'Armor Skills'),
17352 (3,9,87330,'Suppression'),
17353 (3,9,668,'Language Common'),
17354 (3,9,227,'Staves'),
17355 (3,9,75445,'Demonic Immolate'),
17356 (3,9,686,'Shadow Bolt'),
17357 (3,9,58284,'Chaos Bolt Passive'),
17358 (3,9,81,'Dodge'),
17359 (3,9,204,'Defense'),
17360 (3,9,522,'SPELLDEFENSE (DND)'),
17361 (3,9,9078,'Cloth'),
17362 (3,9,201,'One-Handed Swords'),
17363 (3,6,6478,'Opening'),
17364 (3,6,6603,'Auto Attack'),
17365 (3,6,45927,'Summon Friend'),
17366 (3,6,22027,'Remove Insignia'),
17367 (3,6,22810,'Opening - No Text'),
17368 (3,6,21651,'Opening'),
17369 (3,6,21652,'Closing'),
17370 (3,6,2382,'Generic'),
17371 (3,6,3365,'Opening'),
17372 (3,6,3050,'Detect'),
17373 (3,6,9125,'Generic'),
17374 (3,6,8386,'Attacking'),
17375 (3,6,7266,'Duel'),
17376 (3,6,7267,'Grovel'),
17377 (3,6,7355,'Stuck'),
17378 (3,6,6233,'Closing'),
17379 (3,6,6246,'Closing'),
17380 (3,6,6247,'Opening'),
17381 (3,6,6477,'Opening'),
17382 (3,6,52665,'Relic'),
17383 (3,6,61437,'Opening'),
17384 (3,6,68398,'Opening'),
17385 (3,6,63645,'Activating Primary Spec'),
17386 (3,6,63644,'Activating Secondary Spec'),
17387 (3,6,96220,'Opening'),
17388 (3,6,203,'Unarmed'),
17389 (3,6,20596,'Frost Resistance'),
17390 (3,6,20595,'Gun Specialization'),
17391 (3,6,20594,'Stoneform'),
17392 (3,6,59224,'Mace Specialization'),
17393 (3,6,79739,'Languages'),
17394 (3,6,92682,'Explorer'),
17395 (3,6,672,'Language Dwarven'),
17396 (3,6,674,'Dual Wield'),
17397 (3,6,197,'Two-Handed Axes'),
17398 (3,6,45902,'Blood Strike'),
17399 (3,6,49410,'Forceful Deflection'),
17400 (3,6,82246,'Parry'),
17401 (3,6,89832,'Death Strike Enabler'),
17402 (3,6,45477,'Icy Touch'),
17403 (3,6,48266,'Frost Presence'),
17404 (3,6,61455,'Runic Focus'),
17405 (3,6,59921,'Frost Fever'),
17406 (3,6,202,'Two-Handed Swords'),
17407 (3,6,196,'One-Handed Axes'),
17408 (3,6,33391,'Journeyman Riding'),
17409 (3,6,89964,'Clear Glyph'),
17410 (3,6,76282,'Armor Skills'),
17411 (3,6,76292,'Weapon Skills'),
17412 (3,6,750,'Plate Mail'),
17413 (3,6,199,'Two-Handed Maces'),
17414 (3,6,200,'Polearms'),
17415 (3,6,668,'Language Common'),
17416 (3,6,8737,'Mail'),
17417 (3,6,9077,'Leather'),
17418 (3,6,45462,'Plague Strike'),
17419 (3,6,47541,'Death Coil'),
17420 (3,6,49576,'Death Grip'),
17421 (3,6,59879,'Blood Plague'),
17422 (3,6,45903,'Offensive State (DND)'),
17423 (3,6,81,'Dodge'),
17424 (3,6,204,'Defense'),
17425 (3,6,522,'SPELLDEFENSE (DND)'),
17426 (3,6,198,'One-Handed Maces'),
17427 (3,6,201,'One-Handed Swords'),
17428 (3,6,9078,'Cloth'),
17429 (3,6,10846,'First Aid'),
17430 (3,6,3275,'Linen Bandage'),
17431 (3,6,18630,'Heavy Runecloth Bandage'),
17432 (3,6,3276,'Heavy Linen Bandage'),
17433 (3,6,3277,'Wool Bandage'),
17434 (3,6,3278,'Heavy Wool Bandage'),
17435 (3,6,7928,'Silk Bandage'),
17436 (3,6,7929,'Heavy Silk Bandage'),
17437 (3,6,10840,'Mageweave Bandage'),
17438 (3,6,10841,'Heavy Mageweave Bandage'),
17439 (3,6,18629,'Runecloth Bandage'),
17440 (3,6,7934,'Anti-Venom'),
17441 (4,1,202,'Two-Handed Swords'),
17442 (4,1,196,'One-Handed Axes'),
17443 (4,1,2457,'Battle Stance'),
17444 (4,1,88161,'Strike'),
17445 (4,1,5011,'Crossbows'),
17446 (4,1,3018,'Shoot'),
17447 (4,1,197,'Two-Handed Axes'),
17448 (4,1,1180,'Daggers'),
17449 (4,1,45927,'Summon Friend'),
17450 (4,1,6478,'Opening'),
17451 (4,1,6603,'Auto Attack'),
17452 (4,1,22027,'Remove Insignia'),
17453 (4,1,22810,'Opening - No Text'),
17454 (4,1,21651,'Opening'),
17455 (4,1,21652,'Closing'),
17456 (4,1,2382,'Generic'),
17457 (4,1,3365,'Opening'),
17458 (4,1,3050,'Detect'),
17459 (4,1,9125,'Generic'),
17460 (4,1,8386,'Attacking'),
17461 (4,1,7266,'Duel'),
17462 (4,1,7267,'Grovel'),
17463 (4,1,7355,'Stuck'),
17464 (4,1,6233,'Closing'),
17465 (4,1,6246,'Closing'),
17466 (4,1,6247,'Opening'),
17467 (4,1,6477,'Opening'),
17468 (4,1,61437,'Opening'),
17469 (4,1,68398,'Opening'),
17470 (4,1,96220,'Opening'),
17471 (4,1,203,'Unarmed'),
17472 (4,1,76252,'Languages'),
17473 (4,1,20583,'Nature Resistance'),
17474 (4,1,20582,'Quickness'),
17475 (4,1,20585,'Wisp Spirit'),
17476 (4,1,21009,'Elusiveness'),
17477 (4,1,58984,'Shadowmeld'),
17478 (4,1,671,'Language Darnassian'),
17479 (4,1,49410,'Forceful Deflection'),
17480 (4,1,199,'Two-Handed Maces'),
17481 (4,1,15590,'Fist Weapons'),
17482 (4,1,76268,'Armor Skills'),
17483 (4,1,76290,'Weapon Skills'),
17484 (4,1,88163,'Attack'),
17485 (4,1,200,'Polearms'),
17486 (4,1,668,'Language Common'),
17487 (4,1,227,'Staves'),
17488 (4,1,9116,'Shield'),
17489 (4,1,8737,'Mail'),
17490 (4,1,9077,'Leather'),
17491 (4,1,264,'Bows'),
17492 (4,1,266,'Guns'),
17493 (4,1,107,'Block'),
17494 (4,1,81,'Dodge'),
17495 (4,1,32215,'Victorious State'),
17496 (4,1,5301,'Defensive State (DND)'),
17497 (4,1,204,'Defense'),
17498 (4,1,522,'SPELLDEFENSE (DND)'),
17499 (4,1,2764,'Throw'),
17500 (4,1,2567,'Thrown'),
17501 (4,1,9078,'Cloth'),
17502 (4,1,198,'One-Handed Maces'),
17503 (4,1,201,'One-Handed Swords'),
17504 (4,3,202,'Two-Handed Swords'),
17505 (4,3,196,'One-Handed Axes'),
17506 (4,3,3044,'Arcane Shot'),
17507 (4,3,75,'Auto Shot'),
17508 (4,3,82928,'Aimed Shot!'),
17509 (4,3,5011,'Crossbows'),
17510 (4,3,197,'Two-Handed Axes'),
17511 (4,3,1180,'Daggers'),
17512 (4,3,45927,'Summon Friend'),
17513 (4,3,6478,'Opening'),
17514 (4,3,6603,'Auto Attack'),
17515 (4,3,22027,'Remove Insignia'),
17516 (4,3,22810,'Opening - No Text'),
17517 (4,3,21651,'Opening'),
17518 (4,3,21652,'Closing'),
17519 (4,3,34082,'Hunter Passive Auras (DND)'),
17520 (4,3,2382,'Generic'),
17521 (4,3,3365,'Opening'),
17522 (4,3,3050,'Detect'),
17523 (4,3,9125,'Generic'),
17524 (4,3,8386,'Attacking'),
17525 (4,3,7266,'Duel'),
17526 (4,3,7267,'Grovel'),
17527 (4,3,7355,'Stuck'),
17528 (4,3,6233,'Closing'),
17529 (4,3,6246,'Closing'),
17530 (4,3,6247,'Opening'),
17531 (4,3,6477,'Opening'),
17532 (4,3,61437,'Opening'),
17533 (4,3,68398,'Opening'),
17534 (4,3,96220,'Opening'),
17535 (4,3,203,'Unarmed'),
17536 (4,3,883,'Call Pet 1'),
17537 (4,3,982,'Revive Pet'),
17538 (4,3,76252,'Languages'),
17539 (4,3,20583,'Nature Resistance'),
17540 (4,3,20582,'Quickness'),
17541 (4,3,20585,'Wisp Spirit'),
17542 (4,3,21009,'Elusiveness'),
17543 (4,3,58984,'Shadowmeld'),
17544 (4,3,671,'Language Darnassian'),
17545 (4,3,15590,'Fist Weapons'),
17546 (4,3,200,'Polearms'),
17547 (4,3,668,'Language Common'),
17548 (4,3,227,'Staves'),
17549 (4,3,9077,'Leather'),
17550 (4,3,264,'Bows'),
17551 (4,3,266,'Guns'),
17552 (4,3,13358,'Defensive State (DND)'),
17553 (4,3,81,'Dodge'),
17554 (4,3,204,'Defense'),
17555 (4,3,522,'SPELLDEFENSE (DND)'),
17556 (4,3,24949,'Defensive State 2 (DND)'),
17557 (4,3,9078,'Cloth'),
17558 (4,3,77442,'Focus'),
17559 (4,3,76249,'Weapon Skills'),
17560 (4,3,76250,'Armor Skills'),
17561 (4,3,87324,'Focused Aim'),
17562 (4,3,87816,'General Hunter Passives'),
17563 (4,3,201,'One-Handed Swords'),
17564 (4,4,196,'One-Handed Axes'),
17565 (4,4,1752,'Sinister Strike'),
17566 (4,4,5011,'Crossbows'),
17567 (4,4,3018,'Shoot'),
17568 (4,4,674,'Dual Wield'),
17569 (4,4,1180,'Daggers'),
17570 (4,4,45927,'Summon Friend'),
17571 (4,4,6478,'Opening'),
17572 (4,4,6603,'Auto Attack'),
17573 (4,4,22027,'Remove Insignia'),
17574 (4,4,22810,'Opening - No Text'),
17575 (4,4,21651,'Opening'),
17576 (4,4,21652,'Closing'),
17577 (4,4,2382,'Generic'),
17578 (4,4,3365,'Opening'),
17579 (4,4,3050,'Detect'),
17580 (4,4,9125,'Generic'),
17581 (4,4,8386,'Attacking'),
17582 (4,4,7266,'Duel'),
17583 (4,4,7267,'Grovel'),
17584 (4,4,7355,'Stuck'),
17585 (4,4,6233,'Closing'),
17586 (4,4,6246,'Closing'),
17587 (4,4,6247,'Opening'),
17588 (4,4,6477,'Opening'),
17589 (4,4,61437,'Opening'),
17590 (4,4,68398,'Opening'),
17591 (4,4,96220,'Opening'),
17592 (4,4,203,'Unarmed'),
17593 (4,4,20583,'Nature Resistance'),
17594 (4,4,20582,'Quickness'),
17595 (4,4,20585,'Elusiveness'),
17596 (4,4,21009,'Wisp Spirit'),
17597 (4,4,58984,'Shadowmeld'),
17598 (4,4,76252,'Languages'),
17599 (4,4,671,'Language Darnassian'),
17600 (4,4,15590,'Fist Weapons'),
17601 (4,4,76273,'Armor Skills'),
17602 (4,4,76297,'Weapon Skills'),
17603 (4,4,668,'Language Common'),
17604 (4,4,9077,'Leather'),
17605 (4,4,264,'Bows'),
17606 (4,4,266,'Guns'),
17607 (4,4,81,'Dodge'),
17608 (4,4,204,'Defense'),
17609 (4,4,522,'SPELLDEFENSE (DND)'),
17610 (4,4,16092,'Defensive State (DND)'),
17611 (4,4,2764,'Throw'),
17612 (4,4,2567,'Thrown'),
17613 (4,4,9078,'Cloth'),
17614 (4,4,198,'One-Handed Maces'),
17615 (4,4,201,'One-Handed Swords'),
17616 (4,5,5009,'Wands'),
17617 (4,5,5019,'Shoot'),
17618 (4,5,1180,'Daggers'),
17619 (4,5,45927,'Summon Friend'),
17620 (4,5,6478,'Opening'),
17621 (4,5,6603,'Auto Attack'),
17622 (4,5,22027,'Remove Insignia'),
17623 (4,5,22810,'Opening - No Text'),
17624 (4,5,21651,'Opening'),
17625 (4,5,21652,'Closing'),
17626 (4,5,2382,'Generic'),
17627 (4,5,3365,'Opening'),
17628 (4,5,3050,'Detect'),
17629 (4,5,9125,'Generic'),
17630 (4,5,8386,'Attacking'),
17631 (4,5,7266,'Duel'),
17632 (4,5,7267,'Grovel'),
17633 (4,5,7355,'Stuck'),
17634 (4,5,6233,'Closing'),
17635 (4,5,6246,'Closing'),
17636 (4,5,6247,'Opening'),
17637 (4,5,6477,'Opening'),
17638 (4,5,61437,'Opening'),
17639 (4,5,68398,'Opening'),
17640 (4,5,96220,'Opening'),
17641 (4,5,203,'Unarmed'),
17642 (4,5,585,'Smite'),
17643 (4,5,84733,'Holy Focus'),
17644 (4,5,88685,'Holy Word: Sanctuary'),
17645 (4,5,88684,'Holy Word: Serenity'),
17646 (4,5,101062,'Flash Heal'),
17647 (4,5,20583,'Nature Resistance'),
17648 (4,5,20582,'Quickness'),
17649 (4,5,20585,'Wisp Spirit'),
17650 (4,5,21009,'Elusiveness'),
17651 (4,5,58984,'Shadowmeld'),
17652 (4,5,76252,'Languages'),
17653 (4,5,671,'Language Darnassian'),
17654 (4,5,76301,'Weapon Skills'),
17655 (4,5,76279,'Armor Skills'),
17656 (4,5,84734,'Dark Thoughts'),
17657 (4,5,668,'Language Common'),
17658 (4,5,227,'Staves'),
17659 (4,5,77486,'Shadow Orb Power'),
17660 (4,5,81,'Dodge'),
17661 (4,5,204,'Defense'),
17662 (4,5,522,'SPELLDEFENSE (DND)'),
17663 (4,5,9078,'Cloth'),
17664 (4,5,198,'One-Handed Maces'),
17665 (4,8,71761,'Deep Freeze Immunity State'),
17666 (4,8,5009,'Wands'),
17667 (4,8,5019,'Shoot'),
17668 (4,8,1180,'Daggers'),
17669 (4,8,45927,'Summon Friend'),
17670 (4,8,6478,'Opening'),
17671 (4,8,6603,'Auto Attack'),
17672 (4,8,22027,'Remove Insignia'),
17673 (4,8,22810,'Opening - No Text'),
17674 (4,8,21651,'Opening'),
17675 (4,8,21652,'Closing'),
17676 (4,8,2382,'Generic'),
17677 (4,8,3365,'Opening'),
17678 (4,8,3050,'Detect'),
17679 (4,8,9125,'Generic'),
17680 (4,8,8386,'Attacking'),
17681 (4,8,7266,'Duel'),
17682 (4,8,7267,'Grovel'),
17683 (4,8,7355,'Stuck'),
17684 (4,8,6233,'Closing'),
17685 (4,8,6246,'Closing'),
17686 (4,8,6247,'Opening'),
17687 (4,8,6477,'Opening'),
17688 (4,8,61437,'Opening'),
17689 (4,8,68398,'Opening'),
17690 (4,8,96220,'Opening'),
17691 (4,8,79684,'Offensive State (DND)'),
17692 (4,8,203,'Unarmed'),
17693 (4,8,20583,'Nature Resistance'),
17694 (4,8,20582,'Quickness'),
17695 (4,8,20585,'Wisp Spirit'),
17696 (4,8,21009,'Mace Specialization'),
17697 (4,8,58984,'Shadowmeld'),
17698 (4,8,76252,'Languages'),
17699 (4,8,671,'Language Darnassian'),
17700 (4,8,133,'Fireball'),
17701 (4,8,92315,'Pyroblast!'),
17702 (4,8,85801,'DPS Caster Crit Damage Bonus'),
17703 (4,8,76298,'Weapon Skills'),
17704 (4,8,76276,'Armor Skills'),
17705 (4,8,668,'Language Common'),
17706 (4,8,227,'Staves'),
17707 (4,8,81,'Dodge'),
17708 (4,8,204,'Defense'),
17709 (4,8,522,'SPELLDEFENSE (DND)'),
17710 (4,8,9078,'Cloth'),
17711 (4,8,201,'One-Handed Swords'),
17712 (4,11,1180,'Daggers'),
17713 (4,11,45927,'Summon Friend'),
17714 (4,11,6478,'Opening'),
17715 (4,11,6603,'Auto Attack'),
17716 (4,11,22027,'Remove Insignia'),
17717 (4,11,22810,'Opening - No Text'),
17718 (4,11,21651,'Opening'),
17719 (4,11,21652,'Closing'),
17720 (4,11,2382,'Generic'),
17721 (4,11,3365,'Opening'),
17722 (4,11,3050,'Detect'),
17723 (4,11,9125,'Generic'),
17724 (4,11,8386,'Attacking'),
17725 (4,11,7266,'Duel'),
17726 (4,11,7267,'Grovel'),
17727 (4,11,7355,'Stuck'),
17728 (4,11,6233,'Closing'),
17729 (4,11,6246,'Closing'),
17730 (4,11,6247,'Opening'),
17731 (4,11,6477,'Opening'),
17732 (4,11,61437,'Opening'),
17733 (4,11,68398,'Opening'),
17734 (4,11,96220,'Opening'),
17735 (4,11,203,'Unarmed'),
17736 (4,11,20583,'Nature Resistance'),
17737 (4,11,20582,'Quickness'),
17738 (4,11,20585,'Wisp Spirit'),
17739 (4,11,21009,'Mace Specialization'),
17740 (4,11,58984,'Shadowmeld'),
17741 (4,11,76252,'Languages'),
17742 (4,11,671,'Language Darnassian'),
17743 (4,11,84736,'Nature\'s Focus'),
17744 (4,11,81170,'Ravage!'),
17745 (4,11,79577,'Eclipse Mastery Driver Passive'),
17746 (4,11,76300,'Weapon Skills'),
17747 (4,11,76275,'Armor Skills'),
17748 (4,11,5176,'Wrath'),
17749 (4,11,199,'Two-Handed Maces'),
17750 (4,11,15590,'Fist Weapons'),
17751 (4,11,84738,'Celestial Focus'),
17752 (4,11,668,'Language Common'),
17753 (4,11,200,'Polearms'),
17754 (4,11,227,'Staves'),
17755 (4,11,81,'Dodge'),
17756 (4,11,204,'Defense'),
17757 (4,11,522,'SPELLDEFENSE (DND)'),
17758 (4,11,9077,'Leather'),
17759 (4,11,9078,'Cloth'),
17760 (4,11,198,'One-Handed Maces'),
17761 (4,6,6478,'Opening'),
17762 (4,6,6603,'Auto Attack'),
17763 (4,6,45927,'Summon Friend'),
17764 (4,6,22027,'Remove Insignia'),
17765 (4,6,22810,'Opening - No Text'),
17766 (4,6,21651,'Opening'),
17767 (4,6,21652,'Closing'),
17768 (4,6,2382,'Generic'),
17769 (4,6,3365,'Opening'),
17770 (4,6,3050,'Detect'),
17771 (4,6,9125,'Generic'),
17772 (4,6,8386,'Attacking'),
17773 (4,6,7266,'Duel'),
17774 (4,6,7267,'Grovel'),
17775 (4,6,7355,'Stuck'),
17776 (4,6,6233,'Closing'),
17777 (4,6,6246,'Closing'),
17778 (4,6,6247,'Opening'),
17779 (4,6,6477,'Opening'),
17780 (4,6,52665,'Relic'),
17781 (4,6,61437,'Opening'),
17782 (4,6,68398,'Opening'),
17783 (4,6,63645,'Activating Primary Spec'),
17784 (4,6,63644,'Activating Secondary Spec'),
17785 (4,6,96220,'Opening'),
17786 (4,6,76252,'Languages'),
17787 (4,6,20583,'Nature Resistance'),
17788 (4,6,20582,'Quickness'),
17789 (4,6,20585,'Wisp Spirit'),
17790 (4,6,21009,'Elusiveness'),
17791 (4,6,58984,'Shadowmeld'),
17792 (4,6,203,'Unarmed'),
17793 (4,6,671,'Language Darnassian'),
17794 (4,6,674,'Dual Wield'),
17795 (4,6,197,'Two-Handed Axes'),
17796 (4,6,45902,'Blood Strike'),
17797 (4,6,49410,'Forceful Deflection'),
17798 (4,6,82246,'Parry'),
17799 (4,6,89832,'Death Strike Enabler'),
17800 (4,6,45477,'Icy Touch'),
17801 (4,6,48266,'Frost Presence'),
17802 (4,6,61455,'Runic Focus'),
17803 (4,6,59921,'Frost Fever'),
17804 (4,6,202,'Two-Handed Swords'),
17805 (4,6,196,'One-Handed Axes'),
17806 (4,6,33391,'Journeyman Riding'),
17807 (4,6,89964,'Clear Glyph'),
17808 (4,6,76282,'Armor Skills'),
17809 (4,6,76292,'Weapon Skills'),
17810 (4,6,750,'Plate Mail'),
17811 (4,6,199,'Two-Handed Maces'),
17812 (4,6,200,'Polearms'),
17813 (4,6,668,'Language Common'),
17814 (4,6,8737,'Mail'),
17815 (4,6,9077,'Leather'),
17816 (4,6,45462,'Plague Strike'),
17817 (4,6,47541,'Death Coil'),
17818 (4,6,49576,'Death Grip'),
17819 (4,6,59879,'Blood Plague'),
17820 (4,6,45903,'Offensive State (DND)'),
17821 (4,6,81,'Dodge'),
17822 (4,6,204,'Defense'),
17823 (4,6,522,'SPELLDEFENSE (DND)'),
17824 (4,6,198,'One-Handed Maces'),
17825 (4,6,201,'One-Handed Swords'),
17826 (4,6,9078,'Cloth'),
17827 (4,6,10846,'First Aid'),
17828 (4,6,3275,'Linen Bandage'),
17829 (4,6,18630,'Heavy Runecloth Bandage'),
17830 (4,6,3276,'Heavy Linen Bandage'),
17831 (4,6,3277,'Wool Bandage'),
17832 (4,6,3278,'Heavy Wool Bandage'),
17833 (4,6,7928,'Silk Bandage'),
17834 (4,6,7929,'Heavy Silk Bandage'),
17835 (4,6,10840,'Mageweave Bandage'),
17836 (4,6,10841,'Heavy Mageweave Bandage'),
17837 (4,6,18629,'Runecloth Bandage'),
17838 (4,6,7934,'Anti-Venom'),
17839 (5,1,202,'Two-Handed Swords'),
17840 (5,1,196,'One-Handed Axes'),
17841 (5,1,2457,'Battle Stance'),
17842 (5,1,88161,'Strike'),
17843 (5,1,5011,'Crossbows'),
17844 (5,1,3018,'Shoot'),
17845 (5,1,669,'Language Orcish'),
17846 (5,1,197,'Two-Handed Axes'),
17847 (5,1,1180,'Daggers'),
17848 (5,1,45927,'Summon Friend'),
17849 (5,1,6478,'Opening'),
17850 (5,1,6603,'Auto Attack'),
17851 (5,1,22027,'Remove Insignia'),
17852 (5,1,22810,'Opening - No Text'),
17853 (5,1,21651,'Opening'),
17854 (5,1,21652,'Closing'),
17855 (5,1,2382,'Generic'),
17856 (5,1,3365,'Opening'),
17857 (5,1,3050,'Detect'),
17858 (5,1,9125,'Generic'),
17859 (5,1,8386,'Attacking'),
17860 (5,1,7266,'Duel'),
17861 (5,1,7267,'Grovel'),
17862 (5,1,7355,'Stuck'),
17863 (5,1,6233,'Closing'),
17864 (5,1,6246,'Closing'),
17865 (5,1,6247,'Opening'),
17866 (5,1,6477,'Opening'),
17867 (5,1,61437,'Opening'),
17868 (5,1,68398,'Opening'),
17869 (5,1,96220,'Opening'),
17870 (5,1,203,'Unarmed'),
17871 (5,1,49410,'Forceful Deflection'),
17872 (5,1,17737,'Language Gutterspeak'),
17873 (5,1,5227,'Underwater Breathing'),
17874 (5,1,7744,'Will of the Forsaken'),
17875 (5,1,20577,'Cannibalize'),
17876 (5,1,20579,'Shadow Resistance'),
17877 (5,1,79747,'Languages'),
17878 (5,1,199,'Two-Handed Maces'),
17879 (5,1,15590,'Fist Weapons'),
17880 (5,1,76268,'Armor Skills'),
17881 (5,1,76290,'Weapon Skills'),
17882 (5,1,88163,'Attack'),
17883 (5,1,200,'Polearms'),
17884 (5,1,227,'Staves'),
17885 (5,1,9116,'Shield'),
17886 (5,1,8737,'Mail'),
17887 (5,1,9077,'Leather'),
17888 (5,1,264,'Bows'),
17889 (5,1,266,'Guns'),
17890 (5,1,107,'Block'),
17891 (5,1,81,'Dodge'),
17892 (5,1,32215,'Victorious State'),
17893 (5,1,5301,'Defensive State (DND)'),
17894 (5,1,204,'Defense'),
17895 (5,1,522,'SPELLDEFENSE (DND)'),
17896 (5,1,2764,'Throw'),
17897 (5,1,2567,'Thrown'),
17898 (5,1,9078,'Cloth'),
17899 (5,1,198,'One-Handed Maces'),
17900 (5,1,201,'One-Handed Swords'),
17901 (5,3,202,'Two-Handed Swords'),
17902 (5,3,196,'One-Handed Axes'),
17903 (5,3,3044,'Arcane Shot'),
17904 (5,3,75,'Auto Shot'),
17905 (5,3,82928,'Aimed Shot!'),
17906 (5,3,5011,'Crossbows'),
17907 (5,3,669,'Language Orcish'),
17908 (5,3,197,'Two-Handed Axes'),
17909 (5,3,1180,'Daggers'),
17910 (5,3,45927,'Summon Friend'),
17911 (5,3,6478,'Opening'),
17912 (5,3,6603,'Auto Attack'),
17913 (5,3,22027,'Remove Insignia'),
17914 (5,3,22810,'Opening - No Text'),
17915 (5,3,21651,'Opening'),
17916 (5,3,21652,'Closing'),
17917 (5,3,34082,'Hunter Passive Auras (DND)'),
17918 (5,3,2382,'Generic'),
17919 (5,3,3365,'Opening'),
17920 (5,3,3050,'Detect'),
17921 (5,3,9125,'Generic'),
17922 (5,3,8386,'Attacking'),
17923 (5,3,7266,'Duel'),
17924 (5,3,7267,'Grovel'),
17925 (5,3,7355,'Stuck'),
17926 (5,3,6233,'Closing'),
17927 (5,3,6246,'Closing'),
17928 (5,3,6247,'Opening'),
17929 (5,3,6477,'Opening'),
17930 (5,3,61437,'Opening'),
17931 (5,3,68398,'Opening'),
17932 (5,3,96220,'Opening'),
17933 (5,3,203,'Unarmed'),
17934 (5,3,883,'Call Pet 1'),
17935 (5,3,982,'Revive Pet'),
17936 (5,3,17737,'Language Gutterspeak'),
17937 (5,3,5227,'Underwater Breathing'),
17938 (5,3,7744,'Will of the Forsaken'),
17939 (5,3,20577,'Cannibalize'),
17940 (5,3,20579,'Shadow Resistance'),
17941 (5,3,79747,'Languages'),
17942 (5,3,15590,'Fist Weapons'),
17943 (5,3,200,'Polearms'),
17944 (5,3,227,'Staves'),
17945 (5,3,9077,'Leather'),
17946 (5,3,264,'Bows'),
17947 (5,3,266,'Guns'),
17948 (5,3,13358,'Defensive State (DND)'),
17949 (5,3,81,'Dodge'),
17950 (5,3,204,'Defense'),
17951 (5,3,522,'SPELLDEFENSE (DND)'),
17952 (5,3,24949,'Defensive State 2 (DND)'),
17953 (5,3,9078,'Cloth'),
17954 (5,3,77442,'Focus'),
17955 (5,3,76249,'Weapon Skills'),
17956 (5,3,76250,'Armor Skills'),
17957 (5,3,87324,'Focused Aim'),
17958 (5,3,87816,'General Hunter Passives'),
17959 (5,3,201,'One-Handed Swords'),
17960 (5,4,196,'One-Handed Axes'),
17961 (5,4,1752,'Sinister Strike'),
17962 (5,4,5011,'Crossbows'),
17963 (5,4,3018,'Shoot'),
17964 (5,4,669,'Language Orcish'),
17965 (5,4,674,'Dual Wield'),
17966 (5,4,1180,'Daggers'),
17967 (5,4,45927,'Summon Friend'),
17968 (5,4,6478,'Opening'),
17969 (5,4,6603,'Auto Attack'),
17970 (5,4,22027,'Remove Insignia'),
17971 (5,4,22810,'Opening - No Text'),
17972 (5,4,21651,'Opening'),
17973 (5,4,21652,'Closing'),
17974 (5,4,2382,'Generic'),
17975 (5,4,3365,'Opening'),
17976 (5,4,3050,'Detect'),
17977 (5,4,9125,'Generic'),
17978 (5,4,8386,'Attacking'),
17979 (5,4,7266,'Duel'),
17980 (5,4,7267,'Grovel'),
17981 (5,4,7355,'Stuck'),
17982 (5,4,6233,'Closing'),
17983 (5,4,6246,'Closing'),
17984 (5,4,6247,'Opening'),
17985 (5,4,6477,'Opening'),
17986 (5,4,61437,'Opening'),
17987 (5,4,68398,'Opening'),
17988 (5,4,96220,'Opening'),
17989 (5,4,203,'Unarmed'),
17990 (5,4,17737,'Language Gutterspeak'),
17991 (5,4,5227,'Underwater Breathing'),
17992 (5,4,7744,'Will of the Forsaken'),
17993 (5,4,20577,'Cannibalize'),
17994 (5,4,20579,'Shadow Resistance'),
17995 (5,4,79747,'Languages'),
17996 (5,4,15590,'Fist Weapons'),
17997 (5,4,76273,'Armor Skills'),
17998 (5,4,76297,'Weapon Skills'),
17999 (5,4,9077,'Leather'),
18000 (5,4,264,'Bows'),
18001 (5,4,266,'Guns'),
18002 (5,4,81,'Dodge'),
18003 (5,4,204,'Defense'),
18004 (5,4,522,'SPELLDEFENSE (DND)'),
18005 (5,4,16092,'Defensive State (DND)'),
18006 (5,4,2764,'Throw'),
18007 (5,4,2567,'Thrown'),
18008 (5,4,9078,'Cloth'),
18009 (5,4,198,'One-Handed Maces'),
18010 (5,4,201,'One-Handed Swords'),
18011 (5,5,5009,'Wands'),
18012 (5,5,5019,'Shoot'),
18013 (5,5,669,'Language Orcish'),
18014 (5,5,1180,'Daggers'),
18015 (5,5,45927,'Summon Friend'),
18016 (5,5,6478,'Opening'),
18017 (5,5,6603,'Auto Attack'),
18018 (5,5,22027,'Remove Insignia'),
18019 (5,5,22810,'Opening - No Text'),
18020 (5,5,21651,'Opening'),
18021 (5,5,21652,'Closing'),
18022 (5,5,2382,'Generic'),
18023 (5,5,3365,'Opening'),
18024 (5,5,3050,'Detect'),
18025 (5,5,9125,'Generic'),
18026 (5,5,8386,'Attacking'),
18027 (5,5,7266,'Duel'),
18028 (5,5,7267,'Grovel'),
18029 (5,5,7355,'Stuck'),
18030 (5,5,6233,'Closing'),
18031 (5,5,6246,'Closing'),
18032 (5,5,6247,'Opening'),
18033 (5,5,6477,'Opening'),
18034 (5,5,61437,'Opening'),
18035 (5,5,68398,'Opening'),
18036 (5,5,96220,'Opening'),
18037 (5,5,203,'Unarmed'),
18038 (5,5,585,'Smite'),
18039 (5,5,84733,'Holy Focus'),
18040 (5,5,88685,'Holy Word: Sanctuary'),
18041 (5,5,88684,'Holy Word: Serenity'),
18042 (5,5,101062,'Flash Heal'),
18043 (5,5,17737,'Language Gutterspeak'),
18044 (5,5,5227,'Underwater Breathing'),
18045 (5,5,7744,'Will of the Forsaken'),
18046 (5,5,20577,'Cannibalize'),
18047 (5,5,20579,'Shadow Resistance'),
18048 (5,5,79747,'Languages'),
18049 (5,5,76301,'Weapon Skills'),
18050 (5,5,76279,'Armor Skills'),
18051 (5,5,84734,'Dark Thoughts'),
18052 (5,5,227,'Staves'),
18053 (5,5,77486,'Shadow Orb Power'),
18054 (5,5,81,'Dodge'),
18055 (5,5,204,'Defense'),
18056 (5,5,522,'SPELLDEFENSE (DND)'),
18057 (5,5,9078,'Cloth'),
18058 (5,5,198,'One-Handed Maces'),
18059 (5,8,71761,'Deep Freeze Immunity State'),
18060 (5,8,5009,'Wands'),
18061 (5,8,5019,'Shoot'),
18062 (5,8,669,'Language Orcish'),
18063 (5,8,1180,'Daggers'),
18064 (5,8,45927,'Summon Friend'),
18065 (5,8,6478,'Opening'),
18066 (5,8,6603,'Auto Attack'),
18067 (5,8,22027,'Remove Insignia'),
18068 (5,8,22810,'Opening - No Text'),
18069 (5,8,21651,'Opening'),
18070 (5,8,21652,'Closing'),
18071 (5,8,2382,'Generic'),
18072 (5,8,3365,'Opening'),
18073 (5,8,3050,'Detect'),
18074 (5,8,9125,'Generic'),
18075 (5,8,8386,'Attacking'),
18076 (5,8,7266,'Duel'),
18077 (5,8,7267,'Grovel'),
18078 (5,8,7355,'Stuck'),
18079 (5,8,6233,'Closing'),
18080 (5,8,6246,'Closing'),
18081 (5,8,6247,'Opening'),
18082 (5,8,6477,'Opening'),
18083 (5,8,61437,'Opening'),
18084 (5,8,68398,'Opening'),
18085 (5,8,96220,'Opening'),
18086 (5,8,79684,'Offensive State (DND)'),
18087 (5,8,203,'Unarmed'),
18088 (5,8,17737,'Language Gutterspeak'),
18089 (5,8,5227,'Underwater Breathing'),
18090 (5,8,7744,'Will of the Forsaken'),
18091 (5,8,20577,'Cannibalize'),
18092 (5,8,20579,'Shadow Resistance'),
18093 (5,8,79747,'Languages'),
18094 (5,8,133,'Fireball'),
18095 (5,8,92315,'Pyroblast!'),
18096 (5,8,85801,'DPS Caster Crit Damage Bonus'),
18097 (5,8,76298,'Weapon Skills'),
18098 (5,8,76276,'Armor Skills'),
18099 (5,8,227,'Staves'),
18100 (5,8,81,'Dodge'),
18101 (5,8,204,'Defense'),
18102 (5,8,522,'SPELLDEFENSE (DND)'),
18103 (5,8,9078,'Cloth'),
18104 (5,8,201,'One-Handed Swords'),
18105 (5,9,5009,'Wands'),
18106 (5,9,5019,'Shoot'),
18107 (5,9,669,'Language Common'),
18108 (5,9,1180,'Daggers'),
18109 (5,9,45927,'Summon Friend'),
18110 (5,9,6478,'Opening'),
18111 (5,9,6603,'Auto Attack'),
18112 (5,9,22027,'Remove Insignia'),
18113 (5,9,22810,'Opening - No Text'),
18114 (5,9,21651,'Opening'),
18115 (5,9,21652,'Closing'),
18116 (5,9,2382,'Generic'),
18117 (5,9,3365,'Opening'),
18118 (5,9,3050,'Detect'),
18119 (5,9,9125,'Generic'),
18120 (5,9,8386,'Attacking'),
18121 (5,9,7266,'Duel'),
18122 (5,9,7267,'Grovel'),
18123 (5,9,7355,'Stuck'),
18124 (5,9,6233,'Closing'),
18125 (5,9,6246,'Closing'),
18126 (5,9,6247,'Opening'),
18127 (5,9,6477,'Opening'),
18128 (5,9,61437,'Opening'),
18129 (5,9,68398,'Opening'),
18130 (5,9,96220,'Opening'),
18131 (5,9,203,'Unarmed'),
18132 (5,9,17747,'Language Gutterspeak'),
18133 (5,9,5227,'Underwater Breathing'),
18134 (5,9,7744,'Will of the Forsaken'),
18135 (5,9,20577,'Cannibalize'),
18136 (5,9,20579,'Shadow Resistance'),
18137 (5,9,79747,'Languages'),
18138 (5,9,688,'Summon Imp'),
18139 (5,9,86213,'Soul Swap Exhale'),
18140 (5,9,89420,'Drain Life'),
18141 (5,9,85801,'DPS Caster Crit Damage Bonus'),
18142 (5,9,76299,'Weapon Skills'),
18143 (5,9,76277,'Armor Skills'),
18144 (5,9,87330,'Suppression'),
18145 (5,9,227,'Staves'),
18146 (5,9,75445,'Demonic Immolate'),
18147 (5,9,686,'Shadow Bolt'),
18148 (5,9,58284,'Chaos Bolt Passive'),
18149 (5,9,81,'Dodge'),
18150 (5,9,204,'Defense'),
18151 (5,9,522,'SPELLDEFENSE (DND)'),
18152 (5,9,9078,'Cloth'),
18153 (5,9,201,'One-Handed Swords'),
18154 (5,6,6478,'Opening'),
18155 (5,6,6603,'Auto Attack'),
18156 (5,6,45927,'Summon Friend'),
18157 (5,6,22027,'Remove Insignia'),
18158 (5,6,22810,'Opening - No Text'),
18159 (5,6,21651,'Opening'),
18160 (5,6,21652,'Closing'),
18161 (5,6,2382,'Generic'),
18162 (5,6,3365,'Opening'),
18163 (5,6,3050,'Detect'),
18164 (5,6,9125,'Generic'),
18165 (5,6,8386,'Attacking'),
18166 (5,6,7266,'Duel'),
18167 (5,6,7267,'Grovel'),
18168 (5,6,7355,'Stuck'),
18169 (5,6,6233,'Closing'),
18170 (5,6,6246,'Closing'),
18171 (5,6,6247,'Opening'),
18172 (5,6,6477,'Opening'),
18173 (5,6,52665,'Relic'),
18174 (5,6,61437,'Opening'),
18175 (5,6,68398,'Opening'),
18176 (5,6,63645,'Activating Primary Spec'),
18177 (5,6,63644,'Activating Secondary Spec'),
18178 (5,6,96220,'Opening'),
18179 (5,6,203,'Unarmed'),
18180 (5,6,674,'Dual Wield'),
18181 (5,6,669,'Language Orcish'),
18182 (5,6,197,'Two-Handed Axes'),
18183 (5,6,45902,'Blood Strike'),
18184 (5,6,49410,'Forceful Deflection'),
18185 (5,6,82246,'Parry'),
18186 (5,6,89832,'Death Strike Enabler'),
18187 (5,6,45477,'Icy Touch'),
18188 (5,6,48266,'Frost Presence'),
18189 (5,6,61455,'Runic Focus'),
18190 (5,6,59921,'Frost Fever'),
18191 (5,6,202,'Two-Handed Swords'),
18192 (5,6,196,'One-Handed Axes'),
18193 (5,6,33391,'Journeyman Riding'),
18194 (5,6,89964,'Clear Glyph'),
18195 (5,6,76282,'Armor Skills'),
18196 (5,6,76292,'Weapon Skills'),
18197 (5,6,17737,'Language Gutterspeak'),
18198 (5,6,5227,'Underwater Breathing'),
18199 (5,6,7744,'Will of the Forsaken'),
18200 (5,6,20577,'Cannibalize'),
18201 (5,6,20579,'Shadow Resistance'),
18202 (5,6,79747,'Languages'),
18203 (5,6,750,'Plate Mail'),
18204 (5,6,199,'Two-Handed Maces'),
18205 (5,6,200,'Polearms'),
18206 (5,6,8737,'Mail'),
18207 (5,6,9077,'Leather'),
18208 (5,6,45462,'Plague Strike'),
18209 (5,6,47541,'Death Coil'),
18210 (5,6,49576,'Death Grip'),
18211 (5,6,59879,'Blood Plague'),
18212 (5,6,45903,'Offensive State (DND)'),
18213 (5,6,81,'Dodge'),
18214 (5,6,204,'Defense'),
18215 (5,6,522,'SPELLDEFENSE (DND)'),
18216 (5,6,198,'One-Handed Maces'),
18217 (5,6,201,'One-Handed Swords'),
18218 (5,6,9078,'Cloth'),
18219 (5,6,10846,'First Aid'),
18220 (5,6,3275,'Linen Bandage'),
18221 (5,6,18630,'Heavy Runecloth Bandage'),
18222 (5,6,3276,'Heavy Linen Bandage'),
18223 (5,6,3277,'Wool Bandage'),
18224 (5,6,3278,'Heavy Wool Bandage'),
18225 (5,6,7928,'Silk Bandage'),
18226 (5,6,7929,'Heavy Silk Bandage'),
18227 (5,6,10840,'Mageweave Bandage'),
18228 (5,6,10841,'Heavy Mageweave Bandage'),
18229 (5,6,18629,'Runecloth Bandage'),
18230 (5,6,7934,'Anti-Venom'),
18231 (6,1,202,'Two-Handed Swords'),
18232 (6,1,196,'One-Handed Axes'),
18233 (6,1,2457,'Battle Stance'),
18234 (6,1,88161,'Strike'),
18235 (6,1,5011,'Crossbows'),
18236 (6,1,3018,'Shoot'),
18237 (6,1,669,'Language Orcish'),
18238 (6,1,197,'Two-Handed Axes'),
18239 (6,1,1180,'Daggers'),
18240 (6,1,45927,'Summon Friend'),
18241 (6,1,6478,'Opening'),
18242 (6,1,6603,'Auto Attack'),
18243 (6,1,22027,'Remove Insignia'),
18244 (6,1,22810,'Opening - No Text'),
18245 (6,1,21651,'Opening'),
18246 (6,1,21652,'Closing'),
18247 (6,1,2382,'Generic'),
18248 (6,1,3365,'Opening'),
18249 (6,1,3050,'Detect'),
18250 (6,1,9125,'Generic'),
18251 (6,1,8386,'Attacking'),
18252 (6,1,7266,'Duel'),
18253 (6,1,7267,'Grovel'),
18254 (6,1,7355,'Stuck'),
18255 (6,1,6233,'Closing'),
18256 (6,1,6246,'Closing'),
18257 (6,1,6247,'Opening'),
18258 (6,1,6477,'Opening'),
18259 (6,1,61437,'Opening'),
18260 (6,1,68398,'Opening'),
18261 (6,1,96220,'Opening'),
18262 (6,1,203,'Unarmed'),
18263 (6,1,670,'Language Taurahe'),
18264 (6,1,49410,'Forceful Deflection'),
18265 (6,1,20549,'War Stomp'),
18266 (6,1,20550,'Endurance'),
18267 (6,1,20551,'Nature Resistance'),
18268 (6,1,20552,'Cultivation'),
18269 (6,1,79746,'Languages'),
18270 (6,1,199,'Two-Handed Maces'),
18271 (6,1,15590,'Fist Weapons'),
18272 (6,1,76268,'Armor Skills'),
18273 (6,1,76290,'Weapon Skills'),
18274 (6,1,88163,'Attack'),
18275 (6,1,200,'Polearms'),
18276 (6,1,227,'Staves'),
18277 (6,1,9116,'Shield'),
18278 (6,1,8737,'Mail'),
18279 (6,1,9077,'Leather'),
18280 (6,1,264,'Bows'),
18281 (6,1,266,'Guns'),
18282 (6,1,107,'Block'),
18283 (6,1,81,'Dodge'),
18284 (6,1,32215,'Victorious State'),
18285 (6,1,5301,'Defensive State (DND)'),
18286 (6,1,204,'Defense'),
18287 (6,1,522,'SPELLDEFENSE (DND)'),
18288 (6,1,2764,'Throw'),
18289 (6,1,2567,'Thrown'),
18290 (6,1,9078,'Cloth'),
18291 (6,1,198,'One-Handed Maces'),
18292 (6,1,201,'One-Handed Swords'),
18293 (6,2,202,'Two-Handed Swords'),
18294 (6,2,196,'One-Handed Axes'),
18295 (6,2,669,'Language Orcish'),
18296 (6,2,197,'Two-Handed Axes'),
18297 (6,2,45927,'Summon Friend'),
18298 (6,2,6478,'Opening'),
18299 (6,2,6603,'Auto Attack'),
18300 (6,2,22027,'Remove Insignia'),
18301 (6,2,22810,'Opening - No Text'),
18302 (6,2,21651,'Opening'),
18303 (6,2,21652,'Closing'),
18304 (6,2,2382,'Generic'),
18305 (6,2,3365,'Opening'),
18306 (6,2,3050,'Detect'),
18307 (6,2,9125,'Generic'),
18308 (6,2,8386,'Attacking'),
18309 (6,2,7266,'Duel'),
18310 (6,2,7267,'Grovel'),
18311 (6,2,7355,'Stuck'),
18312 (6,2,6233,'Closing'),
18313 (6,2,6246,'Closing'),
18314 (6,2,6247,'Opening'),
18315 (6,2,6477,'Opening'),
18316 (6,2,27762,'Relic'),
18317 (6,2,61437,'Opening'),
18318 (6,2,68398,'Opening'),
18319 (6,2,96220,'Opening'),
18320 (6,2,49410,'Forceful Deflection'),
18321 (6,2,203,'Unarmed'),
18322 (6,2,20549,'War Stomp'),
18323 (6,2,20550,'Endurance'),
18324 (6,2,20551,'Nature Resistance'),
18325 (6,2,20552,'Cultivation'),
18326 (6,2,79746,'Languages'),
18327 (6,2,199,'Two-Handed Maces'),
18328 (6,2,76271,'Armor Skills'),
18329 (6,2,76294,'Weapon Skills'),
18330 (6,2,200,'Polearms'),
18331 (6,2,670,'Language Taurahe'),
18332 (6,2,35395,'Crusader Strike'),
18333 (6,2,60091,'Judgement Anti-Parry/Dodge Passive'),
18334 (6,2,9116,'Shield'),
18335 (6,2,8737,'Mail'),
18336 (6,2,9077,'Leather'),
18337 (6,2,107,'Block'),
18338 (6,2,81,'Dodge'),
18339 (6,2,204,'Defense'),
18340 (6,2,522,'SPELLDEFENSE (DND)'),
18341 (6,2,9078,'Cloth'),
18342 (6,2,20208,'Paladin pushback resistance'),
18343 (6,2,198,'One-Handed Maces'),
18344 (6,2,201,'One-Handed Swords'),
18345 (6,3,202,'Two-Handed Swords'),
18346 (6,3,196,'One-Handed Axes'),
18347 (6,3,3044,'Arcane Shot'),
18348 (6,3,75,'Auto Shot'),
18349 (6,3,82928,'Aimed Shot!'),
18350 (6,3,5011,'Crossbows'),
18351 (6,3,669,'Language Orcish'),
18352 (6,3,197,'Two-Handed Axes'),
18353 (6,3,1180,'Daggers'),
18354 (6,3,45927,'Summon Friend'),
18355 (6,3,6478,'Opening'),
18356 (6,3,6603,'Auto Attack'),
18357 (6,3,22027,'Remove Insignia'),
18358 (6,3,22810,'Opening - No Text'),
18359 (6,3,21651,'Opening'),
18360 (6,3,21652,'Closing'),
18361 (6,3,34082,'Hunter Passive Auras (DND)'),
18362 (6,3,2382,'Generic'),
18363 (6,3,3365,'Opening'),
18364 (6,3,3050,'Detect'),
18365 (6,3,9125,'Generic'),
18366 (6,3,8386,'Attacking'),
18367 (6,3,7266,'Duel'),
18368 (6,3,7267,'Grovel'),
18369 (6,3,7355,'Stuck'),
18370 (6,3,6233,'Closing'),
18371 (6,3,6246,'Closing'),
18372 (6,3,6247,'Opening'),
18373 (6,3,6477,'Opening'),
18374 (6,3,61437,'Opening'),
18375 (6,3,68398,'Opening'),
18376 (6,3,96220,'Opening'),
18377 (6,3,203,'Unarmed'),
18378 (6,3,883,'Call Pet 1'),
18379 (6,3,982,'Revive Pet'),
18380 (6,3,20549,'War Stomp'),
18381 (6,3,20550,'Endurance'),
18382 (6,3,20551,'Nature Resistance'),
18383 (6,3,20552,'Cultivation'),
18384 (6,3,79746,'Languages'),
18385 (6,3,15590,'Fist Weapons'),
18386 (6,3,200,'Polearms'),
18387 (6,3,227,'Staves'),
18388 (6,3,9077,'Leather'),
18389 (6,3,264,'Bows'),
18390 (6,3,266,'Guns'),
18391 (6,3,670,'Language Taurahe'),
18392 (6,3,13358,'Defensive State (DND)'),
18393 (6,3,81,'Dodge'),
18394 (6,3,204,'Defense'),
18395 (6,3,522,'SPELLDEFENSE (DND)'),
18396 (6,3,24949,'Defensive State 2 (DND)'),
18397 (6,3,9078,'Cloth'),
18398 (6,3,77442,'Focus'),
18399 (6,3,76249,'Weapon Skills'),
18400 (6,3,76250,'Armor Skills'),
18401 (6,3,87324,'Focused Aim'),
18402 (6,3,87816,'General Hunter Passives'),
18403 (6,3,201,'One-Handed Swords'),
18404 (6,5,5009,'Wands'),
18405 (6,5,5019,'Shoot'),
18406 (6,5,669,'Language Orcish'),
18407 (6,5,1180,'Daggers'),
18408 (6,5,45927,'Summon Friend'),
18409 (6,5,6478,'Opening'),
18410 (6,5,6603,'Auto Attack'),
18411 (6,5,22027,'Remove Insignia'),
18412 (6,5,22810,'Opening - No Text'),
18413 (6,5,21651,'Opening'),
18414 (6,5,21652,'Closing'),
18415 (6,5,2382,'Generic'),
18416 (6,5,3365,'Opening'),
18417 (6,5,3050,'Detect'),
18418 (6,5,9125,'Generic'),
18419 (6,5,8386,'Attacking'),
18420 (6,5,7266,'Duel'),
18421 (6,5,7267,'Grovel'),
18422 (6,5,7355,'Stuck'),
18423 (6,5,6233,'Closing'),
18424 (6,5,6246,'Closing'),
18425 (6,5,6247,'Opening'),
18426 (6,5,6477,'Opening'),
18427 (6,5,61437,'Opening'),
18428 (6,5,68398,'Opening'),
18429 (6,5,96220,'Opening'),
18430 (6,5,203,'Unarmed'),
18431 (6,5,585,'Smite'),
18432 (6,5,84733,'Holy Focus'),
18433 (6,5,88685,'Holy Word: Sanctuary'),
18434 (6,5,88684,'Holy Word: Serenity'),
18435 (6,5,101062,'Flash Heal'),
18436 (6,5,20549,'War Stomp'),
18437 (6,5,20550,'Endurance'),
18438 (6,5,20551,'Nature Resistance'),
18439 (6,5,20552,'Cultivation'),
18440 (6,5,79746,'Languages'),
18441 (6,5,670,'Language Taurahe'),
18442 (6,5,76301,'Weapon Skills'),
18443 (6,5,76279,'Armor Skills'),
18444 (6,5,84734,'Dark Thoughts'),
18445 (6,5,227,'Staves'),
18446 (6,5,77486,'Shadow Orb Power'),
18447 (6,5,81,'Dodge'),
18448 (6,5,204,'Defense'),
18449 (6,5,522,'SPELLDEFENSE (DND)'),
18450 (6,5,9078,'Cloth'),
18451 (6,5,198,'One-Handed Maces'),
18452 (6,8,71761,'Deep Freeze Immunity State'),
18453 (6,8,5009,'Wands'),
18454 (6,8,5019,'Shoot'),
18455 (6,8,669,'Language Orcish'),
18456 (6,8,1180,'Daggers'),
18457 (6,8,45927,'Summon Friend'),
18458 (6,8,6478,'Opening'),
18459 (6,8,6603,'Auto Attack'),
18460 (6,8,22027,'Remove Insignia'),
18461 (6,8,22810,'Opening - No Text'),
18462 (6,8,21651,'Opening'),
18463 (6,8,21652,'Closing'),
18464 (6,8,2382,'Generic'),
18465 (6,8,3365,'Opening'),
18466 (6,8,3050,'Detect'),
18467 (6,8,9125,'Generic'),
18468 (6,8,8386,'Attacking'),
18469 (6,8,7266,'Duel'),
18470 (6,8,7267,'Grovel'),
18471 (6,8,7355,'Stuck'),
18472 (6,8,6233,'Closing'),
18473 (6,8,6246,'Closing'),
18474 (6,8,6247,'Opening'),
18475 (6,8,6477,'Opening'),
18476 (6,8,61437,'Opening'),
18477 (6,8,68398,'Opening'),
18478 (6,8,96220,'Opening'),
18479 (6,8,79684,'Offensive State (DND)'),
18480 (6,8,203,'Unarmed'),
18481 (6,8,670,'Language Taurahe'),
18482 (6,8,20549,'War Stomp'),
18483 (6,8,20550,'Endurance'),
18484 (6,8,20551,'Nature Resistance'),
18485 (6,8,20552,'Cultivation'),
18486 (6,8,79746,'Languages'),
18487 (6,8,133,'Fireball'),
18488 (6,8,92315,'Pyroblast!'),
18489 (6,8,85801,'DPS Caster Crit Damage Bonus'),
18490 (6,8,76298,'Weapon Skills'),
18491 (6,8,76276,'Armor Skills'),
18492 (6,8,227,'Staves'),
18493 (6,8,81,'Dodge'),
18494 (6,8,204,'Defense'),
18495 (6,8,522,'SPELLDEFENSE (DND)'),
18496 (6,8,9078,'Cloth'),
18497 (6,8,201,'One-Handed Swords'),
18498 (6,9,5009,'Wands'),
18499 (6,9,5019,'Shoot'),
18500 (6,9,669,'Language Common'),
18501 (6,9,1180,'Daggers'),
18502 (6,9,45927,'Summon Friend'),
18503 (6,9,6478,'Opening'),
18504 (6,9,6603,'Auto Attack'),
18505 (6,9,22027,'Remove Insignia'),
18506 (6,9,22810,'Opening - No Text'),
18507 (6,9,21651,'Opening'),
18508 (6,9,21652,'Closing'),
18509 (6,9,2382,'Generic'),
18510 (6,9,3365,'Opening'),
18511 (6,9,3050,'Detect'),
18512 (6,9,9125,'Generic'),
18513 (6,9,8386,'Attacking'),
18514 (6,9,7266,'Duel'),
18515 (6,9,7267,'Grovel'),
18516 (6,9,7355,'Stuck'),
18517 (6,9,6233,'Closing'),
18518 (6,9,6246,'Closing'),
18519 (6,9,6247,'Opening'),
18520 (6,9,6477,'Opening'),
18521 (6,9,61437,'Opening'),
18522 (6,9,68398,'Opening'),
18523 (6,9,96220,'Opening'),
18524 (6,9,203,'Unarmed'),
18525 (6,9,670,'Language Taurahe'),
18526 (6,9,20549,'War Stomp'),
18527 (6,9,20550,'Endurance'),
18528 (6,9,20551,'Nature Resistance'),
18529 (6,9,20552,'Cultivation'),
18530 (6,9,79746,'Languages'),
18531 (6,9,688,'Summon Imp'),
18532 (6,9,86213,'Soul Swap Exhale'),
18533 (6,9,89420,'Drain Life'),
18534 (6,9,85801,'DPS Caster Crit Damage Bonus'),
18535 (6,9,76299,'Weapon Skills'),
18536 (6,9,76277,'Armor Skills'),
18537 (6,9,87330,'Suppression'),
18538 (6,9,227,'Staves'),
18539 (6,9,75445,'Demonic Immolate'),
18540 (6,9,686,'Shadow Bolt'),
18541 (6,9,58284,'Chaos Bolt Passive'),
18542 (6,9,81,'Dodge'),
18543 (6,9,204,'Defense'),
18544 (6,9,522,'SPELLDEFENSE (DND)'),
18545 (6,9,9078,'Cloth'),
18546 (6,9,201,'One-Handed Swords'),
18547 (6,11,669,'Language Orcish'),
18548 (6,11,1180,'Daggers'),
18549 (6,11,45927,'Summon Friend'),
18550 (6,11,6478,'Opening'),
18551 (6,11,6603,'Auto Attack'),
18552 (6,11,22027,'Remove Insignia'),
18553 (6,11,22810,'Opening - No Text'),
18554 (6,11,21651,'Opening'),
18555 (6,11,21652,'Closing'),
18556 (6,11,2382,'Generic'),
18557 (6,11,3365,'Opening'),
18558 (6,11,3050,'Detect'),
18559 (6,11,9125,'Generic'),
18560 (6,11,8386,'Attacking'),
18561 (6,11,7266,'Duel'),
18562 (6,11,7267,'Grovel'),
18563 (6,11,7355,'Stuck'),
18564 (6,11,6233,'Closing'),
18565 (6,11,6246,'Closing'),
18566 (6,11,6247,'Opening'),
18567 (6,11,6477,'Opening'),
18568 (6,11,61437,'Opening'),
18569 (6,11,68398,'Opening'),
18570 (6,11,96220,'Opening'),
18571 (6,11,203,'Unarmed'),
18572 (6,11,670,'Language Taurahe'),
18573 (6,11,20549,'War Stomp'),
18574 (6,11,20550,'Endurance'),
18575 (6,11,20551,'Nature Resistance'),
18576 (6,11,20552,'Cultivation'),
18577 (6,11,79746,'Languages'),
18578 (6,11,84736,'Nature\'s Focus'),
18579 (6,11,81170,'Ravage!'),
18580 (6,11,79577,'Eclipse Mastery Driver Passive'),
18581 (6,11,76300,'Weapon Skills'),
18582 (6,11,76275,'Armor Skills'),
18583 (6,11,5176,'Wrath'),
18584 (6,11,199,'Two-Handed Maces'),
18585 (6,11,15590,'Fist Weapons'),
18586 (6,11,84738,'Celestial Focus'),
18587 (6,11,200,'Polearms'),
18588 (6,11,227,'Staves'),
18589 (6,11,81,'Dodge'),
18590 (6,11,204,'Defense'),
18591 (6,11,522,'SPELLDEFENSE (DND)'),
18592 (6,11,9077,'Leather'),
18593 (6,11,9078,'Cloth'),
18594 (6,11,198,'One-Handed Maces'),
18595 (6,6,6478,'Opening'),
18596 (6,6,6603,'Auto Attack'),
18597 (6,6,45927,'Summon Friend'),
18598 (6,6,22027,'Remove Insignia'),
18599 (6,6,22810,'Opening - No Text'),
18600 (6,6,21651,'Opening'),
18601 (6,6,21652,'Closing'),
18602 (6,6,2382,'Generic'),
18603 (6,6,3365,'Opening'),
18604 (6,6,3050,'Detect'),
18605 (6,6,9125,'Generic'),
18606 (6,6,8386,'Attacking'),
18607 (6,6,7266,'Duel'),
18608 (6,6,7267,'Grovel'),
18609 (6,6,7355,'Stuck'),
18610 (6,6,6233,'Closing'),
18611 (6,6,6246,'Closing'),
18612 (6,6,6247,'Opening'),
18613 (6,6,6477,'Opening'),
18614 (6,6,52665,'Relic'),
18615 (6,6,61437,'Opening'),
18616 (6,6,68398,'Opening'),
18617 (6,6,63645,'Activating Primary Spec'),
18618 (6,6,63644,'Activating Secondary Spec'),
18619 (6,6,96220,'Opening'),
18620 (6,6,203,'Unarmed'),
18621 (6,6,670,'Language Taurahe'),
18622 (6,6,674,'Dual Wield'),
18623 (6,6,669,'Language Orcish'),
18624 (6,6,197,'Two-Handed Axes'),
18625 (6,6,45902,'Blood Strike'),
18626 (6,6,49410,'Forceful Deflection'),
18627 (6,6,82246,'Parry'),
18628 (6,6,89832,'Death Strike Enabler'),
18629 (6,6,45477,'Icy Touch'),
18630 (6,6,48266,'Frost Presence'),
18631 (6,6,61455,'Runic Focus'),
18632 (6,6,59921,'Frost Fever'),
18633 (6,6,202,'Two-Handed Swords'),
18634 (6,6,196,'One-Handed Axes'),
18635 (6,6,33391,'Journeyman Riding'),
18636 (6,6,89964,'Clear Glyph'),
18637 (6,6,76282,'Armor Skills'),
18638 (6,6,76292,'Weapon Skills'),
18639 (6,6,750,'Plate Mail'),
18640 (6,6,199,'Two-Handed Maces'),
18641 (6,6,20549,'War Stomp'),
18642 (6,6,20550,'Endurance'),
18643 (6,6,20551,'Nature Resistance'),
18644 (6,6,20552,'Cultivation'),
18645 (6,6,79746,'Languages'),
18646 (6,6,200,'Polearms'),
18647 (6,6,8737,'Mail'),
18648 (6,6,9077,'Leather'),
18649 (6,6,45462,'Plague Strike'),
18650 (6,6,47541,'Death Coil'),
18651 (6,6,49576,'Death Grip'),
18652 (6,6,59879,'Blood Plague'),
18653 (6,6,45903,'Offensive State (DND)'),
18654 (6,6,81,'Dodge'),
18655 (6,6,204,'Defense'),
18656 (6,6,522,'SPELLDEFENSE (DND)'),
18657 (6,6,198,'One-Handed Maces'),
18658 (6,6,201,'One-Handed Swords'),
18659 (6,6,9078,'Cloth'),
18660 (6,6,10846,'First Aid'),
18661 (6,6,3275,'Linen Bandage'),
18662 (6,6,18630,'Heavy Runecloth Bandage'),
18663 (6,6,3276,'Heavy Linen Bandage'),
18664 (6,6,3277,'Wool Bandage'),
18665 (6,6,3278,'Heavy Wool Bandage'),
18666 (6,6,7928,'Silk Bandage'),
18667 (6,6,7929,'Heavy Silk Bandage'),
18668 (6,6,10840,'Mageweave Bandage'),
18669 (6,6,10841,'Heavy Mageweave Bandage'),
18670 (6,6,18629,'Runecloth Bandage'),
18671 (6,6,7934,'Anti-Venom'),
18672 (7,1,202,'Two-Handed Swords'),
18673 (7,1,196,'One-Handed Axes'),
18674 (7,1,20591,'Expansive Mind'),
18675 (7,1,20593,'Engineering Specialization'),
18676 (7,1,20592,'Arcane Resistance'),
18677 (7,1,92680,'Shortblade Specialization'),
18678 (7,1,79740,'Languages'),
18679 (7,1,7340,'Language Gnomish'),
18680 (7,1,2457,'Battle Stance'),
18681 (7,1,88161,'Strike'),
18682 (7,1,5011,'Crossbows'),
18683 (7,1,3018,'Shoot'),
18684 (7,1,197,'Two-Handed Axes'),
18685 (7,1,1180,'Daggers'),
18686 (7,1,45927,'Summon Friend'),
18687 (7,1,6478,'Opening'),
18688 (7,1,6603,'Auto Attack'),
18689 (7,1,22027,'Remove Insignia'),
18690 (7,1,22810,'Opening - No Text'),
18691 (7,1,21651,'Opening'),
18692 (7,1,21652,'Closing'),
18693 (7,1,2382,'Generic'),
18694 (7,1,3365,'Opening'),
18695 (7,1,3050,'Detect'),
18696 (7,1,9125,'Generic'),
18697 (7,1,8386,'Attacking'),
18698 (7,1,7266,'Duel'),
18699 (7,1,7267,'Grovel'),
18700 (7,1,7355,'Stuck'),
18701 (7,1,6233,'Closing'),
18702 (7,1,6246,'Closing'),
18703 (7,1,6247,'Opening'),
18704 (7,1,6477,'Opening'),
18705 (7,1,61437,'Opening'),
18706 (7,1,68398,'Opening'),
18707 (7,1,96220,'Opening'),
18708 (7,1,203,'Unarmed'),
18709 (7,1,49410,'Forceful Deflection'),
18710 (7,1,199,'Two-Handed Maces'),
18711 (7,1,15590,'Fist Weapons'),
18712 (7,1,76268,'Armor Skills'),
18713 (7,1,76290,'Weapon Skills'),
18714 (7,1,88163,'Attack'),
18715 (7,1,200,'Polearms'),
18716 (7,1,668,'Language Common'),
18717 (7,1,227,'Staves'),
18718 (7,1,9116,'Shield'),
18719 (7,1,8737,'Mail'),
18720 (7,1,9077,'Leather'),
18721 (7,1,264,'Bows'),
18722 (7,1,266,'Guns'),
18723 (7,1,107,'Block'),
18724 (7,1,81,'Dodge'),
18725 (7,1,32215,'Victorious State'),
18726 (7,1,5301,'Defensive State (DND)'),
18727 (7,1,204,'Defense'),
18728 (7,1,522,'SPELLDEFENSE (DND)'),
18729 (7,1,2764,'Throw'),
18730 (7,1,2567,'Thrown'),
18731 (7,1,9078,'Cloth'),
18732 (7,1,198,'One-Handed Maces'),
18733 (7,1,201,'One-Handed Swords'),
18734 (7,4,196,'One-Handed Axes'),
18735 (7,4,20591,'Expansive Mind'),
18736 (7,4,20593,'Engineering Specialization'),
18737 (7,4,20592,'Arcane Resistance'),
18738 (7,4,92680,'Shortblade Specialization'),
18739 (7,4,79740,'Languages'),
18740 (7,4,7340,'Language Gnomish'),
18741 (7,4,1752,'Sinister Strike'),
18742 (7,4,5011,'Crossbows'),
18743 (7,4,3018,'Shoot'),
18744 (7,4,674,'Dual Wield'),
18745 (7,4,1180,'Daggers'),
18746 (7,4,45927,'Summon Friend'),
18747 (7,4,6478,'Opening'),
18748 (7,4,6603,'Auto Attack'),
18749 (7,4,22027,'Remove Insignia'),
18750 (7,4,22810,'Opening - No Text'),
18751 (7,4,21651,'Opening'),
18752 (7,4,21652,'Closing'),
18753 (7,4,2382,'Generic'),
18754 (7,4,3365,'Opening'),
18755 (7,4,3050,'Detect'),
18756 (7,4,9125,'Generic'),
18757 (7,4,8386,'Attacking'),
18758 (7,4,7266,'Duel'),
18759 (7,4,7267,'Grovel'),
18760 (7,4,7355,'Stuck'),
18761 (7,4,6233,'Closing'),
18762 (7,4,6246,'Closing'),
18763 (7,4,6247,'Opening'),
18764 (7,4,6477,'Opening'),
18765 (7,4,61437,'Opening'),
18766 (7,4,68398,'Opening'),
18767 (7,4,96220,'Opening'),
18768 (7,4,203,'Unarmed'),
18769 (7,4,15590,'Fist Weapons'),
18770 (7,4,76273,'Armor Skills'),
18771 (7,4,76297,'Weapon Skills'),
18772 (7,4,668,'Language Common'),
18773 (7,4,9077,'Leather'),
18774 (7,4,264,'Bows'),
18775 (7,4,266,'Guns'),
18776 (7,4,81,'Dodge'),
18777 (7,4,204,'Defense'),
18778 (7,4,522,'SPELLDEFENSE (DND)'),
18779 (7,4,16092,'Defensive State (DND)'),
18780 (7,4,2764,'Throw'),
18781 (7,4,2567,'Thrown'),
18782 (7,4,9078,'Cloth'),
18783 (7,4,198,'One-Handed Maces'),
18784 (7,4,201,'One-Handed Swords'),
18785 (7,5,20591,'Expansive Mind'),
18786 (7,5,20593,'Engineering Specialization'),
18787 (7,5,20592,'Arcane Resistance'),
18788 (7,5,92680,'Shortblade Specialization'),
18789 (7,5,79740,'Languages'),
18790 (7,5,7340,'Language Gnomish'),
18791 (7,5,5009,'Wands'),
18792 (7,5,5019,'Shoot'),
18793 (7,5,1180,'Daggers'),
18794 (7,5,45927,'Summon Friend'),
18795 (7,5,6478,'Opening'),
18796 (7,5,6603,'Auto Attack'),
18797 (7,5,22027,'Remove Insignia'),
18798 (7,5,22810,'Opening - No Text'),
18799 (7,5,21651,'Opening'),
18800 (7,5,21652,'Closing'),
18801 (7,5,2382,'Generic'),
18802 (7,5,3365,'Opening'),
18803 (7,5,3050,'Detect'),
18804 (7,5,9125,'Generic'),
18805 (7,5,8386,'Attacking'),
18806 (7,5,7266,'Duel'),
18807 (7,5,7267,'Grovel'),
18808 (7,5,7355,'Stuck'),
18809 (7,5,6233,'Closing'),
18810 (7,5,6246,'Closing'),
18811 (7,5,6247,'Opening'),
18812 (7,5,6477,'Opening'),
18813 (7,5,61437,'Opening'),
18814 (7,5,68398,'Opening'),
18815 (7,5,96220,'Opening'),
18816 (7,5,203,'Unarmed'),
18817 (7,5,585,'Smite'),
18818 (7,5,84733,'Holy Focus'),
18819 (7,5,88685,'Holy Word: Sanctuary'),
18820 (7,5,88684,'Holy Word: Serenity'),
18821 (7,5,101062,'Flash Heal'),
18822 (7,5,76301,'Weapon Skills'),
18823 (7,5,76279,'Armor Skills'),
18824 (7,5,84734,'Dark Thoughts'),
18825 (7,5,668,'Language Common'),
18826 (7,5,227,'Staves'),
18827 (7,5,77486,'Shadow Orb Power'),
18828 (7,5,81,'Dodge'),
18829 (7,5,204,'Defense'),
18830 (7,5,522,'SPELLDEFENSE (DND)'),
18831 (7,5,9078,'Cloth'),
18832 (7,5,198,'One-Handed Maces'),
18833 (7,8,71761,'Deep Freeze Immunity State'),
18834 (7,8,20591,'Expansive Mind'),
18835 (7,8,20593,'Engineering Specialization'),
18836 (7,8,20592,'Arcane Resistance'),
18837 (7,8,92680,'Shortblade Specialization'),
18838 (7,8,79740,'Languages'),
18839 (7,8,7340,'Language Gnomish'),
18840 (7,8,5009,'Wands'),
18841 (7,8,5019,'Shoot'),
18842 (7,8,1180,'Daggers'),
18843 (7,8,45927,'Summon Friend'),
18844 (7,8,6478,'Opening'),
18845 (7,8,6603,'Auto Attack'),
18846 (7,8,22027,'Remove Insignia'),
18847 (7,8,22810,'Opening - No Text'),
18848 (7,8,21651,'Opening'),
18849 (7,8,21652,'Closing'),
18850 (7,8,2382,'Generic'),
18851 (7,8,3365,'Opening'),
18852 (7,8,3050,'Detect'),
18853 (7,8,9125,'Generic'),
18854 (7,8,8386,'Attacking'),
18855 (7,8,7266,'Duel'),
18856 (7,8,7267,'Grovel'),
18857 (7,8,7355,'Stuck'),
18858 (7,8,6233,'Closing'),
18859 (7,8,6246,'Closing'),
18860 (7,8,6247,'Opening'),
18861 (7,8,6477,'Opening'),
18862 (7,8,61437,'Opening'),
18863 (7,8,68398,'Opening'),
18864 (7,8,96220,'Opening'),
18865 (7,8,79684,'Offensive State (DND)'),
18866 (7,8,203,'Unarmed'),
18867 (7,8,133,'Fireball'),
18868 (7,8,92315,'Pyroblast!'),
18869 (7,8,85801,'DPS Caster Crit Damage Bonus'),
18870 (7,8,76298,'Weapon Skills'),
18871 (7,8,76276,'Armor Skills'),
18872 (7,8,668,'Language Common'),
18873 (7,8,227,'Staves'),
18874 (7,8,81,'Dodge'),
18875 (7,8,204,'Defense'),
18876 (7,8,522,'SPELLDEFENSE (DND)'),
18877 (7,8,9078,'Cloth'),
18878 (7,8,201,'One-Handed Swords'),
18879 (7,9,20591,'Expansive Mind'),
18880 (7,9,20593,'Engineering Specialization'),
18881 (7,9,20592,'Arcane Resistance'),
18882 (7,9,92680,'Shortblade Specialization'),
18883 (7,9,79740,'Languages'),
18884 (7,9,7340,'Language Gnomish'),
18885 (7,9,5009,'Wands'),
18886 (7,9,5019,'Shoot'),
18887 (7,9,1180,'Daggers'),
18888 (7,9,45927,'Summon Friend'),
18889 (7,9,6478,'Opening'),
18890 (7,9,6603,'Auto Attack'),
18891 (7,9,22027,'Remove Insignia'),
18892 (7,9,22810,'Opening - No Text'),
18893 (7,9,21651,'Opening'),
18894 (7,9,21652,'Closing'),
18895 (7,9,2382,'Generic'),
18896 (7,9,3365,'Opening'),
18897 (7,9,3050,'Detect'),
18898 (7,9,9125,'Generic'),
18899 (7,9,8386,'Attacking'),
18900 (7,9,7266,'Duel'),
18901 (7,9,7267,'Grovel'),
18902 (7,9,7355,'Stuck'),
18903 (7,9,6233,'Closing'),
18904 (7,9,6246,'Closing'),
18905 (7,9,6247,'Opening'),
18906 (7,9,6477,'Opening'),
18907 (7,9,61437,'Opening'),
18908 (7,9,68398,'Opening'),
18909 (7,9,96220,'Opening'),
18910 (7,9,203,'Unarmed'),
18911 (7,9,688,'Summon Imp'),
18912 (7,9,86213,'Soul Swap Exhale'),
18913 (7,9,89420,'Drain Life'),
18914 (7,9,85801,'DPS Caster Crit Damage Bonus'),
18915 (7,9,76299,'Weapon Skills'),
18916 (7,9,76277,'Armor Skills'),
18917 (7,9,87330,'Suppression'),
18918 (7,9,668,'Language Common'),
18919 (7,9,227,'Staves'),
18920 (7,9,75445,'Demonic Immolate'),
18921 (7,9,686,'Shadow Bolt'),
18922 (7,9,58284,'Chaos Bolt Passive'),
18923 (7,9,81,'Dodge'),
18924 (7,9,204,'Defense'),
18925 (7,9,522,'SPELLDEFENSE (DND)'),
18926 (7,9,9078,'Cloth'),
18927 (7,9,201,'One-Handed Swords'),
18928 (7,6,6478,'Opening'),
18929 (7,6,6603,'Auto Attack'),
18930 (7,6,45927,'Summon Friend'),
18931 (7,6,22027,'Remove Insignia'),
18932 (7,6,22810,'Opening - No Text'),
18933 (7,6,21651,'Opening'),
18934 (7,6,21652,'Closing'),
18935 (7,6,2382,'Generic'),
18936 (7,6,3365,'Opening'),
18937 (7,6,3050,'Detect'),
18938 (7,6,9125,'Generic'),
18939 (7,6,8386,'Attacking'),
18940 (7,6,7266,'Duel'),
18941 (7,6,7267,'Grovel'),
18942 (7,6,7355,'Stuck'),
18943 (7,6,6233,'Closing'),
18944 (7,6,6246,'Closing'),
18945 (7,6,6247,'Opening'),
18946 (7,6,6477,'Opening'),
18947 (7,6,52665,'Relic'),
18948 (7,6,61437,'Opening'),
18949 (7,6,68398,'Opening'),
18950 (7,6,63645,'Activating Primary Spec'),
18951 (7,6,63644,'Activating Secondary Spec'),
18952 (7,6,96220,'Opening'),
18953 (7,6,203,'Unarmed'),
18954 (7,6,674,'Dual Wield'),
18955 (7,6,197,'Two-Handed Axes'),
18956 (7,6,45902,'Blood Strike'),
18957 (7,6,49410,'Forceful Deflection'),
18958 (7,6,82246,'Parry'),
18959 (7,6,89832,'Death Strike Enabler'),
18960 (7,6,45477,'Icy Touch'),
18961 (7,6,48266,'Frost Presence'),
18962 (7,6,61455,'Runic Focus'),
18963 (7,6,59921,'Frost Fever'),
18964 (7,6,202,'Two-Handed Swords'),
18965 (7,6,196,'One-Handed Axes'),
18966 (7,6,20589,'Escape Artist'),
18967 (7,6,20591,'Expansive Mind'),
18968 (7,6,20593,'Engineering Specialization'),
18969 (7,6,20592,'Arcane Resistance'),
18970 (7,6,79740,'Languages'),
18971 (7,6,92680,'Shortblade Specialization'),
18972 (7,6,33391,'Journeyman Riding'),
18973 (7,6,89964,'Clear Glyph'),
18974 (7,6,76282,'Armor Skills'),
18975 (7,6,76292,'Weapon Skills'),
18976 (7,6,750,'Plate Mail'),
18977 (7,6,199,'Two-Handed Maces'),
18978 (7,6,200,'Polearms'),
18979 (7,6,668,'Language Common'),
18980 (7,6,7340,'Language Gnomish'),
18981 (7,6,8737,'Mail'),
18982 (7,6,9077,'Leather'),
18983 (7,6,45462,'Plague Strike'),
18984 (7,6,47541,'Death Coil'),
18985 (7,6,49576,'Death Grip'),
18986 (7,6,59879,'Blood Plague'),
18987 (7,6,45903,'Offensive State (DND)'),
18988 (7,6,81,'Dodge'),
18989 (7,6,204,'Defense'),
18990 (7,6,522,'SPELLDEFENSE (DND)'),
18991 (7,6,198,'One-Handed Maces'),
18992 (7,6,201,'One-Handed Swords'),
18993 (7,6,9078,'Cloth'),
18994 (7,6,10846,'First Aid'),
18995 (7,6,3275,'Linen Bandage'),
18996 (7,6,18630,'Heavy Runecloth Bandage'),
18997 (7,6,3276,'Heavy Linen Bandage'),
18998 (7,6,3277,'Wool Bandage'),
18999 (7,6,3278,'Heavy Wool Bandage'),
19000 (7,6,7928,'Silk Bandage'),
19001 (7,6,7929,'Heavy Silk Bandage'),
19002 (7,6,10840,'Mageweave Bandage'),
19003 (7,6,10841,'Heavy Mageweave Bandage'),
19004 (7,6,18629,'Runecloth Bandage'),
19005 (7,6,7934,'Anti-Venom'),
19006 (8,1,202,'Two-Handed Swords'),
19007 (8,1,7341,'Language Troll'),
19008 (8,1,26290,'Bow Specialization'),
19009 (8,1,26297,'Berserking'),
19010 (8,1,58943,'Da Voodoo Shuffle'),
19011 (8,1,20555,'Regeneration'),
19012 (8,1,20557,'Beast Slaying'),
19013 (8,1,20558,'Throwing Specialization'),
19014 (8,1,79744,'Languages'),
19015 (8,1,196,'One-Handed Axes'),
19016 (8,1,2457,'Battle Stance'),
19017 (8,1,88161,'Strike'),
19018 (8,1,5011,'Crossbows'),
19019 (8,1,3018,'Shoot'),
19020 (8,1,669,'Language Orcish'),
19021 (8,1,197,'Two-Handed Axes'),
19022 (8,1,1180,'Daggers'),
19023 (8,1,45927,'Summon Friend'),
19024 (8,1,6478,'Opening'),
19025 (8,1,6603,'Auto Attack'),
19026 (8,1,22027,'Remove Insignia'),
19027 (8,1,22810,'Opening - No Text'),
19028 (8,1,21651,'Opening'),
19029 (8,1,21652,'Closing'),
19030 (8,1,2382,'Generic'),
19031 (8,1,3365,'Opening'),
19032 (8,1,3050,'Detect'),
19033 (8,1,9125,'Generic'),
19034 (8,1,8386,'Attacking'),
19035 (8,1,7266,'Duel'),
19036 (8,1,7267,'Grovel'),
19037 (8,1,7355,'Stuck'),
19038 (8,1,6233,'Closing'),
19039 (8,1,6246,'Closing'),
19040 (8,1,6247,'Opening'),
19041 (8,1,6477,'Opening'),
19042 (8,1,61437,'Opening'),
19043 (8,1,68398,'Opening'),
19044 (8,1,96220,'Opening'),
19045 (8,1,203,'Unarmed'),
19046 (8,1,49410,'Forceful Deflection'),
19047 (8,1,199,'Two-Handed Maces'),
19048 (8,1,15590,'Fist Weapons'),
19049 (8,1,76268,'Armor Skills'),
19050 (8,1,76290,'Weapon Skills'),
19051 (8,1,88163,'Attack'),
19052 (8,1,200,'Polearms'),
19053 (8,1,227,'Staves'),
19054 (8,1,9116,'Shield'),
19055 (8,1,8737,'Mail'),
19056 (8,1,9077,'Leather'),
19057 (8,1,264,'Bows'),
19058 (8,1,266,'Guns'),
19059 (8,1,107,'Block'),
19060 (8,1,81,'Dodge'),
19061 (8,1,32215,'Victorious State'),
19062 (8,1,5301,'Defensive State (DND)'),
19063 (8,1,204,'Defense'),
19064 (8,1,522,'SPELLDEFENSE (DND)'),
19065 (8,1,2764,'Throw'),
19066 (8,1,2567,'Thrown'),
19067 (8,1,9078,'Cloth'),
19068 (8,1,198,'One-Handed Maces'),
19069 (8,1,201,'One-Handed Swords'),
19070 (8,3,202,'Two-Handed Swords'),
19071 (8,3,7341,'Language Troll'),
19072 (8,3,26290,'Bow Specialization'),
19073 (8,3,26297,'Berserking'),
19074 (8,3,58943,'Da Voodoo Shuffle'),
19075 (8,3,20555,'Regeneration'),
19076 (8,3,20557,'Beast Slaying'),
19077 (8,3,20558,'Throwing Specialization'),
19078 (8,3,79744,'Languages'),
19079 (8,3,196,'One-Handed Axes'),
19080 (8,3,3044,'Arcane Shot'),
19081 (8,3,75,'Auto Shot'),
19082 (8,3,82928,'Aimed Shot!'),
19083 (8,3,5011,'Crossbows'),
19084 (8,3,669,'Language Orcish'),
19085 (8,3,197,'Two-Handed Axes'),
19086 (8,3,1180,'Daggers'),
19087 (8,3,45927,'Summon Friend'),
19088 (8,3,6478,'Opening'),
19089 (8,3,6603,'Auto Attack'),
19090 (8,3,22027,'Remove Insignia'),
19091 (8,3,22810,'Opening - No Text'),
19092 (8,3,21651,'Opening'),
19093 (8,3,21652,'Closing'),
19094 (8,3,34082,'Hunter Passive Auras (DND)'),
19095 (8,3,2382,'Generic'),
19096 (8,3,3365,'Opening'),
19097 (8,3,3050,'Detect'),
19098 (8,3,9125,'Generic'),
19099 (8,3,8386,'Attacking'),
19100 (8,3,7266,'Duel'),
19101 (8,3,7267,'Grovel'),
19102 (8,3,7355,'Stuck'),
19103 (8,3,6233,'Closing'),
19104 (8,3,6246,'Closing'),
19105 (8,3,6247,'Opening'),
19106 (8,3,6477,'Opening'),
19107 (8,3,61437,'Opening'),
19108 (8,3,68398,'Opening'),
19109 (8,3,96220,'Opening'),
19110 (8,3,203,'Unarmed'),
19111 (8,3,883,'Call Pet 1'),
19112 (8,3,982,'Revive Pet'),
19113 (8,3,15590,'Fist Weapons'),
19114 (8,3,200,'Polearms'),
19115 (8,3,227,'Staves'),
19116 (8,3,9077,'Leather'),
19117 (8,3,264,'Bows'),
19118 (8,3,266,'Guns'),
19119 (8,3,13358,'Defensive State (DND)'),
19120 (8,3,81,'Dodge'),
19121 (8,3,204,'Defense'),
19122 (8,3,522,'SPELLDEFENSE (DND)'),
19123 (8,3,24949,'Defensive State 2 (DND)'),
19124 (8,3,9078,'Cloth'),
19125 (8,3,77442,'Focus'),
19126 (8,3,76249,'Weapon Skills'),
19127 (8,3,76250,'Armor Skills'),
19128 (8,3,87324,'Focused Aim'),
19129 (8,3,87816,'General Hunter Passives'),
19130 (8,3,201,'One-Handed Swords'),
19131 (8,4,7341,'Language Troll'),
19132 (8,4,26290,'Bow Specialization'),
19133 (8,4,26297,'Berserking'),
19134 (8,4,58943,'Da Voodoo Shuffle'),
19135 (8,4,20555,'Regeneration'),
19136 (8,4,20557,'Beast Slaying'),
19137 (8,4,20558,'Throwing Specialization'),
19138 (8,4,79744,'Languages'),
19139 (8,4,196,'One-Handed Axes'),
19140 (8,4,1752,'Sinister Strike'),
19141 (8,4,5011,'Crossbows'),
19142 (8,4,3018,'Shoot'),
19143 (8,4,669,'Language Orcish'),
19144 (8,4,674,'Dual Wield'),
19145 (8,4,1180,'Daggers'),
19146 (8,4,45927,'Summon Friend'),
19147 (8,4,6478,'Opening'),
19148 (8,4,6603,'Auto Attack'),
19149 (8,4,22027,'Remove Insignia'),
19150 (8,4,22810,'Opening - No Text'),
19151 (8,4,21651,'Opening'),
19152 (8,4,21652,'Closing'),
19153 (8,4,2382,'Generic'),
19154 (8,4,3365,'Opening'),
19155 (8,4,3050,'Detect'),
19156 (8,4,9125,'Generic'),
19157 (8,4,8386,'Attacking'),
19158 (8,4,7266,'Duel'),
19159 (8,4,7267,'Grovel'),
19160 (8,4,7355,'Stuck'),
19161 (8,4,6233,'Closing'),
19162 (8,4,6246,'Closing'),
19163 (8,4,6247,'Opening'),
19164 (8,4,6477,'Opening'),
19165 (8,4,61437,'Opening'),
19166 (8,4,68398,'Opening'),
19167 (8,4,96220,'Opening'),
19168 (8,4,203,'Unarmed'),
19169 (8,4,15590,'Fist Weapons'),
19170 (8,4,76273,'Armor Skills'),
19171 (8,4,76297,'Weapon Skills'),
19172 (8,4,9077,'Leather'),
19173 (8,4,264,'Bows'),
19174 (8,4,266,'Guns'),
19175 (8,4,81,'Dodge'),
19176 (8,4,204,'Defense'),
19177 (8,4,522,'SPELLDEFENSE (DND)'),
19178 (8,4,16092,'Defensive State (DND)'),
19179 (8,4,2764,'Throw'),
19180 (8,4,2567,'Thrown'),
19181 (8,4,9078,'Cloth'),
19182 (8,4,198,'One-Handed Maces'),
19183 (8,4,201,'One-Handed Swords'),
19184 (8,5,7341,'Language Troll'),
19185 (8,5,26290,'Bow Specialization'),
19186 (8,5,26297,'Berserking'),
19187 (8,5,58943,'Da Voodoo Shuffle'),
19188 (8,5,20555,'Regeneration'),
19189 (8,5,20557,'Beast Slaying'),
19190 (8,5,20558,'Throwing Specialization'),
19191 (8,5,79744,'Languages'),
19192 (8,5,5009,'Wands'),
19193 (8,5,5019,'Shoot'),
19194 (8,5,669,'Language Orcish'),
19195 (8,5,1180,'Daggers'),
19196 (8,5,45927,'Summon Friend'),
19197 (8,5,6478,'Opening'),
19198 (8,5,6603,'Auto Attack'),
19199 (8,5,22027,'Remove Insignia'),
19200 (8,5,22810,'Opening - No Text'),
19201 (8,5,21651,'Opening'),
19202 (8,5,21652,'Closing'),
19203 (8,5,2382,'Generic'),
19204 (8,5,3365,'Opening'),
19205 (8,5,3050,'Detect'),
19206 (8,5,9125,'Generic'),
19207 (8,5,8386,'Attacking'),
19208 (8,5,7266,'Duel'),
19209 (8,5,7267,'Grovel'),
19210 (8,5,7355,'Stuck'),
19211 (8,5,6233,'Closing'),
19212 (8,5,6246,'Closing'),
19213 (8,5,6247,'Opening'),
19214 (8,5,6477,'Opening'),
19215 (8,5,61437,'Opening'),
19216 (8,5,68398,'Opening'),
19217 (8,5,96220,'Opening'),
19218 (8,5,203,'Unarmed'),
19219 (8,5,585,'Smite'),
19220 (8,5,84733,'Holy Focus'),
19221 (8,5,88685,'Holy Word: Sanctuary'),
19222 (8,5,88684,'Holy Word: Serenity'),
19223 (8,5,101062,'Flash Heal'),
19224 (8,5,76301,'Weapon Skills'),
19225 (8,5,76279,'Armor Skills'),
19226 (8,5,84734,'Dark Thoughts'),
19227 (8,5,227,'Staves'),
19228 (8,5,77486,'Shadow Orb Power'),
19229 (8,5,81,'Dodge'),
19230 (8,5,204,'Defense'),
19231 (8,5,522,'SPELLDEFENSE (DND)'),
19232 (8,5,9078,'Cloth'),
19233 (8,5,198,'One-Handed Maces'),
19234 (8,7,196,'One-Handed Axes'),
19235 (8,7,7341,'Language Troll'),
19236 (8,7,26290,'Bow Specialization'),
19237 (8,7,26297,'Berserking'),
19238 (8,7,58943,'Da Voodoo Shuffle'),
19239 (8,7,20555,'Regeneration'),
19240 (8,7,20557,'Beast Slaying'),
19241 (8,7,20558,'Throwing Specialization'),
19242 (8,7,79744,'Languages'),
19243 (8,7,669,'Language Orcish'),
19244 (8,7,197,'Two-Handed Axes'),
19245 (8,7,1180,'Daggers'),
19246 (8,7,45927,'Summon Friend'),
19247 (8,7,6478,'Opening'),
19248 (8,7,6603,'Auto Attack'),
19249 (8,7,22027,'Remove Insignia'),
19250 (8,7,22810,'Opening - No Text'),
19251 (8,7,21651,'Opening'),
19252 (8,7,21652,'Closing'),
19253 (8,7,2382,'Generic'),
19254 (8,7,3365,'Opening'),
19255 (8,7,3050,'Detect'),
19256 (8,7,9125,'Generic'),
19257 (8,7,8386,'Attacking'),
19258 (8,7,7266,'Duel'),
19259 (8,7,7267,'Grovel'),
19260 (8,7,7355,'Stuck'),
19261 (8,7,6233,'Closing'),
19262 (8,7,6246,'Closing'),
19263 (8,7,6247,'Opening'),
19264 (8,7,6477,'Opening'),
19265 (8,7,27763,'Relic'),
19266 (8,7,61437,'Opening'),
19267 (8,7,68398,'Opening'),
19268 (8,7,96220,'Opening'),
19269 (8,7,203,'Unarmed'),
19270 (8,7,199,'Two-Handed Maces'),
19271 (8,7,15590,'Fist Weapons'),
19272 (8,7,76272,'Armor Skills'),
19273 (8,7,76296,'Weapon Skills'),
19274 (8,7,89920,'Ancestral Focus'),
19275 (8,7,227,'Staves'),
19276 (8,7,9116,'Shield'),
19277 (8,7,9077,'Leather'),
19278 (8,7,107,'Block'),
19279 (8,7,81,'Dodge'),
19280 (8,7,204,'Defense'),
19281 (8,7,522,'SPELLDEFENSE (DND)'),
19282 (8,7,403,'Lightning Bolt'),
19283 (8,7,9078,'Cloth'),
19284 (8,7,198,'One-Handed Maces'),
19285 (8,8,7341,'Language Troll'),
19286 (8,8,26290,'Bow Specialization'),
19287 (8,8,26297,'Berserking'),
19288 (8,8,58943,'Da Voodoo Shuffle'),
19289 (8,8,20555,'Regeneration'),
19290 (8,8,20557,'Beast Slaying'),
19291 (8,8,20558,'Throwing Specialization'),
19292 (8,8,79744,'Languages'),
19293 (8,8,71761,'Deep Freeze Immunity State'),
19294 (8,8,5009,'Wands'),
19295 (8,8,5019,'Shoot'),
19296 (8,8,669,'Language Orcish'),
19297 (8,8,1180,'Daggers'),
19298 (8,8,45927,'Summon Friend'),
19299 (8,8,6478,'Opening'),
19300 (8,8,6603,'Auto Attack'),
19301 (8,8,22027,'Remove Insignia'),
19302 (8,8,22810,'Opening - No Text'),
19303 (8,8,21651,'Opening'),
19304 (8,8,21652,'Closing'),
19305 (8,8,2382,'Generic'),
19306 (8,8,3365,'Opening'),
19307 (8,8,3050,'Detect'),
19308 (8,8,9125,'Generic'),
19309 (8,8,8386,'Attacking'),
19310 (8,8,7266,'Duel'),
19311 (8,8,7267,'Grovel'),
19312 (8,8,7355,'Stuck'),
19313 (8,8,6233,'Closing'),
19314 (8,8,6246,'Closing'),
19315 (8,8,6247,'Opening'),
19316 (8,8,6477,'Opening'),
19317 (8,8,61437,'Opening'),
19318 (8,8,68398,'Opening'),
19319 (8,8,96220,'Opening'),
19320 (8,8,79684,'Offensive State (DND)'),
19321 (8,8,203,'Unarmed'),
19322 (8,8,133,'Fireball'),
19323 (8,8,92315,'Pyroblast!'),
19324 (8,8,85801,'DPS Caster Crit Damage Bonus'),
19325 (8,8,76298,'Weapon Skills'),
19326 (8,8,76276,'Armor Skills'),
19327 (8,8,227,'Staves'),
19328 (8,8,81,'Dodge'),
19329 (8,8,204,'Defense'),
19330 (8,8,522,'SPELLDEFENSE (DND)'),
19331 (8,8,9078,'Cloth'),
19332 (8,8,201,'One-Handed Swords'),
19333 (8,9,7341,'Language Troll'),
19334 (8,9,26290,'Bow Specialization'),
19335 (8,9,26297,'Berserking'),
19336 (8,9,58943,'Da Voodoo Shuffle'),
19337 (8,9,20555,'Regeneration'),
19338 (8,9,20557,'Beast Slaying'),
19339 (8,9,20558,'Throwing Specialization'),
19340 (8,9,79744,'Languages'),
19341 (8,9,5009,'Wands'),
19342 (8,9,5019,'Shoot'),
19343 (8,9,669,'Language Common'),
19344 (8,9,1180,'Daggers'),
19345 (8,9,45927,'Summon Friend'),
19346 (8,9,6478,'Opening'),
19347 (8,9,6603,'Auto Attack'),
19348 (8,9,22027,'Remove Insignia'),
19349 (8,9,22810,'Opening - No Text'),
19350 (8,9,21651,'Opening'),
19351 (8,9,21652,'Closing'),
19352 (8,9,2382,'Generic'),
19353 (8,9,3365,'Opening'),
19354 (8,9,3050,'Detect'),
19355 (8,9,9125,'Generic'),
19356 (8,9,8386,'Attacking'),
19357 (8,9,7266,'Duel'),
19358 (8,9,7267,'Grovel'),
19359 (8,9,7355,'Stuck'),
19360 (8,9,6233,'Closing'),
19361 (8,9,6246,'Closing'),
19362 (8,9,6247,'Opening'),
19363 (8,9,6477,'Opening'),
19364 (8,9,61437,'Opening'),
19365 (8,9,68398,'Opening'),
19366 (8,9,96220,'Opening'),
19367 (8,9,203,'Unarmed'),
19368 (8,9,688,'Summon Imp'),
19369 (8,9,86213,'Soul Swap Exhale'),
19370 (8,9,89420,'Drain Life'),
19371 (8,9,85801,'DPS Caster Crit Damage Bonus'),
19372 (8,9,76299,'Weapon Skills'),
19373 (8,9,76277,'Armor Skills'),
19374 (8,9,87330,'Suppression'),
19375 (8,9,227,'Staves'),
19376 (8,9,75445,'Demonic Immolate'),
19377 (8,9,686,'Shadow Bolt'),
19378 (8,9,58284,'Chaos Bolt Passive'),
19379 (8,9,81,'Dodge'),
19380 (8,9,204,'Defense'),
19381 (8,9,522,'SPELLDEFENSE (DND)'),
19382 (8,9,9078,'Cloth'),
19383 (8,9,201,'One-Handed Swords'),
19384 (8,11,7341,'Language Troll'),
19385 (8,11,26290,'Bow Specialization'),
19386 (8,11,26297,'Berserking'),
19387 (8,11,58943,'Da Voodoo Shuffle'),
19388 (8,11,20555,'Regeneration'),
19389 (8,11,20557,'Beast Slaying'),
19390 (8,11,20558,'Throwing Specialization'),
19391 (8,11,79744,'Languages'),
19392 (8,11,669,'Language Orcish'),
19393 (8,11,1180,'Daggers'),
19394 (8,11,45927,'Summon Friend'),
19395 (8,11,6478,'Opening'),
19396 (8,11,6603,'Auto Attack'),
19397 (8,11,22027,'Remove Insignia'),
19398 (8,11,22810,'Opening - No Text'),
19399 (8,11,21651,'Opening'),
19400 (8,11,21652,'Closing'),
19401 (8,11,2382,'Generic'),
19402 (8,11,3365,'Opening'),
19403 (8,11,3050,'Detect'),
19404 (8,11,9125,'Generic'),
19405 (8,11,8386,'Attacking'),
19406 (8,11,7266,'Duel'),
19407 (8,11,7267,'Grovel'),
19408 (8,11,7355,'Stuck'),
19409 (8,11,6233,'Closing'),
19410 (8,11,6246,'Closing'),
19411 (8,11,6247,'Opening'),
19412 (8,11,6477,'Opening'),
19413 (8,11,61437,'Opening'),
19414 (8,11,68398,'Opening'),
19415 (8,11,96220,'Opening'),
19416 (8,11,203,'Unarmed'),
19417 (8,11,84736,'Nature\'s Focus'),
19418 (8,11,81170,'Ravage!'),
19419 (8,11,79577,'Eclipse Mastery Driver Passive'),
19420 (8,11,76300,'Weapon Skills'),
19421 (8,11,76275,'Armor Skills'),
19422 (8,11,5176,'Wrath'),
19423 (8,11,199,'Two-Handed Maces'),
19424 (8,11,15590,'Fist Weapons'),
19425 (8,11,84738,'Celestial Focus'),
19426 (8,11,200,'Polearms'),
19427 (8,11,227,'Staves'),
19428 (8,11,81,'Dodge'),
19429 (8,11,204,'Defense'),
19430 (8,11,522,'SPELLDEFENSE (DND)'),
19431 (8,11,9077,'Leather'),
19432 (8,11,9078,'Cloth'),
19433 (8,11,198,'One-Handed Maces'),
19434 (8,6,6478,'Opening'),
19435 (8,6,6603,'Auto Attack'),
19436 (8,6,45927,'Summon Friend'),
19437 (8,6,22027,'Remove Insignia'),
19438 (8,6,22810,'Opening - No Text'),
19439 (8,6,21651,'Opening'),
19440 (8,6,21652,'Closing'),
19441 (8,6,2382,'Generic'),
19442 (8,6,3365,'Opening'),
19443 (8,6,3050,'Detect'),
19444 (8,6,9125,'Generic'),
19445 (8,6,8386,'Attacking'),
19446 (8,6,7266,'Duel'),
19447 (8,6,7267,'Grovel'),
19448 (8,6,7355,'Stuck'),
19449 (8,6,6233,'Closing'),
19450 (8,6,6246,'Closing'),
19451 (8,6,6247,'Opening'),
19452 (8,6,6477,'Opening'),
19453 (8,6,52665,'Relic'),
19454 (8,6,61437,'Opening'),
19455 (8,6,68398,'Opening'),
19456 (8,6,63645,'Activating Primary Spec'),
19457 (8,6,63644,'Activating Secondary Spec'),
19458 (8,6,96220,'Opening'),
19459 (8,6,203,'Unarmed'),
19460 (8,6,674,'Dual Wield'),
19461 (8,6,669,'Language Orcish'),
19462 (8,6,197,'Two-Handed Axes'),
19463 (8,6,45902,'Blood Strike'),
19464 (8,6,49410,'Forceful Deflection'),
19465 (8,6,82246,'Parry'),
19466 (8,6,89832,'Death Strike Enabler'),
19467 (8,6,45477,'Icy Touch'),
19468 (8,6,48266,'Frost Presence'),
19469 (8,6,61455,'Runic Focus'),
19470 (8,6,59921,'Frost Fever'),
19471 (8,6,202,'Two-Handed Swords'),
19472 (8,6,26290,'Bow Specialization'),
19473 (8,6,26297,'Berserking'),
19474 (8,6,58943,'Da Voodoo Shuffle'),
19475 (8,6,20555,'Regeneration'),
19476 (8,6,20557,'Beast Slaying'),
19477 (8,6,20558,'Throwing Specialization'),
19478 (8,6,79744,'Languages'),
19479 (8,6,196,'One-Handed Axes'),
19480 (8,6,33391,'Journeyman Riding'),
19481 (8,6,89964,'Clear Glyph'),
19482 (8,6,76282,'Armor Skills'),
19483 (8,6,76292,'Weapon Skills'),
19484 (8,6,7341,'Language Troll'),
19485 (8,6,750,'Plate Mail'),
19486 (8,6,199,'Two-Handed Maces'),
19487 (8,6,200,'Polearms'),
19488 (8,6,8737,'Mail'),
19489 (8,6,9077,'Leather'),
19490 (8,6,45462,'Plague Strike'),
19491 (8,6,47541,'Death Coil'),
19492 (8,6,49576,'Death Grip'),
19493 (8,6,59879,'Blood Plague'),
19494 (8,6,45903,'Offensive State (DND)'),
19495 (8,6,81,'Dodge'),
19496 (8,6,204,'Defense'),
19497 (8,6,522,'SPELLDEFENSE (DND)'),
19498 (8,6,198,'One-Handed Maces'),
19499 (8,6,201,'One-Handed Swords'),
19500 (8,6,9078,'Cloth'),
19501 (8,6,10846,'First Aid'),
19502 (8,6,3275,'Linen Bandage'),
19503 (8,6,18630,'Heavy Runecloth Bandage'),
19504 (8,6,3276,'Heavy Linen Bandage'),
19505 (8,6,3277,'Wool Bandage'),
19506 (8,6,3278,'Heavy Wool Bandage'),
19507 (8,6,7928,'Silk Bandage'),
19508 (8,6,7929,'Heavy Silk Bandage'),
19509 (8,6,10840,'Mageweave Bandage'),
19510 (8,6,10841,'Heavy Mageweave Bandage'),
19511 (8,6,18629,'Runecloth Bandage'),
19512 (8,6,7934,'Anti-Venom'),
19513 (9,1,202,'Two-Handed Swords'),
19514 (9,1,69269,'Language Goblin'),
19515 (9,1,69070,'Rocket Jump'),
19516 (9,1,69041,'Rocket Barrage'),
19517 (9,1,69044,'Best Deals Anywhere'),
19518 (9,1,69045,'Better Living Through Chemistry'),
19519 (9,1,69042,'Time is Money'),
19520 (9,1,79749,'Languages'),
19521 (9,1,196,'One-Handed Axes'),
19522 (9,1,2457,'Battle Stance'),
19523 (9,1,88161,'Strike'),
19524 (9,1,5011,'Crossbows'),
19525 (9,1,3018,'Shoot'),
19526 (9,1,669,'Language Orcish'),
19527 (9,1,197,'Two-Handed Axes'),
19528 (9,1,1180,'Daggers'),
19529 (9,1,45927,'Summon Friend'),
19530 (9,1,6478,'Opening'),
19531 (9,1,6603,'Auto Attack'),
19532 (9,1,22027,'Remove Insignia'),
19533 (9,1,22810,'Opening - No Text'),
19534 (9,1,21651,'Opening'),
19535 (9,1,21652,'Closing'),
19536 (9,1,2382,'Generic'),
19537 (9,1,3365,'Opening'),
19538 (9,1,3050,'Detect'),
19539 (9,1,9125,'Generic'),
19540 (9,1,8386,'Attacking'),
19541 (9,1,7266,'Duel'),
19542 (9,1,7267,'Grovel'),
19543 (9,1,7355,'Stuck'),
19544 (9,1,6233,'Closing'),
19545 (9,1,6246,'Closing'),
19546 (9,1,6247,'Opening'),
19547 (9,1,6477,'Opening'),
19548 (9,1,61437,'Opening'),
19549 (9,1,68398,'Opening'),
19550 (9,1,96220,'Opening'),
19551 (9,1,203,'Unarmed'),
19552 (9,1,49410,'Forceful Deflection'),
19553 (9,1,199,'Two-Handed Maces'),
19554 (9,1,15590,'Fist Weapons'),
19555 (9,1,76268,'Armor Skills'),
19556 (9,1,76290,'Weapon Skills'),
19557 (9,1,88163,'Attack'),
19558 (9,1,200,'Polearms'),
19559 (9,1,227,'Staves'),
19560 (9,1,9116,'Shield'),
19561 (9,1,8737,'Mail'),
19562 (9,1,9077,'Leather'),
19563 (9,1,264,'Bows'),
19564 (9,1,266,'Guns'),
19565 (9,1,107,'Block'),
19566 (9,1,81,'Dodge'),
19567 (9,1,32215,'Victorious State'),
19568 (9,1,5301,'Defensive State (DND)'),
19569 (9,1,204,'Defense'),
19570 (9,1,522,'SPELLDEFENSE (DND)'),
19571 (9,1,2764,'Throw'),
19572 (9,1,2567,'Thrown'),
19573 (9,1,9078,'Cloth'),
19574 (9,1,198,'One-Handed Maces'),
19575 (9,1,201,'One-Handed Swords'),
19576 (9,3,202,'Two-Handed Swords'),
19577 (9,3,69269,'Language Goblin'),
19578 (9,3,69070,'Rocket Jump'),
19579 (9,3,69041,'Rocket Barrage'),
19580 (9,3,69044,'Best Deals Anywhere'),
19581 (9,3,69045,'Better Living Through Chemistry'),
19582 (9,3,69042,'Time is Money'),
19583 (9,3,79749,'Languages'),
19584 (9,3,196,'One-Handed Axes'),
19585 (9,3,3044,'Arcane Shot'),
19586 (9,3,75,'Auto Shot'),
19587 (9,3,82928,'Aimed Shot!'),
19588 (9,3,5011,'Crossbows'),
19589 (9,3,669,'Language Orcish'),
19590 (9,3,197,'Two-Handed Axes'),
19591 (9,3,1180,'Daggers'),
19592 (9,3,45927,'Summon Friend'),
19593 (9,3,6478,'Opening'),
19594 (9,3,6603,'Auto Attack'),
19595 (9,3,22027,'Remove Insignia'),
19596 (9,3,22810,'Opening - No Text'),
19597 (9,3,21651,'Opening'),
19598 (9,3,21652,'Closing'),
19599 (9,3,34082,'Hunter Passive Auras (DND)'),
19600 (9,3,2382,'Generic'),
19601 (9,3,3365,'Opening'),
19602 (9,3,3050,'Detect'),
19603 (9,3,9125,'Generic'),
19604 (9,3,8386,'Attacking'),
19605 (9,3,7266,'Duel'),
19606 (9,3,7267,'Grovel'),
19607 (9,3,7355,'Stuck'),
19608 (9,3,6233,'Closing'),
19609 (9,3,6246,'Closing'),
19610 (9,3,6247,'Opening'),
19611 (9,3,6477,'Opening'),
19612 (9,3,61437,'Opening'),
19613 (9,3,68398,'Opening'),
19614 (9,3,96220,'Opening'),
19615 (9,3,203,'Unarmed'),
19616 (9,3,883,'Call Pet 1'),
19617 (9,3,982,'Revive Pet'),
19618 (9,3,15590,'Fist Weapons'),
19619 (9,3,200,'Polearms'),
19620 (9,3,227,'Staves'),
19621 (9,3,9077,'Leather'),
19622 (9,3,264,'Bows'),
19623 (9,3,266,'Guns'),
19624 (9,3,13358,'Defensive State (DND)'),
19625 (9,3,81,'Dodge'),
19626 (9,3,204,'Defense'),
19627 (9,3,522,'SPELLDEFENSE (DND)'),
19628 (9,3,24949,'Defensive State 2 (DND)'),
19629 (9,3,9078,'Cloth'),
19630 (9,3,77442,'Focus'),
19631 (9,3,76249,'Weapon Skills'),
19632 (9,3,76250,'Armor Skills'),
19633 (9,3,87324,'Focused Aim'),
19634 (9,3,87816,'General Hunter Passives'),
19635 (9,3,201,'One-Handed Swords'),
19636 (9,4,69269,'Language Goblin'),
19637 (9,4,69070,'Rocket Jump'),
19638 (9,4,69041,'Rocket Barrage'),
19639 (9,4,69044,'Best Deals Anywhere'),
19640 (9,4,69045,'Better Living Through Chemistry'),
19641 (9,4,69042,'Time is Money'),
19642 (9,4,79749,'Languages'),
19643 (9,4,196,'One-Handed Axes'),
19644 (9,4,1752,'Sinister Strike'),
19645 (9,4,5011,'Crossbows'),
19646 (9,4,3018,'Shoot'),
19647 (9,4,669,'Language Orcish'),
19648 (9,4,674,'Dual Wield'),
19649 (9,4,1180,'Daggers'),
19650 (9,4,45927,'Summon Friend'),
19651 (9,4,6478,'Opening'),
19652 (9,4,6603,'Auto Attack'),
19653 (9,4,22027,'Remove Insignia'),
19654 (9,4,22810,'Opening - No Text'),
19655 (9,4,21651,'Opening'),
19656 (9,4,21652,'Closing'),
19657 (9,4,2382,'Generic'),
19658 (9,4,3365,'Opening'),
19659 (9,4,3050,'Detect'),
19660 (9,4,9125,'Generic'),
19661 (9,4,8386,'Attacking'),
19662 (9,4,7266,'Duel'),
19663 (9,4,7267,'Grovel'),
19664 (9,4,7355,'Stuck'),
19665 (9,4,6233,'Closing'),
19666 (9,4,6246,'Closing'),
19667 (9,4,6247,'Opening'),
19668 (9,4,6477,'Opening'),
19669 (9,4,61437,'Opening'),
19670 (9,4,68398,'Opening'),
19671 (9,4,96220,'Opening'),
19672 (9,4,203,'Unarmed'),
19673 (9,4,15590,'Fist Weapons'),
19674 (9,4,76273,'Armor Skills'),
19675 (9,4,76297,'Weapon Skills'),
19676 (9,4,9077,'Leather'),
19677 (9,4,264,'Bows'),
19678 (9,4,266,'Guns'),
19679 (9,4,81,'Dodge'),
19680 (9,4,204,'Defense'),
19681 (9,4,522,'SPELLDEFENSE (DND)'),
19682 (9,4,16092,'Defensive State (DND)'),
19683 (9,4,2764,'Throw'),
19684 (9,4,2567,'Thrown'),
19685 (9,4,9078,'Cloth'),
19686 (9,4,198,'One-Handed Maces'),
19687 (9,4,201,'One-Handed Swords'),
19688 (9,5,69269,'Language Goblin'),
19689 (9,5,69070,'Rocket Jump'),
19690 (9,5,69041,'Rocket Barrage'),
19691 (9,5,69044,'Best Deals Anywhere'),
19692 (9,5,69045,'Better Living Through Chemistry'),
19693 (9,5,69042,'Time is Money'),
19694 (9,5,79749,'Languages'),
19695 (9,5,5009,'Wands'),
19696 (9,5,5019,'Shoot'),
19697 (9,5,669,'Language Orcish'),
19698 (9,5,1180,'Daggers'),
19699 (9,5,45927,'Summon Friend'),
19700 (9,5,6478,'Opening'),
19701 (9,5,6603,'Auto Attack'),
19702 (9,5,22027,'Remove Insignia'),
19703 (9,5,22810,'Opening - No Text'),
19704 (9,5,21651,'Opening'),
19705 (9,5,21652,'Closing'),
19706 (9,5,2382,'Generic'),
19707 (9,5,3365,'Opening'),
19708 (9,5,3050,'Detect'),
19709 (9,5,9125,'Generic'),
19710 (9,5,8386,'Attacking'),
19711 (9,5,7266,'Duel'),
19712 (9,5,7267,'Grovel'),
19713 (9,5,7355,'Stuck'),
19714 (9,5,6233,'Closing'),
19715 (9,5,6246,'Closing'),
19716 (9,5,6247,'Opening'),
19717 (9,5,6477,'Opening'),
19718 (9,5,61437,'Opening'),
19719 (9,5,68398,'Opening'),
19720 (9,5,96220,'Opening'),
19721 (9,5,203,'Unarmed'),
19722 (9,5,585,'Smite'),
19723 (9,5,84733,'Holy Focus'),
19724 (9,5,88685,'Holy Word: Sanctuary'),
19725 (9,5,88684,'Holy Word: Serenity'),
19726 (9,5,101062,'Flash Heal'),
19727 (9,5,76301,'Weapon Skills'),
19728 (9,5,76279,'Armor Skills'),
19729 (9,5,84734,'Dark Thoughts'),
19730 (9,5,227,'Staves'),
19731 (9,5,77486,'Shadow Orb Power'),
19732 (9,5,81,'Dodge'),
19733 (9,5,204,'Defense'),
19734 (9,5,522,'SPELLDEFENSE (DND)'),
19735 (9,5,9078,'Cloth'),
19736 (9,5,198,'One-Handed Maces'),
19737 (9,7,196,'One-Handed Axes'),
19738 (9,7,69269,'Language Goblin'),
19739 (9,7,69070,'Rocket Jump'),
19740 (9,7,69041,'Rocket Barrage'),
19741 (9,7,69044,'Best Deals Anywhere'),
19742 (9,7,69045,'Better Living Through Chemistry'),
19743 (9,7,69042,'Time is Money'),
19744 (9,7,79749,'Languages'),
19745 (9,7,669,'Language Orcish'),
19746 (9,7,197,'Two-Handed Axes'),
19747 (9,7,1180,'Daggers'),
19748 (9,7,45927,'Summon Friend'),
19749 (9,7,6478,'Opening'),
19750 (9,7,6603,'Auto Attack'),
19751 (9,7,22027,'Remove Insignia'),
19752 (9,7,22810,'Opening - No Text'),
19753 (9,7,21651,'Opening'),
19754 (9,7,21652,'Closing'),
19755 (9,7,2382,'Generic'),
19756 (9,7,3365,'Opening'),
19757 (9,7,3050,'Detect'),
19758 (9,7,9125,'Generic'),
19759 (9,7,8386,'Attacking'),
19760 (9,7,7266,'Duel'),
19761 (9,7,7267,'Grovel'),
19762 (9,7,7355,'Stuck'),
19763 (9,7,6233,'Closing'),
19764 (9,7,6246,'Closing'),
19765 (9,7,6247,'Opening'),
19766 (9,7,6477,'Opening'),
19767 (9,7,27763,'Relic'),
19768 (9,7,61437,'Opening'),
19769 (9,7,68398,'Opening'),
19770 (9,7,96220,'Opening'),
19771 (9,7,203,'Unarmed'),
19772 (9,7,199,'Two-Handed Maces'),
19773 (9,7,15590,'Fist Weapons'),
19774 (9,7,76272,'Armor Skills'),
19775 (9,7,76296,'Weapon Skills'),
19776 (9,7,89920,'Ancestral Focus'),
19777 (9,7,227,'Staves'),
19778 (9,7,9116,'Shield'),
19779 (9,7,9077,'Leather'),
19780 (9,7,107,'Block'),
19781 (9,7,81,'Dodge'),
19782 (9,7,204,'Defense'),
19783 (9,7,522,'SPELLDEFENSE (DND)'),
19784 (9,7,403,'Lightning Bolt'),
19785 (9,7,9078,'Cloth'),
19786 (9,7,198,'One-Handed Maces'),
19787 (9,8,69269,'Language Goblin'),
19788 (9,8,69070,'Rocket Jump'),
19789 (9,8,69041,'Rocket Barrage'),
19790 (9,8,69044,'Best Deals Anywhere'),
19791 (9,8,69045,'Better Living Through Chemistry'),
19792 (9,8,69042,'Time is Money'),
19793 (9,8,79749,'Languages'),
19794 (9,8,71761,'Deep Freeze Immunity State'),
19795 (9,8,5009,'Wands'),
19796 (9,8,5019,'Shoot'),
19797 (9,8,669,'Language Orcish'),
19798 (9,8,1180,'Daggers'),
19799 (9,8,45927,'Summon Friend'),
19800 (9,8,6478,'Opening'),
19801 (9,8,6603,'Auto Attack'),
19802 (9,8,22027,'Remove Insignia'),
19803 (9,8,22810,'Opening - No Text'),
19804 (9,8,21651,'Opening'),
19805 (9,8,21652,'Closing'),
19806 (9,8,2382,'Generic'),
19807 (9,8,3365,'Opening'),
19808 (9,8,3050,'Detect'),
19809 (9,8,9125,'Generic'),
19810 (9,8,8386,'Attacking'),
19811 (9,8,7266,'Duel'),
19812 (9,8,7267,'Grovel'),
19813 (9,8,7355,'Stuck'),
19814 (9,8,6233,'Closing'),
19815 (9,8,6246,'Closing'),
19816 (9,8,6247,'Opening'),
19817 (9,8,6477,'Opening'),
19818 (9,8,61437,'Opening'),
19819 (9,8,68398,'Opening'),
19820 (9,8,96220,'Opening'),
19821 (9,8,79684,'Offensive State (DND)'),
19822 (9,8,203,'Unarmed'),
19823 (9,8,133,'Fireball'),
19824 (9,8,92315,'Pyroblast!'),
19825 (9,8,85801,'DPS Caster Crit Damage Bonus'),
19826 (9,8,76298,'Weapon Skills'),
19827 (9,8,76276,'Armor Skills'),
19828 (9,8,227,'Staves'),
19829 (9,8,81,'Dodge'),
19830 (9,8,204,'Defense'),
19831 (9,8,522,'SPELLDEFENSE (DND)'),
19832 (9,8,9078,'Cloth'),
19833 (9,8,201,'One-Handed Swords'),
19834 (9,9,69269,'Language Goblin'),
19835 (9,9,69070,'Rocket Jump'),
19836 (9,9,69041,'Rocket Barrage'),
19837 (9,9,69044,'Best Deals Anywhere'),
19838 (9,9,69045,'Better Living Through Chemistry'),
19839 (9,9,69042,'Time is Money'),
19840 (9,9,79749,'Languages'),
19841 (9,9,5009,'Wands'),
19842 (9,9,5019,'Shoot'),
19843 (9,9,669,'Language Common'),
19844 (9,9,1180,'Daggers'),
19845 (9,9,45927,'Summon Friend'),
19846 (9,9,6478,'Opening'),
19847 (9,9,6603,'Auto Attack'),
19848 (9,9,22027,'Remove Insignia'),
19849 (9,9,22810,'Opening - No Text'),
19850 (9,9,21651,'Opening'),
19851 (9,9,21652,'Closing'),
19852 (9,9,2382,'Generic'),
19853 (9,9,3365,'Opening'),
19854 (9,9,3050,'Detect'),
19855 (9,9,9125,'Generic'),
19856 (9,9,8386,'Attacking'),
19857 (9,9,7266,'Duel'),
19858 (9,9,7267,'Grovel'),
19859 (9,9,7355,'Stuck'),
19860 (9,9,6233,'Closing'),
19861 (9,9,6246,'Closing'),
19862 (9,9,6247,'Opening'),
19863 (9,9,6477,'Opening'),
19864 (9,9,61437,'Opening'),
19865 (9,9,68398,'Opening'),
19866 (9,9,96220,'Opening'),
19867 (9,9,203,'Unarmed'),
19868 (9,9,688,'Summon Imp'),
19869 (9,9,86213,'Soul Swap Exhale'),
19870 (9,9,89420,'Drain Life'),
19871 (9,9,85801,'DPS Caster Crit Damage Bonus'),
19872 (9,9,76299,'Weapon Skills'),
19873 (9,9,76277,'Armor Skills'),
19874 (9,9,87330,'Suppression'),
19875 (9,9,227,'Staves'),
19876 (9,9,75445,'Demonic Immolate'),
19877 (9,9,686,'Shadow Bolt'),
19878 (9,9,58284,'Chaos Bolt Passive'),
19879 (9,9,81,'Dodge'),
19880 (9,9,204,'Defense'),
19881 (9,9,522,'SPELLDEFENSE (DND)'),
19882 (9,9,9078,'Cloth'),
19883 (9,9,201,'One-Handed Swords'),
19884 (9,6,6478,'Opening'),
19885 (9,6,6603,'Auto Attack'),
19886 (9,6,45927,'Summon Friend'),
19887 (9,6,22027,'Remove Insignia'),
19888 (9,6,22810,'Opening - No Text'),
19889 (9,6,21651,'Opening'),
19890 (9,6,21652,'Closing'),
19891 (9,6,2382,'Generic'),
19892 (9,6,3365,'Opening'),
19893 (9,6,3050,'Detect'),
19894 (9,6,9125,'Generic'),
19895 (9,6,8386,'Attacking'),
19896 (9,6,7266,'Duel'),
19897 (9,6,7267,'Grovel'),
19898 (9,6,7355,'Stuck'),
19899 (9,6,6233,'Closing'),
19900 (9,6,6246,'Closing'),
19901 (9,6,6247,'Opening'),
19902 (9,6,6477,'Opening'),
19903 (9,6,52665,'Relic'),
19904 (9,6,61437,'Opening'),
19905 (9,6,68398,'Opening'),
19906 (9,6,63645,'Activating Primary Spec'),
19907 (9,6,63644,'Activating Secondary Spec'),
19908 (9,6,96220,'Opening'),
19909 (9,6,203,'Unarmed'),
19910 (9,6,674,'Dual Wield'),
19911 (9,6,669,'Language Orcish'),
19912 (9,6,197,'Two-Handed Axes'),
19913 (9,6,45902,'Blood Strike'),
19914 (9,6,49410,'Forceful Deflection'),
19915 (9,6,82246,'Parry'),
19916 (9,6,89832,'Death Strike Enabler'),
19917 (9,6,45477,'Icy Touch'),
19918 (9,6,48266,'Frost Presence'),
19919 (9,6,61455,'Runic Focus'),
19920 (9,6,59921,'Frost Fever'),
19921 (9,6,202,'Two-Handed Swords'),
19922 (9,6,196,'One-Handed Axes'),
19923 (9,6,33391,'Journeyman Riding'),
19924 (9,6,89964,'Clear Glyph'),
19925 (9,6,69269,'Language Goblin'),
19926 (9,6,76282,'Armor Skills'),
19927 (9,6,76292,'Weapon Skills'),
19928 (9,6,750,'Plate Mail'),
19929 (9,6,199,'Two-Handed Maces'),
19930 (9,6,200,'Polearms'),
19931 (9,6,8737,'Mail'),
19932 (9,6,9077,'Leather'),
19933 (9,6,45462,'Plague Strike'),
19934 (9,6,47541,'Death Coil'),
19935 (9,6,49576,'Death Grip'),
19936 (9,6,59879,'Blood Plague'),
19937 (9,6,45903,'Offensive State (DND)'),
19938 (9,6,81,'Dodge'),
19939 (9,6,204,'Defense'),
19940 (9,6,522,'SPELLDEFENSE (DND)'),
19941 (9,6,198,'One-Handed Maces'),
19942 (9,6,201,'One-Handed Swords'),
19943 (9,6,9078,'Cloth'),
19944 (9,6,10846,'First Aid'),
19945 (9,6,3275,'Linen Bandage'),
19946 (9,6,18630,'Heavy Runecloth Bandage'),
19947 (9,6,3276,'Heavy Linen Bandage'),
19948 (9,6,3277,'Wool Bandage'),
19949 (9,6,3278,'Heavy Wool Bandage'),
19950 (9,6,7928,'Silk Bandage'),
19951 (9,6,7929,'Heavy Silk Bandage'),
19952 (9,6,10840,'Mageweave Bandage'),
19953 (9,6,10841,'Heavy Mageweave Bandage'),
19954 (9,6,18629,'Runecloth Bandage'),
19955 (9,6,7934,'Anti-Venom'),
19956 (9,6,69070,'Rocket Jump'),
19957 (9,6,69046,'Pack Hobgoblin'),
19958 (9,6,69044,'Best Deals Anywhere'),
19959 (9,6,69045,'Better Living Through Chemistry'),
19960 (9,6,69041,'Rocket Barrage'),
19961 (9,6,69042,'Time is Money'),
19962 (9,6,79749,'Languages'),
19963 (10,1,202,'Two-Handed Swords'),
19964 (10,1,813,'Language Thalassian'),
19965 (10,1,822,'Arcane Resistance'),
19966 (10,1,28877,'Arcane Affinity'),
19967 (10,1,69179,'Arcane Torrent'),
19968 (10,1,79748,'Languages'),
19969 (10,1,196,'One-Handed Axes'),
19970 (10,1,2457,'Battle Stance'),
19971 (10,1,88161,'Strike'),
19972 (10,1,5011,'Crossbows'),
19973 (10,1,3018,'Shoot'),
19974 (10,1,669,'Language Orcish'),
19975 (10,1,197,'Two-Handed Axes'),
19976 (10,1,1180,'Daggers'),
19977 (10,1,45927,'Summon Friend'),
19978 (10,1,6478,'Opening'),
19979 (10,1,6603,'Auto Attack'),
19980 (10,1,22027,'Remove Insignia'),
19981 (10,1,22810,'Opening - No Text'),
19982 (10,1,21651,'Opening'),
19983 (10,1,21652,'Closing'),
19984 (10,1,2382,'Generic'),
19985 (10,1,3365,'Opening'),
19986 (10,1,3050,'Detect'),
19987 (10,1,9125,'Generic'),
19988 (10,1,8386,'Attacking'),
19989 (10,1,7266,'Duel'),
19990 (10,1,7267,'Grovel'),
19991 (10,1,7355,'Stuck'),
19992 (10,1,6233,'Closing'),
19993 (10,1,6246,'Closing'),
19994 (10,1,6247,'Opening'),
19995 (10,1,6477,'Opening'),
19996 (10,1,61437,'Opening'),
19997 (10,1,68398,'Opening'),
19998 (10,1,96220,'Opening'),
19999 (10,1,203,'Unarmed'),
20000 (10,1,49410,'Forceful Deflection'),
20001 (10,1,199,'Two-Handed Maces'),
20002 (10,1,15590,'Fist Weapons'),
20003 (10,1,76268,'Armor Skills'),
20004 (10,1,76290,'Weapon Skills'),
20005 (10,1,88163,'Attack'),
20006 (10,1,200,'Polearms'),
20007 (10,1,227,'Staves'),
20008 (10,1,9116,'Shield'),
20009 (10,1,8737,'Mail'),
20010 (10,1,9077,'Leather'),
20011 (10,1,264,'Bows'),
20012 (10,1,266,'Guns'),
20013 (10,1,107,'Block'),
20014 (10,1,81,'Dodge'),
20015 (10,1,32215,'Victorious State'),
20016 (10,1,5301,'Defensive State (DND)'),
20017 (10,1,204,'Defense'),
20018 (10,1,522,'SPELLDEFENSE (DND)'),
20019 (10,1,2764,'Throw'),
20020 (10,1,2567,'Thrown'),
20021 (10,1,9078,'Cloth'),
20022 (10,1,198,'One-Handed Maces'),
20023 (10,1,201,'One-Handed Swords'),
20024 (10,2,202,'Two-Handed Swords'),
20025 (10,2,813,'Language Thalassian'),
20026 (10,2,822,'Arcane Resistance'),
20027 (10,2,28877,'Arcane Affinity'),
20028 (10,2,28730,'Arcane Torrent'),
20029 (10,2,79748,'Languages'),
20030 (10,2,196,'One-Handed Axes'),
20031 (10,2,669,'Language Orcish'),
20032 (10,2,197,'Two-Handed Axes'),
20033 (10,2,45927,'Summon Friend'),
20034 (10,2,6478,'Opening'),
20035 (10,2,6603,'Auto Attack'),
20036 (10,2,22027,'Remove Insignia'),
20037 (10,2,22810,'Opening - No Text'),
20038 (10,2,21651,'Opening'),
20039 (10,2,21652,'Closing'),
20040 (10,2,2382,'Generic'),
20041 (10,2,3365,'Opening'),
20042 (10,2,3050,'Detect'),
20043 (10,2,9125,'Generic'),
20044 (10,2,8386,'Attacking'),
20045 (10,2,7266,'Duel'),
20046 (10,2,7267,'Grovel'),
20047 (10,2,7355,'Stuck'),
20048 (10,2,6233,'Closing'),
20049 (10,2,6246,'Closing'),
20050 (10,2,6247,'Opening'),
20051 (10,2,6477,'Opening'),
20052 (10,2,27762,'Relic'),
20053 (10,2,61437,'Opening'),
20054 (10,2,68398,'Opening'),
20055 (10,2,96220,'Opening'),
20056 (10,2,49410,'Forceful Deflection'),
20057 (10,2,203,'Unarmed'),
20058 (10,2,199,'Two-Handed Maces'),
20059 (10,2,76271,'Armor Skills'),
20060 (10,2,76294,'Weapon Skills'),
20061 (10,2,200,'Polearms'),
20062 (10,2,35395,'Crusader Strike'),
20063 (10,2,60091,'Judgement Anti-Parry/Dodge Passive'),
20064 (10,2,9116,'Shield'),
20065 (10,2,8737,'Mail'),
20066 (10,2,9077,'Leather'),
20067 (10,2,107,'Block'),
20068 (10,2,81,'Dodge'),
20069 (10,2,204,'Defense'),
20070 (10,2,522,'SPELLDEFENSE (DND)'),
20071 (10,2,9078,'Cloth'),
20072 (10,2,20208,'Paladin pushback resistance'),
20073 (10,2,198,'One-Handed Maces'),
20074 (10,2,201,'One-Handed Swords'),
20075 (10,3,202,'Two-Handed Swords'),
20076 (10,3,813,'Language Thalassian'),
20077 (10,3,822,'Arcane Resistance'),
20078 (10,3,28877,'Arcane Affinity'),
20079 (10,3,80483,'Arcane Torrent'),
20080 (10,3,79748,'Languages'),
20081 (10,3,196,'One-Handed Axes'),
20082 (10,3,3044,'Arcane Shot'),
20083 (10,3,75,'Auto Shot'),
20084 (10,3,82928,'Aimed Shot!'),
20085 (10,3,5011,'Crossbows'),
20086 (10,3,669,'Language Orcish'),
20087 (10,3,197,'Two-Handed Axes'),
20088 (10,3,1180,'Daggers'),
20089 (10,3,45927,'Summon Friend'),
20090 (10,3,6478,'Opening'),
20091 (10,3,6603,'Auto Attack'),
20092 (10,3,22027,'Remove Insignia'),
20093 (10,3,22810,'Opening - No Text'),
20094 (10,3,21651,'Opening'),
20095 (10,3,21652,'Closing'),
20096 (10,3,34082,'Hunter Passive Auras (DND)'),
20097 (10,3,2382,'Generic'),
20098 (10,3,3365,'Opening'),
20099 (10,3,3050,'Detect'),
20100 (10,3,9125,'Generic'),
20101 (10,3,8386,'Attacking'),
20102 (10,3,7266,'Duel'),
20103 (10,3,7267,'Grovel'),
20104 (10,3,7355,'Stuck'),
20105 (10,3,6233,'Closing'),
20106 (10,3,6246,'Closing'),
20107 (10,3,6247,'Opening'),
20108 (10,3,6477,'Opening'),
20109 (10,3,61437,'Opening'),
20110 (10,3,68398,'Opening'),
20111 (10,3,96220,'Opening'),
20112 (10,3,203,'Unarmed'),
20113 (10,3,883,'Call Pet 1'),
20114 (10,3,982,'Revive Pet'),
20115 (10,3,15590,'Fist Weapons'),
20116 (10,3,200,'Polearms'),
20117 (10,3,227,'Staves'),
20118 (10,3,9077,'Leather'),
20119 (10,3,264,'Bows'),
20120 (10,3,266,'Guns'),
20121 (10,3,13358,'Defensive State (DND)'),
20122 (10,3,81,'Dodge'),
20123 (10,3,204,'Defense'),
20124 (10,3,522,'SPELLDEFENSE (DND)'),
20125 (10,3,24949,'Defensive State 2 (DND)'),
20126 (10,3,9078,'Cloth'),
20127 (10,3,77442,'Focus'),
20128 (10,3,76249,'Weapon Skills'),
20129 (10,3,76250,'Armor Skills'),
20130 (10,3,87324,'Focused Aim'),
20131 (10,3,87816,'General Hunter Passives'),
20132 (10,3,201,'One-Handed Swords'),
20133 (10,4,196,'One-Handed Axes'),
20134 (10,4,813,'Language Thalassian'),
20135 (10,4,822,'Arcane Resistance'),
20136 (10,4,28877,'Arcane Affinity'),
20137 (10,4,25046,'Arcane Torrent'),
20138 (10,4,79748,'Languages'),
20139 (10,4,1752,'Sinister Strike'),
20140 (10,4,5011,'Crossbows'),
20141 (10,4,3018,'Shoot'),
20142 (10,4,669,'Language Orcish'),
20143 (10,4,674,'Dual Wield'),
20144 (10,4,1180,'Daggers'),
20145 (10,4,45927,'Summon Friend'),
20146 (10,4,6478,'Opening'),
20147 (10,4,6603,'Auto Attack'),
20148 (10,4,22027,'Remove Insignia'),
20149 (10,4,22810,'Opening - No Text'),
20150 (10,4,21651,'Opening'),
20151 (10,4,21652,'Closing'),
20152 (10,4,2382,'Generic'),
20153 (10,4,3365,'Opening'),
20154 (10,4,3050,'Detect'),
20155 (10,4,9125,'Generic'),
20156 (10,4,8386,'Attacking'),
20157 (10,4,7266,'Duel'),
20158 (10,4,7267,'Grovel'),
20159 (10,4,7355,'Stuck'),
20160 (10,4,6233,'Closing'),
20161 (10,4,6246,'Closing'),
20162 (10,4,6247,'Opening'),
20163 (10,4,6477,'Opening'),
20164 (10,4,61437,'Opening'),
20165 (10,4,68398,'Opening'),
20166 (10,4,96220,'Opening'),
20167 (10,4,203,'Unarmed'),
20168 (10,4,15590,'Fist Weapons'),
20169 (10,4,76273,'Armor Skills'),
20170 (10,4,76297,'Weapon Skills'),
20171 (10,4,9077,'Leather'),
20172 (10,4,264,'Bows'),
20173 (10,4,266,'Guns'),
20174 (10,4,81,'Dodge'),
20175 (10,4,204,'Defense'),
20176 (10,4,522,'SPELLDEFENSE (DND)'),
20177 (10,4,16092,'Defensive State (DND)'),
20178 (10,4,2764,'Throw'),
20179 (10,4,2567,'Thrown'),
20180 (10,4,9078,'Cloth'),
20181 (10,4,198,'One-Handed Maces'),
20182 (10,4,201,'One-Handed Swords'),
20183 (10,5,813,'Language Thalassian'),
20184 (10,5,822,'Arcane Resistance'),
20185 (10,5,28877,'Arcane Affinity'),
20186 (10,5,28730,'Arcane Torrent'),
20187 (10,5,79748,'Languages'),
20188 (10,5,5009,'Wands'),
20189 (10,5,5019,'Shoot'),
20190 (10,5,669,'Language Orcish'),
20191 (10,5,1180,'Daggers'),
20192 (10,5,45927,'Summon Friend'),
20193 (10,5,6478,'Opening'),
20194 (10,5,6603,'Auto Attack'),
20195 (10,5,22027,'Remove Insignia'),
20196 (10,5,22810,'Opening - No Text'),
20197 (10,5,21651,'Opening'),
20198 (10,5,21652,'Closing'),
20199 (10,5,2382,'Generic'),
20200 (10,5,3365,'Opening'),
20201 (10,5,3050,'Detect'),
20202 (10,5,9125,'Generic'),
20203 (10,5,8386,'Attacking'),
20204 (10,5,7266,'Duel'),
20205 (10,5,7267,'Grovel'),
20206 (10,5,7355,'Stuck'),
20207 (10,5,6233,'Closing'),
20208 (10,5,6246,'Closing'),
20209 (10,5,6247,'Opening'),
20210 (10,5,6477,'Opening'),
20211 (10,5,61437,'Opening'),
20212 (10,5,68398,'Opening'),
20213 (10,5,96220,'Opening'),
20214 (10,5,203,'Unarmed'),
20215 (10,5,585,'Smite'),
20216 (10,5,84733,'Holy Focus'),
20217 (10,5,88685,'Holy Word: Sanctuary'),
20218 (10,5,88684,'Holy Word: Serenity'),
20219 (10,5,101062,'Flash Heal'),
20220 (10,5,76301,'Weapon Skills'),
20221 (10,5,76279,'Armor Skills'),
20222 (10,5,84734,'Dark Thoughts'),
20223 (10,5,227,'Staves'),
20224 (10,5,77486,'Shadow Orb Power'),
20225 (10,5,81,'Dodge'),
20226 (10,5,204,'Defense'),
20227 (10,5,522,'SPELLDEFENSE (DND)'),
20228 (10,5,9078,'Cloth'),
20229 (10,5,198,'One-Handed Maces'),
20230 (10,8,813,'Language Thalassian'),
20231 (10,8,822,'Arcane Resistance'),
20232 (10,8,28877,'Arcane Affinity'),
20233 (10,8,28730,'Arcane Torrent'),
20234 (10,8,79748,'Languages'),
20235 (10,8,71761,'Deep Freeze Immunity State'),
20236 (10,8,5009,'Wands'),
20237 (10,8,5019,'Shoot'),
20238 (10,8,669,'Language Orcish'),
20239 (10,8,1180,'Daggers'),
20240 (10,8,45927,'Summon Friend'),
20241 (10,8,6478,'Opening'),
20242 (10,8,6603,'Auto Attack'),
20243 (10,8,22027,'Remove Insignia'),
20244 (10,8,22810,'Opening - No Text'),
20245 (10,8,21651,'Opening'),
20246 (10,8,21652,'Closing'),
20247 (10,8,2382,'Generic'),
20248 (10,8,3365,'Opening'),
20249 (10,8,3050,'Detect'),
20250 (10,8,9125,'Generic'),
20251 (10,8,8386,'Attacking'),
20252 (10,8,7266,'Duel'),
20253 (10,8,7267,'Grovel'),
20254 (10,8,7355,'Stuck'),
20255 (10,8,6233,'Closing'),
20256 (10,8,6246,'Closing'),
20257 (10,8,6247,'Opening'),
20258 (10,8,6477,'Opening'),
20259 (10,8,61437,'Opening'),
20260 (10,8,68398,'Opening'),
20261 (10,8,96220,'Opening'),
20262 (10,8,79684,'Offensive State (DND)'),
20263 (10,8,203,'Unarmed'),
20264 (10,8,133,'Fireball'),
20265 (10,8,92315,'Pyroblast!'),
20266 (10,8,85801,'DPS Caster Crit Damage Bonus'),
20267 (10,8,76298,'Weapon Skills'),
20268 (10,8,76276,'Armor Skills'),
20269 (10,8,227,'Staves'),
20270 (10,8,81,'Dodge'),
20271 (10,8,204,'Defense'),
20272 (10,8,522,'SPELLDEFENSE (DND)'),
20273 (10,8,9078,'Cloth'),
20274 (10,8,201,'One-Handed Swords'),
20275 (10,9,813,'Language Thalassian'),
20276 (10,9,822,'Arcane Resistance'),
20277 (10,9,28877,'Arcane Affinity'),
20278 (10,9,28730,'Arcane Torrent'),
20279 (10,9,79748,'Languages'),
20280 (10,9,5009,'Wands'),
20281 (10,9,5019,'Shoot'),
20282 (10,9,669,'Language Common'),
20283 (10,9,1180,'Daggers'),
20284 (10,9,45927,'Summon Friend'),
20285 (10,9,6478,'Opening'),
20286 (10,9,6603,'Auto Attack'),
20287 (10,9,22027,'Remove Insignia'),
20288 (10,9,22810,'Opening - No Text'),
20289 (10,9,21651,'Opening'),
20290 (10,9,21652,'Closing'),
20291 (10,9,2382,'Generic'),
20292 (10,9,3365,'Opening'),
20293 (10,9,3050,'Detect'),
20294 (10,9,9125,'Generic'),
20295 (10,9,8386,'Attacking'),
20296 (10,9,7266,'Duel'),
20297 (10,9,7267,'Grovel'),
20298 (10,9,7355,'Stuck'),
20299 (10,9,6233,'Closing'),
20300 (10,9,6246,'Closing'),
20301 (10,9,6247,'Opening'),
20302 (10,9,6477,'Opening'),
20303 (10,9,61437,'Opening'),
20304 (10,9,68398,'Opening'),
20305 (10,9,96220,'Opening'),
20306 (10,9,203,'Unarmed'),
20307 (10,9,688,'Summon Imp'),
20308 (10,9,86213,'Soul Swap Exhale'),
20309 (10,9,89420,'Drain Life'),
20310 (10,9,85801,'DPS Caster Crit Damage Bonus'),
20311 (10,9,76299,'Weapon Skills'),
20312 (10,9,76277,'Armor Skills'),
20313 (10,9,87330,'Suppression'),
20314 (10,9,227,'Staves'),
20315 (10,9,75445,'Demonic Immolate'),
20316 (10,9,686,'Shadow Bolt'),
20317 (10,9,58284,'Chaos Bolt Passive'),
20318 (10,9,81,'Dodge'),
20319 (10,9,204,'Defense'),
20320 (10,9,522,'SPELLDEFENSE (DND)'),
20321 (10,9,9078,'Cloth'),
20322 (10,9,201,'One-Handed Swords'),
20323 (10,6,6478,'Opening'),
20324 (10,6,6603,'Auto Attack'),
20325 (10,6,45927,'Summon Friend'),
20326 (10,6,22027,'Remove Insignia'),
20327 (10,6,22810,'Opening - No Text'),
20328 (10,6,21651,'Opening'),
20329 (10,6,21652,'Closing'),
20330 (10,6,2382,'Generic'),
20331 (10,6,3365,'Opening'),
20332 (10,6,3050,'Detect'),
20333 (10,6,9125,'Generic'),
20334 (10,6,8386,'Attacking'),
20335 (10,6,7266,'Duel'),
20336 (10,6,7267,'Grovel'),
20337 (10,6,7355,'Stuck'),
20338 (10,6,6233,'Closing'),
20339 (10,6,6246,'Closing'),
20340 (10,6,6247,'Opening'),
20341 (10,6,6477,'Opening'),
20342 (10,6,52665,'Relic'),
20343 (10,6,61437,'Opening'),
20344 (10,6,68398,'Opening'),
20345 (10,6,63645,'Activating Primary Spec'),
20346 (10,6,63644,'Activating Secondary Spec'),
20347 (10,6,96220,'Opening'),
20348 (10,6,203,'Unarmed'),
20349 (10,6,674,'Dual Wield'),
20350 (10,6,669,'Language Orcish'),
20351 (10,6,197,'Two-Handed Axes'),
20352 (10,6,45902,'Blood Strike'),
20353 (10,6,49410,'Forceful Deflection'),
20354 (10,6,82246,'Parry'),
20355 (10,6,89832,'Death Strike Enabler'),
20356 (10,6,45477,'Icy Touch'),
20357 (10,6,48266,'Frost Presence'),
20358 (10,6,61455,'Runic Focus'),
20359 (10,6,59921,'Frost Fever'),
20360 (10,6,813,'Language Thalassian'),
20361 (10,6,202,'Two-Handed Swords'),
20362 (10,6,196,'One-Handed Axes'),
20363 (10,6,822,'Arcane Resistance'),
20364 (10,6,28877,'Arcane Affinity'),
20365 (10,6,50613,'Arcane Torrent'),
20366 (10,6,79748,'Languages'),
20367 (10,6,33391,'Journeyman Riding'),
20368 (10,6,89964,'Clear Glyph'),
20369 (10,6,76282,'Armor Skills'),
20370 (10,6,76292,'Weapon Skills'),
20371 (10,6,750,'Plate Mail'),
20372 (10,6,199,'Two-Handed Maces'),
20373 (10,6,200,'Polearms'),
20374 (10,6,8737,'Mail'),
20375 (10,6,9077,'Leather'),
20376 (10,6,45462,'Plague Strike'),
20377 (10,6,47541,'Death Coil'),
20378 (10,6,49576,'Death Grip'),
20379 (10,6,59879,'Blood Plague'),
20380 (10,6,45903,'Offensive State (DND)'),
20381 (10,6,81,'Dodge'),
20382 (10,6,204,'Defense'),
20383 (10,6,522,'SPELLDEFENSE (DND)'),
20384 (10,6,198,'One-Handed Maces'),
20385 (10,6,201,'One-Handed Swords'),
20386 (10,6,9078,'Cloth'),
20387 (10,6,10846,'First Aid'),
20388 (10,6,3275,'Linen Bandage'),
20389 (10,6,18630,'Heavy Runecloth Bandage'),
20390 (10,6,3276,'Heavy Linen Bandage'),
20391 (10,6,3277,'Wool Bandage'),
20392 (10,6,3278,'Heavy Wool Bandage'),
20393 (10,6,7928,'Silk Bandage'),
20394 (10,6,7929,'Heavy Silk Bandage'),
20395 (10,6,10840,'Mageweave Bandage'),
20396 (10,6,10841,'Heavy Mageweave Bandage'),
20397 (10,6,18629,'Runecloth Bandage'),
20398 (10,6,7934,'Anti-Venom'),
20399 (11,1,202,'Two-Handed Swords'),
20400 (11,1,196,'One-Handed Axes'),
20401 (11,1,2457,'Battle Stance'),
20402 (11,1,88161,'Strike'),
20403 (11,1,5011,'Crossbows'),
20404 (11,1,3018,'Shoot'),
20405 (11,1,197,'Two-Handed Axes'),
20406 (11,1,1180,'Daggers'),
20407 (11,1,45927,'Summon Friend'),
20408 (11,1,6478,'Opening'),
20409 (11,1,6603,'Auto Attack'),
20410 (11,1,22027,'Remove Insignia'),
20411 (11,1,22810,'Opening - No Text'),
20412 (11,1,21651,'Opening'),
20413 (11,1,21652,'Closing'),
20414 (11,1,2382,'Generic'),
20415 (11,1,3365,'Opening'),
20416 (11,1,3050,'Detect'),
20417 (11,1,9125,'Generic'),
20418 (11,1,8386,'Attacking'),
20419 (11,1,7266,'Duel'),
20420 (11,1,7267,'Grovel'),
20421 (11,1,7355,'Stuck'),
20422 (11,1,6233,'Closing'),
20423 (11,1,6246,'Closing'),
20424 (11,1,6247,'Opening'),
20425 (11,1,6477,'Opening'),
20426 (11,1,61437,'Opening'),
20427 (11,1,68398,'Opening'),
20428 (11,1,96220,'Opening'),
20429 (11,1,203,'Unarmed'),
20430 (11,1,29932,'Language Draenei'),
20431 (11,1,79741,'Languages'),
20432 (11,1,49410,'Forceful Deflection'),
20433 (11,1,199,'Two-Handed Maces'),
20434 (11,1,15590,'Fist Weapons'),
20435 (11,1,76268,'Armor Skills'),
20436 (11,1,76290,'Weapon Skills'),
20437 (11,1,88163,'Attack'),
20438 (11,1,200,'Polearms'),
20439 (11,1,6562,'Heroic Presence'),
20440 (11,1,28880,'Gift of the Naaru'),
20441 (11,1,28875,'Gemcutting'),
20442 (11,1,59221,'Shadow Resistance'),
20443 (11,1,668,'Language Common'),
20444 (11,1,227,'Staves'),
20445 (11,1,9116,'Shield'),
20446 (11,1,8737,'Mail'),
20447 (11,1,9077,'Leather'),
20448 (11,1,264,'Bows'),
20449 (11,1,266,'Guns'),
20450 (11,1,107,'Block'),
20451 (11,1,81,'Dodge'),
20452 (11,1,32215,'Victorious State'),
20453 (11,1,5301,'Defensive State (DND)'),
20454 (11,1,204,'Defense'),
20455 (11,1,522,'SPELLDEFENSE (DND)'),
20456 (11,1,2764,'Throw'),
20457 (11,1,2567,'Thrown'),
20458 (11,1,9078,'Cloth'),
20459 (11,1,198,'One-Handed Maces'),
20460 (11,1,201,'One-Handed Swords'),
20461 (11,2,202,'Two-Handed Swords'),
20462 (11,2,196,'One-Handed Axes'),
20463 (11,2,197,'Two-Handed Axes'),
20464 (11,2,45927,'Summon Friend'),
20465 (11,2,6478,'Opening'),
20466 (11,2,6603,'Auto Attack'),
20467 (11,2,22027,'Remove Insignia'),
20468 (11,2,22810,'Opening - No Text'),
20469 (11,2,21651,'Opening'),
20470 (11,2,21652,'Closing'),
20471 (11,2,2382,'Generic'),
20472 (11,2,3365,'Opening'),
20473 (11,2,3050,'Detect'),
20474 (11,2,9125,'Generic'),
20475 (11,2,8386,'Attacking'),
20476 (11,2,7266,'Duel'),
20477 (11,2,7267,'Grovel'),
20478 (11,2,7355,'Stuck'),
20479 (11,2,6233,'Closing'),
20480 (11,2,6246,'Closing'),
20481 (11,2,6247,'Opening'),
20482 (11,2,6477,'Opening'),
20483 (11,2,27762,'Relic'),
20484 (11,2,61437,'Opening'),
20485 (11,2,68398,'Opening'),
20486 (11,2,96220,'Opening'),
20487 (11,2,49410,'Forceful Deflection'),
20488 (11,2,203,'Unarmed'),
20489 (11,2,29932,'Language Draenei'),
20490 (11,2,79741,'Languages'),
20491 (11,2,59535,'Shadow Resistance'),
20492 (11,2,6562,'Heroic Presence'),
20493 (11,2,28875,'Gemcutting'),
20494 (11,2,59542,'Gift of the Naaru'),
20495 (11,2,199,'Two-Handed Maces'),
20496 (11,2,76271,'Armor Skills'),
20497 (11,2,76294,'Weapon Skills'),
20498 (11,2,200,'Polearms'),
20499 (11,2,668,'Language Common'),
20500 (11,2,35395,'Crusader Strike'),
20501 (11,2,60091,'Judgement Anti-Parry/Dodge Passive'),
20502 (11,2,9116,'Shield'),
20503 (11,2,8737,'Mail'),
20504 (11,2,9077,'Leather'),
20505 (11,2,107,'Block'),
20506 (11,2,81,'Dodge'),
20507 (11,2,204,'Defense'),
20508 (11,2,522,'SPELLDEFENSE (DND)'),
20509 (11,2,9078,'Cloth'),
20510 (11,2,20208,'Paladin pushback resistance'),
20511 (11,2,198,'One-Handed Maces'),
20512 (11,2,201,'One-Handed Swords'),
20513 (11,3,202,'Two-Handed Swords'),
20514 (11,3,196,'One-Handed Axes'),
20515 (11,3,3044,'Arcane Shot'),
20516 (11,3,75,'Auto Shot'),
20517 (11,3,82928,'Aimed Shot!'),
20518 (11,3,5011,'Crossbows'),
20519 (11,3,197,'Two-Handed Axes'),
20520 (11,3,1180,'Daggers'),
20521 (11,3,45927,'Summon Friend'),
20522 (11,3,6478,'Opening'),
20523 (11,3,6603,'Auto Attack'),
20524 (11,3,22027,'Remove Insignia'),
20525 (11,3,22810,'Opening - No Text'),
20526 (11,3,21651,'Opening'),
20527 (11,3,21652,'Closing'),
20528 (11,3,34082,'Hunter Passive Auras (DND)'),
20529 (11,3,2382,'Generic'),
20530 (11,3,3365,'Opening'),
20531 (11,3,3050,'Detect'),
20532 (11,3,9125,'Generic'),
20533 (11,3,8386,'Attacking'),
20534 (11,3,7266,'Duel'),
20535 (11,3,7267,'Grovel'),
20536 (11,3,7355,'Stuck'),
20537 (11,3,6233,'Closing'),
20538 (11,3,6246,'Closing'),
20539 (11,3,6247,'Opening'),
20540 (11,3,6477,'Opening'),
20541 (11,3,61437,'Opening'),
20542 (11,3,68398,'Opening'),
20543 (11,3,96220,'Opening'),
20544 (11,3,203,'Unarmed'),
20545 (11,3,883,'Call Pet 1'),
20546 (11,3,982,'Revive Pet'),
20547 (11,3,29932,'Language Draenei'),
20548 (11,3,59543,'Gift of the Naaru'),
20549 (11,3,6562,'Heroic Presence'),
20550 (11,3,28875,'Gemcutting'),
20551 (11,3,59536,'Shadow Resistance'),
20552 (11,3,79741,'Languages'),
20553 (11,3,15590,'Fist Weapons'),
20554 (11,3,200,'Polearms'),
20555 (11,3,668,'Language Common'),
20556 (11,3,227,'Staves'),
20557 (11,3,9077,'Leather'),
20558 (11,3,264,'Bows'),
20559 (11,3,266,'Guns'),
20560 (11,3,13358,'Defensive State (DND)'),
20561 (11,3,81,'Dodge'),
20562 (11,3,204,'Defense'),
20563 (11,3,522,'SPELLDEFENSE (DND)'),
20564 (11,3,24949,'Defensive State 2 (DND)'),
20565 (11,3,9078,'Cloth'),
20566 (11,3,77442,'Focus'),
20567 (11,3,76249,'Weapon Skills'),
20568 (11,3,76250,'Armor Skills'),
20569 (11,3,87324,'Focused Aim'),
20570 (11,3,87816,'General Hunter Passives'),
20571 (11,3,201,'One-Handed Swords'),
20572 (11,5,5009,'Wands'),
20573 (11,5,5019,'Shoot'),
20574 (11,5,1180,'Daggers'),
20575 (11,5,45927,'Summon Friend'),
20576 (11,5,6478,'Opening'),
20577 (11,5,6603,'Auto Attack'),
20578 (11,5,22027,'Remove Insignia'),
20579 (11,5,22810,'Opening - No Text'),
20580 (11,5,21651,'Opening'),
20581 (11,5,21652,'Closing'),
20582 (11,5,2382,'Generic'),
20583 (11,5,3365,'Opening'),
20584 (11,5,3050,'Detect'),
20585 (11,5,9125,'Generic'),
20586 (11,5,8386,'Attacking'),
20587 (11,5,7266,'Duel'),
20588 (11,5,7267,'Grovel'),
20589 (11,5,7355,'Stuck'),
20590 (11,5,6233,'Closing'),
20591 (11,5,6246,'Closing'),
20592 (11,5,6247,'Opening'),
20593 (11,5,6477,'Opening'),
20594 (11,5,61437,'Opening'),
20595 (11,5,68398,'Opening'),
20596 (11,5,96220,'Opening'),
20597 (11,5,203,'Unarmed'),
20598 (11,5,585,'Smite'),
20599 (11,5,84733,'Holy Focus'),
20600 (11,5,88685,'Holy Word: Sanctuary'),
20601 (11,5,88684,'Holy Word: Serenity'),
20602 (11,5,101062,'Flash Heal'),
20603 (11,5,29932,'Language Draenei'),
20604 (11,5,59538,'Shadow Resistance'),
20605 (11,5,28878,'Heroic Presence'),
20606 (11,5,28875,'Gemcutting'),
20607 (11,5,59544,'Gift of the Naaru'),
20608 (11,5,79741,'Languages'),
20609 (11,5,76301,'Weapon Skills'),
20610 (11,5,76279,'Armor Skills'),
20611 (11,5,84734,'Dark Thoughts'),
20612 (11,5,668,'Language Common'),
20613 (11,5,227,'Staves'),
20614 (11,5,77486,'Shadow Orb Power'),
20615 (11,5,81,'Dodge'),
20616 (11,5,204,'Defense'),
20617 (11,5,522,'SPELLDEFENSE (DND)'),
20618 (11,5,9078,'Cloth'),
20619 (11,5,198,'One-Handed Maces'),
20620 (11,7,196,'One-Handed Axes'),
20621 (11,7,197,'Two-Handed Axes'),
20622 (11,7,1180,'Daggers'),
20623 (11,7,45927,'Summon Friend'),
20624 (11,7,6478,'Opening'),
20625 (11,7,6603,'Auto Attack'),
20626 (11,7,22027,'Remove Insignia'),
20627 (11,7,22810,'Opening - No Text'),
20628 (11,7,21651,'Opening'),
20629 (11,7,21652,'Closing'),
20630 (11,7,2382,'Generic'),
20631 (11,7,3365,'Opening'),
20632 (11,7,3050,'Detect'),
20633 (11,7,9125,'Generic'),
20634 (11,7,8386,'Attacking'),
20635 (11,7,7266,'Duel'),
20636 (11,7,7267,'Grovel'),
20637 (11,7,7355,'Stuck'),
20638 (11,7,6233,'Closing'),
20639 (11,7,6246,'Closing'),
20640 (11,7,6247,'Opening'),
20641 (11,7,6477,'Opening'),
20642 (11,7,27763,'Relic'),
20643 (11,7,61437,'Opening'),
20644 (11,7,68398,'Opening'),
20645 (11,7,96220,'Opening'),
20646 (11,7,203,'Unarmed'),
20647 (11,7,29932,'Language Draenei'),
20648 (11,7,28878,'Heroic Presence'),
20649 (11,7,28875,'Gemcutting'),
20650 (11,7,59540,'Shadow Resistance'),
20651 (11,7,59547,'Gift of the Naaru'),
20652 (11,7,79741,'Languages'),
20653 (11,7,199,'Two-Handed Maces'),
20654 (11,7,15590,'Fist Weapons'),
20655 (11,7,76272,'Armor Skills'),
20656 (11,7,76296,'Weapon Skills'),
20657 (11,7,89920,'Ancestral Focus'),
20658 (11,7,668,'Language Common'),
20659 (11,7,227,'Staves'),
20660 (11,7,9116,'Shield'),
20661 (11,7,9077,'Leather'),
20662 (11,7,107,'Block'),
20663 (11,7,81,'Dodge'),
20664 (11,7,204,'Defense'),
20665 (11,7,522,'SPELLDEFENSE (DND)'),
20666 (11,7,403,'Lightning Bolt'),
20667 (11,7,9078,'Cloth'),
20668 (11,7,198,'One-Handed Maces'),
20669 (11,8,71761,'Deep Freeze Immunity State'),
20670 (11,8,5009,'Wands'),
20671 (11,8,5019,'Shoot'),
20672 (11,8,1180,'Daggers'),
20673 (11,8,45927,'Summon Friend'),
20674 (11,8,6478,'Opening'),
20675 (11,8,6603,'Auto Attack'),
20676 (11,8,22027,'Remove Insignia'),
20677 (11,8,22810,'Opening - No Text'),
20678 (11,8,21651,'Opening'),
20679 (11,8,21652,'Closing'),
20680 (11,8,2382,'Generic'),
20681 (11,8,3365,'Opening'),
20682 (11,8,3050,'Detect'),
20683 (11,8,9125,'Generic'),
20684 (11,8,8386,'Attacking'),
20685 (11,8,7266,'Duel'),
20686 (11,8,7267,'Grovel'),
20687 (11,8,7355,'Stuck'),
20688 (11,8,6233,'Closing'),
20689 (11,8,6246,'Closing'),
20690 (11,8,6247,'Opening'),
20691 (11,8,6477,'Opening'),
20692 (11,8,61437,'Opening'),
20693 (11,8,68398,'Opening'),
20694 (11,8,96220,'Opening'),
20695 (11,8,79684,'Offensive State (DND)'),
20696 (11,8,203,'Unarmed'),
20697 (11,8,29932,'Language Draenei'),
20698 (11,8,59541,'Shadow Resistance'),
20699 (11,8,28878,'Heroic Presence'),
20700 (11,8,28875,'Gemcutting'),
20701 (11,8,59548,'Gift of the Naaru'),
20702 (11,8,79741,'Languages'),
20703 (11,8,133,'Fireball'),
20704 (11,8,92315,'Pyroblast!'),
20705 (11,8,85801,'DPS Caster Crit Damage Bonus'),
20706 (11,8,76298,'Weapon Skills'),
20707 (11,8,76276,'Armor Skills'),
20708 (11,8,668,'Language Common'),
20709 (11,8,227,'Staves'),
20710 (11,8,81,'Dodge'),
20711 (11,8,204,'Defense'),
20712 (11,8,522,'SPELLDEFENSE (DND)'),
20713 (11,8,9078,'Cloth'),
20714 (11,8,201,'One-Handed Swords'),
20715 (11,6,6478,'Opening'),
20716 (11,6,6603,'Auto Attack'),
20717 (11,6,45927,'Summon Friend'),
20718 (11,6,22027,'Remove Insignia'),
20719 (11,6,22810,'Opening - No Text'),
20720 (11,6,21651,'Opening'),
20721 (11,6,21652,'Closing'),
20722 (11,6,2382,'Generic'),
20723 (11,6,3365,'Opening'),
20724 (11,6,3050,'Detect'),
20725 (11,6,9125,'Generic'),
20726 (11,6,8386,'Attacking'),
20727 (11,6,7266,'Duel'),
20728 (11,6,7267,'Grovel'),
20729 (11,6,7355,'Stuck'),
20730 (11,6,6233,'Closing'),
20731 (11,6,6246,'Closing'),
20732 (11,6,6247,'Opening'),
20733 (11,6,6477,'Opening'),
20734 (11,6,52665,'Relic'),
20735 (11,6,61437,'Opening'),
20736 (11,6,68398,'Opening'),
20737 (11,6,63645,'Activating Primary Spec'),
20738 (11,6,63644,'Activating Secondary Spec'),
20739 (11,6,96220,'Opening'),
20740 (11,6,203,'Unarmed'),
20741 (11,6,674,'Dual Wield'),
20742 (11,6,197,'Two-Handed Axes'),
20743 (11,6,45902,'Blood Strike'),
20744 (11,6,49410,'Forceful Deflection'),
20745 (11,6,82246,'Parry'),
20746 (11,6,89832,'Death Strike Enabler'),
20747 (11,6,45477,'Icy Touch'),
20748 (11,6,48266,'Frost Presence'),
20749 (11,6,61455,'Runic Focus'),
20750 (11,6,59921,'Frost Fever'),
20751 (11,6,29932,'Language Draenei'),
20752 (11,6,202,'Two-Handed Swords'),
20753 (11,6,196,'One-Handed Axes'),
20754 (11,6,33391,'Journeyman Riding'),
20755 (11,6,89964,'Clear Glyph'),
20756 (11,6,76282,'Armor Skills'),
20757 (11,6,76292,'Weapon Skills'),
20758 (11,6,750,'Plate Mail'),
20759 (11,6,199,'Two-Handed Maces'),
20760 (11,6,200,'Polearms'),
20761 (11,6,6562,'Heroic Presence'),
20762 (11,6,28875,'Gemcutting'),
20763 (11,6,59539,'Shadow Resistance'),
20764 (11,6,59545,'Gift of the Naaru'),
20765 (11,6,79741,'Languages'),
20766 (11,6,668,'Language Common'),
20767 (11,6,8737,'Mail'),
20768 (11,6,9077,'Leather'),
20769 (11,6,45462,'Plague Strike'),
20770 (11,6,47541,'Death Coil'),
20771 (11,6,49576,'Death Grip'),
20772 (11,6,59879,'Blood Plague'),
20773 (11,6,45903,'Offensive State (DND)'),
20774 (11,6,81,'Dodge'),
20775 (11,6,204,'Defense'),
20776 (11,6,522,'SPELLDEFENSE (DND)'),
20777 (11,6,198,'One-Handed Maces'),
20778 (11,6,201,'One-Handed Swords'),
20779 (11,6,9078,'Cloth'),
20780 (11,6,10846,'First Aid'),
20781 (11,6,3275,'Linen Bandage'),
20782 (11,6,18630,'Heavy Runecloth Bandage'),
20783 (11,6,3276,'Heavy Linen Bandage'),
20784 (11,6,3277,'Wool Bandage'),
20785 (11,6,3278,'Heavy Wool Bandage'),
20786 (11,6,7928,'Silk Bandage'),
20787 (11,6,7929,'Heavy Silk Bandage'),
20788 (11,6,10840,'Mageweave Bandage'),
20789 (11,6,10841,'Heavy Mageweave Bandage'),
20790 (11,6,18629,'Runecloth Bandage'),
20791 (11,6,7934,'Anti-Venom'),
20792 (22,1,202,'Two-Handed Swords'),
20793 (22,1,196,'One-Handed Axes'),
20794 (22,1,2457,'Battle Stance'),
20795 (22,1,88161,'Strike'),
20796 (22,1,5011,'Crossbows'),
20797 (22,1,3018,'Shoot'),
20798 (22,1,197,'Two-Handed Axes'),
20799 (22,1,1180,'Daggers'),
20800 (22,1,45927,'Summon Friend'),
20801 (22,1,6478,'Opening'),
20802 (22,1,6603,'Auto Attack'),
20803 (22,1,22027,'Remove Insignia'),
20804 (22,1,22810,'Opening - No Text'),
20805 (22,1,21651,'Opening'),
20806 (22,1,21652,'Closing'),
20807 (22,1,2382,'Generic'),
20808 (22,1,3365,'Opening'),
20809 (22,1,3050,'Detect'),
20810 (22,1,9125,'Generic'),
20811 (22,1,8386,'Attacking'),
20812 (22,1,7266,'Duel'),
20813 (22,1,7267,'Grovel'),
20814 (22,1,7355,'Stuck'),
20815 (22,1,6233,'Closing'),
20816 (22,1,6246,'Closing'),
20817 (22,1,6247,'Opening'),
20818 (22,1,6477,'Opening'),
20819 (22,1,61437,'Opening'),
20820 (22,1,68398,'Opening'),
20821 (22,1,96220,'Opening'),
20822 (22,1,203,'Unarmed'),
20823 (22,1,79742,'Languages'),
20824 (22,1,49410,'Forceful Deflection'),
20825 (22,1,199,'Two-Handed Maces'),
20826 (22,1,15590,'Fist Weapons'),
20827 (22,1,76268,'Armor Skills'),
20828 (22,1,76290,'Weapon Skills'),
20829 (22,1,88163,'Attack'),
20830 (22,1,200,'Polearms'),
20831 (22,1,668,'Language Common'),
20832 (22,1,227,'Staves'),
20833 (22,1,9116,'Shield'),
20834 (22,1,8737,'Mail'),
20835 (22,1,9077,'Leather'),
20836 (22,1,264,'Bows'),
20837 (22,1,266,'Guns'),
20838 (22,1,107,'Block'),
20839 (22,1,81,'Dodge'),
20840 (22,1,32215,'Victorious State'),
20841 (22,1,5301,'Defensive State (DND)'),
20842 (22,1,204,'Defense'),
20843 (22,1,522,'SPELLDEFENSE (DND)'),
20844 (22,1,2764,'Throw'),
20845 (22,1,2567,'Thrown'),
20846 (22,1,9078,'Cloth'),
20847 (22,1,198,'One-Handed Maces'),
20848 (22,1,201,'One-Handed Swords'),
20849 (22,3,202,'Two-Handed Swords'),
20850 (22,3,196,'One-Handed Axes'),
20851 (22,3,3044,'Arcane Shot'),
20852 (22,3,75,'Auto Shot'),
20853 (22,3,82928,'Aimed Shot!'),
20854 (22,3,5011,'Crossbows'),
20855 (22,3,197,'Two-Handed Axes'),
20856 (22,3,1180,'Daggers'),
20857 (22,3,45927,'Summon Friend'),
20858 (22,3,6478,'Opening'),
20859 (22,3,6603,'Auto Attack'),
20860 (22,3,22027,'Remove Insignia'),
20861 (22,3,22810,'Opening - No Text'),
20862 (22,3,21651,'Opening'),
20863 (22,3,21652,'Closing'),
20864 (22,3,34082,'Hunter Passive Auras (DND)'),
20865 (22,3,2382,'Generic'),
20866 (22,3,3365,'Opening'),
20867 (22,3,3050,'Detect'),
20868 (22,3,9125,'Generic'),
20869 (22,3,8386,'Attacking'),
20870 (22,3,7266,'Duel'),
20871 (22,3,7267,'Grovel'),
20872 (22,3,7355,'Stuck'),
20873 (22,3,6233,'Closing'),
20874 (22,3,6246,'Closing'),
20875 (22,3,6247,'Opening'),
20876 (22,3,6477,'Opening'),
20877 (22,3,61437,'Opening'),
20878 (22,3,68398,'Opening'),
20879 (22,3,96220,'Opening'),
20880 (22,3,203,'Unarmed'),
20881 (22,3,883,'Call Pet 1'),
20882 (22,3,982,'Revive Pet'),
20883 (22,3,79742,'Languages'),
20884 (22,3,15590,'Fist Weapons'),
20885 (22,3,200,'Polearms'),
20886 (22,3,668,'Language Common'),
20887 (22,3,227,'Staves'),
20888 (22,3,9077,'Leather'),
20889 (22,3,264,'Bows'),
20890 (22,3,266,'Guns'),
20891 (22,3,13358,'Defensive State (DND)'),
20892 (22,3,81,'Dodge'),
20893 (22,3,204,'Defense'),
20894 (22,3,522,'SPELLDEFENSE (DND)'),
20895 (22,3,24949,'Defensive State 2 (DND)'),
20896 (22,3,9078,'Cloth'),
20897 (22,3,77442,'Focus'),
20898 (22,3,76249,'Weapon Skills'),
20899 (22,3,76250,'Armor Skills'),
20900 (22,3,87324,'Focused Aim'),
20901 (22,3,87816,'General Hunter Passives'),
20902 (22,3,201,'One-Handed Swords'),
20903 (22,4,196,'One-Handed Axes'),
20904 (22,4,1752,'Sinister Strike'),
20905 (22,4,5011,'Crossbows'),
20906 (22,4,3018,'Shoot'),
20907 (22,4,674,'Dual Wield'),
20908 (22,4,1180,'Daggers'),
20909 (22,4,45927,'Summon Friend'),
20910 (22,4,6478,'Opening'),
20911 (22,4,6603,'Auto Attack'),
20912 (22,4,22027,'Remove Insignia'),
20913 (22,4,22810,'Opening - No Text'),
20914 (22,4,21651,'Opening'),
20915 (22,4,21652,'Closing'),
20916 (22,4,2382,'Generic'),
20917 (22,4,3365,'Opening'),
20918 (22,4,3050,'Detect'),
20919 (22,4,9125,'Generic'),
20920 (22,4,8386,'Attacking'),
20921 (22,4,7266,'Duel'),
20922 (22,4,7267,'Grovel'),
20923 (22,4,7355,'Stuck'),
20924 (22,4,6233,'Closing'),
20925 (22,4,6246,'Closing'),
20926 (22,4,6247,'Opening'),
20927 (22,4,6477,'Opening'),
20928 (22,4,61437,'Opening'),
20929 (22,4,68398,'Opening'),
20930 (22,4,96220,'Opening'),
20931 (22,4,203,'Unarmed'),
20932 (22,4,79742,'Languages'),
20933 (22,4,15590,'Fist Weapons'),
20934 (22,4,76273,'Armor Skills'),
20935 (22,4,76297,'Weapon Skills'),
20936 (22,4,668,'Language Common'),
20937 (22,4,9077,'Leather'),
20938 (22,4,264,'Bows'),
20939 (22,4,266,'Guns'),
20940 (22,4,81,'Dodge'),
20941 (22,4,204,'Defense'),
20942 (22,4,522,'SPELLDEFENSE (DND)'),
20943 (22,4,16092,'Defensive State (DND)'),
20944 (22,4,2764,'Throw'),
20945 (22,4,2567,'Thrown'),
20946 (22,4,9078,'Cloth'),
20947 (22,4,198,'One-Handed Maces'),
20948 (22,4,201,'One-Handed Swords'),
20949 (22,5,5009,'Wands'),
20950 (22,5,5019,'Shoot'),
20951 (22,5,1180,'Daggers'),
20952 (22,5,45927,'Summon Friend'),
20953 (22,5,6478,'Opening'),
20954 (22,5,6603,'Auto Attack'),
20955 (22,5,22027,'Remove Insignia'),
20956 (22,5,22810,'Opening - No Text'),
20957 (22,5,21651,'Opening'),
20958 (22,5,21652,'Closing'),
20959 (22,5,2382,'Generic'),
20960 (22,5,3365,'Opening'),
20961 (22,5,3050,'Detect'),
20962 (22,5,9125,'Generic'),
20963 (22,5,8386,'Attacking'),
20964 (22,5,7266,'Duel'),
20965 (22,5,7267,'Grovel'),
20966 (22,5,7355,'Stuck'),
20967 (22,5,6233,'Closing'),
20968 (22,5,6246,'Closing'),
20969 (22,5,6247,'Opening'),
20970 (22,5,6477,'Opening'),
20971 (22,5,61437,'Opening'),
20972 (22,5,68398,'Opening'),
20973 (22,5,96220,'Opening'),
20974 (22,5,203,'Unarmed'),
20975 (22,5,585,'Smite'),
20976 (22,5,84733,'Holy Focus'),
20977 (22,5,88685,'Holy Word: Sanctuary'),
20978 (22,5,88684,'Holy Word: Serenity'),
20979 (22,5,101062,'Flash Heal'),
20980 (22,5,79742,'Languages'),
20981 (22,5,76301,'Weapon Skills'),
20982 (22,5,76279,'Armor Skills'),
20983 (22,5,84734,'Dark Thoughts'),
20984 (22,5,668,'Language Common'),
20985 (22,5,227,'Staves'),
20986 (22,5,77486,'Shadow Orb Power'),
20987 (22,5,81,'Dodge'),
20988 (22,5,204,'Defense'),
20989 (22,5,522,'SPELLDEFENSE (DND)'),
20990 (22,5,9078,'Cloth'),
20991 (22,5,198,'One-Handed Maces'),
20992 (22,8,71761,'Deep Freeze Immunity State'),
20993 (22,8,5009,'Wands'),
20994 (22,8,5019,'Shoot'),
20995 (22,8,1180,'Daggers'),
20996 (22,8,45927,'Summon Friend'),
20997 (22,8,6478,'Opening'),
20998 (22,8,6603,'Auto Attack'),
20999 (22,8,22027,'Remove Insignia'),
21000 (22,8,22810,'Opening - No Text'),
21001 (22,8,21651,'Opening'),
21002 (22,8,21652,'Closing'),
21003 (22,8,2382,'Generic'),
21004 (22,8,3365,'Opening'),
21005 (22,8,3050,'Detect'),
21006 (22,8,9125,'Generic'),
21007 (22,8,8386,'Attacking'),
21008 (22,8,7266,'Duel'),
21009 (22,8,7267,'Grovel'),
21010 (22,8,7355,'Stuck'),
21011 (22,8,6233,'Closing'),
21012 (22,8,6246,'Closing'),
21013 (22,8,6247,'Opening'),
21014 (22,8,6477,'Opening'),
21015 (22,8,61437,'Opening'),
21016 (22,8,68398,'Opening'),
21017 (22,8,96220,'Opening'),
21018 (22,8,79684,'Offensive State (DND)'),
21019 (22,8,203,'Unarmed'),
21020 (22,8,79742,'Languages'),
21021 (22,8,133,'Fireball'),
21022 (22,8,92315,'Pyroblast!'),
21023 (22,8,85801,'DPS Caster Crit Damage Bonus'),
21024 (22,8,76298,'Weapon Skills'),
21025 (22,8,76276,'Armor Skills'),
21026 (22,8,668,'Language Common'),
21027 (22,8,227,'Staves'),
21028 (22,8,81,'Dodge'),
21029 (22,8,204,'Defense'),
21030 (22,8,522,'SPELLDEFENSE (DND)'),
21031 (22,8,9078,'Cloth'),
21032 (22,8,201,'One-Handed Swords'),
21033 (22,9,5009,'Wands'),
21034 (22,9,5019,'Shoot'),
21035 (22,9,1180,'Daggers'),
21036 (22,9,45927,'Summon Friend'),
21037 (22,9,6478,'Opening'),
21038 (22,9,6603,'Auto Attack'),
21039 (22,9,22027,'Remove Insignia'),
21040 (22,9,22810,'Opening - No Text'),
21041 (22,9,21651,'Opening'),
21042 (22,9,21652,'Closing'),
21043 (22,9,2382,'Generic'),
21044 (22,9,3365,'Opening'),
21045 (22,9,3050,'Detect'),
21046 (22,9,9125,'Generic'),
21047 (22,9,8386,'Attacking'),
21048 (22,9,7266,'Duel'),
21049 (22,9,7267,'Grovel'),
21050 (22,9,7355,'Stuck'),
21051 (22,9,6233,'Closing'),
21052 (22,9,6246,'Closing'),
21053 (22,9,6247,'Opening'),
21054 (22,9,6477,'Opening'),
21055 (22,9,61437,'Opening'),
21056 (22,9,68398,'Opening'),
21057 (22,9,96220,'Opening'),
21058 (22,9,203,'Unarmed'),
21059 (22,9,79742,'Languages'),
21060 (22,9,688,'Summon Imp'),
21061 (22,9,86213,'Soul Swap Exhale'),
21062 (22,9,89420,'Drain Life'),
21063 (22,9,85801,'DPS Caster Crit Damage Bonus'),
21064 (22,9,76299,'Weapon Skills'),
21065 (22,9,76277,'Armor Skills'),
21066 (22,9,87330,'Suppression'),
21067 (22,9,668,'Language Common'),
21068 (22,9,227,'Staves'),
21069 (22,9,75445,'Demonic Immolate'),
21070 (22,9,686,'Shadow Bolt'),
21071 (22,9,58284,'Chaos Bolt Passive'),
21072 (22,9,81,'Dodge'),
21073 (22,9,204,'Defense'),
21074 (22,9,522,'SPELLDEFENSE (DND)'),
21075 (22,9,9078,'Cloth'),
21076 (22,9,201,'One-Handed Swords'),
21077 (22,11,1180,'Daggers'),
21078 (22,11,45927,'Summon Friend'),
21079 (22,11,6478,'Opening'),
21080 (22,11,6603,'Auto Attack'),
21081 (22,11,22027,'Remove Insignia'),
21082 (22,11,22810,'Opening - No Text'),
21083 (22,11,21651,'Opening'),
21084 (22,11,21652,'Closing'),
21085 (22,11,2382,'Generic'),
21086 (22,11,3365,'Opening'),
21087 (22,11,3050,'Detect'),
21088 (22,11,9125,'Generic'),
21089 (22,11,8386,'Attacking'),
21090 (22,11,7266,'Duel'),
21091 (22,11,7267,'Grovel'),
21092 (22,11,7355,'Stuck'),
21093 (22,11,6233,'Closing'),
21094 (22,11,6246,'Closing'),
21095 (22,11,6247,'Opening'),
21096 (22,11,6477,'Opening'),
21097 (22,11,61437,'Opening'),
21098 (22,11,68398,'Opening'),
21099 (22,11,96220,'Opening'),
21100 (22,11,203,'Unarmed'),
21101 (22,11,79742,'Languages'),
21102 (22,11,84736,'Nature\'s Focus'),
21103 (22,11,81170,'Ravage!'),
21104 (22,11,79577,'Eclipse Mastery Driver Passive'),
21105 (22,11,76300,'Weapon Skills'),
21106 (22,11,76275,'Armor Skills'),
21107 (22,11,5176,'Wrath'),
21108 (22,11,199,'Two-Handed Maces'),
21109 (22,11,15590,'Fist Weapons'),
21110 (22,11,84738,'Celestial Focus'),
21111 (22,11,668,'Language Common'),
21112 (22,11,200,'Polearms'),
21113 (22,11,227,'Staves'),
21114 (22,11,81,'Dodge'),
21115 (22,11,204,'Defense'),
21116 (22,11,522,'SPELLDEFENSE (DND)'),
21117 (22,11,9077,'Leather'),
21118 (22,11,9078,'Cloth'),
21119 (22,11,198,'One-Handed Maces'),
21120 (22,6,6478,'Opening'),
21121 (22,6,6603,'Auto Attack'),
21122 (22,6,45927,'Summon Friend'),
21123 (22,6,22027,'Remove Insignia'),
21124 (22,6,22810,'Opening - No Text'),
21125 (22,6,21651,'Opening'),
21126 (22,6,21652,'Closing'),
21127 (22,6,2382,'Generic'),
21128 (22,6,3365,'Opening'),
21129 (22,6,3050,'Detect'),
21130 (22,6,9125,'Generic'),
21131 (22,6,8386,'Attacking'),
21132 (22,6,7266,'Duel'),
21133 (22,6,7267,'Grovel'),
21134 (22,6,7355,'Stuck'),
21135 (22,6,6233,'Closing'),
21136 (22,6,6246,'Closing'),
21137 (22,6,6247,'Opening'),
21138 (22,6,6477,'Opening'),
21139 (22,6,52665,'Relic'),
21140 (22,6,61437,'Opening'),
21141 (22,6,68398,'Opening'),
21142 (22,6,63645,'Activating Primary Spec'),
21143 (22,6,63644,'Activating Secondary Spec'),
21144 (22,6,96220,'Opening'),
21145 (22,6,203,'Unarmed'),
21146 (22,6,674,'Dual Wield'),
21147 (22,6,197,'Two-Handed Axes'),
21148 (22,6,45902,'Blood Strike'),
21149 (22,6,49410,'Forceful Deflection'),
21150 (22,6,82246,'Parry'),
21151 (22,6,89832,'Death Strike Enabler'),
21152 (22,6,45477,'Icy Touch'),
21153 (22,6,48266,'Frost Presence'),
21154 (22,6,61455,'Runic Focus'),
21155 (22,6,59921,'Frost Fever'),
21156 (22,6,202,'Two-Handed Swords'),
21157 (22,6,196,'One-Handed Axes'),
21158 (22,6,33391,'Journeyman Riding'),
21159 (22,6,89964,'Clear Glyph'),
21160 (22,6,76282,'Armor Skills'),
21161 (22,6,76292,'Weapon Skills'),
21162 (22,6,750,'Plate Mail'),
21163 (22,6,199,'Two-Handed Maces'),
21164 (22,6,200,'Polearms'),
21165 (22,6,668,'Language Common'),
21166 (22,6,8737,'Mail'),
21167 (22,6,9077,'Leather'),
21168 (22,6,45462,'Plague Strike'),
21169 (22,6,47541,'Death Coil'),
21170 (22,6,49576,'Death Grip'),
21171 (22,6,59879,'Blood Plague'),
21172 (22,6,45903,'Offensive State (DND)'),
21173 (22,6,81,'Dodge'),
21174 (22,6,204,'Defense'),
21175 (22,6,522,'SPELLDEFENSE (DND)'),
21176 (22,6,198,'One-Handed Maces'),
21177 (22,6,201,'One-Handed Swords'),
21178 (22,6,68978,'Flayer'),
21179 (22,6,68992,'Darkflight'),
21180 (22,6,68976,'Aberration'),
21181 (22,6,68996,'Two Forms'),
21182 (22,6,68975,'Viciousness'),
21183 (22,6,94293,'Enable Worgen Altered Form'),
21184 (22,6,87840,'Running Wild'),
21185 (22,6,79742,'Languages'),
21186 (22,6,9078,'Cloth'),
21187 (22,6,10846,'First Aid'),
21188 (22,6,3275,'Linen Bandage'),
21189 (22,6,18630,'Heavy Runecloth Bandage'),
21190 (22,6,3276,'Heavy Linen Bandage'),
21191 (22,6,3277,'Wool Bandage'),
21192 (22,6,3278,'Heavy Wool Bandage'),
21193 (22,6,7928,'Silk Bandage'),
21194 (22,6,7929,'Heavy Silk Bandage'),
21195 (22,6,10840,'Mageweave Bandage'),
21196 (22,6,10841,'Heavy Mageweave Bandage'),
21197 (22,6,18629,'Runecloth Bandage'),
21198 (22,6,7934,'Anti-Venom');
21199 /*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
21200 UNLOCK TABLES;
21203 -- Table structure for table `points_of_interest`
21206 DROP TABLE IF EXISTS `points_of_interest`;
21207 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21208 /*!40101 SET character_set_client = utf8 */;
21209 CREATE TABLE `points_of_interest` (
21210   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21211   `x` float NOT NULL DEFAULT '0',
21212   `y` float NOT NULL DEFAULT '0',
21213   `icon` mediumint(8) unsigned NOT NULL DEFAULT '0',
21214   `flags` mediumint(8) unsigned NOT NULL DEFAULT '0',
21215   `data` mediumint(8) unsigned NOT NULL DEFAULT '0',
21216   `icon_name` text NOT NULL,
21217   PRIMARY KEY (`entry`)
21218 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21219 /*!40101 SET character_set_client = @saved_cs_client */;
21222 -- Dumping data for table `points_of_interest`
21225 LOCK TABLES `points_of_interest` WRITE;
21226 /*!40000 ALTER TABLE `points_of_interest` DISABLE KEYS */;
21227 /*!40000 ALTER TABLE `points_of_interest` ENABLE KEYS */;
21228 UNLOCK TABLES;
21231 -- Table structure for table `pool_creature`
21234 DROP TABLE IF EXISTS `pool_creature`;
21235 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21236 /*!40101 SET character_set_client = utf8 */;
21237 CREATE TABLE `pool_creature` (
21238   `guid` int(10) unsigned NOT NULL DEFAULT '0',
21239   `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21240   `chance` float unsigned NOT NULL DEFAULT '0',
21241   `description` varchar(255) NOT NULL,
21242   PRIMARY KEY (`guid`),
21243   KEY `pool_idx` (`pool_entry`)
21244 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21245 /*!40101 SET character_set_client = @saved_cs_client */;
21248 -- Dumping data for table `pool_creature`
21251 LOCK TABLES `pool_creature` WRITE;
21252 /*!40000 ALTER TABLE `pool_creature` DISABLE KEYS */;
21253 /*!40000 ALTER TABLE `pool_creature` ENABLE KEYS */;
21254 UNLOCK TABLES;
21257 -- Table structure for table `pool_creature_template`
21260 DROP TABLE IF EXISTS `pool_creature_template`;
21261 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21262 /*!40101 SET character_set_client = utf8 */;
21263 CREATE TABLE `pool_creature_template` (
21264   `id` int(10) unsigned NOT NULL DEFAULT '0',
21265   `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21266   `chance` float unsigned NOT NULL DEFAULT '0',
21267   `description` varchar(255) NOT NULL,
21268   PRIMARY KEY (`id`),
21269   KEY `pool_idx` (`pool_entry`)
21270 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21271 /*!40101 SET character_set_client = @saved_cs_client */;
21274 -- Dumping data for table `pool_creature_template`
21277 LOCK TABLES `pool_creature_template` WRITE;
21278 /*!40000 ALTER TABLE `pool_creature_template` DISABLE KEYS */;
21279 /*!40000 ALTER TABLE `pool_creature_template` ENABLE KEYS */;
21280 UNLOCK TABLES;
21283 -- Table structure for table `pool_gameobject`
21286 DROP TABLE IF EXISTS `pool_gameobject`;
21287 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21288 /*!40101 SET character_set_client = utf8 */;
21289 CREATE TABLE `pool_gameobject` (
21290   `guid` int(10) unsigned NOT NULL DEFAULT '0',
21291   `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21292   `chance` float unsigned NOT NULL DEFAULT '0',
21293   `description` varchar(255) NOT NULL,
21294   PRIMARY KEY (`guid`),
21295   KEY `pool_idx` (`pool_entry`)
21296 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21297 /*!40101 SET character_set_client = @saved_cs_client */;
21300 -- Dumping data for table `pool_gameobject`
21303 LOCK TABLES `pool_gameobject` WRITE;
21304 /*!40000 ALTER TABLE `pool_gameobject` DISABLE KEYS */;
21305 /*!40000 ALTER TABLE `pool_gameobject` ENABLE KEYS */;
21306 UNLOCK TABLES;
21309 -- Table structure for table `pool_gameobject_template`
21312 DROP TABLE IF EXISTS `pool_gameobject_template`;
21313 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21314 /*!40101 SET character_set_client = utf8 */;
21315 CREATE TABLE `pool_gameobject_template` (
21316   `id` int(10) unsigned NOT NULL DEFAULT '0',
21317   `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21318   `chance` float unsigned NOT NULL DEFAULT '0',
21319   `description` varchar(255) NOT NULL,
21320   PRIMARY KEY (`id`),
21321   KEY `pool_idx` (`pool_entry`)
21322 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21323 /*!40101 SET character_set_client = @saved_cs_client */;
21326 -- Dumping data for table `pool_gameobject_template`
21329 LOCK TABLES `pool_gameobject_template` WRITE;
21330 /*!40000 ALTER TABLE `pool_gameobject_template` DISABLE KEYS */;
21331 /*!40000 ALTER TABLE `pool_gameobject_template` ENABLE KEYS */;
21332 UNLOCK TABLES;
21335 -- Table structure for table `pool_pool`
21338 DROP TABLE IF EXISTS `pool_pool`;
21339 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21340 /*!40101 SET character_set_client = utf8 */;
21341 CREATE TABLE `pool_pool` (
21342   `pool_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
21343   `mother_pool` mediumint(8) unsigned NOT NULL DEFAULT '0',
21344   `chance` float NOT NULL DEFAULT '0',
21345   `description` varchar(255) NOT NULL,
21346   PRIMARY KEY (`pool_id`),
21347   KEY `pool_idx` (`mother_pool`)
21348 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21349 /*!40101 SET character_set_client = @saved_cs_client */;
21352 -- Dumping data for table `pool_pool`
21355 LOCK TABLES `pool_pool` WRITE;
21356 /*!40000 ALTER TABLE `pool_pool` DISABLE KEYS */;
21357 /*!40000 ALTER TABLE `pool_pool` ENABLE KEYS */;
21358 UNLOCK TABLES;
21361 -- Table structure for table `pool_template`
21364 DROP TABLE IF EXISTS `pool_template`;
21365 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21366 /*!40101 SET character_set_client = utf8 */;
21367 CREATE TABLE `pool_template` (
21368   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Pool entry',
21369   `max_limit` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Max number of objects (0) is no limit',
21370   `description` varchar(255) NOT NULL,
21371   PRIMARY KEY (`entry`)
21372 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21373 /*!40101 SET character_set_client = @saved_cs_client */;
21376 -- Dumping data for table `pool_template`
21379 LOCK TABLES `pool_template` WRITE;
21380 /*!40000 ALTER TABLE `pool_template` DISABLE KEYS */;
21381 /*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
21382 UNLOCK TABLES;
21385 -- Table structure for table `prospecting_loot_template`
21388 DROP TABLE IF EXISTS `prospecting_loot_template`;
21389 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21390 /*!40101 SET character_set_client = utf8 */;
21391 CREATE TABLE `prospecting_loot_template` (
21392   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21393   `item` mediumint(8) NOT NULL DEFAULT '0',
21394   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
21395   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
21396   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
21397   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
21398   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
21399   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21400   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21401   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
21402   PRIMARY KEY (`entry`,`item`)
21403 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
21404 /*!40101 SET character_set_client = @saved_cs_client */;
21407 -- Dumping data for table `prospecting_loot_template`
21410 LOCK TABLES `prospecting_loot_template` WRITE;
21411 /*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
21412 /*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
21413 UNLOCK TABLES;
21416 -- Table structure for table `quest_end_scripts`
21419 DROP TABLE IF EXISTS `quest_end_scripts`;
21420 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21421 /*!40101 SET character_set_client = utf8 */;
21422 CREATE TABLE `quest_end_scripts` (
21423   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
21424   `delay` int(10) unsigned NOT NULL DEFAULT '0',
21425   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
21426   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
21427   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
21428   `buddy_entry` int(10) unsigned NOT NULL DEFAULT '0',
21429   `search_radius` int(10) unsigned NOT NULL DEFAULT '0',
21430   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
21431   `dataint` int(11) NOT NULL DEFAULT '0',
21432   `dataint2` int(11) NOT NULL DEFAULT '0',
21433   `dataint3` int(11) NOT NULL DEFAULT '0',
21434   `dataint4` int(11) NOT NULL DEFAULT '0',
21435   `x` float NOT NULL DEFAULT '0',
21436   `y` float NOT NULL DEFAULT '0',
21437   `z` float NOT NULL DEFAULT '0',
21438   `o` float NOT NULL DEFAULT '0',
21439   `comments` varchar(255) NOT NULL
21440 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21441 /*!40101 SET character_set_client = @saved_cs_client */;
21444 -- Dumping data for table `quest_end_scripts`
21447 LOCK TABLES `quest_end_scripts` WRITE;
21448 /*!40000 ALTER TABLE `quest_end_scripts` DISABLE KEYS */;
21449 /*!40000 ALTER TABLE `quest_end_scripts` ENABLE KEYS */;
21450 UNLOCK TABLES;
21453 -- Table structure for table `quest_phase_maps`
21456 DROP TABLE IF EXISTS `quest_phase_maps`;
21457 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21458 /*!40101 SET character_set_client = utf8 */;
21459 CREATE TABLE `quest_phase_maps` (
21460   `questId` int(11) NOT NULL,
21461   `map` smallint(6) NOT NULL,
21462   `phase` int(11) NOT NULL,
21463   PRIMARY KEY (`questId`)
21464 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21465 /*!40101 SET character_set_client = @saved_cs_client */;
21468 -- Dumping data for table `quest_phase_maps`
21471 LOCK TABLES `quest_phase_maps` WRITE;
21472 /*!40000 ALTER TABLE `quest_phase_maps` DISABLE KEYS */;
21473 /*!40000 ALTER TABLE `quest_phase_maps` ENABLE KEYS */;
21474 UNLOCK TABLES;
21477 -- Table structure for table `quest_poi`
21480 DROP TABLE IF EXISTS `quest_poi`;
21481 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21482 /*!40101 SET character_set_client = utf8 */;
21483 CREATE TABLE `quest_poi` (
21484   `questId` mediumint(8) unsigned NOT NULL DEFAULT '0',
21485   `poiId` tinyint(3) NOT NULL DEFAULT '0',
21486   `objIndex` int(11) NOT NULL DEFAULT '0',
21487   `mapId` int(11) unsigned NOT NULL DEFAULT '0',
21488   `mapAreaId` mediumint(8) unsigned NOT NULL DEFAULT '0',
21489   `floorId` tinyint(3) unsigned NOT NULL DEFAULT '0',
21490   `unk3` int(11) unsigned NOT NULL DEFAULT '0',
21491   `unk4` int(11) unsigned NOT NULL DEFAULT '0',
21492   PRIMARY KEY (`questId`,`poiId`)
21493 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21494 /*!40101 SET character_set_client = @saved_cs_client */;
21497 -- Dumping data for table `quest_poi`
21500 LOCK TABLES `quest_poi` WRITE;
21501 /*!40000 ALTER TABLE `quest_poi` DISABLE KEYS */;
21502 /*!40000 ALTER TABLE `quest_poi` ENABLE KEYS */;
21503 UNLOCK TABLES;
21506 -- Table structure for table `quest_poi_points`
21509 DROP TABLE IF EXISTS `quest_poi_points`;
21510 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21511 /*!40101 SET character_set_client = utf8 */;
21512 CREATE TABLE `quest_poi_points` (
21513   `questId` mediumint(8) unsigned NOT NULL DEFAULT '0',
21514   `poiId` tinyint(3) NOT NULL DEFAULT '0',
21515   `x` int(11) NOT NULL DEFAULT '0',
21516   `y` int(11) NOT NULL DEFAULT '0',
21517   KEY `idx_poip` (`questId`,`poiId`)
21518 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21519 /*!40101 SET character_set_client = @saved_cs_client */;
21522 -- Dumping data for table `quest_poi_points`
21525 LOCK TABLES `quest_poi_points` WRITE;
21526 /*!40000 ALTER TABLE `quest_poi_points` DISABLE KEYS */;
21527 /*!40000 ALTER TABLE `quest_poi_points` ENABLE KEYS */;
21528 UNLOCK TABLES;
21531 -- Table structure for table `quest_start_scripts`
21534 DROP TABLE IF EXISTS `quest_start_scripts`;
21535 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21536 /*!40101 SET character_set_client = utf8 */;
21537 CREATE TABLE `quest_start_scripts` (
21538   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
21539   `delay` int(10) unsigned NOT NULL DEFAULT '0',
21540   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
21541   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
21542   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
21543   `datalong3` int(10) unsigned NOT NULL DEFAULT '0',
21544   `datalong4` int(10) unsigned NOT NULL DEFAULT '0',
21545   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
21546   `dataint` int(11) NOT NULL DEFAULT '0',
21547   `dataint2` int(11) NOT NULL DEFAULT '0',
21548   `dataint3` int(11) NOT NULL DEFAULT '0',
21549   `dataint4` int(11) NOT NULL DEFAULT '0',
21550   `buddy_entry` int(11) NOT NULL DEFAULT '0',
21551   `search_radius` int(11) NOT NULL DEFAULT '0',
21552   `x` float NOT NULL DEFAULT '0',
21553   `y` float NOT NULL DEFAULT '0',
21554   `z` float NOT NULL DEFAULT '0',
21555   `o` float NOT NULL DEFAULT '0',
21556   `comments` varchar(255) NOT NULL
21557 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21558 /*!40101 SET character_set_client = @saved_cs_client */;
21561 -- Dumping data for table `quest_start_scripts`
21564 LOCK TABLES `quest_start_scripts` WRITE;
21565 /*!40000 ALTER TABLE `quest_start_scripts` DISABLE KEYS */;
21566 /*!40000 ALTER TABLE `quest_start_scripts` ENABLE KEYS */;
21567 UNLOCK TABLES;
21570 -- Table structure for table `quest_template`
21573 DROP TABLE IF EXISTS `quest_template`;
21574 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21575 /*!40101 SET character_set_client = utf8 */;
21576 CREATE TABLE `quest_template` (
21577   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21578   `Method` tinyint(3) unsigned NOT NULL DEFAULT '2',
21579   `ZoneOrSort` smallint(6) NOT NULL DEFAULT '0',
21580   `MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
21581   `QuestLevel` smallint(6) NOT NULL DEFAULT '0',
21582   `Type` smallint(5) unsigned NOT NULL DEFAULT '0',
21583   `RequiredClasses` smallint(5) unsigned NOT NULL DEFAULT '0',
21584   `RequiredRaces` int(7) unsigned NOT NULL DEFAULT '0',
21585   `RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0',
21586   `RequiredSkillValue` smallint(5) unsigned NOT NULL DEFAULT '0',
21587   `RepObjectiveFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
21588   `RepObjectiveValue` mediumint(9) NOT NULL DEFAULT '0',
21589   `RequiredMinRepFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
21590   `RequiredMinRepValue` mediumint(9) NOT NULL DEFAULT '0',
21591   `RequiredMaxRepFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
21592   `RequiredMaxRepValue` mediumint(9) NOT NULL DEFAULT '0',
21593   `SuggestedPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0',
21594   `LimitTime` int(10) unsigned NOT NULL DEFAULT '0',
21595   `QuestFlags` mediumint(8) unsigned NOT NULL DEFAULT '0',
21596   `SpecialFlags` tinyint(3) unsigned NOT NULL DEFAULT '0',
21597   `CharTitleId` tinyint(3) unsigned NOT NULL DEFAULT '0',
21598   `PlayersSlain` tinyint(3) unsigned NOT NULL DEFAULT '0',
21599   `BonusTalents` tinyint(3) unsigned NOT NULL DEFAULT '0',
21600   `PortraitGiver` mediumint(9) NOT NULL DEFAULT '0',
21601   `PortraitTurnIn` mediumint(9) NOT NULL DEFAULT '0',
21602   `PrevQuestId` mediumint(9) NOT NULL DEFAULT '0',
21603   `NextQuestId` mediumint(9) NOT NULL DEFAULT '0',
21604   `ExclusiveGroup` mediumint(9) NOT NULL DEFAULT '0',
21605   `NextQuestInChain` mediumint(8) unsigned NOT NULL DEFAULT '0',
21606   `RewXPId` tinyint(3) unsigned NOT NULL DEFAULT '0',
21607   `SrcItemId` mediumint(8) unsigned NOT NULL DEFAULT '0',
21608   `SrcItemCount` tinyint(3) unsigned NOT NULL DEFAULT '0',
21609   `SrcSpell` mediumint(8) unsigned NOT NULL DEFAULT '0',
21610   `Title` text,
21611   `Details` text,
21612   `Objectives` text,
21613   `OfferRewardText` text,
21614   `RequestItemsText` text,
21615   `EndText` text,
21616   `CompletedText` text,
21617   `PortraitGiverName` text,
21618   `PortraitGiverText` text,
21619   `PortraitTurnInName` text,
21620   `PortraitTurnInText` text,
21621   `ObjectiveText1` text,
21622   `ObjectiveText2` text,
21623   `ObjectiveText3` text,
21624   `ObjectiveText4` text,
21625   `ReqItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21626   `ReqItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21627   `ReqItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21628   `ReqItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21629   `ReqItemId5` mediumint(8) unsigned NOT NULL DEFAULT '0',
21630   `ReqItemId6` mediumint(8) unsigned NOT NULL DEFAULT '0',
21631   `ReqItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
21632   `ReqItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
21633   `ReqItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
21634   `ReqItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
21635   `ReqItemCount5` smallint(5) unsigned NOT NULL DEFAULT '0',
21636   `ReqItemCount6` smallint(5) unsigned NOT NULL DEFAULT '0',
21637   `ReqSourceId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21638   `ReqSourceId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21639   `ReqSourceId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21640   `ReqSourceId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21641   `ReqSourceCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
21642   `ReqSourceCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
21643   `ReqSourceCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
21644   `ReqSourceCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
21645   `ReqCreatureOrGOId1` mediumint(9) NOT NULL DEFAULT '0',
21646   `ReqCreatureOrGOId2` mediumint(9) NOT NULL DEFAULT '0',
21647   `ReqCreatureOrGOId3` mediumint(9) NOT NULL DEFAULT '0',
21648   `ReqCreatureOrGOId4` mediumint(9) NOT NULL DEFAULT '0',
21649   `ReqCreatureOrGOCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
21650   `ReqCreatureOrGOCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
21651   `ReqCreatureOrGOCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
21652   `ReqCreatureOrGOCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
21653   `ReqCurrencyId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21654   `ReqCurrencyId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21655   `ReqCurrencyId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21656   `ReqCurrencyId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21657   `ReqCurrencyCount1` mediumint(9) NOT NULL DEFAULT '0',
21658   `ReqCurrencyCount2` mediumint(9) NOT NULL DEFAULT '0',
21659   `ReqCurrencyCount3` mediumint(9) NOT NULL DEFAULT '0',
21660   `ReqCurrencyCount4` mediumint(9) NOT NULL DEFAULT '0',
21661   `ReqSpellCast1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21662   `ReqSpellCast2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21663   `ReqSpellCast3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21664   `ReqSpellCast4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21665   `ReqSpellLearned` mediumint(8) unsigned NOT NULL DEFAULT '0',
21666   `RewChoiceItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21667   `RewChoiceItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21668   `RewChoiceItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21669   `RewChoiceItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21670   `RewChoiceItemId5` mediumint(8) unsigned NOT NULL DEFAULT '0',
21671   `RewChoiceItemId6` mediumint(8) unsigned NOT NULL DEFAULT '0',
21672   `RewChoiceItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
21673   `RewChoiceItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
21674   `RewChoiceItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
21675   `RewChoiceItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
21676   `RewChoiceItemCount5` smallint(5) unsigned NOT NULL DEFAULT '0',
21677   `RewChoiceItemCount6` smallint(5) unsigned NOT NULL DEFAULT '0',
21678   `RewItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21679   `RewItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21680   `RewItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21681   `RewItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21682   `RewItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
21683   `RewItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
21684   `RewItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
21685   `RewItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
21686   `RewCurrencyId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21687   `RewCurrencyId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21688   `RewCurrencyId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
21689   `RewCurrencyId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
21690   `RewCurrencyCount1` mediumint(9) NOT NULL DEFAULT '0',
21691   `RewCurrencyCount2` mediumint(9) NOT NULL DEFAULT '0',
21692   `RewCurrencyCount3` mediumint(9) NOT NULL DEFAULT '0',
21693   `RewCurrencyCount4` mediumint(9) NOT NULL DEFAULT '0',
21694   `RewSkill` smallint(5) unsigned NOT NULL DEFAULT '0',
21695   `RewSkillValue` smallint(5) unsigned NOT NULL DEFAULT '0',
21696   `RewRepFaction1` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
21697   `RewRepFaction2` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
21698   `RewRepFaction3` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
21699   `RewRepFaction4` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
21700   `RewRepFaction5` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
21701   `RewRepValueId1` tinyint(3) NOT NULL DEFAULT '0',
21702   `RewRepValueId2` tinyint(3) NOT NULL DEFAULT '0',
21703   `RewRepValueId3` tinyint(3) NOT NULL DEFAULT '0',
21704   `RewRepValueId4` tinyint(3) NOT NULL DEFAULT '0',
21705   `RewRepValueId5` tinyint(3) NOT NULL DEFAULT '0',
21706   `RewRepValue1` mediumint(9) NOT NULL DEFAULT '0',
21707   `RewRepValue2` mediumint(9) NOT NULL DEFAULT '0',
21708   `RewRepValue3` mediumint(9) NOT NULL DEFAULT '0',
21709   `RewRepValue4` mediumint(9) NOT NULL DEFAULT '0',
21710   `RewRepValue5` mediumint(9) NOT NULL DEFAULT '0',
21711   `RewHonorAddition` int(10) unsigned NOT NULL DEFAULT '0',
21712   `RewHonorMultiplier` float NOT NULL DEFAULT '0',
21713   `RewOrReqMoney` int(11) NOT NULL DEFAULT '0',
21714   `RewMoneyMaxLevel` int(10) unsigned NOT NULL DEFAULT '0',
21715   `RewSpell` mediumint(8) unsigned NOT NULL DEFAULT '0',
21716   `RewSpellCast` mediumint(8) unsigned NOT NULL DEFAULT '0',
21717   `RewMailTemplateId` mediumint(8) unsigned NOT NULL DEFAULT '0',
21718   `RewMailDelaySecs` int(11) unsigned NOT NULL DEFAULT '0',
21719   `PointMapId` smallint(5) unsigned NOT NULL DEFAULT '0',
21720   `PointX` float NOT NULL DEFAULT '0',
21721   `PointY` float NOT NULL DEFAULT '0',
21722   `PointOpt` mediumint(8) unsigned NOT NULL DEFAULT '0',
21723   `DetailsEmote1` smallint(5) unsigned NOT NULL DEFAULT '0',
21724   `DetailsEmote2` smallint(5) unsigned NOT NULL DEFAULT '0',
21725   `DetailsEmote3` smallint(5) unsigned NOT NULL DEFAULT '0',
21726   `DetailsEmote4` smallint(5) unsigned NOT NULL DEFAULT '0',
21727   `DetailsEmoteDelay1` int(11) unsigned NOT NULL DEFAULT '0',
21728   `DetailsEmoteDelay2` int(11) unsigned NOT NULL DEFAULT '0',
21729   `DetailsEmoteDelay3` int(11) unsigned NOT NULL DEFAULT '0',
21730   `DetailsEmoteDelay4` int(11) unsigned NOT NULL DEFAULT '0',
21731   `IncompleteEmote` smallint(5) unsigned NOT NULL DEFAULT '0',
21732   `CompleteEmote` smallint(5) unsigned NOT NULL DEFAULT '0',
21733   `OfferRewardEmote1` smallint(5) unsigned NOT NULL DEFAULT '0',
21734   `OfferRewardEmote2` smallint(5) unsigned NOT NULL DEFAULT '0',
21735   `OfferRewardEmote3` smallint(5) unsigned NOT NULL DEFAULT '0',
21736   `OfferRewardEmote4` smallint(5) unsigned NOT NULL DEFAULT '0',
21737   `OfferRewardEmoteDelay1` int(11) unsigned NOT NULL DEFAULT '0',
21738   `OfferRewardEmoteDelay2` int(11) unsigned NOT NULL DEFAULT '0',
21739   `OfferRewardEmoteDelay3` int(11) unsigned NOT NULL DEFAULT '0',
21740   `OfferRewardEmoteDelay4` int(11) unsigned NOT NULL DEFAULT '0',
21741   `SoundAccept` smallint(5) unsigned NOT NULL DEFAULT '0',
21742   `SoundTurnIn` smallint(5) unsigned NOT NULL DEFAULT '0',
21743   `StartScript` mediumint(8) unsigned NOT NULL DEFAULT '0',
21744   `CompleteScript` mediumint(8) unsigned NOT NULL DEFAULT '0',
21745   PRIMARY KEY (`entry`)
21746 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
21747 /*!40101 SET character_set_client = @saved_cs_client */;
21750 -- Dumping data for table `quest_template`
21753 LOCK TABLES `quest_template` WRITE;
21754 /*!40000 ALTER TABLE `quest_template` DISABLE KEYS */;
21755 /*!40000 ALTER TABLE `quest_template` ENABLE KEYS */;
21756 UNLOCK TABLES;
21759 -- Table structure for table `reference_loot_template`
21762 DROP TABLE IF EXISTS `reference_loot_template`;
21763 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21764 /*!40101 SET character_set_client = utf8 */;
21765 CREATE TABLE `reference_loot_template` (
21766   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21767   `item` mediumint(8) NOT NULL DEFAULT '0',
21768   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
21769   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
21770   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
21771   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
21772   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
21773   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
21774   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
21775   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
21776   PRIMARY KEY (`entry`,`item`)
21777 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
21778 /*!40101 SET character_set_client = @saved_cs_client */;
21781 -- Dumping data for table `reference_loot_template`
21784 LOCK TABLES `reference_loot_template` WRITE;
21785 /*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
21786 /*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
21787 UNLOCK TABLES;
21790 -- Table structure for table `reputation_reward_rate`
21793 DROP TABLE IF EXISTS `reputation_reward_rate`;
21794 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21795 /*!40101 SET character_set_client = utf8 */;
21796 CREATE TABLE `reputation_reward_rate` (
21797   `faction` mediumint(8) unsigned NOT NULL DEFAULT '0',
21798   `quest_rate` float NOT NULL DEFAULT '1',
21799   `creature_rate` float NOT NULL DEFAULT '1',
21800   `spell_rate` float NOT NULL DEFAULT '1',
21801   PRIMARY KEY (`faction`)
21802 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21803 /*!40101 SET character_set_client = @saved_cs_client */;
21806 -- Dumping data for table `reputation_reward_rate`
21809 LOCK TABLES `reputation_reward_rate` WRITE;
21810 /*!40000 ALTER TABLE `reputation_reward_rate` DISABLE KEYS */;
21811 /*!40000 ALTER TABLE `reputation_reward_rate` ENABLE KEYS */;
21812 UNLOCK TABLES;
21815 -- Table structure for table `reputation_spillover_template`
21818 DROP TABLE IF EXISTS `reputation_spillover_template`;
21819 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21820 /*!40101 SET character_set_client = utf8 */;
21821 CREATE TABLE `reputation_spillover_template` (
21822   `faction` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT 'faction entry',
21823   `faction1` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT 'faction to give spillover for',
21824   `rate_1` float NOT NULL DEFAULT '0' COMMENT 'the given rep points * rate',
21825   `rank_1` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'max rank, above this will not give any spillover',
21826   `faction2` smallint(6) unsigned NOT NULL DEFAULT '0',
21827   `rate_2` float NOT NULL DEFAULT '0',
21828   `rank_2` tinyint(3) unsigned NOT NULL DEFAULT '0',
21829   `faction3` smallint(6) unsigned NOT NULL DEFAULT '0',
21830   `rate_3` float NOT NULL DEFAULT '0',
21831   `rank_3` tinyint(3) unsigned NOT NULL DEFAULT '0',
21832   `faction4` smallint(6) unsigned NOT NULL DEFAULT '0',
21833   `rate_4` float NOT NULL DEFAULT '0',
21834   `rank_4` tinyint(3) unsigned NOT NULL DEFAULT '0',
21835   PRIMARY KEY (`faction`)
21836 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Reputation spillover reputation gain';
21837 /*!40101 SET character_set_client = @saved_cs_client */;
21840 -- Dumping data for table `reputation_spillover_template`
21843 LOCK TABLES `reputation_spillover_template` WRITE;
21844 /*!40000 ALTER TABLE `reputation_spillover_template` DISABLE KEYS */;
21845 /*!40000 ALTER TABLE `reputation_spillover_template` ENABLE KEYS */;
21846 UNLOCK TABLES;
21849 -- Table structure for table `reserved_name`
21852 DROP TABLE IF EXISTS `reserved_name`;
21853 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21854 /*!40101 SET character_set_client = utf8 */;
21855 CREATE TABLE `reserved_name` (
21856   `name` varchar(12) NOT NULL DEFAULT '',
21857   PRIMARY KEY (`name`)
21858 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Reserved Names';
21859 /*!40101 SET character_set_client = @saved_cs_client */;
21862 -- Dumping data for table `reserved_name`
21865 LOCK TABLES `reserved_name` WRITE;
21866 /*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
21867 /*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
21868 UNLOCK TABLES;
21871 -- Table structure for table `scripted_areatrigger`
21874 DROP TABLE IF EXISTS `scripted_areatrigger`;
21875 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21876 /*!40101 SET character_set_client = utf8 */;
21877 CREATE TABLE `scripted_areatrigger` (
21878   `entry` mediumint(8) NOT NULL,
21879   `ScriptName` char(64) NOT NULL,
21880   PRIMARY KEY (`entry`)
21881 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
21882 /*!40101 SET character_set_client = @saved_cs_client */;
21885 -- Dumping data for table `scripted_areatrigger`
21888 LOCK TABLES `scripted_areatrigger` WRITE;
21889 /*!40000 ALTER TABLE `scripted_areatrigger` DISABLE KEYS */;
21890 /*!40000 ALTER TABLE `scripted_areatrigger` ENABLE KEYS */;
21891 UNLOCK TABLES;
21894 -- Table structure for table `scripted_event_id`
21897 DROP TABLE IF EXISTS `scripted_event_id`;
21898 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21899 /*!40101 SET character_set_client = utf8 */;
21900 CREATE TABLE `scripted_event_id` (
21901   `id` mediumint(8) NOT NULL,
21902   `ScriptName` char(64) NOT NULL,
21903   PRIMARY KEY (`id`)
21904 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Script library scripted events';
21905 /*!40101 SET character_set_client = @saved_cs_client */;
21908 -- Dumping data for table `scripted_event_id`
21911 LOCK TABLES `scripted_event_id` WRITE;
21912 /*!40000 ALTER TABLE `scripted_event_id` DISABLE KEYS */;
21913 /*!40000 ALTER TABLE `scripted_event_id` ENABLE KEYS */;
21914 UNLOCK TABLES;
21917 -- Table structure for table `skill_discovery_template`
21920 DROP TABLE IF EXISTS `skill_discovery_template`;
21921 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21922 /*!40101 SET character_set_client = utf8 */;
21923 CREATE TABLE `skill_discovery_template` (
21924   `spellId` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'SpellId of the discoverable spell',
21925   `reqSpell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'spell requirement',
21926   `reqSkillValue` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'skill points requirement',
21927   `chance` float NOT NULL DEFAULT '0' COMMENT 'chance to discover',
21928   PRIMARY KEY (`spellId`,`reqSpell`)
21929 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';
21930 /*!40101 SET character_set_client = @saved_cs_client */;
21933 -- Dumping data for table `skill_discovery_template`
21936 LOCK TABLES `skill_discovery_template` WRITE;
21937 /*!40000 ALTER TABLE `skill_discovery_template` DISABLE KEYS */;
21938 /*!40000 ALTER TABLE `skill_discovery_template` ENABLE KEYS */;
21939 UNLOCK TABLES;
21942 -- Table structure for table `skill_extra_item_template`
21945 DROP TABLE IF EXISTS `skill_extra_item_template`;
21946 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21947 /*!40101 SET character_set_client = utf8 */;
21948 CREATE TABLE `skill_extra_item_template` (
21949   `spellId` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'SpellId of the item creation spell',
21950   `requiredSpecialization` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Specialization spell id',
21951   `additionalCreateChance` float NOT NULL DEFAULT '0' COMMENT 'chance to create add',
21952   `additionalMaxNum` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'max num of adds',
21953   PRIMARY KEY (`spellId`)
21954 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';
21955 /*!40101 SET character_set_client = @saved_cs_client */;
21958 -- Dumping data for table `skill_extra_item_template`
21961 LOCK TABLES `skill_extra_item_template` WRITE;
21962 /*!40000 ALTER TABLE `skill_extra_item_template` DISABLE KEYS */;
21963 /*!40000 ALTER TABLE `skill_extra_item_template` ENABLE KEYS */;
21964 UNLOCK TABLES;
21967 -- Table structure for table `skill_fishing_base_level`
21970 DROP TABLE IF EXISTS `skill_fishing_base_level`;
21971 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21972 /*!40101 SET character_set_client = utf8 */;
21973 CREATE TABLE `skill_fishing_base_level` (
21974   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Area identifier',
21975   `skill` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Base skill level requirement',
21976   PRIMARY KEY (`entry`)
21977 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Fishing system';
21978 /*!40101 SET character_set_client = @saved_cs_client */;
21981 -- Dumping data for table `skill_fishing_base_level`
21984 LOCK TABLES `skill_fishing_base_level` WRITE;
21985 /*!40000 ALTER TABLE `skill_fishing_base_level` DISABLE KEYS */;
21986 /*!40000 ALTER TABLE `skill_fishing_base_level` ENABLE KEYS */;
21987 UNLOCK TABLES;
21990 -- Table structure for table `skinning_loot_template`
21993 DROP TABLE IF EXISTS `skinning_loot_template`;
21994 /*!40101 SET @saved_cs_client     = @@character_set_client */;
21995 /*!40101 SET character_set_client = utf8 */;
21996 CREATE TABLE `skinning_loot_template` (
21997   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
21998   `item` mediumint(8) NOT NULL DEFAULT '0',
21999   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
22000   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
22001   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
22002   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
22003   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
22004   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
22005   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
22006   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
22007   PRIMARY KEY (`entry`,`item`)
22008 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
22009 /*!40101 SET character_set_client = @saved_cs_client */;
22012 -- Dumping data for table `skinning_loot_template`
22015 LOCK TABLES `skinning_loot_template` WRITE;
22016 /*!40000 ALTER TABLE `skinning_loot_template` DISABLE KEYS */;
22017 /*!40000 ALTER TABLE `skinning_loot_template` ENABLE KEYS */;
22018 UNLOCK TABLES;
22021 -- Table structure for table `spell_area`
22024 DROP TABLE IF EXISTS `spell_area`;
22025 /*!40101 SET @saved_cs_client     = @@character_set_client */;
22026 /*!40101 SET character_set_client = utf8 */;
22027 CREATE TABLE `spell_area` (
22028   `spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
22029   `area` mediumint(8) unsigned NOT NULL DEFAULT '0',
22030   `quest_start` mediumint(8) unsigned NOT NULL DEFAULT '0',
22031   `quest_start_active` tinyint(1) unsigned NOT NULL DEFAULT '0',
22032   `quest_end` mediumint(8) unsigned NOT NULL DEFAULT '0',
22033   `aura_spell` mediumint(8) NOT NULL DEFAULT '0',
22034   `racemask` mediumint(8) unsigned NOT NULL DEFAULT '0',
22035   `gender` tinyint(1) unsigned NOT NULL DEFAULT '2',
22036   `autocast` tinyint(1) unsigned NOT NULL DEFAULT '0',
22037   PRIMARY KEY (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`)
22038 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
22039 /*!40101 SET character_set_client = @saved_cs_client */;
22042 -- Dumping data for table `spell_area`
22045 LOCK TABLES `spell_area` WRITE;
22046 /*!40000 ALTER TABLE `spell_area` DISABLE KEYS */;
22047 /*!40000 ALTER TABLE `spell_area` ENABLE KEYS */;
22048 UNLOCK TABLES;
22051 -- Table structure for table `spell_bonus_data`
22054 DROP TABLE IF EXISTS `spell_bonus_data`;
22055 /*!40101 SET @saved_cs_client     = @@character_set_client */;
22056 /*!40101 SET character_set_client = utf8 */;
22057 CREATE TABLE `spell_bonus_data` (
22058   `entry` mediumint(8) unsigned NOT NULL,
22059   `direct_bonus` float NOT NULL DEFAULT '0',
22060   `dot_bonus` float NOT NULL DEFAULT '0',
22061   `ap_bonus` float NOT NULL DEFAULT '0',
22062   `ap_dot_bonus` float NOT NULL DEFAULT '0',
22063   `comments` varchar(255) DEFAULT NULL,
22064   PRIMARY KEY (`entry`)
22065 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
22066 /*!40101 SET character_set_client = @saved_cs_client */;
22069 -- Dumping data for table `spell_bonus_data`
22072 LOCK TABLES `spell_bonus_data` WRITE;
22073 /*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
22074 INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `ap_dot_bonus`, `comments`) VALUES
22075 (116,0.8143,0,0,0,'Mage - Frost Bolt'),
22076 (133,1,0,0,0,'Mage - Fire Ball'),
22077 (172,0,0.2,0,0,'Warlock - Corruption'),
22078 (331,1.6106,0,0,0,'Shaman - Healing Wave'),
22079 (339,0,0.1,0,0,'Druid - Entangling Roots'),
22080 (348,0.2,0.2,0,0,'Warlock - Immolate'),
22081 (379,0,0,0,0,'Shaman - Earth Shield Triggered'),
22082 (403,0.7143,0,0,0,'Shaman - Lightning Bolt'),
22083 (585,0.714,0,0,0,'Priest - Smite'),
22084 (603,0,2,0,0,'Warlock - Curse of Doom'),
22085 (635,1.66,0,0,0,'Paladin - Holy Light'),
22086 (703,0,0,0,0.07,'Rogue - Garrote'),
22087 (755,0,0.4485,0,0,'Warlock - Health Funnel'),
22088 (879,0.15,0,0.15,0,'Paladin - Exorcism'),
22089 (974,0.4762,0,0,0,'Shaman - Earth Shield'),
22090 (980,0,0.1,0,0,'Warlock - Curse of Agony'),
22091 (1120,0,0.4286,0,0,'Warlock - Drain Soul'),
22092 (1463,0.8053,0,0,0,'Mage - Mana Shield'),
22093 (1495,0,0,0.2,0,'Hunter - Mongoose Bite'),
22094 (1776,0,0,0.21,0,'Rogue - Gouge'),
22095 (1822,0,0,0,0.06,'Druid - Rake'),
22096 (1949,0,0.0946,0,0,'Warlock - Hellfire'),
22097 (1978,0,0,0,0.04,'Hunter - Serpent Sting'),
22098 (2120,0.2357,0.122,0,0,'Mage - Flamestrike'),
22099 (2812,0.07,0,0.07,0,'Paladin - Holy Wrath'),
22100 (2818,0,0,0,0.03,'Rogue - Deadly Poison'),
22101 (2944,0,0.1849,0,0,'Priest - Devouring Plague'),
22102 (3044,0,0,0.15,0,'Hunter - Arcane Shot'),
22103 (3606,0.1667,0,0,0,'Shaman - Searing Totem Attack'),
22104 (3674,0,0,0,0.02,'Hunter - Black Arrow'),
22105 (5138,0,0,0,0,'Warlock - Drain Mana'),
22106 (5176,0.5714,0,0,0,'Druid - Wrath'),
22107 (5185,1.6104,0,0,0,'Druid - Healing Touch'),
22108 (5570,0,0.2,0,0,'Druid - Insect Swarm'),
22109 (5672,0.08272,0,0,0,'Shaman - Healing Stream Totem Aura'),
22110 (5707,0,0,0,0,'Item - Lifestone Regeneration'),
22111 (5857,0.1428,0,0,0,'Warlock - Hellfire Effect on Enemy'),
22112 (6229,0.3,0,0,0,'Warlock - Shadow Ward'),
22113 (6353,1.15,0,0,0,'Warlock - Soul Fire'),
22114 (7268,0.2857,0,0,0,'Mage - Arcane Missiles Triggered Spell'),
22115 (8026,0.1,0,0,0,'Shaman - Flametongue Weapon Proc'),
22116 (8034,0.1,0,0,0,'Shaman - Frostbrand Attack Rank 1'),
22117 (8042,0.3858,0,0,0,'Shaman - Earth Shock'),
22118 (8050,0.2142,0.1,0,0,'Shaman - Flame Shock'),
22119 (8056,0.3858,0,0,0,'Shaman - Frost Shock'),
22120 (8129,0,0,0,0,'Priest - Mana Burn'),
22121 (8188,0.1,0,0,0,'Shaman - Magma Totam Passive'),
22122 (8680,0,0,0.1,0,'Rogue - Instant Poison'),
22123 (8921,0.1515,0.13,0,0,'Druid - Moonfire'),
22124 (8936,0.539,0.188,0,0,'Druid - Regrowth'),
22125 (9007,0,0,0,0.03,'Druid - Pounce Bleed'),
22126 (10444,0,0,0,0,'Shaman - Flametongue Attack'),
22127 (11366,1.15,0.05,0,0,'Mage - Pyroblast'),
22128 (11538,0,0,0,0,'Item - Six Demon Bag - Frostbolt'),
22129 (13218,0,0,0.04,0,'Rogue - Wound Poison'),
22130 (13797,0,0,0,0.02,'Hunter - Immolation Trap'),
22131 (13812,0,0,0.1,0.1,'Hunter - Explosive Trap'),
22132 (14914,0.5711,0.024,0,0,'Priest - Holy Fire'),
22133 (15237,0.1606,0,0,0,'Priest - Holy Nova Damage'),
22134 (15662,0,0,0,0,'Item - Six Demon Bag - Fireball'),
22135 (17712,0,0,0,0,'Item - Lifestone Healing'),
22136 (17962,0,0,0,0,'Warlock - Conflagrate'),
22137 (18220,0.96,0,0,0,'Warlock - Dark Pact'),
22138 (18562,0,0,0,0,'Druid - Swiftmend'),
22139 (18790,0,0,0,0,'Warlock - Fel Stamina'),
22140 (19306,0,0,0.2,0,'Hunter - Counterattack'),
22141 (19750,1,0,0,0,'Paladin - Flash of Light'),
22142 (20267,0.1,0,0.1,0,'Paladin - Judgement of Light Proc'),
22143 (20424,0,0,0,0,'Paladin - Seal of Command Proc'),
22144 (20467,0.25,0,0.16,0,'Paladin - Judgement of Command'),
22145 (20925,0.09,0,0.056,0,'Paladin - Holy Shield'),
22146 (21179,0,0,0,0,'Item - Six Demon Bag - Chain Lightning'),
22147 (23455,0.3035,0,0,0,'Priest - Holy Nova Heal'),
22148 (25742,0.07,0,0.039,0,'Paladin - Seal of Righteousness Dummy Proc'),
22149 (25997,0,0,0,0,'Paladin - Eye for an Eye'),
22150 (26364,0.33,0,0,0,'Shaman - Lightning Shield Proc'),
22151 (26573,0,0.04,0,0.04,'Paladin - Consecration'),
22152 (27243,0.2129,0.25,0,0,'Warlock - Seed of Corruption'),
22153 (27813,0,0,0,0,'Priest - Blessed Recovery'),
22154 (28176,0,0,0,0,'Warlock - Fel Armor'),
22155 (30294,0,0,0,0,'Warlock - Soul Leech'),
22156 (30455,0.1429,0,0,0,'Mage - Ice Lance'),
22157 (31024,0,0,0,0,'Item - Living Ruby Pedant'),
22158 (31117,1.8,0,0,0,'Warlock - Unstable Affliction Dispell'),
22159 (31804,0,0,0,0,'Paladin - Judgement of Vengeance'),
22160 (33619,0,0,0,0,'Priest - Reflective Shield'),
22161 (33745,0,0,0.01,0.01,'Druid - Lacerate'),
22162 (33763,0,0.09518,0,0,'Druid - Lifebloom'),
22163 (34433,0.65,0,0,0,'Priest - Shadowfiend'),
22164 (34913,0,0,0,0,'Mage - Molten Armor Triggered'),
22165 (34914,0,0.4,0,0,'Priest - Vampiric Touch'),
22166 (38395,0,0,0,0,'Item - Siphon Essence'),
22167 (40293,0,0,0,0,'Item - Siphon Essence'),
22168 (42208,0.1437,0,0,0,'Mage - Blizzard Triggered'),
22169 (42223,0.285714,0,0,0,'Warlock - Rain of Fire Triggered'),
22170 (42231,0.12898,0,0,0,'Druid - Hurricane Triggered'),
22171 (42243,0,0,0.0837,0,'Hunter - Volley'),
22172 (42463,0,0,0.003,0,'Paladin - Seal of Vengeance (full stack proc)'),
22173 (43733,0,0,0,0,'Item - Lightning Zap'),
22174 (44203,0.538,0,0,0,'Druid - Tranquility Triggered'),
22175 (44425,0.714286,0,0,0,'Mage - Arcane Barrage'),
22176 (44614,0.8571,0,0,0,'Mage - Frostfire Bolt'),
22177 (45477,0,0,0.1,0,'Death Knight - Icy Touch'),
22178 (46567,0,0,0,0,'Item - Goblin Rocket Launcher'),
22179 (47476,0,0,0.06,0,'Death Knight - Strangulate'),
22180 (47632,0,0,0.15,0,'Death Knight - Death Coil Damage'),
22181 (47633,0,0,0.15,0,'Death Knight - Death Coil Heal'),
22182 (47666,0.229,0,0,0,'Priest - Penance dmg effect'),
22183 (47750,0.537,0,0,0,'Priest - Penance heal effect'),
22184 (47897,0.1064,0,0,0,'Warlock - Shadowflame Direct'),
22185 (47960,0,0.06666,0,0,'Warlock - Shadowflame DoT'),
22186 (48181,0.4729,0,0,0,'Warlock - Haunt'),
22187 (48438,0,0.11505,0,0,'Druid - Wild Growth'),
22188 (48628,0,0,0,0.15,'Druid - Lock Jaw'),
22189 (48721,0,0,0.04,0,'Death Knight - Blood Boil'),
22190 (48743,0,0,0,0,'Death Knight - Death Pact'),
22191 (49184,0,0,0.2,0,'Death Knight - Howling Blast'),
22192 (49821,0.2857,0,0,0,'Priest - Mind Sear Trigger'),
22193 (50288,0.3,0,0,0,'Druid - Starfall'),
22194 (50294,0.13,0,0,0,'Druid - Starfall AOE'),
22195 (50401,0,0,0,0,'Death Knight - Razor Frost'),
22196 (50444,0,0,0.105,0,'Death Knight - Corpse Explosion Triggered'),
22197 (50464,0.6611,0,0,0,'Druid - Nourish'),
22198 (50536,0,0,0,0.013,'Death Knight - Unholy Blight Triggered'),
22199 (50842,0,0,0.04,0,'Death Knight - Pestilence'),
22200 (52212,0,0,0.0475,0,'Death Knight - Death and Decay Triggered'),
22201 (53595,0,0,0,0,'Paladin - Hammer of the Righteous'),
22202 (53600,0,0,0,0,'Paladin - Shield of Righteousness'),
22203 (53733,0,0,0,0,'Paladin - Judgement of Corruption'),
22204 (53739,0,0,0.003,0,'Paladin - Seal of Corruption (full stack proc)'),
22205 (54158,0.25,0,0,0,'Paladin - Judgement'),
22206 (54181,0,0,0,0,'Warlock - Fel Synergy'),
22207 (54757,0,0,0,0,'Generic - Pyro Rocket'),
22208 (55078,0,0,0,0.06325,'Death Knight - Blood Plague'),
22209 (55095,0,0,0,0.06325,'Death Knight - Frost Fever'),
22210 (56131,0,0,0,0,'Item - Glyph of Dispel Magic'),
22211 (56160,0,0,0,0,'Item - Glyph of Power Word: Shield'),
22212 (56903,0,0,0,0,'Death Knight - Lichflame'),
22213 (58381,0.257143,0,0,0,'Priest - Mind Flay Triggered'),
22214 (60089,0,0,0.15,0,'Druid - Faerie Fire (Feral) Triggered'),
22215 (61295,0.4,0.18,0,0,'Shaman - Riptide'),
22216 (63106,0,0,0,0,'Warlock - Siphon Life Triggered'),
22217 (63544,0,0,0,0,'Priest - Empowered Renew Triggered'),
22218 (63675,0,0,0,0,'Priest - Improved Devouring Plague Triggered'),
22219 (64085,1.2,0,0,0,'Priest - Vampiric Touch Dispel'),
22220 (64569,0,0,0,0,'Item - Blood Reserve'),
22221 (71824,0,0,0,0,'Item - Shaman T9 Elemental 4P Bonus');
22222 /*!40000 ALTER TABLE `spell_bonus_data` ENABLE KEYS */;
22223 UNLOCK TABLES;
22226 -- Table structure for table `spell_chain`
22229 DROP TABLE IF EXISTS `spell_chain`;
22230 /*!40101 SET @saved_cs_client     = @@character_set_client */;
22231 /*!40101 SET character_set_client = utf8 */;
22232 CREATE TABLE `spell_chain` (
22233   `spell_id` mediumint(9) NOT NULL DEFAULT '0',
22234   `prev_spell` mediumint(9) NOT NULL DEFAULT '0',
22235   `first_spell` mediumint(9) NOT NULL DEFAULT '0',
22236   `rank` tinyint(4) NOT NULL DEFAULT '0',
22237   `req_spell` mediumint(9) NOT NULL DEFAULT '0',
22238   PRIMARY KEY (`spell_id`)
22239 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data';
22240 /*!40101 SET character_set_client = @saved_cs_client */;
22243 -- Dumping data for table `spell_chain`
22246 LOCK TABLES `spell_chain` WRITE;
22247 /*!40000 ALTER TABLE `spell_chain` DISABLE KEYS */;
22248 INSERT INTO `spell_chain` (`spell_id`, `prev_spell`, `first_spell`, `rank`, `req_spell`) VALUES
22249 (10,0,10,1,0),
22250 (17,0,17,1,0),
22251 (116,0,116,1,0),
22252 (118,0,118,1,0),
22253 (120,0,120,1,0),
22254 (122,0,122,1,0),
22255 (133,0,133,1,0),
22256 (136,0,136,1,0),
22257 (139,0,139,1,0),
22258 (143,133,133,2,0),
22259 (145,143,133,3,0),
22260 (168,0,168,1,0),
22261 (172,0,172,1,0),
22262 (205,116,116,2,0),
22263 (324,0,324,1,0),
22264 (325,324,324,2,0),
22265 (331,0,331,1,0),
22266 (332,331,331,2,0),
22267 (339,0,339,1,0),
22268 (348,0,348,1,0),
22269 (370,0,370,1,0),
22270 (403,0,403,1,0),
22271 (421,0,421,1,0),
22272 (467,0,467,1,0),
22273 (527,0,527,1,0),
22274 (529,403,403,2,0),
22275 (543,0,543,1,0),
22276 (547,332,331,3,0),
22277 (548,529,403,3,0),
22278 (585,0,585,1,0),
22279 (587,0,587,1,0),
22280 (588,0,588,1,0),
22281 (589,0,589,1,0),
22282 (591,585,585,2,0),
22283 (592,17,17,2,0),
22284 (594,589,589,2,0),
22285 (596,0,596,1,0),
22286 (597,587,587,2,0),
22287 (598,591,585,3,0),
22288 (600,592,17,3,0),
22289 (602,7128,588,3,0),
22290 (603,0,603,1,0),
22291 (604,0,604,1,0),
22292 (635,0,635,1,0),
22293 (639,635,635,2,0),
22294 (647,639,635,3,0),
22295 (686,0,686,1,0),
22296 (687,0,687,1,0),
22297 (689,0,689,1,0),
22298 (693,0,693,1,0),
22299 (695,686,686,2,0),
22300 (696,687,687,2,0),
22301 (699,689,689,2,0),
22302 (702,0,702,1,0),
22303 (705,695,686,3,0),
22304 (706,0,706,1,0),
22305 (707,348,348,2,0),
22306 (709,699,689,3,0),
22307 (710,0,710,1,0),
22308 (724,0,724,1,0),
22309 (740,0,740,1,0),
22310 (755,0,755,1,0),
22311 (759,0,759,1,0),
22312 (774,0,774,1,0),
22313 (782,467,467,2,0),
22314 (837,205,116,3,0),
22315 (853,0,853,1,0),
22316 (865,122,122,2,0),
22317 (879,0,879,1,0),
22318 (905,325,324,3,0),
22319 (913,547,331,4,0),
22320 (915,548,403,4,0),
22321 (930,421,421,2,0),
22322 (939,913,331,5,0),
22323 (943,915,403,5,0),
22324 (945,905,324,4,0),
22325 (959,939,331,6,0),
22326 (970,594,589,3,0),
22327 (974,0,974,1,0),
22328 (976,0,976,1,0),
22329 (980,0,980,1,0),
22330 (984,598,585,4,0),
22331 (988,527,527,2,0),
22332 (990,597,587,3,0),
22333 (992,970,589,4,0),
22334 (996,596,596,2,0),
22335 (1004,984,585,5,0),
22336 (1006,602,588,4,0),
22337 (1008,0,1008,1,0),
22338 (1014,980,980,2,0),
22339 (1022,0,1022,1,0),
22340 (1026,647,635,4,0),
22341 (1042,1026,635,5,0),
22342 (1058,774,774,2,0),
22343 (1062,339,339,2,0),
22344 (1064,0,1064,1,0),
22345 (1075,782,467,3,0),
22346 (1086,706,706,2,0),
22347 (1088,705,686,4,0),
22348 (1094,707,348,3,0),
22349 (1098,0,1098,1,0),
22350 (1106,1088,686,5,0),
22351 (1108,702,702,2,0),
22352 (1120,0,1120,1,0),
22353 (1126,0,1126,1,0),
22354 (1130,0,1130,1,0),
22355 (1243,0,1243,1,0),
22356 (1244,1243,1243,2,0),
22357 (1245,1244,1243,3,0),
22358 (1430,1058,774,3,0),
22359 (1449,0,1449,1,0),
22360 (1454,0,1454,1,0),
22361 (1455,1454,1454,2,0),
22362 (1456,1455,1454,3,0),
22363 (1459,0,1459,1,0),
22364 (1460,1459,1459,2,0),
22365 (1461,1460,1459,3,0),
22366 (1463,0,1463,1,0),
22367 (1490,0,1490,1,0),
22368 (1495,0,1495,1,0),
22369 (1499,0,1499,1,0),
22370 (1510,0,1510,1,0),
22371 (1513,0,1513,1,0),
22372 (1535,0,1535,1,0),
22373 (1714,0,1714,1,0),
22374 (1949,0,1949,1,0),
22375 (1978,0,1978,1,0),
22376 (2006,0,2006,1,0),
22377 (2008,0,2008,1,0),
22378 (2010,2006,2006,2,0),
22379 (2050,0,2050,1,0),
22380 (2052,2050,2050,2,0),
22381 (2053,2052,2050,3,0),
22382 (2054,0,2054,1,0),
22383 (2055,2054,2054,2,0),
22384 (2060,0,2060,1,0),
22385 (2061,0,2061,1,0),
22386 (2090,1430,774,4,0),
22387 (2091,2090,774,5,0),
22388 (2096,0,2096,1,0),
22389 (2120,0,2120,1,0),
22390 (2121,2120,2120,2,0),
22391 (2136,0,2136,1,0),
22392 (2137,2136,2136,2,0),
22393 (2138,2137,2136,3,0),
22394 (2362,0,2362,1,0),
22395 (2637,0,2637,1,0),
22396 (2643,0,2643,1,0),
22397 (2767,992,589,5,0),
22398 (2791,1245,1243,4,0),
22399 (2812,0,2812,1,0),
22400 (2818,0,2818,1,0),
22401 (2819,2818,2818,2,0),
22402 (2860,930,421,3,0),
22403 (2908,0,2908,1,0),
22404 (2912,0,2912,1,0),
22405 (2941,1094,348,4,0),
22406 (2944,0,2944,1,0),
22407 (2948,0,2948,1,0),
22408 (2973,0,2973,1,0),
22409 (3044,0,3044,1,0),
22410 (3111,136,136,2,0),
22411 (3140,145,133,4,0),
22412 (3472,1042,635,6,0),
22413 (3552,759,759,2,0),
22414 (3599,0,3599,1,0),
22415 (3606,0,3606,1,0),
22416 (3627,2091,774,6,0),
22417 (3661,3111,136,3,0),
22418 (3662,3661,136,4,0),
22419 (3674,0,3674,1,0),
22420 (3698,755,755,2,0),
22421 (3699,3698,755,3,0),
22422 (3700,3699,755,4,0),
22423 (3747,600,17,4,0),
22424 (5143,0,5143,1,0),
22425 (5144,5143,5143,2,0),
22426 (5145,5144,5143,3,0),
22427 (5176,0,5176,1,0),
22428 (5177,5176,5176,2,0),
22429 (5178,5177,5176,3,0),
22430 (5179,5178,5176,4,0),
22431 (5180,5179,5176,5,0),
22432 (5185,0,5185,1,0),
22433 (5186,5185,5185,2,0),
22434 (5187,5186,5185,3,0),
22435 (5188,5187,5185,4,0),
22436 (5189,5188,5185,5,0),
22437 (5195,1062,339,3,0),
22438 (5196,5195,339,4,0),
22439 (5232,1126,1126,2,0),
22440 (5234,6756,1126,4,0),
22441 (5394,0,5394,1,0),
22442 (5484,0,5484,1,0),
22443 (5504,0,5504,1,0),
22444 (5505,5504,5504,2,0),
22445 (5506,5505,5504,3,0),
22446 (5570,0,5570,1,0),
22447 (5588,853,853,2,0),
22448 (5589,5588,853,3,0),
22449 (5599,1022,1022,2,0),
22450 (5614,879,879,2,0),
22451 (5615,5614,879,3,0),
22452 (5672,0,5672,1,0),
22453 (5675,0,5675,1,0),
22454 (5676,0,5676,1,0),
22455 (5699,6202,6201,3,0),
22456 (5730,0,5730,1,0),
22457 (5740,0,5740,1,0),
22458 (5782,0,5782,1,0),
22459 (5857,0,5857,1,0),
22460 (6041,943,403,6,0),
22461 (6060,1004,585,6,0),
22462 (6063,2055,2054,3,0),
22463 (6064,6063,2054,4,0),
22464 (6065,3747,17,5,0),
22465 (6066,6065,17,6,0),
22466 (6074,139,139,2,0),
22467 (6075,6074,139,3,0),
22468 (6076,6075,139,4,0),
22469 (6077,6076,139,5,0),
22470 (6078,6077,139,6,0),
22471 (6117,0,6117,1,0),
22472 (6127,5506,5504,4,0),
22473 (6129,990,587,4,0),
22474 (6131,865,122,3,0),
22475 (6141,10,10,2,0),
22476 (6143,0,6143,1,0),
22477 (6201,0,6201,1,0),
22478 (6202,6201,6201,2,0),
22479 (6205,1108,702,3,0),
22480 (6213,5782,5782,2,0),
22481 (6215,6213,5782,3,0),
22482 (6217,1014,980,3,0),
22483 (6219,5740,5740,2,0),
22484 (6222,172,172,2,0),
22485 (6223,6222,172,3,0),
22486 (6229,0,6229,1,0),
22487 (6350,3606,3606,2,0),
22488 (6351,6350,3606,3,0),
22489 (6352,6351,3606,4,0),
22490 (6353,0,6353,1,0),
22491 (6363,3599,3599,2,0),
22492 (6364,6363,3599,3,0),
22493 (6365,6364,3599,4,0),
22494 (6366,0,6366,1,0),
22495 (6371,5672,5672,2,0),
22496 (6372,6371,5672,3,0),
22497 (6375,5394,5394,2,0),
22498 (6377,6375,5394,3,0),
22499 (6390,5730,5730,2,0),
22500 (6391,6390,5730,3,0),
22501 (6392,6391,5730,4,0),
22502 (6756,5232,1126,3,0),
22503 (6778,5189,5185,6,0),
22504 (6780,5180,5176,6,0),
22505 (6789,0,6789,1,0),
22506 (7128,588,588,2,0),
22507 (7268,0,7268,1,0),
22508 (7269,7268,7268,2,0),
22509 (7270,7269,7268,3,0),
22510 (7300,168,168,2,0),
22511 (7301,7300,168,3,0),
22512 (7302,0,7302,1,0),
22513 (7320,7302,7302,2,0),
22514 (7322,837,116,4,0),
22515 (7328,0,7328,1,0),
22516 (7641,1106,686,6,0),
22517 (7646,6205,702,4,0),
22518 (7648,6223,172,4,0),
22519 (7651,709,689,4,0),
22520 (8004,0,8004,1,0),
22521 (8005,959,331,7,0),
22522 (8008,8004,8004,2,0),
22523 (8010,8008,8004,3,0),
22524 (8012,370,370,2,0),
22525 (8017,0,8017,1,0),
22526 (8018,8017,8017,2,0),
22527 (8019,8018,8017,3,0),
22528 (8024,0,8024,1,0),
22529 (8026,0,8026,1,0),
22530 (8027,8024,8024,2,0),
22531 (8028,8026,8026,2,0),
22532 (8029,8028,8026,3,0),
22533 (8030,8027,8024,3,0),
22534 (8033,0,8033,1,0),
22535 (8034,0,8034,1,0),
22536 (8037,8034,8034,2,0),
22537 (8038,8033,8033,2,0),
22538 (8042,0,8042,1,0),
22539 (8044,8042,8042,2,0),
22540 (8045,8044,8042,3,0),
22541 (8046,8045,8042,4,0),
22542 (8050,0,8050,1,0),
22543 (8052,8050,8050,2,0),
22544 (8053,8052,8050,3,0),
22545 (8056,0,8056,1,0),
22546 (8058,8056,8056,2,0),
22547 (8071,0,8071,1,0),
22548 (8075,0,8075,1,0),
22549 (8092,0,8092,1,0),
22550 (8102,8092,8092,2,0),
22551 (8103,8102,8092,3,0),
22552 (8104,8103,8092,4,0),
22553 (8105,8104,8092,5,0),
22554 (8106,8105,8092,6,0),
22555 (8122,0,8122,1,0),
22556 (8124,8122,8122,2,0),
22557 (8134,945,324,5,0),
22558 (8154,8071,8071,2,0),
22559 (8155,8154,8071,3,0),
22560 (8160,8075,8075,2,0),
22561 (8161,8160,8075,3,0),
22562 (8181,0,8181,1,0),
22563 (8184,0,8184,1,0),
22564 (8188,0,8188,1,0),
22565 (8190,0,8190,1,0),
22566 (8227,0,8227,1,0),
22567 (8232,0,8232,1,0),
22568 (8235,8232,8232,2,0),
22569 (8249,8227,8227,2,0),
22570 (8288,1120,1120,2,0),
22571 (8289,8288,1120,3,0),
22572 (8400,3140,133,5,0),
22573 (8401,8400,133,6,0),
22574 (8402,8401,133,7,0),
22575 (8406,7322,116,5,0),
22576 (8407,8406,116,6,0),
22577 (8408,8407,116,7,0),
22578 (8412,2138,2136,4,0),
22579 (8413,8412,2136,5,0),
22580 (8416,5145,5143,4,0),
22581 (8417,8416,5143,5,0),
22582 (8418,8419,7268,5,0),
22583 (8419,7270,7268,4,0),
22584 (8422,2121,2120,3,0),
22585 (8423,8422,2120,4,0),
22586 (8427,6141,10,3,0),
22587 (8437,1449,1449,2,0),
22588 (8438,8437,1449,3,0),
22589 (8439,8438,1449,4,0),
22590 (8444,2948,2948,2,0),
22591 (8445,8444,2948,3,0),
22592 (8446,8445,2948,4,0),
22593 (8450,604,604,2,0),
22594 (8451,8450,604,3,0),
22595 (8455,1008,1008,2,0),
22596 (8457,543,543,2,0),
22597 (8458,8457,543,3,0),
22598 (8461,6143,6143,2,0),
22599 (8462,8461,6143,3,0),
22600 (8492,120,120,2,0),
22601 (8494,1463,1463,2,0),
22602 (8495,8494,1463,3,0),
22603 (8498,1535,1535,2,0),
22604 (8499,8498,1535,3,0),
22605 (8680,0,8680,1,0),
22606 (8685,8680,8680,2,0),
22607 (8689,8685,8680,3,0),
22608 (8903,6778,5185,7,0),
22609 (8905,6780,5176,7,0),
22610 (8907,5234,1126,5,0),
22611 (8910,3627,774,7,0),
22612 (8914,1075,467,4,0),
22613 (8918,740,740,2,0),
22614 (8921,0,8921,1,0),
22615 (8924,8921,8921,2,0),
22616 (8925,8924,8921,3,0),
22617 (8926,8925,8921,4,0),
22618 (8927,8926,8921,5,0),
22619 (8928,8927,8921,6,0),
22620 (8929,8928,8921,7,0),
22621 (8936,0,8936,1,0),
22622 (8938,8936,8936,2,0),
22623 (8939,8938,8936,3,0),
22624 (8940,8939,8936,4,0),
22625 (8941,8940,8936,5,0),
22626 (8949,2912,2912,2,0),
22627 (8950,8949,2912,3,0),
22628 (8951,8950,2912,4,0),
22629 (8955,2908,2908,2,0),
22630 (9472,2061,2061,2,0),
22631 (9473,9472,2061,3,0),
22632 (9474,9473,2061,4,0),
22633 (9484,0,9484,1,0),
22634 (9485,9484,9484,2,0),
22635 (9750,8941,8936,6,0),
22636 (9756,8914,467,5,0),
22637 (9758,8903,5185,8,0),
22638 (9787,9785,2018,5,0),
22639 (9788,9785,2018,5,0),
22640 (9833,8929,8921,8,0),
22641 (9834,9833,8921,9,0),
22642 (9835,9834,8921,10,0),
22643 (9839,8910,774,8,0),
22644 (9840,9839,774,9,0),
22645 (9841,9840,774,10,0),
22646 (9852,5196,339,5,0),
22647 (9853,9852,339,6,0),
22648 (9856,9750,8936,7,0),
22649 (9857,9856,8936,8,0),
22650 (9858,9857,8936,9,0),
22651 (9862,8918,740,3,0),
22652 (9863,9862,740,4,0),
22653 (9875,8951,2912,5,0),
22654 (9876,9875,2912,6,0),
22655 (9884,8907,1126,6,0),
22656 (9885,9884,1126,7,0),
22657 (9888,9758,5185,9,0),
22658 (9889,9888,5185,10,0),
22659 (9901,8955,2908,3,0),
22660 (9910,9756,467,6,0),
22661 (9912,8905,5176,8,0),
22662 (10053,3552,759,3,0),
22663 (10054,10053,759,4,0),
22664 (10138,6127,5504,5,0),
22665 (10139,10138,5504,6,0),
22666 (10140,10139,5504,7,0),
22667 (10144,6129,587,5,0),
22668 (10145,10144,587,6,0),
22669 (10148,8402,133,8,0),
22670 (10149,10148,133,9,0),
22671 (10150,10149,133,10,0),
22672 (10151,10150,133,11,0),
22673 (10156,1461,1459,4,0),
22674 (10157,10156,1459,5,0),
22675 (10159,8492,120,3,0),
22676 (10160,10159,120,4,0),
22677 (10161,10160,120,5,0),
22678 (10169,8455,1008,3,0),
22679 (10170,10169,1008,4,0),
22680 (10173,8451,604,4,0),
22681 (10174,10173,604,5,0),
22682 (10177,8462,6143,4,0),
22683 (10179,8408,116,8,0),
22684 (10180,10179,116,9,0),
22685 (10181,10180,116,10,0),
22686 (10185,8427,10,4,0),
22687 (10186,10185,10,5,0),
22688 (10187,10186,10,6,0),
22689 (10191,8495,1463,4,0),
22690 (10192,10191,1463,5,0),
22691 (10193,10192,1463,6,0),
22692 (10197,8413,2136,6,0),
22693 (10199,10197,2136,7,0),
22694 (10201,8439,1449,5,0),
22695 (10202,10201,1449,6,0),
22696 (10205,8446,2948,5,0),
22697 (10206,10205,2948,6,0),
22698 (10207,10206,2948,7,0),
22699 (10211,8417,5143,6,0),
22700 (10212,10211,5143,7,0),
22701 (10215,8423,2120,5,0),
22702 (10216,10215,2120,6,0),
22703 (10219,7320,7302,3,0),
22704 (10220,10219,7302,4,0),
22705 (10223,8458,543,4,0),
22706 (10225,10223,543,5,0),
22707 (10230,6131,122,4,0),
22708 (10273,8418,7268,6,0),
22709 (10274,10273,7268,7,0),
22710 (10278,5599,1022,3,0),
22711 (10308,5589,853,4,0),
22712 (10312,5615,879,4,0),
22713 (10313,10312,879,5,0),
22714 (10314,10313,879,6,0),
22715 (10318,2812,2812,2,0),
22716 (10322,7328,7328,2,0),
22717 (10324,10322,7328,3,0),
22718 (10328,3472,635,7,0),
22719 (10329,10328,635,8,0),
22720 (10391,6041,403,7,0),
22721 (10392,10391,403,8,0),
22722 (10395,8005,331,8,0),
22723 (10396,10395,331,9,0),
22724 (10399,8019,8017,4,0),
22725 (10406,8155,8071,4,0),
22726 (10407,10406,8071,5,0),
22727 (10408,10407,8071,6,0),
22728 (10412,8046,8042,5,0),
22729 (10413,10412,8042,6,0),
22730 (10414,10413,8042,7,0),
22731 (10427,6392,5730,5,0),
22732 (10428,10427,5730,6,0),
22733 (10431,8134,324,6,0),
22734 (10432,10431,324,7,0),
22735 (10435,6352,3606,5,0),
22736 (10436,10435,3606,6,0),
22737 (10437,6365,3599,5,0),
22738 (10438,10437,3599,6,0),
22739 (10442,8161,8075,4,0),
22740 (10445,8029,8026,4,0),
22741 (10447,8053,8050,4,0),
22742 (10448,10447,8050,5,0),
22743 (10456,8038,8033,3,0),
22744 (10458,8037,8034,3,0),
22745 (10460,6372,5672,4,0),
22746 (10461,10460,5672,5,0),
22747 (10462,6377,5394,4,0),
22748 (10463,10462,5394,5,0),
22749 (10466,8010,8004,4,0),
22750 (10467,10466,8004,5,0),
22751 (10468,10467,8004,6,0),
22752 (10472,8058,8056,3,0),
22753 (10473,10472,8056,4,0),
22754 (10478,8181,8181,2,0),
22755 (10479,10478,8181,3,0),
22756 (10486,8235,8232,3,0),
22757 (10495,5675,5675,2,0),
22758 (10496,10495,5675,3,0),
22759 (10497,10496,5675,4,0),
22760 (10526,8249,8227,3,0),
22761 (10537,8184,8184,2,0),
22762 (10538,10537,8184,3,0),
22763 (10582,8188,8188,2,0),
22764 (10583,10582,8188,3,0),
22765 (10584,10583,8188,4,0),
22766 (10585,8190,8190,2,0),
22767 (10586,10585,8190,3,0),
22768 (10587,10586,8190,4,0),
22769 (10595,0,10595,1,0),
22770 (10600,10595,10595,2,0),
22771 (10601,10600,10595,3,0),
22772 (10605,2860,421,4,0),
22773 (10622,1064,1064,2,0),
22774 (10623,10622,1064,3,0),
22775 (10656,10662,2108,5,0),
22776 (10658,10662,2108,5,0),
22777 (10660,10662,2108,5,0),
22778 (10880,2010,2006,3,0),
22779 (10881,10880,2006,4,0),
22780 (10888,8124,8122,3,0),
22781 (10890,10888,8122,4,0),
22782 (10892,2767,589,6,0),
22783 (10893,10892,589,7,0),
22784 (10894,10893,589,8,0),
22785 (10898,6066,17,7,0),
22786 (10899,10898,17,8,0),
22787 (10900,10899,17,9,0),
22788 (10901,10900,17,10,0),
22789 (10909,2096,2096,2,0),
22790 (10915,9474,2061,5,0),
22791 (10916,10915,2061,6,0),
22792 (10917,10916,2061,7,0),
22793 (10927,6078,139,7,0),
22794 (10928,10927,139,8,0),
22795 (10929,10928,139,9,0),
22796 (10933,6060,585,7,0),
22797 (10934,10933,585,8,0),
22798 (10937,2791,1243,5,0),
22799 (10938,10937,1243,6,0),
22800 (10945,8106,8092,7,0),
22801 (10946,10945,8092,8,0),
22802 (10947,10946,8092,9,0),
22803 (10951,1006,588,5,0),
22804 (10952,10951,588,6,0),
22805 (10955,9485,9484,3,0),
22806 (10957,976,976,2,0),
22807 (10958,10957,976,3,0),
22808 (10960,996,596,3,0),
22809 (10961,10960,596,4,0),
22810 (10963,2060,2060,2,0),
22811 (10964,10963,2060,3,0),
22812 (10965,10964,2060,4,0),
22813 (11113,0,11113,1,0),
22814 (11314,8499,1535,4,0),
22815 (11315,11314,1535,5,0),
22816 (11335,8689,8680,4,0),
22817 (11336,11335,8680,5,0),
22818 (11337,11336,8680,6,0),
22819 (11353,2819,2818,3,0),
22820 (11354,11353,2818,4,0),
22821 (11366,0,11366,1,0),
22822 (11426,0,11426,1,0),
22823 (11659,7641,686,7,0),
22824 (11660,11659,686,8,0),
22825 (11661,11660,686,9,0),
22826 (11665,2941,348,5,0),
22827 (11667,11665,348,6,0),
22828 (11668,11667,348,7,0),
22829 (11671,7648,172,5,0),
22830 (11672,11671,172,6,0),
22831 (11675,8289,1120,4,0),
22832 (11677,6219,5740,3,0),
22833 (11678,11677,5740,4,0),
22834 (11681,5857,5857,2,0),
22835 (11682,11681,5857,3,0),
22836 (11683,1949,1949,2,0),
22837 (11684,11683,1949,3,0),
22838 (11687,1456,1454,4,0),
22839 (11688,11687,1454,5,0),
22840 (11689,11688,1454,6,0),
22841 (11693,3700,755,5,0),
22842 (11694,11693,755,6,0),
22843 (11695,11694,755,7,0),
22844 (11699,7651,689,5,0),
22845 (11700,11699,689,6,0),
22846 (11707,7646,702,5,0),
22847 (11708,11707,702,6,0),
22848 (11711,6217,980,4,0),
22849 (11712,11711,980,5,0),
22850 (11713,11712,980,6,0),
22851 (11719,1714,1714,2,0),
22852 (11721,1490,1490,2,0),
22853 (11722,11721,1490,3,0),
22854 (11725,1098,1098,2,0),
22855 (11726,11725,1098,3,0),
22856 (11729,5699,6201,4,0),
22857 (11730,11729,6201,5,0),
22858 (11733,1086,706,3,0),
22859 (11734,11733,706,4,0),
22860 (11735,11734,706,5,0),
22861 (11739,6229,6229,2,0),
22862 (11740,11739,6229,3,0),
22863 (12505,11366,11366,2,0),
22864 (12522,12505,11366,3,0),
22865 (12523,12522,11366,4,0),
22866 (12524,12523,11366,5,0),
22867 (12525,12524,11366,6,0),
22868 (12526,12525,11366,7,0),
22869 (12824,118,118,2,0),
22870 (12825,12824,118,3,0),
22871 (12826,12825,118,4,0),
22872 (13018,11113,11113,2,0),
22873 (13019,13018,11113,3,0),
22874 (13020,13019,11113,4,0),
22875 (13021,13020,11113,5,0),
22876 (13031,11426,11426,2,0),
22877 (13032,13031,11426,3,0),
22878 (13033,13032,11426,4,0),
22879 (13165,0,13165,1,0),
22880 (13218,0,13218,1,0),
22881 (13222,13218,13218,2,0),
22882 (13223,13222,13218,3,0),
22883 (13224,13223,13218,4,0),
22884 (13542,3662,136,5,0),
22885 (13543,13542,136,6,0),
22886 (13544,13543,136,7,0),
22887 (13549,1978,1978,2,0),
22888 (13550,13549,1978,3,0),
22889 (13551,13550,1978,4,0),
22890 (13552,13551,1978,5,0),
22891 (13553,13552,1978,6,0),
22892 (13554,13553,1978,7,0),
22893 (13555,13554,1978,8,0),
22894 (13795,0,13795,1,0),
22895 (13797,0,13797,1,0),
22896 (13812,0,13812,1,0),
22897 (13813,0,13813,1,0),
22898 (13819,0,13819,1,0),
22899 (14260,2973,2973,2,0),
22900 (14261,14260,2973,3,0),
22901 (14262,14261,2973,4,0),
22902 (14263,14262,2973,5,0),
22903 (14264,14263,2973,6,0),
22904 (14265,14264,2973,7,0),
22905 (14266,14265,2973,8,0),
22906 (14269,1495,1495,2,0),
22907 (14270,14269,1495,3,0),
22908 (14271,14270,1495,4,0),
22909 (14281,3044,3044,2,0),
22910 (14282,14281,3044,3,0),
22911 (14283,14282,3044,4,0),
22912 (14284,14283,3044,5,0),
22913 (14285,14284,3044,6,0),
22914 (14286,14285,3044,7,0),
22915 (14287,14286,3044,8,0),
22916 (14288,2643,2643,2,0),
22917 (14289,14288,2643,3,0),
22918 (14290,14289,2643,4,0),
22919 (14294,1510,1510,2,0),
22920 (14295,14294,1510,3,0),
22921 (14298,13797,13797,2,0),
22922 (14299,14298,13797,3,0),
22923 (14300,14299,13797,4,0),
22924 (14301,14300,13797,5,0),
22925 (14302,13795,13795,2,0),
22926 (14303,14302,13795,3,0),
22927 (14304,14303,13795,4,0),
22928 (14305,14304,13795,5,0),
22929 (14310,1499,1499,2,0),
22930 (14311,14310,1499,3,0),
22931 (14314,13812,13812,2,0),
22932 (14315,14314,13812,3,0),
22933 (14316,13813,13813,2,0),
22934 (14317,14316,13813,3,0),
22935 (14318,13165,13165,2,0),
22936 (14319,14318,13165,3,0),
22937 (14320,14319,13165,4,0),
22938 (14321,14320,13165,5,0),
22939 (14322,14321,13165,6,0),
22940 (14323,1130,1130,2,0),
22941 (14324,14323,1130,3,0),
22942 (14325,14324,1130,4,0),
22943 (14326,1513,1513,2,0),
22944 (14327,14326,1513,3,0),
22945 (14752,0,14752,1,0),
22946 (14818,14752,14752,2,0),
22947 (14819,14818,14752,3,0),
22948 (14914,0,14914,1,0),
22949 (15207,10392,403,9,0),
22950 (15208,15207,403,10,0),
22951 (15237,0,15237,1,0),
22952 (15261,15267,14914,8,0),
22953 (15262,14914,14914,2,0),
22954 (15263,15262,14914,3,0),
22955 (15264,15263,14914,4,0),
22956 (15265,15264,14914,5,0),
22957 (15266,15265,14914,6,0),
22958 (15267,15266,14914,7,0),
22959 (15407,0,15407,1,0),
22960 (15430,15237,15237,2,0),
22961 (15431,15430,15237,3,0),
22962 (16339,8030,8024,4,0),
22963 (16341,16339,8024,5,0),
22964 (16342,16341,8024,6,0),
22965 (16343,10445,8026,5,0),
22966 (16344,16343,8026,6,0),
22967 (16352,10458,8034,4,0),
22968 (16353,16352,8034,5,0),
22969 (16355,10456,8033,4,0),
22970 (16356,16355,8033,5,0),
22971 (16362,10486,8232,4,0),
22972 (16387,10526,8227,4,0),
22973 (16689,0,16689,1,339),
22974 (16810,16689,16689,2,1062),
22975 (16811,16810,16689,3,5195),
22976 (16812,16811,16689,4,5196),
22977 (16813,16812,16689,5,9852),
22978 (16914,0,16914,1,0),
22979 (17039,9787,2018,6,0),
22980 (17040,9787,2018,6,0),
22981 (17041,9787,2018,6,0),
22982 (17311,15407,15407,2,0),
22983 (17312,17311,15407,3,0),
22984 (17313,17312,15407,4,0),
22985 (17314,17313,15407,5,0),
22986 (17329,16813,16689,6,9853),
22987 (17401,16914,16914,2,0),
22988 (17402,17401,16914,3,0),
22989 (17727,2362,2362,2,0),
22990 (17728,17727,2362,3,0),
22991 (17877,0,17877,1,0),
22992 (17919,5676,5676,2,0),
22993 (17920,17919,5676,3,0),
22994 (17921,17920,5676,4,0),
22995 (17922,17921,5676,5,0),
22996 (17923,17922,5676,6,0),
22997 (17924,6353,6353,2,0),
22998 (17925,6789,6789,2,0),
22999 (17926,17925,6789,3,0),
23000 (17928,5484,5484,2,0),
23001 (17951,6366,6366,2,0),
23002 (17952,17951,6366,3,0),
23003 (17953,17952,6366,4,0),
23004 (18220,0,18220,1,0),
23005 (18647,710,710,2,0),
23006 (18657,2637,2637,2,0),
23007 (18658,18657,2637,3,0),
23008 (18807,17314,15407,6,0),
23009 (18809,12526,11366,8,0),
23010 (18867,17877,17877,2,0),
23011 (18868,18867,17877,3,0),
23012 (18869,18868,17877,4,0),
23013 (18870,18869,17877,5,0),
23014 (18871,18870,17877,6,0),
23015 (18937,18220,18220,2,0),
23016 (18938,18937,18220,3,0),
23017 (19236,0,19236,1,0),
23018 (19238,19236,19236,2,0),
23019 (19240,19238,19236,3,0),
23020 (19241,19240,19236,4,0),
23021 (19242,19241,19236,5,0),
23022 (19243,19242,19236,6,0),
23023 (19276,2944,2944,2,0),
23024 (19277,19276,2944,3,0),
23025 (19278,19277,2944,4,0),
23026 (19279,19278,2944,5,0),
23027 (19280,19279,2944,6,0),
23028 (19306,0,19306,1,0),
23029 (19386,0,19386,1,0),
23030 (19434,0,19434,1,0),
23031 (19740,0,19740,1,0),
23032 (19742,0,19742,1,0),
23033 (19750,0,19750,1,0),
23034 (19834,19740,19740,2,0),
23035 (19835,19834,19740,3,0),
23036 (19836,19835,19740,4,0),
23037 (19837,19836,19740,5,0),
23038 (19838,19837,19740,6,0),
23039 (19850,19742,19742,2,0),
23040 (19852,19850,19742,3,0),
23041 (19853,19852,19742,4,0),
23042 (19854,19853,19742,5,0),
23043 (19939,19750,19750,2,0),
23044 (19940,19939,19750,3,0),
23045 (19941,19940,19750,4,0),
23046 (19942,19941,19750,5,0),
23047 (19943,19942,19750,6,0),
23048 (20043,0,20043,1,0),
23049 (20116,26573,26573,2,0),
23050 (20190,20043,20043,2,0),
23051 (20217,0,20217,1,0),
23052 (20219,12656,4036,5,0),
23053 (20222,12656,4036,5,0),
23054 (20473,0,20473,1,0),
23055 (20484,0,20484,1,0),
23056 (20609,2008,2008,2,0),
23057 (20610,20609,2008,3,0),
23058 (20739,20484,20484,2,0),
23059 (20742,20739,20484,3,0),
23060 (20747,20742,20484,4,0),
23061 (20748,20747,20484,5,0),
23062 (20752,693,693,2,0),
23063 (20755,20752,693,3,0),
23064 (20756,20755,693,4,0),
23065 (20757,20756,693,5,0),
23066 (20770,10881,2006,5,0),
23067 (20772,10324,7328,4,0),
23068 (20773,20772,7328,5,0),
23069 (20776,20610,2008,4,0),
23070 (20777,20776,2008,5,0),
23071 (20900,19434,19434,2,0),
23072 (20901,20900,19434,3,0),
23073 (20902,20901,19434,4,0),
23074 (20903,20902,19434,5,0),
23075 (20904,20903,19434,6,0),
23076 (20909,19306,19306,2,0),
23077 (20910,20909,19306,3,0),
23078 (20911,0,20911,1,0),
23079 (20922,20116,26573,3,0),
23080 (20923,20922,26573,4,0),
23081 (20924,20923,26573,5,0),
23082 (20925,0,20925,1,0),
23083 (20927,20925,20925,2,0),
23084 (20928,20927,20925,3,0),
23085 (20929,20473,20473,2,0),
23086 (20930,20929,20473,3,0),
23087 (21562,0,21562,1,0),
23088 (21564,21562,21562,2,0),
23089 (21849,0,21849,1,0),
23090 (21850,21849,21849,2,0),
23091 (22782,6117,6117,2,0),
23092 (22783,22782,6117,3,0),
23093 (23028,0,23028,1,0),
23094 (23214,13819,13819,2,33391),
23095 (23455,0,23455,1,0),
23096 (23458,23455,23455,2,0),
23097 (23459,23458,23455,3,0),
23098 (24132,19386,19386,2,0),
23099 (24133,24132,19386,3,0),
23100 (24239,24274,24275,3,0),
23101 (24274,24275,24275,2,0),
23102 (24275,0,24275,1,0),
23103 (24398,52138,52127,7,0),
23104 (24974,5570,5570,2,0),
23105 (24975,24974,5570,3,0),
23106 (24976,24975,5570,4,0),
23107 (24977,24976,5570,5,0),
23108 (25210,25314,2060,6,0),
23109 (25213,25210,2060,7,0),
23110 (25217,10901,17,11,0),
23111 (25218,25217,17,12,0),
23112 (25221,25315,139,11,0),
23113 (25222,25221,139,12,0),
23114 (25233,10917,2061,8,0),
23115 (25235,25233,2061,9,0),
23116 (25290,19854,19742,6,0),
23117 (25291,19838,19740,7,0),
23118 (25292,10329,635,9,0),
23119 (25294,14290,2643,5,0),
23120 (25295,13555,1978,9,0),
23121 (25296,14322,13165,7,0),
23122 (25297,9889,5185,11,0),
23123 (25298,9876,2912,7,0),
23124 (25299,9841,774,11,0),
23125 (25304,10181,116,11,0),
23126 (25306,10151,133,12,0),
23127 (25307,11661,686,10,0),
23128 (25308,25316,596,6,0),
23129 (25309,11668,348,8,0),
23130 (25311,11672,172,7,0),
23131 (25312,27841,14752,5,0),
23132 (25314,10965,2060,5,0),
23133 (25315,10929,139,10,0),
23134 (25316,10961,596,5,0),
23135 (25329,27805,23455,7,0),
23136 (25331,27801,15237,7,0),
23137 (25345,10212,5143,8,0),
23138 (25346,10274,7268,8,0),
23139 (25349,11354,2818,5,0),
23140 (25357,10396,331,10,0),
23141 (25361,10442,8075,5,0),
23142 (25363,10934,585,9,0),
23143 (25364,25363,585,10,0),
23144 (25367,10894,589,9,0),
23145 (25368,25367,589,10,0),
23146 (25372,10947,8092,10,0),
23147 (25375,25372,8092,11,0),
23148 (25384,15261,14914,9,0),
23149 (25387,18807,15407,7,0),
23150 (25389,10938,1243,7,0),
23151 (25391,25357,331,11,0),
23152 (25392,21564,21562,3,0),
23153 (25396,25391,331,12,0),
23154 (25420,10468,8004,7,0),
23155 (25422,10623,1064,4,0),
23156 (25423,25422,1064,5,0),
23157 (25431,10952,588,7,0),
23158 (25433,10958,976,4,0),
23159 (25435,20770,2006,6,0),
23160 (25437,19243,19236,7,0),
23161 (25439,10605,421,5,0),
23162 (25442,25439,421,6,0),
23163 (25448,15208,403,11,0),
23164 (25449,25448,403,12,0),
23165 (25454,10414,8042,8,0),
23166 (25457,29228,8050,7,0),
23167 (25464,10473,8056,5,0),
23168 (25467,19280,2944,7,0),
23169 (25469,10432,324,8,0),
23170 (25472,25469,324,9,0),
23171 (25488,16344,8026,7,0),
23172 (25489,16342,8024,7,0),
23173 (25500,16356,8033,6,0),
23174 (25501,16353,8034,6,0),
23175 (25505,16362,8232,5,0),
23176 (25508,10408,8071,7,0),
23177 (25509,25508,8071,8,0),
23178 (25525,10428,5730,7,0),
23179 (25528,25361,8075,6,0),
23180 (25530,10436,3606,7,0),
23181 (25533,10438,3599,7,0),
23182 (25546,11315,1535,6,0),
23183 (25547,25546,1535,7,0),
23184 (25551,10584,8188,5,0),
23185 (25552,10587,8190,5,0),
23186 (25557,16387,8227,5,0),
23187 (25560,10479,8181,4,0),
23188 (25563,10538,8184,4,0),
23189 (25566,10461,5672,6,0),
23190 (25567,10463,5394,6,0),
23191 (25570,10497,5675,5,0),
23192 (25574,10601,10595,4,0),
23193 (25590,20777,2008,6,0),
23194 (25782,0,25782,1,19838),
23195 (25894,0,25894,1,19854),
23196 (25898,20217,20217,2,0),
23197 (25899,20911,20911,2,0),
23198 (25902,25911,25912,3,0),
23199 (25903,25913,25914,3,0),
23200 (25911,25912,25912,2,0),
23201 (25912,0,25912,1,0),
23202 (25913,25914,25914,2,0),
23203 (25914,0,25914,1,0),
23204 (25916,25782,25782,2,25291),
23205 (25918,25894,25894,2,25290),
23206 (26363,26370,26364,7,0),
23207 (26364,0,26364,1,0),
23208 (26365,26364,26364,2,0),
23209 (26366,26365,26364,3,0),
23210 (26367,26366,26364,4,0),
23211 (26369,26367,26364,5,0),
23212 (26370,26369,26364,6,0),
23213 (26371,26363,26364,8,0),
23214 (26372,26371,26364,9,0),
23215 (26573,0,26573,1,0),
23216 (26797,12180,3908,5,0),
23217 (26798,12180,3908,5,0),
23218 (26801,12180,3908,5,0),
23219 (26890,11337,8680,7,0),
23220 (26968,25349,2818,6,0),
23221 (26978,25297,5185,12,0),
23222 (26979,26978,5185,13,0),
23223 (26980,9858,8936,10,0),
23224 (26981,25299,774,12,0),
23225 (26982,26981,774,13,0),
23226 (26983,9863,740,5,0),
23227 (26984,9912,5176,9,0),
23228 (26985,26984,5176,10,0),
23229 (26986,25298,2912,8,0),
23230 (26987,9835,8921,11,0),
23231 (26988,26987,8921,12,0),
23232 (26989,9853,339,7,0),
23233 (26990,9885,1126,8,0),
23234 (26991,21850,21849,3,0),
23235 (26992,9910,467,7,0),
23236 (26994,20748,20484,6,0),
23237 (26995,9901,2908,4,0),
23238 (27009,17329,16689,7,26989),
23239 (27012,17402,16914,4,0),
23240 (27013,24977,5570,6,0),
23241 (27014,14266,2973,9,0),
23242 (27016,25295,1978,10,0),
23243 (27019,14287,3044,9,0),
23244 (27021,25294,2643,6,0),
23245 (27022,14295,1510,4,0),
23246 (27023,14305,13795,6,0),
23247 (27024,14301,13797,6,0),
23248 (27025,14317,13813,4,0),
23249 (27026,14315,13812,4,0),
23250 (27044,25296,13165,8,0),
23251 (27045,20190,20043,3,0),
23252 (27046,13544,136,8,0),
23253 (27065,20904,19434,7,0),
23254 (27067,20910,19306,4,0),
23255 (27068,24133,19386,4,0),
23256 (27070,25306,133,13,0),
23257 (27071,25304,116,12,0),
23258 (27072,27071,116,13,0),
23259 (27073,10207,2948,8,0),
23260 (27074,27073,2948,9,0),
23261 (27075,25345,5143,9,0),
23262 (27076,25346,7268,9,0),
23263 (27078,10199,2136,8,0),
23264 (27079,27078,2136,9,0),
23265 (27080,10202,1449,7,0),
23266 (27082,27080,1449,8,0),
23267 (27085,10187,10,7,0),
23268 (27086,10216,2120,7,0),
23269 (27087,10161,120,6,0),
23270 (27088,10230,122,5,0),
23271 (27090,37420,5504,9,0),
23272 (27101,10054,759,5,0),
23273 (27124,10220,7302,5,0),
23274 (27125,22783,6117,4,0),
23275 (27126,10157,1459,6,0),
23276 (27127,23028,23028,2,0),
23277 (27128,10225,543,6,0),
23278 (27130,10170,1008,5,0),
23279 (27131,10193,1463,7,0),
23280 (27132,18809,11366,9,0),
23281 (27133,13021,11113,6,0),
23282 (27134,13033,11426,5,0),
23283 (27135,25292,635,10,0),
23284 (27136,27135,635,11,0),
23285 (27137,19943,19750,7,0),
23286 (27138,10314,879,7,0),
23287 (27139,10318,2812,3,0),
23288 (27140,25291,19740,8,0),
23289 (27141,25916,25782,3,27140),
23290 (27142,25290,19742,7,0),
23291 (27143,25918,25894,3,27142),
23292 (27173,20924,26573,6,0),
23293 (27174,20930,20473,4,0),
23294 (27175,25903,25914,4,0),
23295 (27176,25902,25912,4,0),
23296 (27179,20928,20925,4,0),
23297 (27180,24239,24275,4,0),
23298 (27187,26968,2818,7,0),
23299 (27189,13224,13218,5,0),
23300 (27209,25307,686,11,0),
23301 (27210,17923,5676,7,0),
23302 (27211,17924,6353,3,0),
23303 (27212,11678,5740,5,0),
23304 (27213,11684,1949,4,0),
23305 (27214,11682,5857,4,0),
23306 (27215,25309,348,9,0),
23307 (27216,25311,172,8,0),
23308 (27217,11675,1120,5,0),
23309 (27218,11713,980,7,0),
23310 (27219,11700,689,7,0),
23311 (27220,27219,689,8,0),
23312 (27222,11689,1454,7,0),
23313 (27223,17926,6789,4,0),
23314 (27224,11708,702,7,0),
23315 (27228,11722,1490,4,0),
23316 (27230,11730,6201,6,0),
23317 (27238,20757,693,6,0),
23318 (27243,0,27243,1,0),
23319 (27250,17953,6366,5,0),
23320 (27259,11695,755,8,0),
23321 (27260,11735,706,6,0),
23322 (27263,18871,17877,7,0),
23323 (27265,18938,18220,4,0),
23324 (27681,14752,14752,2,0),
23325 (27683,0,27683,1,0),
23326 (27799,15431,15237,4,0),
23327 (27800,27799,15237,5,0),
23328 (27801,27800,15237,6,0),
23329 (27803,23459,23455,4,0),
23330 (27804,27803,23455,5,0),
23331 (27805,27804,23455,6,0),
23332 (27813,0,27813,1,0),
23333 (27817,27813,27813,2,0),
23334 (27818,27817,27813,3,0),
23335 (27841,14819,14752,4,0),
23336 (27870,724,724,2,0),
23337 (27871,27870,724,3,0),
23338 (28172,17728,2362,4,0),
23339 (28176,0,28176,1,0),
23340 (28189,28176,28176,2,0),
23341 (28275,27871,724,4,0),
23342 (28609,10177,6143,5,0),
23343 (28610,11740,6229,4,0),
23344 (28612,10145,587,7,0),
23345 (28672,11611,2259,5,0),
23346 (28675,11611,2259,5,0),
23347 (28677,11611,2259,5,0),
23348 (29228,10448,8050,6,0),
23349 (29722,0,29722,1,0),
23350 (29893,0,29893,1,0),
23351 (30108,0,30108,1,0),
23352 (30283,0,30283,1,0),
23353 (30404,30108,30108,2,0),
23354 (30405,30404,30108,3,0),
23355 (30413,30283,30283,2,0),
23356 (30414,30413,30283,3,0),
23357 (30451,0,30451,1,0),
23358 (30455,0,30455,1,0),
23359 (30459,27210,5676,8,0),
23360 (30482,0,30482,1,0),
23361 (30545,27211,6353,4,0),
23362 (30546,27263,17877,8,0),
23363 (30706,0,30706,1,0),
23364 (30909,27224,702,8,0),
23365 (30910,603,603,2,0),
23366 (31661,0,31661,1,0),
23367 (31935,0,31935,1,0),
23368 (32231,29722,29722,2,0),
23369 (32379,0,32379,1,0),
23370 (32546,0,32546,1,0),
23371 (32593,974,974,2,0),
23372 (32594,32593,974,3,0),
23373 (32699,31935,31935,2,0),
23374 (32700,32699,31935,3,0),
23375 (32796,28609,6143,6,0),
23376 (32996,32379,32379,2,0),
23377 (32999,27681,14752,3,0),
23378 (33041,31661,31661,2,0),
23379 (33042,33041,31661,3,0),
23380 (33043,33042,31661,4,0),
23381 (33072,27174,20473,5,0),
23382 (33073,27176,25912,5,0),
23383 (33074,27175,25914,5,0),
23384 (33076,0,33076,1,0),
23385 (33405,27134,11426,6,0),
23386 (33717,28612,587,8,0),
23387 (33736,24398,52127,8,0),
23388 (33763,0,33763,1,0),
23389 (33933,27133,11113,7,0),
23390 (33938,27132,11366,10,0),
23391 (33944,10174,604,6,0),
23392 (33946,27130,1008,6,0),
23393 (34120,56641,56641,2,0),
23394 (34767,34769,34769,2,33391),
23395 (34769,0,34769,1,0),
23396 (34861,0,34861,1,0),
23397 (34863,34861,34861,2,0),
23398 (34864,34863,34861,3,0),
23399 (34865,34864,34861,4,0),
23400 (34866,34865,34861,5,0),
23401 (34913,0,34913,1,0),
23402 (34914,0,34914,1,0),
23403 (34916,34914,34914,2,0),
23404 (34917,34916,34914,3,0),
23405 (36916,14271,1495,5,0),
23406 (37420,10140,5504,8,0),
23407 (38692,27070,133,14,0),
23408 (38697,27072,116,14,0),
23409 (38699,27075,5143,10,0),
23410 (38700,27076,7268,10,0),
23411 (38703,38700,7268,11,0),
23412 (38704,38699,5143,11,0),
23413 (39374,27683,27683,2,0),
23414 (42198,42213,42208,7,0),
23415 (42208,0,42208,1,0),
23416 (42209,42208,42208,2,0),
23417 (42210,42209,42208,3,0),
23418 (42211,42210,42208,4,0),
23419 (42212,42211,42208,5,0),
23420 (42213,42212,42208,6,0),
23421 (42218,42226,42223,5,0),
23422 (42223,0,42223,1,0),
23423 (42224,42223,42223,2,0),
23424 (42225,42224,42223,3,0),
23425 (42226,42225,42223,4,0),
23426 (42230,42233,42231,4,0),
23427 (42231,0,42231,1,0),
23428 (42232,42231,42231,2,0),
23429 (42233,42232,42231,3,0),
23430 (42234,42245,42243,4,0),
23431 (42243,0,42243,1,0),
23432 (42244,42243,42243,2,0),
23433 (42245,42244,42243,3,0),
23434 (42832,38692,133,15,0),
23435 (42833,42832,133,16,0),
23436 (42841,38697,116,15,0),
23437 (42842,42841,116,16,0),
23438 (42843,38704,5143,12,0),
23439 (42844,38703,7268,12,0),
23440 (42845,42844,7268,13,0),
23441 (42846,42843,5143,13,0),
23442 (42858,27074,2948,10,0),
23443 (42859,42858,2948,11,0),
23444 (42872,27079,2136,10,0),
23445 (42873,42872,2136,11,0),
23446 (42890,33938,11366,11,0),
23447 (42891,42890,11366,12,0),
23448 (42894,30451,30451,2,0),
23449 (42896,42894,30451,3,0),
23450 (42897,42896,30451,4,0),
23451 (42913,30455,30455,2,0),
23452 (42914,42913,30455,3,0),
23453 (42917,27088,122,6,0),
23454 (42920,27082,1449,9,0),
23455 (42921,42920,1449,10,0),
23456 (42925,27086,2120,8,0),
23457 (42926,42925,2120,9,0),
23458 (42930,27087,120,7,0),
23459 (42931,42930,120,8,0),
23460 (42937,42198,42208,8,0),
23461 (42938,42937,42208,9,0),
23462 (42939,27085,10,8,0),
23463 (42940,42939,10,9,0),
23464 (42944,33933,11113,8,0),
23465 (42945,42944,11113,9,0),
23466 (42949,33043,31661,5,0),
23467 (42950,42949,31661,6,0),
23468 (42955,0,42955,1,0),
23469 (42956,42955,42955,2,0),
23470 (42985,27101,759,6,0),
23471 (42995,27126,1459,7,0),
23472 (43002,27127,23028,3,0),
23473 (43008,27124,7302,6,0),
23474 (43010,27128,543,7,0),
23475 (43012,32796,6143,7,0),
23476 (43015,33944,604,7,0),
23477 (43017,33946,1008,7,0),
23478 (43019,27131,1463,8,0),
23479 (43020,43019,1463,9,0),
23480 (43023,27125,6117,5,0),
23481 (43024,43023,6117,6,0),
23482 (43038,33405,11426,7,0),
23483 (43039,43038,11426,8,0),
23484 (43043,34913,34913,2,0),
23485 (43044,43043,34913,3,0),
23486 (43045,30482,30482,2,0),
23487 (43046,43045,30482,3,0),
23488 (43987,0,43987,1,0),
23489 (44203,0,44203,1,0),
23490 (44205,44203,44203,2,0),
23491 (44206,44205,44203,3,0),
23492 (44207,44206,44203,4,0),
23493 (44208,44207,44203,5,0),
23494 (44425,0,44425,1,0),
23495 (44457,0,44457,1,0),
23496 (44614,0,44614,1,0),
23497 (44780,44425,44425,2,0),
23498 (44781,44780,44425,3,0),
23499 (47540,0,47540,1,0),
23500 (47610,44614,44614,2,0),
23501 (47666,0,47666,1,0),
23502 (47750,0,47750,1,0),
23503 (47793,27260,706,7,0),
23504 (47808,27209,686,12,0),
23505 (47809,47808,686,13,0),
23506 (47810,27215,348,10,0),
23507 (47811,47810,348,11,0),
23508 (47812,27216,172,9,0),
23509 (47813,47812,172,10,0),
23510 (47814,30459,5676,9,0),
23511 (47815,47814,5676,10,0),
23512 (47817,42218,42223,6,0),
23513 (47818,47817,42223,7,0),
23514 (47819,27212,5740,6,0),
23515 (47820,47819,5740,7,0),
23516 (47822,27214,5857,5,0),
23517 (47823,27213,1949,5,0),
23518 (47824,30545,6353,5,0),
23519 (47825,47824,6353,6,0),
23520 (47826,30546,17877,9,0),
23521 (47827,47826,17877,10,0),
23522 (47835,27243,27243,2,0),
23523 (47836,47835,27243,3,0),
23524 (47837,32231,29722,3,0),
23525 (47838,47837,29722,4,0),
23526 (47841,30405,30108,4,0),
23527 (47843,47841,30108,5,0),
23528 (47846,30414,30283,4,0),
23529 (47847,47846,30283,5,0),
23530 (47855,27217,1120,6,0),
23531 (47856,27259,755,9,0),
23532 (47857,27220,689,9,0),
23533 (47859,27223,6789,5,0),
23534 (47860,47859,6789,6,0),
23535 (47863,27218,980,8,0),
23536 (47864,47863,980,9,0),
23537 (47865,27228,1490,5,0),
23538 (47867,30910,603,3,0),
23539 (47871,27230,6201,7,0),
23540 (47878,47871,6201,8,0),
23541 (47884,27238,693,7,0),
23542 (47886,28172,2362,5,0),
23543 (47888,47886,2362,6,0),
23544 (47889,47793,706,8,0),
23545 (47890,28610,6229,5,0),
23546 (47891,47890,6229,6,0),
23547 (47892,28189,28176,3,0),
23548 (47893,47892,28176,4,0),
23549 (47897,0,47897,1,0),
23550 (47960,0,47960,1,0),
23551 (48040,25431,588,8,0),
23552 (48045,0,48045,1,0),
23553 (48062,25213,2060,8,0),
23554 (48063,48062,2060,9,0),
23555 (48065,25218,17,13,0),
23556 (48066,48065,17,14,0),
23557 (48067,25222,139,13,0),
23558 (48068,48067,139,14,0),
23559 (48070,25235,2061,10,0),
23560 (48071,48070,2061,11,0),
23561 (48072,25308,596,7,0),
23562 (48073,25312,14752,6,0),
23563 (48074,32999,14752,4,0),
23564 (48077,25331,15237,8,0),
23565 (48078,48077,15237,9,0),
23566 (48086,28275,724,5,0),
23567 (48087,48086,724,6,0),
23568 (48088,34866,34861,6,0),
23569 (48089,48088,34861,7,0),
23570 (48112,33076,33076,2,0),
23571 (48113,48112,33076,3,0),
23572 (48119,32546,32546,2,0),
23573 (48120,48119,32546,3,0),
23574 (48122,25364,585,11,0),
23575 (48123,48122,585,12,0),
23576 (48124,25368,589,11,0),
23577 (48125,48124,589,12,0),
23578 (48126,25375,8092,12,0),
23579 (48127,48126,8092,13,0),
23580 (48134,25384,14914,10,0),
23581 (48135,48134,14914,11,0),
23582 (48155,25387,15407,8,0),
23583 (48156,48155,15407,9,0),
23584 (48157,32996,32379,3,0),
23585 (48158,48157,32379,4,0),
23586 (48159,34917,34914,4,0),
23587 (48160,48159,34914,5,0),
23588 (48161,25389,1243,8,0),
23589 (48162,25392,21562,4,0),
23590 (48168,48040,588,9,0),
23591 (48169,25433,976,5,0),
23592 (48170,39374,27683,3,0),
23593 (48171,25435,2006,7,0),
23594 (48172,25437,19236,8,0),
23595 (48173,48172,19236,9,0),
23596 (48181,0,48181,1,0),
23597 (48299,25467,2944,8,0),
23598 (48300,48299,2944,9,0),
23599 (48377,26979,5185,14,0),
23600 (48378,48377,5185,15,0),
23601 (48438,0,48438,1,0),
23602 (48440,26982,774,14,0),
23603 (48441,48440,774,15,0),
23604 (48442,26980,8936,11,0),
23605 (48443,48442,8936,12,0),
23606 (48444,44208,44203,6,0),
23607 (48445,48444,44203,7,0),
23608 (48446,26983,740,6,0),
23609 (48447,48446,740,7,0),
23610 (48450,33763,33763,2,0),
23611 (48451,48450,33763,3,0),
23612 (48459,26985,5176,11,0),
23613 (48461,48459,5176,12,0),
23614 (48462,26988,8921,13,0),
23615 (48463,48462,8921,14,0),
23616 (48464,26986,2912,9,0),
23617 (48465,48464,2912,10,0),
23618 (48466,42230,42231,5,0),
23619 (48467,27012,16914,5,0),
23620 (48468,27013,5570,7,0),
23621 (48469,26990,1126,9,0),
23622 (48470,26991,21849,4,0),
23623 (48477,26994,20484,7,0),
23624 (48505,0,48505,1,0),
23625 (48781,27136,635,12,0),
23626 (48782,48781,635,13,0),
23627 (48784,27137,19750,8,0),
23628 (48785,48784,19750,9,0),
23629 (48800,27138,879,8,0),
23630 (48801,48800,879,9,0),
23631 (48805,27180,24275,5,0),
23632 (48806,48805,24275,6,0),
23633 (48816,27139,2812,4,0),
23634 (48817,48816,2812,5,0),
23635 (48818,27173,26573,7,0),
23636 (48819,48818,26573,8,0),
23637 (48820,33074,25914,6,0),
23638 (48821,48820,25914,7,0),
23639 (48822,33073,25912,6,0),
23640 (48823,48822,25912,7,0),
23641 (48824,33072,20473,6,0),
23642 (48825,48824,20473,7,0),
23643 (48826,32700,31935,4,0),
23644 (48827,48826,31935,5,0),
23645 (48931,27140,19740,9,0),
23646 (48932,48931,19740,10,0),
23647 (48933,27141,25782,4,48931),
23648 (48934,48933,25782,5,48932),
23649 (48935,27142,19742,8,0),
23650 (48936,48935,19742,9,0),
23651 (48937,27143,25894,4,48935),
23652 (48938,48937,25894,5,48936),
23653 (48949,20773,7328,6,0),
23654 (48950,48949,7328,7,0),
23655 (48951,27179,20925,5,0),
23656 (48952,48951,20925,6,0),
23657 (48989,27046,136,9,0),
23658 (48990,48989,136,10,0),
23659 (48995,27014,2973,10,0),
23660 (48996,48995,2973,11,0),
23661 (48998,27067,19306,5,0),
23662 (48999,48998,19306,6,0),
23663 (49000,27016,1978,11,0),
23664 (49001,49000,1978,12,0),
23665 (49011,27068,19386,5,0),
23666 (49012,49011,19386,6,0),
23667 (49044,27019,3044,10,0),
23668 (49045,49044,3044,11,0),
23669 (49047,27021,2643,7,0),
23670 (49048,49047,2643,8,0),
23671 (49049,27065,19434,8,0),
23672 (49050,49049,19434,9,0),
23673 (49051,34120,56641,3,0),
23674 (49052,49051,56641,4,0),
23675 (49053,27024,13797,7,0),
23676 (49054,49053,13797,8,0),
23677 (49055,27023,13795,7,0),
23678 (49056,49055,13795,8,0),
23679 (49064,27026,13812,5,0),
23680 (49065,49064,13812,6,0),
23681 (49066,27025,13813,5,0),
23682 (49067,49066,13813,6,0),
23683 (49071,27045,20043,4,0),
23684 (49184,0,49184,1,0),
23685 (49230,25454,8042,9,0),
23686 (49231,49230,8042,10,0),
23687 (49232,25457,8050,8,0),
23688 (49233,49232,8050,9,0),
23689 (49235,25464,8056,6,0),
23690 (49236,49235,8056,7,0),
23691 (49237,25449,403,13,0),
23692 (49238,49237,403,14,0),
23693 (49270,25442,421,7,0),
23694 (49271,49270,421,8,0),
23695 (49272,25396,331,13,0),
23696 (49273,49272,331,14,0),
23697 (49275,25420,8004,8,0),
23698 (49276,49275,8004,9,0),
23699 (49277,25590,2008,7,0),
23700 (49278,26372,26364,10,0),
23701 (49279,49278,26364,11,0),
23702 (49280,25472,324,10,0),
23703 (49281,49280,324,11,0),
23704 (49283,32594,974,4,0),
23705 (49284,49283,974,5,0),
23706 (49821,0,49821,1,0),
23707 (50288,0,50288,1,0),
23708 (50294,0,50294,1,0),
23709 (50511,30909,702,9,0),
23710 (50516,0,50516,1,0),
23711 (50763,50764,50769,7,0),
23712 (50764,50765,50769,6,0),
23713 (50765,50766,50769,5,0),
23714 (50766,50767,50769,4,0),
23715 (50767,50768,50769,3,0),
23716 (50768,50769,50769,2,0),
23717 (50769,0,50769,1,0),
23718 (50796,0,50796,1,0),
23719 (51409,49184,49184,2,0),
23720 (51410,51409,49184,3,0),
23721 (51411,51410,49184,4,0),
23722 (51490,0,51490,1,0),
23723 (51505,0,51505,1,0),
23724 (51730,0,51730,1,0),
23725 (51988,51730,51730,2,0),
23726 (51991,51988,51730,3,0),
23727 (51992,51991,51730,4,0),
23728 (51993,51992,51730,5,0),
23729 (51994,51993,51730,6,0),
23730 (52127,0,52127,1,0),
23731 (52129,52127,52127,2,0),
23732 (52131,52129,52127,3,0),
23733 (52134,52131,52127,4,0),
23734 (52136,52134,52127,5,0),
23735 (52138,52136,52127,6,0),
23736 (52983,47750,47750,2,0),
23737 (52984,52983,47750,3,0),
23738 (52985,52984,47750,4,0),
23739 (52998,47666,47666,2,0),
23740 (52999,52998,47666,3,0),
23741 (53000,52999,47666,4,0),
23742 (53005,47540,47540,2,0),
23743 (53006,53005,47540,3,0),
23744 (53007,53006,47540,4,0),
23745 (53022,49821,49821,2,0),
23746 (53023,48045,48045,2,0),
23747 (53188,50294,50294,2,0),
23748 (53189,53188,50294,3,0),
23749 (53190,53189,50294,4,0),
23750 (53191,50288,50288,2,0),
23751 (53194,53191,50288,3,0),
23752 (53195,53194,50288,4,0),
23753 (53199,48505,48505,2,0),
23754 (53200,53199,48505,3,0),
23755 (53201,53200,48505,4,0),
23756 (53223,50516,50516,2,0),
23757 (53225,53223,50516,3,0),
23758 (53226,53225,50516,4,0),
23759 (53227,61387,61391,5,0),
23760 (53248,48438,48438,2,0),
23761 (53249,53248,48438,3,0),
23762 (53251,53249,48438,4,0),
23763 (53301,0,53301,1,0),
23764 (53307,26992,467,8,0),
23765 (53308,26989,339,8,0),
23766 (53312,27009,16689,8,53308),
23767 (53338,14325,1130,5,0),
23768 (53339,36916,1495,6,0),
23769 (53351,0,53351,1,0),
23770 (53600,0,53600,1,0),
23771 (55359,44457,44457,2,0),
23772 (55360,55359,44457,3,0),
23773 (55458,25423,1064,6,0),
23774 (55459,55458,1064,7,0),
23775 (56641,0,56641,1,0),
23776 (57330,0,57330,1,0),
23777 (57622,25528,8075,7,0),
23778 (57623,57330,57330,2,0),
23779 (57720,30706,30706,2,0),
23780 (57721,57720,30706,3,0),
23781 (57722,57721,30706,4,0),
23782 (57946,27222,1454,8,0),
23783 (57960,33736,52127,9,0),
23784 (57964,26890,8680,8,0),
23785 (57965,57964,8680,9,0),
23786 (57969,27187,2818,8,0),
23787 (57970,57969,2818,9,0),
23788 (57974,27189,13218,6,0),
23789 (57975,57974,13218,7,0),
23790 (58431,27022,1510,5,0),
23791 (58432,42234,42243,5,0),
23792 (58433,58432,42243,6,0),
23793 (58434,58431,1510,6,0),
23794 (58580,25525,5730,8,0),
23795 (58581,58580,5730,9,0),
23796 (58582,58581,5730,10,0),
23797 (58643,57622,8075,8,0),
23798 (58649,25557,8227,6,0),
23799 (58652,58649,8227,7,0),
23800 (58656,58652,8227,8,0),
23801 (58659,43987,43987,2,0),
23802 (58699,25533,3599,8,0),
23803 (58700,25530,3606,8,0),
23804 (58701,58700,3606,9,0),
23805 (58702,58701,3606,10,0),
23806 (58703,58699,3599,9,0),
23807 (58704,58703,3599,10,0),
23808 (58731,25552,8190,6,0),
23809 (58733,25551,8188,6,0),
23810 (58734,58731,8190,7,0),
23811 (58736,58733,8188,7,0),
23812 (58737,25563,8184,5,0),
23813 (58739,58737,8184,6,0),
23814 (58741,25560,8181,5,0),
23815 (58745,58741,8181,6,0),
23816 (58746,25574,10595,5,0),
23817 (58749,58746,10595,6,0),
23818 (58751,25509,8071,9,0),
23819 (58753,58751,8071,10,0),
23820 (58755,25567,5394,7,0),
23821 (58756,58755,5394,8,0),
23822 (58757,58756,5394,9,0),
23823 (58763,25566,5672,7,0),
23824 (58764,58763,5672,8,0),
23825 (58765,58764,5672,9,0),
23826 (58771,25570,5675,6,0),
23827 (58773,58771,5675,7,0),
23828 (58774,58773,5675,8,0),
23829 (58785,25489,8024,8,0),
23830 (58786,25488,8026,8,0),
23831 (58787,58786,8026,9,0),
23832 (58788,58787,8026,10,0),
23833 (58789,58785,8024,9,0),
23834 (58790,58789,8024,10,0),
23835 (58794,25500,8033,7,0),
23836 (58795,58794,8033,8,0),
23837 (58796,58795,8033,9,0),
23838 (58797,25501,8034,7,0),
23839 (58798,58797,8034,8,0),
23840 (58799,58798,8034,9,0),
23841 (58801,25505,8232,6,0),
23842 (58803,58801,8232,7,0),
23843 (58804,58803,8232,8,0),
23844 (58887,29893,29893,2,0),
23845 (59092,27265,18220,5,0),
23846 (59156,51490,51490,2,0),
23847 (59158,59156,51490,3,0),
23848 (59159,59158,51490,4,0),
23849 (59161,48181,48181,2,0),
23850 (59163,59161,48181,3,0),
23851 (59164,59163,48181,4,0),
23852 (59170,50796,50796,2,0),
23853 (59171,59170,50796,3,0),
23854 (59172,59171,50796,4,0),
23855 (60043,51505,51505,2,0),
23856 (60051,53301,53301,2,0),
23857 (60052,60051,53301,3,0),
23858 (60053,60052,53301,4,0),
23859 (60219,27250,6366,6,0),
23860 (60220,60219,6366,7,0),
23861 (61005,53351,53351,2,0),
23862 (61006,61005,53351,3,0),
23863 (61024,0,61024,1,27126),
23864 (61191,11726,1098,4,0),
23865 (61290,47897,47897,2,0),
23866 (61291,47960,47960,2,0),
23867 (61295,0,61295,1,0),
23868 (61299,61295,61295,2,0),
23869 (61300,61299,61295,3,0),
23870 (61301,61300,61295,4,0),
23871 (61316,0,61316,1,27127),
23872 (61384,53226,50516,5,0),
23873 (61387,61388,61391,4,0),
23874 (61388,61390,61391,3,0),
23875 (61390,61391,61391,2,0),
23876 (61391,0,61391,1,0),
23877 (61411,53600,53600,2,0),
23878 (61649,25547,1535,8,0),
23879 (61657,61649,1535,9,0),
23880 (61846,0,61846,1,0),
23881 (61847,61846,61846,2,0),
23882 (62900,0,62900,1,0),
23883 (62901,62900,62900,2,0),
23884 (62902,62901,62900,3,0),
23885 (62903,62902,62900,4,0),
23886 (62904,62903,62900,5,0),
23887 (63668,3674,3674,2,0),
23888 (63669,63668,3674,3,0),
23889 (63670,63669,3674,4,0),
23890 (63671,63670,3674,5,0),
23891 (63672,63671,3674,6,0);
23892 /*!40000 ALTER TABLE `spell_chain` ENABLE KEYS */;
23893 UNLOCK TABLES;
23896 -- Table structure for table `spell_elixir`
23899 DROP TABLE IF EXISTS `spell_elixir`;
23900 /*!40101 SET @saved_cs_client     = @@character_set_client */;
23901 /*!40101 SET character_set_client = utf8 */;
23902 CREATE TABLE `spell_elixir` (
23903   `entry` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'SpellId of potion',
23904   `mask` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Mask 0x1 battle 0x2 guardian 0x3 flask 0x7 unstable flasks 0xB shattrath flasks',
23905   PRIMARY KEY (`entry`)
23906 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
23907 /*!40101 SET character_set_client = @saved_cs_client */;
23910 -- Dumping data for table `spell_elixir`
23913 LOCK TABLES `spell_elixir` WRITE;
23914 /*!40000 ALTER TABLE `spell_elixir` DISABLE KEYS */;
23915 INSERT INTO `spell_elixir` (`entry`, `mask`) VALUES
23916 (673,2),
23917 (2367,1),
23918 (2374,1),
23919 (2378,2),
23920 (2380,2),
23921 (3160,1),
23922 (3164,1),
23923 (3166,2),
23924 (3219,2),
23925 (3220,2),
23926 (3222,2),
23927 (3223,2),
23928 (3593,2),
23929 (7844,1),
23930 (8212,1),
23931 (10667,1),
23932 (10668,2),
23933 (10669,1),
23934 (10692,2),
23935 (10693,2),
23936 (11319,2),
23937 (11328,1),
23938 (11334,1),
23939 (11348,2),
23940 (11349,2),
23941 (11364,2),
23942 (11371,2),
23943 (11390,1),
23944 (11396,2),
23945 (11405,1),
23946 (11406,1),
23947 (11474,1),
23948 (15231,2),
23949 (15233,2),
23950 (16321,2),
23951 (16322,1),
23952 (16323,1),
23953 (16325,2),
23954 (16326,2),
23955 (16327,2),
23956 (16329,1),
23957 (17038,1),
23958 (17535,2),
23959 (17537,1),
23960 (17538,1),
23961 (17539,1),
23962 (17626,3),
23963 (17627,3),
23964 (17628,3),
23965 (17629,3),
23966 (18191,16),
23967 (18192,16),
23968 (18193,16),
23969 (18194,16),
23970 (18222,16),
23971 (21920,1),
23972 (22730,16),
23973 (24361,2),
23974 (24363,2),
23975 (24382,2),
23976 (24383,2),
23977 (24417,2),
23978 (25661,16),
23979 (26276,1),
23980 (27652,2),
23981 (27653,2),
23982 (28486,1),
23983 (28488,1),
23984 (28490,1),
23985 (28491,1),
23986 (28493,1),
23987 (28497,1),
23988 (28501,1),
23989 (28502,2),
23990 (28503,1),
23991 (28509,2),
23992 (28514,2),
23993 (28518,3),
23994 (28519,3),
23995 (28520,3),
23996 (28521,3),
23997 (28540,3),
23998 (29348,2),
23999 (33720,1),
24000 (33721,1),
24001 (33726,1),
24002 (38954,1),
24003 (39625,2),
24004 (39626,2),
24005 (39627,2),
24006 (39628,2),
24007 (40567,7),
24008 (40568,7),
24009 (40572,7),
24010 (40573,7),
24011 (40575,7),
24012 (40576,7),
24013 (41608,11),
24014 (41609,11),
24015 (41610,11),
24016 (41611,11),
24017 (42735,3),
24018 (45373,1),
24019 (46837,11),
24020 (46839,11),
24021 (53746,1),
24022 (53747,2),
24023 (53748,1),
24024 (53749,1),
24025 (53751,2),
24026 (53752,3),
24027 (53755,3),
24028 (53758,3),
24029 (53760,3),
24030 (53763,2),
24031 (53764,2),
24032 (54212,3),
24033 (54452,1),
24034 (54494,1),
24035 (54497,2),
24036 (60340,1),
24037 (60341,1),
24038 (60343,2),
24039 (60344,1),
24040 (60345,1),
24041 (60346,1),
24042 (60347,2),
24043 (62380,3),
24044 (63729,1),
24045 (67016,3),
24046 (67017,3),
24047 (67018,3),
24048 (67019,3);
24049 /*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
24050 UNLOCK TABLES;
24053 -- Table structure for table `spell_learn_spell`
24056 DROP TABLE IF EXISTS `spell_learn_spell`;
24057 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24058 /*!40101 SET character_set_client = utf8 */;
24059 CREATE TABLE `spell_learn_spell` (
24060   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
24061   `SpellID` mediumint(8) unsigned NOT NULL DEFAULT '0',
24062   `Active` tinyint(3) unsigned NOT NULL DEFAULT '1',
24063   PRIMARY KEY (`entry`,`SpellID`)
24064 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
24065 /*!40101 SET character_set_client = @saved_cs_client */;
24068 -- Dumping data for table `spell_learn_spell`
24071 LOCK TABLES `spell_learn_spell` WRITE;
24072 /*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
24073 INSERT INTO `spell_learn_spell` (`entry`, `SpellID`, `Active`) VALUES
24074 (5784,33388,1),
24075 (13819,33388,1),
24076 (17002,24867,0),
24077 (20271,21084,1),
24078 (23161,33391,1),
24079 (23214,33391,1),
24080 (24866,24864,0),
24081 (33872,47179,0),
24082 (33873,47180,0),
24083 (33943,34090,1),
24084 (34767,33391,1),
24085 (34769,33388,1),
24086 (53407,21084,1),
24087 (53408,21084,1),
24088 (53428,53341,1),
24089 (53428,53343,1),
24090 (56815,56816,0),
24091 (58984,21009,1),
24092 (86467,86473,1),
24093 (86524,86113,1),
24094 (86524,86536,1),
24095 (86524,86537,1),
24096 (86525,86102,1),
24097 (86525,86103,1),
24098 (86525,86539,1),
24099 (86526,86101,1),
24100 (86526,86110,1),
24101 (86526,86535,1),
24102 (86528,86538,1),
24103 (86529,86099,1),
24104 (86529,86100,1),
24105 (86529,86108,1),
24106 (86530,86093,1),
24107 (86530,86096,1),
24108 (86530,86097,1),
24109 (86530,86104,1),
24110 (86531,86092,1),
24111 (87491,86470,1),
24112 (87492,86471,1),
24113 (87493,86472,1),
24114 (87494,86474,1),
24115 (87495,86475,1),
24116 (87496,86476,1),
24117 (87497,86477,1),
24118 (87498,86478,1),
24119 (87500,86479,1);
24120 /*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
24121 UNLOCK TABLES;
24124 -- Table structure for table `spell_loot_template`
24127 DROP TABLE IF EXISTS `spell_loot_template`;
24128 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24129 /*!40101 SET character_set_client = utf8 */;
24130 CREATE TABLE `spell_loot_template` (
24131   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
24132   `item` mediumint(8) NOT NULL DEFAULT '0',
24133   `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
24134   `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
24135   `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
24136   `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
24137   `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
24138   `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
24139   `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
24140   `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
24141   PRIMARY KEY (`entry`,`item`)
24142 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
24143 /*!40101 SET character_set_client = @saved_cs_client */;
24146 -- Dumping data for table `spell_loot_template`
24149 LOCK TABLES `spell_loot_template` WRITE;
24150 /*!40000 ALTER TABLE `spell_loot_template` DISABLE KEYS */;
24151 /*!40000 ALTER TABLE `spell_loot_template` ENABLE KEYS */;
24152 UNLOCK TABLES;
24155 -- Table structure for table `spell_pet_auras`
24158 DROP TABLE IF EXISTS `spell_pet_auras`;
24159 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24160 /*!40101 SET character_set_client = utf8 */;
24161 CREATE TABLE `spell_pet_auras` (
24162   `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
24163   `effectId` tinyint(3) unsigned NOT NULL DEFAULT '0',
24164   `pet` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'pet id; 0 = all',
24165   `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
24166   PRIMARY KEY (`spell`,`effectId`,`pet`)
24167 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
24168 /*!40101 SET character_set_client = @saved_cs_client */;
24171 -- Dumping data for table `spell_pet_auras`
24174 LOCK TABLES `spell_pet_auras` WRITE;
24175 /*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
24176 INSERT INTO `spell_pet_auras` (`spell`, `effectId`, `pet`, `aura`) VALUES
24177 (19028,0,0,25228),
24178 (19578,0,0,19579),
24179 (20895,0,0,24529),
24180 (23785,0,416,23759),
24181 (23785,0,417,23762),
24182 (23785,0,1860,23760),
24183 (23785,0,1863,23761),
24184 (23785,0,17252,35702),
24185 (23822,0,416,23826),
24186 (23822,0,417,23837),
24187 (23822,0,1860,23841),
24188 (23822,0,1863,23833),
24189 (23822,0,17252,35703),
24190 (23823,0,416,23827),
24191 (23823,0,417,23838),
24192 (23823,0,1860,23842),
24193 (23823,0,1863,23834),
24194 (23823,0,17252,35704),
24195 (23824,0,416,23828),
24196 (23824,0,417,23839),
24197 (23824,0,1860,23843),
24198 (23824,0,1863,23835),
24199 (23824,0,17252,35705),
24200 (23825,0,416,23829),
24201 (23825,0,417,23840),
24202 (23825,0,1860,23844),
24203 (23825,0,1863,23836),
24204 (23825,0,17252,35706),
24205 (28757,0,0,28758),
24206 (35029,0,0,35060),
24207 (35030,0,0,35061),
24208 (35691,0,0,35696),
24209 (35692,0,0,35696),
24210 (35693,0,0,35696),
24211 (56314,0,0,57447),
24212 (56314,1,0,57485),
24213 (56315,0,0,57452),
24214 (56315,1,0,57484),
24215 (56316,0,0,57453),
24216 (56316,1,0,57483),
24217 (56317,0,0,57457),
24218 (56317,1,0,57482),
24219 (56318,0,0,57458),
24220 (56318,1,0,57475),
24221 (58228,0,19668,57989);
24222 /*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
24223 UNLOCK TABLES;
24226 -- Table structure for table `spell_proc_event`
24229 DROP TABLE IF EXISTS `spell_proc_event`;
24230 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24231 /*!40101 SET character_set_client = utf8 */;
24232 CREATE TABLE `spell_proc_event` (
24233   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
24234   `SchoolMask` tinyint(4) unsigned NOT NULL DEFAULT '0',
24235   `SpellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
24236   `SpellFamilyMaskA0` int(10) unsigned NOT NULL DEFAULT '0',
24237   `SpellFamilyMaskA1` int(10) unsigned NOT NULL DEFAULT '0',
24238   `SpellFamilyMaskA2` int(10) unsigned NOT NULL DEFAULT '0',
24239   `SpellFamilyMaskB0` int(10) unsigned NOT NULL DEFAULT '0',
24240   `SpellFamilyMaskB1` int(10) unsigned NOT NULL DEFAULT '0',
24241   `SpellFamilyMaskB2` int(10) unsigned NOT NULL DEFAULT '0',
24242   `SpellFamilyMaskC0` int(10) unsigned NOT NULL DEFAULT '0',
24243   `SpellFamilyMaskC1` int(10) unsigned NOT NULL DEFAULT '0',
24244   `SpellFamilyMaskC2` int(10) unsigned NOT NULL DEFAULT '0',
24245   `procFlags` int(10) unsigned NOT NULL DEFAULT '0',
24246   `procEx` int(10) unsigned NOT NULL DEFAULT '0',
24247   `ppmRate` float NOT NULL DEFAULT '0',
24248   `CustomChance` float NOT NULL DEFAULT '0',
24249   `Cooldown` int(10) unsigned NOT NULL DEFAULT '0',
24250   PRIMARY KEY (`entry`)
24251 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
24252 /*!40101 SET character_set_client = @saved_cs_client */;
24255 -- Dumping data for table `spell_proc_event`
24258 LOCK TABLES `spell_proc_event` WRITE;
24259 /*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
24260 INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMaskA0`, `SpellFamilyMaskA1`, `SpellFamilyMaskA2`, `SpellFamilyMaskB0`, `SpellFamilyMaskB1`, `SpellFamilyMaskB2`, `SpellFamilyMaskC0`, `SpellFamilyMaskC1`, `SpellFamilyMaskC2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES
24261 (324,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24262 (974,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24263 (3232,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24264 (3411,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24265 (5952,0,8,0,0,0,0,1,0,0,0,0,0,0,0,0,0),
24266 (6346,127,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0),
24267 (7383,1,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0),
24268 (7434,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24269 (8178,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24270 (9452,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24271 (9782,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24272 (9784,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24273 (9799,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24274 (11095,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24275 (11119,4,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24276 (11129,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24277 (11180,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24278 (11185,0,3,128,128,128,0,0,0,0,0,0,327680,0,0,0,0),
24279 (11255,0,3,16384,16384,16384,0,0,0,0,0,0,0,0,0,0,0),
24280 (12169,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24281 (12281,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6),
24282 (12289,0,4,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24283 (12298,127,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0),
24284 (12311,0,4,2048,2048,2048,1,1,1,0,0,0,0,0,0,0,0),
24285 (12317,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24286 (12319,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24287 (12322,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),
24288 (12834,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24289 (12999,127,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),
24290 (13000,127,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),
24291 (13001,127,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0),
24292 (13002,127,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0),
24293 (13165,0,9,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24294 (13754,0,8,16,16,16,0,0,0,0,0,0,0,0,0,0,0),
24295 (13983,127,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0),
24296 (14156,0,8,4063232,4063232,4063232,0,0,0,0,0,0,0,0,0,0,0),
24297 (14186,0,8,1082131720,1082131720,1082131720,2,2,2,0,0,0,0,2,0,0,0),
24298 (14531,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24299 (14892,0,6,268443136,268443136,268443136,65540,65540,65540,0,0,0,0,2,0,0,0),
24300 (15088,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24301 (15128,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24302 (15277,127,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),
24303 (15286,32,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24304 (15337,0,6,8192,8192,8192,2,2,2,0,0,0,0,2,0,0,0),
24305 (15346,127,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),
24306 (15600,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),
24307 (16164,28,11,0,0,0,0,0,0,0,0,0,65536,2,0,0,0),
24308 (16176,0,11,448,448,448,0,0,0,0,0,0,0,2,0,0,0),
24309 (16180,0,11,448,448,448,0,0,0,16,16,16,0,2,0,0,0),
24310 (16246,0,11,2551185859,2551185859,2551185859,0,0,0,0,0,0,0,0,0,0,0),
24311 (16256,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24312 (16487,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24313 (16550,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24314 (16620,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24315 (16624,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24316 (16850,0,7,4,4,4,0,0,0,0,0,0,0,0,0,0,0),
24317 (16864,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),
24318 (16880,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24319 (16952,0,7,233472,233472,233472,1024,1024,1024,262144,262144,262144,0,2,0,0,0),
24320 (16958,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24321 (17106,0,7,524288,524288,524288,0,0,0,0,0,0,0,0,0,0,0),
24322 (17364,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24323 (17495,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24324 (17767,0,5,33554432,0,0,0,0,0,0,0,0,524288,262144,0,0,0),
24325 (17793,0,5,1,1,1,0,0,0,0,0,0,0,2,0,0,0),
24326 (17941,0,5,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24327 (18094,0,5,10,10,10,0,0,0,0,0,0,0,0,0,0,0),
24328 (18096,0,5,256,256,256,8388608,8388608,8388608,0,0,0,0,2,0,0,0),
24329 (18119,0,5,0,0,0,8388608,8388608,8388608,0,0,0,0,0,0,0,0),
24330 (18820,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24331 (19184,0,9,16,16,16,8192,8192,8192,0,0,0,0,0,0,0,0),
24332 (19572,0,9,8388608,8388608,8388608,0,0,0,0,0,0,16384,0,0,0,0),
24333 (20049,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24334 (20128,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24335 (20131,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24336 (20132,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24337 (20154,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24338 (20164,127,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),
24339 (20165,127,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0),
24340 (20166,127,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0),
24341 (20210,0,10,3221225472,3221225472,3221225472,65536,65536,65536,0,0,0,0,2,0,0,0),
24342 (20234,0,10,32768,0,0,0,0,0,0,0,0,0,0,0,0,0),
24343 (20335,0,10,8388608,8388608,8388608,0,0,0,8,8,8,256,0,0,100,0),
24344 (20375,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),
24345 (20500,0,4,268435456,268435456,268435456,0,0,0,0,0,0,0,0,0,0,0),
24346 (20705,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24347 (20784,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24348 (20911,127,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0),
24349 (20925,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24350 (21185,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24351 (21882,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24352 (21890,0,4,712396527,712396527,712396527,876,876,876,0,0,0,0,0,0,0,0),
24353 (22007,0,3,2097185,2097185,2097185,0,0,0,0,0,0,0,65536,0,0,0),
24354 (22008,0,3,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24355 (22618,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24356 (22648,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24357 (23547,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24358 (23548,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24359 (23551,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24360 (23552,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24361 (23572,0,11,192,192,192,0,0,0,0,0,0,0,0,0,0,0),
24362 (23578,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),
24363 (23581,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),
24364 (23582,0,8,2048,0,0,0,0,0,0,0,0,16384,0,0,0,0),
24365 (23602,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24366 (23686,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),
24367 (23688,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24368 (23689,127,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),
24369 (23721,0,9,2048,2048,2048,0,0,0,0,0,0,0,0,0,0,0),
24370 (23920,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24371 (24353,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24372 (24389,0,3,12582935,12582935,12582935,64,64,64,0,0,0,0,0,0,0,0),
24373 (24658,127,0,0,0,0,0,0,0,0,0,0,82192,0,0,0,0),
24374 (24905,127,0,0,0,0,0,0,0,0,0,0,0,2,15,0,0),
24375 (24932,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,6),
24376 (25050,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24377 (25669,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),
24378 (26107,127,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0),
24379 (26119,0,10,2416967683,2416967683,2416967683,0,0,0,0,0,0,0,65536,0,0,0),
24380 (26128,127,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0),
24381 (26135,0,10,8388608,8388608,8388608,0,0,0,0,0,0,0,65536,0,0,0),
24382 (26480,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24383 (26605,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24384 (27419,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24385 (27498,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24386 (27521,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24387 (27656,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24388 (27774,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24389 (27787,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24390 (27811,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24391 (28716,0,7,16,16,16,0,0,0,0,0,0,294912,0,0,0,0),
24392 (28719,0,7,32,32,32,0,0,0,0,0,0,0,2,0,0,0),
24393 (28744,0,7,64,64,64,0,0,0,0,0,0,278528,0,0,0,0),
24394 (28752,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24395 (28761,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24396 (28789,0,10,3221225472,3221225472,3221225472,0,0,0,0,0,0,0,0,0,0,0),
24397 (28802,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24398 (28809,0,6,4096,4096,4096,0,0,0,0,0,0,0,2,0,0,0),
24399 (28812,0,8,33554438,33554438,33554438,0,0,0,0,0,0,0,2,0,0,0),
24400 (28816,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24401 (28823,0,11,192,192,192,0,0,0,0,0,0,0,0,0,0,0),
24402 (28847,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24403 (28849,0,11,128,128,128,0,0,0,0,0,0,0,0,0,0,0),
24404 (29074,20,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24405 (29150,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24406 (29385,127,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0),
24407 (29441,127,0,0,0,0,0,0,0,0,0,0,0,8,0,0,1),
24408 (29455,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24409 (29501,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24410 (29593,127,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0),
24411 (29624,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24412 (29625,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24413 (29626,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24414 (29632,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24415 (29633,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24416 (29634,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24417 (29635,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24418 (29636,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24419 (29637,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24420 (29834,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24421 (29977,0,3,12582935,12582935,12582935,64,64,64,0,0,0,0,0,0,0,0),
24422 (30003,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24423 (30160,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24424 (30293,0,5,385,385,385,8519872,8519872,8519872,0,0,0,0,0,0,0,0),
24425 (30299,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24426 (30675,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24427 (30701,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24428 (30705,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24429 (30823,127,0,0,0,0,0,0,0,0,0,0,0,0,10.5,0,0),
24430 (30881,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24431 (30937,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24432 (31124,0,8,536870926,536870926,536870926,0,0,0,0,0,0,0,0,0,0,0),
24433 (31244,0,8,4063232,4063232,4063232,9,9,9,0,0,0,0,8244,0,0,0),
24434 (31394,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24435 (31569,0,3,0,65536,0,0,0,0,0,0,0,0,0,0,0,0),
24436 (31571,0,3,0,0,0,0,0,0,8,0,0,16384,0,0,0,0),
24437 (31785,127,0,0,0,0,0,0,0,0,0,0,0,262147,0,0,0),
24438 (31794,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24439 (31801,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24440 (31833,0,10,2147483648,2147483648,2147483648,0,0,0,0,0,0,0,0,0,0,0),
24441 (31834,0,10,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24442 (31871,0,10,16,16,16,0,0,0,0,0,0,16384,0,0,0,0),
24443 (31876,0,10,8388608,8388608,8388608,0,0,0,8,8,8,16656,0,0,0,0),
24444 (31904,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24445 (32385,0,5,1,1,1,262144,262144,262144,0,0,0,0,0,0,0,0),
24446 (32587,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24447 (32642,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24448 (32734,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24449 (32748,0,8,0,0,0,1,1,1,0,0,0,320,0,0,0,0),
24450 (32776,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24451 (32777,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24452 (32837,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,45),
24453 (32844,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),
24454 (32885,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24455 (33076,127,0,0,0,0,0,0,0,0,0,0,656040,0,0,0,0),
24456 (33089,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24457 (33127,127,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0),
24458 (33142,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24459 (33150,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24460 (33151,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24461 (33191,0,6,8421376,0,0,1024,0,0,0,0,0,0,0,0,0,0),
24462 (33297,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24463 (33299,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24464 (33510,127,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),
24465 (33648,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24466 (33719,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24467 (33746,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24468 (33757,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24469 (33759,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24470 (33881,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24471 (33953,127,0,0,0,0,0,0,0,0,0,0,16384,0,0,0,45),
24472 (34074,0,9,522819,522819,522819,8917121,8917121,8917121,513,513,513,0,0,0,0,0),
24473 (34080,127,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0),
24474 (34138,0,11,128,128,128,0,0,0,0,0,0,0,0,0,0,0),
24475 (34139,0,10,1073741824,1073741824,1073741824,0,0,0,0,0,0,0,0,0,0,0),
24476 (34258,0,10,1024,1024,1024,8,8,8,0,0,0,0,0,0,0,0),
24477 (34262,0,10,8388608,8388608,8388608,0,0,0,0,0,0,0,65536,0,0,0),
24478 (34320,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45),
24479 (34355,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24480 (34497,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24481 (34500,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24482 (34506,0,9,522753,522753,522753,8392833,8392833,8392833,134218241,134218241,134218241,0,0,0,0,0),
24483 (34584,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24484 (34586,127,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0),
24485 (34598,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24486 (34749,127,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0),
24487 (34753,0,6,6144,6144,6144,4,4,4,0,0,0,0,2,0,0,0),
24488 (34754,0,6,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24489 (34774,127,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,20),
24490 (34783,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24491 (34784,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24492 (34827,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24493 (34914,0,6,8192,8192,8192,0,0,0,0,0,0,0,0,0,0,0),
24494 (34935,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8),
24495 (34936,0,5,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24496 (34950,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24497 (35077,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24498 (35080,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,60),
24499 (35083,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24500 (35086,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24501 (35100,0,9,4096,4096,4096,0,0,0,1,1,1,256,0,0,0,0),
24502 (35121,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24503 (36032,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24504 (36096,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24505 (36541,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24506 (37165,0,8,2098176,2098176,2098176,0,0,0,0,0,0,0,0,0,0,0),
24507 (37168,0,8,4063232,4063232,4063232,9,9,9,0,0,0,0,0,0,0,0),
24508 (37170,127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),
24509 (37173,0,8,750519704,750519704,750519704,262,262,262,0,0,0,0,0,0,0,30),
24510 (37189,0,10,3221225472,0,0,0,0,0,0,0,0,0,2,0,0,60),
24511 (37193,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24512 (37195,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24513 (37197,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,45),
24514 (37213,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24515 (37214,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24516 (37227,0,11,448,448,448,0,0,0,0,0,0,0,2,0,0,60),
24517 (37237,0,11,1,1,1,0,0,0,0,0,0,0,2,0,0,0),
24518 (37247,8,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,45),
24519 (37377,32,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24520 (37379,32,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24521 (37384,0,5,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24522 (37443,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24523 (37514,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24524 (37516,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24525 (37519,127,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0),
24526 (37523,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24527 (37528,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24528 (37536,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24529 (37568,0,6,2048,2048,2048,0,0,0,0,0,0,0,0,0,0,0),
24530 (37594,0,6,4096,4096,4096,0,0,0,0,0,0,0,0,0,0,0),
24531 (37600,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24532 (37601,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24533 (37603,0,6,32768,32768,32768,0,0,0,0,0,0,0,0,0,0,0),
24534 (37655,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24535 (37657,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3),
24536 (38026,1,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0),
24537 (38031,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24538 (38290,127,0,0,0,0,0,0,0,0,0,0,0,0,1.6,0,0),
24539 (38299,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12),
24540 (38326,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24541 (38327,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24542 (38332,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24543 (38334,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24544 (38347,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45),
24545 (38350,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24546 (38394,0,5,6,6,6,0,0,0,0,0,0,0,0,0,0,0),
24547 (38857,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24548 (39027,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24549 (39372,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24550 (39437,4,5,4964,4964,4964,0,0,0,0,0,0,0,65536,0,0,0),
24551 (39442,127,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),
24552 (39443,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24553 (39530,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24554 (39958,127,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,40),
24555 (40407,127,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),
24556 (40438,0,6,32832,32832,32832,0,0,0,0,0,0,0,0,0,0,0),
24557 (40442,0,7,20,20,20,1088,1088,1088,0,0,0,0,0,0,0,0),
24558 (40444,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24559 (40458,0,4,33554432,33554432,33554432,1537,1537,1537,0,0,0,0,0,0,0,0),
24560 (40463,0,11,129,129,129,16,16,16,0,0,0,0,0,0,0,0),
24561 (40470,0,10,3229614080,0,0,0,0,0,0,0,0,0,0,0,0,0),
24562 (40475,127,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),
24563 (40478,0,5,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24564 (40482,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24565 (40485,0,9,0,0,0,1,1,1,0,0,0,0,0,0,0,0),
24566 (40899,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24567 (40971,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24568 (41034,127,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0),
24569 (41198,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24570 (41260,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24571 (41262,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24572 (41381,127,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0),
24573 (41393,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24574 (41434,127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,45),
24575 (41469,127,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0),
24576 (41635,127,0,0,0,0,0,0,0,0,0,0,656040,0,0,0,0),
24577 (41989,127,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0),
24578 (42083,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45),
24579 (42135,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90),
24580 (42136,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90),
24581 (42368,0,10,1073741824,1073741824,1073741824,0,0,0,0,0,0,0,0,0,0,0),
24582 (42370,0,11,64,64,64,0,0,0,0,0,0,0,0,0,0,0),
24583 (42770,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24584 (43338,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24585 (43443,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24586 (43726,0,10,1073741824,1073741824,1073741824,0,0,0,0,0,0,0,0,0,0,0),
24587 (43728,0,11,128,128,128,0,0,0,0,0,0,0,0,0,0,0),
24588 (43737,0,7,0,0,0,1088,1088,1088,0,0,0,0,0,0,0,10),
24589 (43739,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24590 (43741,0,10,2147483648,2147483648,2147483648,0,0,0,0,0,0,0,0,0,0,0),
24591 (43745,0,10,0,0,0,512,512,512,0,0,0,0,0,0,0,0),
24592 (43748,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24593 (43750,0,11,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24594 (43819,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24595 (44401,0,3,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24596 (44404,0,3,536870945,536870945,536870945,36864,36864,36864,0,0,0,0,0,0,0,0),
24597 (44442,0,3,8388608,8388608,8388608,64,64,64,0,0,0,0,65536,0,0,1),
24598 (44445,0,3,19,19,19,4096,4096,4096,0,0,0,0,0,0,0,0),
24599 (44449,0,3,551686775,551686775,551686775,102472,102472,102472,0,0,0,0,2,0,0,0),
24600 (44546,0,3,33555104,33555104,33555104,0,0,0,0,0,0,0,0,0,0,0),
24601 (44835,0,7,0,0,0,128,128,128,0,0,0,16,0,0,0,0),
24602 (45054,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15),
24603 (45057,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24604 (45234,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24605 (45354,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24606 (45355,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24607 (45481,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24608 (45482,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24609 (45483,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24610 (45484,127,0,0,0,0,0,0,0,0,0,0,16384,0,0,0,45),
24611 (46025,32,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24612 (46092,0,10,1073741824,1073741824,1073741824,0,0,0,0,0,0,0,0,0,0,0),
24613 (46098,0,11,128,128,128,0,0,0,0,0,0,0,0,0,0,0),
24614 (46569,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24615 (46662,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20),
24616 (46832,0,7,1,1,1,0,0,0,0,0,0,0,65536,0,0,0),
24617 (46854,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24618 (46867,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24619 (46913,0,4,64,64,64,1028,1028,1028,0,0,0,0,0,0,0,0),
24620 (46916,0,4,0,0,0,1024,1024,1024,0,0,0,0,2,0,0,0),
24621 (46951,0,4,1024,1024,1024,64,64,64,0,0,0,0,0,0,0,0),
24622 (47195,0,5,2,2,2,0,0,0,0,0,0,0,0,0,0,30),
24623 (47201,0,5,16393,16393,16393,262144,262144,262144,0,0,0,0,65536,0,0,0),
24624 (47230,127,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24625 (47245,32,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0),
24626 (47258,0,5,0,0,0,8388608,8388608,8388608,0,0,0,0,65536,0,0,0),
24627 (47263,32,5,0,0,0,0,0,0,0,0,0,0,2,0,0,20),
24628 (47264,32,5,0,0,0,0,0,0,0,0,0,0,2,0,0,20),
24629 (47265,32,5,0,0,0,0,0,0,0,0,0,0,2,0,0,20),
24630 (47509,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24631 (47516,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24632 (47569,0,6,16384,16384,16384,0,0,0,0,0,0,16384,0,0,0,0),
24633 (47580,0,6,0,0,0,0,0,0,64,64,64,0,65536,0,0,0),
24634 (48108,0,3,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24635 (48110,127,0,0,0,0,0,0,0,0,0,0,656040,0,0,0,0),
24636 (48111,127,0,0,0,0,0,0,0,0,0,0,656040,0,0,0,0),
24637 (48483,0,7,34816,34816,34816,1088,1088,1088,0,0,0,0,0,0,0,0),
24638 (48492,0,7,524288,0,0,0,0,0,0,2048,0,16384,0,0,0,0),
24639 (48496,0,7,96,96,96,33554434,33554434,33554434,0,0,0,0,2,0,0,0),
24640 (48506,0,7,5,5,5,0,0,0,0,0,0,0,0,0,0,0),
24641 (48516,0,7,5,0,0,0,0,0,0,0,0,0,2,0,0,30),
24642 (48539,0,7,16,16,16,67108864,67108864,67108864,0,0,0,262144,0,0,0,0),
24643 (48833,0,7,0,0,0,1088,1088,1088,0,0,0,0,0,0,0,0),
24644 (48835,0,10,0,0,0,8,8,8,0,0,0,0,0,0,0,0),
24645 (48837,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24646 (48988,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24647 (49018,0,15,20971520,20971520,20971520,0,0,0,0,0,0,0,0,0,0,0),
24648 (49188,0,15,0,0,0,131072,131072,131072,0,0,0,0,0,0,0,0),
24649 (49208,0,15,4456448,4456448,4456448,0,0,0,0,0,0,0,0,0,0,0),
24650 (49222,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24651 (49622,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24652 (50781,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,6),
24653 (50880,16,15,0,0,0,2048,2048,2048,0,0,0,65536,0,0,0,0),
24654 (51123,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24655 (51124,0,15,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24656 (51346,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24657 (51349,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24658 (51352,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24659 (51359,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24660 (51414,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24661 (51474,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24662 (51483,1,11,536870912,536870912,536870912,0,0,0,0,0,0,16384,0,0,0,0),
24663 (51521,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),
24664 (51528,127,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0),
24665 (51556,0,11,192,192,192,0,0,0,16,16,16,0,2,0,0,0),
24666 (51562,0,11,256,256,256,0,0,0,16,16,16,0,0,0,0,0),
24667 (51625,0,8,268476416,268476416,268476416,0,0,0,0,0,0,0,0,0,0,0),
24668 (51627,127,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0),
24669 (51634,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24670 (51664,0,8,131072,131072,131072,8,8,8,0,0,0,0,0,0,0,0),
24671 (51672,127,0,0,0,0,0,0,0,0,0,0,0,16,0,0,1),
24672 (51692,0,8,516,0,0,0,0,0,0,0,0,0,0,0,0,0),
24673 (51698,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1),
24674 (51940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),
24675 (51989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),
24676 (52004,127,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),
24677 (52005,127,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),
24678 (52007,127,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),
24679 (52008,127,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),
24680 (52020,0,7,32768,32768,32768,1048576,1048576,1048576,0,0,0,0,0,0,0,0),
24681 (52127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24682 (52420,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24683 (52423,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24684 (52437,0,4,0,0,0,0,0,0,0,0,0,16,0,0,0,0),
24685 (52795,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24686 (52898,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24687 (53215,0,9,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24688 (53221,0,9,0,0,0,1,1,1,0,0,0,0,0,0,0,0),
24689 (53228,0,9,32,32,32,16777216,16777216,16777216,0,0,0,0,0,0,0,0),
24690 (53234,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24691 (53256,0,9,2048,2048,2048,8388609,8388609,8388609,0,0,0,0,2,0,0,0),
24692 (53290,0,9,2048,2048,2048,1,1,1,512,512,512,0,2,0,0,0),
24693 (53380,0,10,8388608,8388608,8388608,163840,163840,163840,0,0,0,0,2,0,0,0),
24694 (53397,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24695 (53476,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24696 (53486,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24697 (53501,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24698 (53527,0,10,0,0,0,0,0,0,4,4,4,0,0,0,0,0),
24699 (53551,0,10,4096,4096,4096,0,0,0,0,0,0,0,0,0,0,0),
24700 (53569,0,10,2097152,2097152,2097152,65536,65536,65536,0,0,0,0,2,0,0,0),
24701 (53601,127,0,0,0,0,0,0,0,0,0,0,656040,0,0,0,6),
24702 (53646,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24703 (53671,0,10,8388608,8388608,8388608,0,0,0,0,0,0,0,0,0,0,0),
24704 (53672,0,10,0,0,0,0,0,0,0,0,0,0,3,0,0,0),
24705 (53695,0,10,8388608,0,0,0,0,0,0,0,0,0,0,0,0,0),
24706 (53709,0,10,16384,16384,16384,0,0,0,0,0,0,256,0,0,0,0),
24707 (53817,0,11,0,451,0,0,32768,0,0,0,0,0,0,0,0,0),
24708 (54061,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24709 (54062,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24710 (54149,0,10,2097152,2097152,2097152,65536,65536,65536,0,0,0,0,2,0,0,0),
24711 (54278,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24712 (54646,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24713 (54695,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24714 (54707,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24715 (54738,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45),
24716 (54741,0,3,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24717 (54747,127,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0),
24718 (54754,0,7,16,16,16,0,0,0,0,0,0,0,0,0,0,0),
24719 (54808,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),
24720 (54821,0,7,4096,0,0,0,0,0,0,0,0,16,0,0,0,0),
24721 (54838,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24722 (54841,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3),
24723 (54925,0,10,0,0,0,512,512,512,0,0,0,0,0,0,0,0),
24724 (54937,0,10,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,0),
24725 (54939,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24726 (55166,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24727 (55380,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24728 (55440,0,11,64,64,64,0,0,0,0,0,0,0,0,0,0,0),
24729 (55640,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24730 (55666,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24731 (55677,0,6,0,0,0,1,1,1,0,0,0,0,0,0,0,0),
24732 (55680,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24733 (55689,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24734 (55747,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24735 (55768,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24736 (55776,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24737 (56218,0,5,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24738 (56342,0,9,16384,16384,16384,0,0,0,0,0,0,0,0,0,0,0),
24739 (56355,127,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0),
24740 (56364,0,3,0,0,0,16777216,16777216,16777216,0,0,0,0,0,0,0,0),
24741 (56372,0,3,0,0,0,128,128,128,0,0,0,16384,0,0,0,0),
24742 (56375,0,3,16777216,16777216,16777216,0,0,0,0,0,0,65536,0,0,0,0),
24743 (56451,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),
24744 (56636,0,4,32,32,32,0,0,0,0,0,0,0,0,0,0,6),
24745 (56816,127,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0),
24746 (56821,0,8,2,2,2,0,0,0,0,0,0,0,2,0,0,0),
24747 (57345,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24748 (57352,0,0,1,1,1,64,64,64,0,0,0,65876,3,0,0,45),
24749 (57470,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24750 (57499,0,4,1073741825,1073741825,1073741825,65536,65536,65536,0,0,0,81920,0,0,0,0),
24751 (57761,0,3,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24752 (57870,0,9,8388608,0,0,0,0,0,0,0,0,262144,262144,0,0,0),
24753 (57878,127,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0),
24754 (57907,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0),
24755 (57989,127,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),
24756 (58357,0,4,64,64,64,0,0,0,0,0,0,0,2,0,0,0),
24757 (58364,0,4,1024,1024,1024,0,0,0,0,0,0,0,0,0,0,0),
24758 (58372,0,4,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24759 (58386,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24760 (58442,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15),
24761 (58444,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5),
24762 (58597,0,10,1073741824,1073741824,1073741824,0,0,0,0,0,0,32768,0,0,100,6),
24763 (58616,0,15,16777216,16777216,16777216,0,0,0,0,0,0,0,0,0,0,0),
24764 (58620,0,15,0,0,0,16384,16384,16384,0,0,0,0,0,0,0,0),
24765 (58626,0,15,0,33554432,0,0,0,0,0,0,0,0,0,0,0,0),
24766 (58644,0,15,0,0,0,4,4,4,0,0,0,0,0,0,0,0),
24767 (58647,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24768 (58677,0,15,8192,8192,8192,0,0,0,0,0,0,16384,0,0,0,0),
24769 (58872,127,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0),
24770 (58901,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45),
24771 (59176,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24772 (59327,0,15,134217728,0,0,0,0,0,0,0,0,0,0,0,0,0),
24773 (59345,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24774 (59630,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35),
24775 (59725,127,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0),
24776 (60061,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24777 (60063,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24778 (60066,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24779 (60132,0,15,0,0,0,134348800,134348800,134348800,0,0,0,0,0,0,0,0),
24780 (60170,0,5,6,6,6,0,0,0,0,0,0,0,0,0,0,0),
24781 (60172,0,5,262144,262144,262144,0,0,0,0,0,0,0,65536,0,0,0),
24782 (60221,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24783 (60301,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24784 (60306,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24785 (60317,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24786 (60436,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24787 (60442,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24788 (60473,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24789 (60482,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24790 (60487,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15),
24791 (60490,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24792 (60493,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24793 (60503,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24794 (60517,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24795 (60519,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24796 (60529,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24797 (60537,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,45),
24798 (60564,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24799 (60571,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24800 (60572,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24801 (60573,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24802 (60574,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24803 (60575,0,11,2416967680,2416967680,2416967680,0,0,0,0,0,0,0,0,0,0,0),
24804 (60617,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24805 (60710,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24806 (60717,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24807 (60719,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24808 (60722,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24809 (60724,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24810 (60726,0,7,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24811 (60770,0,11,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24812 (60818,0,10,0,0,0,512,512,512,0,0,0,0,0,0,0,0),
24813 (60826,0,15,20971520,20971520,20971520,0,0,0,0,0,0,0,0,0,0,0),
24814 (61062,0,3,0,0,0,256,256,256,0,0,0,16384,65536,0,0,0),
24815 (61188,0,5,4,4,4,0,0,0,0,0,0,0,0,0,0,0),
24816 (61257,127,0,0,0,0,0,0,0,0,0,0,131752,65536,0,0,0),
24817 (61324,0,10,0,0,0,131072,131072,131072,0,0,0,0,0,0,0,0),
24818 (61356,127,0,0,0,0,0,0,0,0,0,0,680,2,0,0,45),
24819 (61618,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24820 (61846,0,9,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24821 (62147,0,15,2,0,0,0,0,0,0,0,0,65536,0,0,0,0),
24822 (62600,127,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24823 (63086,0,9,0,0,0,0,0,0,65536,65536,65536,0,0,0,0,0),
24824 (63108,0,5,2,2,2,0,0,0,0,0,0,0,0,0,0,0),
24825 (63156,0,5,1,1,1,192,192,192,0,0,0,0,0,0,0,0),
24826 (63251,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24827 (63280,0,11,536870912,536870912,536870912,0,0,0,0,0,0,0,0,0,0,0),
24828 (63320,0,5,262144,262144,262144,0,0,0,32768,32768,32768,16384,1,0,0,0),
24829 (63335,0,15,0,0,0,2,0,0,0,0,0,0,0,0,0,0),
24830 (63373,0,11,2147483648,2147483648,2147483648,0,0,0,0,0,0,65536,0,0,0,0),
24831 (63534,0,6,64,64,64,0,0,0,0,0,0,16384,0,0,0,0),
24832 (63611,127,0,0,0,0,0,0,0,0,0,0,327700,0,0,0,0),
24833 (63625,0,6,33554432,33554432,33554432,0,0,0,0,0,0,65536,0,0,0,0),
24834 (63730,0,6,2048,2048,2048,4,4,4,0,0,0,0,0,0,0,0),
24835 (64127,0,6,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24836 (64440,127,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),
24837 (64571,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),
24838 (64823,0,7,0,0,0,0,0,0,0,0,0,65536,524288,0,0,0),
24839 (64824,0,7,2097152,2097152,2097152,0,0,0,0,0,0,0,0,0,0,0),
24840 (64860,0,9,0,0,0,1,1,1,0,0,0,0,0,0,0,0),
24841 (64867,0,3,536870945,536870945,536870945,4096,4096,4096,0,0,0,0,0,0,0,0),
24842 (64890,0,10,0,0,0,65536,65536,65536,0,0,0,0,2,0,0,0),
24843 (64908,0,6,8192,8192,8192,0,0,0,0,0,0,0,0,0,0,0),
24844 (64912,0,6,1,1,1,0,0,0,0,0,0,0,0,0,0,0),
24845 (64914,0,8,0,0,0,524288,0,0,0,0,0,0,0,0,0,0),
24846 (64928,0,11,1,1,1,0,0,0,0,0,0,0,2,0,0,0),
24847 (64952,0,7,0,0,0,1088,0,0,0,0,0,0,0,0,0,0),
24848 (64964,0,15,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0),
24849 (64976,0,4,1,1,1,0,0,0,0,0,0,65536,0,0,0,0),
24850 (65661,0,15,4194321,4194321,4194321,537001988,537001988,537001988,0,0,0,16,0,0,100,0),
24851 (66808,127,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),
24852 (67115,0,15,20971520,20971520,20971520,0,0,0,0,0,0,0,0,0,0,0),
24853 (67151,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24854 (67209,0,8,1048576,1048576,1048576,0,0,0,0,0,0,0,0,0,0,0),
24855 (67228,4,11,0,0,0,4096,4096,4096,0,0,0,0,0,0,0,0),
24856 (67353,0,7,32768,32768,32768,1049856,1049856,1049856,0,0,0,0,0,0,0,0),
24857 (67356,0,7,16,0,0,0,0,0,0,0,0,0,262144,0,0,5),
24858 (67361,64,7,2,2,2,0,0,0,0,0,0,0,0,0,0,6),
24859 (67363,0,10,2147483648,0,0,0,0,0,0,0,0,0,0,0,0,10),
24860 (67365,0,10,0,0,0,2048,0,0,0,0,0,0,0,0,0,6),
24861 (67379,0,10,0,0,0,262144,0,0,0,0,0,0,0,0,0,0),
24862 (67381,0,15,0,0,0,536870912,0,0,0,0,0,0,0,0,0,10),
24863 (67384,0,15,16,0,0,134348800,0,0,0,0,0,0,0,0,0,10),
24864 (67386,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,6),
24865 (67389,0,11,256,0,0,0,0,0,0,0,0,0,0,0,0,8),
24866 (67392,0,11,0,0,0,0,0,0,4,0,0,0,0,0,0,0),
24867 (67667,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24868 (67672,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50),
24869 (67702,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24870 (67771,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24871 (68160,127,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),
24872 (69739,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24873 (69755,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24874 (70652,0,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0),
24875 (70664,0,7,16,16,16,0,0,0,0,0,0,0,0,0,0,0),
24876 (70723,0,7,5,5,5,0,0,0,0,0,0,0,2,0,0,0),
24877 (70727,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24878 (70730,0,9,16384,0,0,256,0,0,0,0,0,0,0,0,0,0),
24879 (70748,0,3,0,0,0,2097152,2097152,2097152,0,0,0,0,0,0,0,0),
24880 (70756,0,10,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0),
24881 (70761,0,10,0,0,0,0,0,0,1,0,0,0,0,0,0,0),
24882 (70770,0,6,2048,2048,2048,0,0,0,0,0,0,0,0,0,0,0),
24883 (70807,0,11,0,0,0,0,0,0,16,16,16,0,0,0,0,0),
24884 (70808,0,11,256,256,256,0,0,0,0,0,0,0,2,0,0,0),
24885 (70830,0,11,0,0,0,131072,0,0,0,0,0,16384,0,0,0,0),
24886 (70841,0,5,4,0,0,256,0,0,0,0,0,0,0,0,0,0),
24887 (70854,0,4,0,0,0,16,16,16,0,0,0,0,0,0,0,0),
24888 (71174,0,7,4096,0,0,256,0,0,0,0,0,0,0,0,0,0),
24889 (71176,0,7,2097154,0,0,0,0,0,0,0,0,0,0,0,0,0),
24890 (71178,0,7,16,0,0,0,0,0,0,0,0,0,262144,0,0,0),
24891 (71186,0,10,0,0,0,32768,0,0,0,0,0,0,0,0,0,0),
24892 (71191,0,10,2097152,0,0,0,0,0,0,0,0,0,0,0,0,0),
24893 (71194,0,10,0,0,0,1048576,0,0,0,0,0,0,0,0,0,0),
24894 (71198,0,11,268435456,0,0,0,0,0,0,0,0,0,0,0,0,0),
24895 (71217,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0),
24896 (71226,0,15,16,0,0,134348800,0,0,0,0,0,0,0,0,0,0),
24897 (71228,0,15,0,0,0,536870912,0,0,0,0,0,0,0,0,0,0),
24898 (71402,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24899 (71404,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,50),
24900 (71406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0),
24901 (71519,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105),
24902 (71540,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24903 (71545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0),
24904 (71562,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105),
24905 (71564,127,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),
24906 (71585,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24907 (71602,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24908 (71606,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100),
24909 (71611,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24910 (71634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24911 (71637,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100),
24912 (71640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),
24913 (71642,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24914 (71645,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24915 (71761,0,3,0,0,0,1048576,0,0,0,0,0,0,256,0,0,0),
24916 (71880,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),
24917 (71892,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),
24918 (72413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,60),
24919 (74396,0,3,685904631,685904631,685904631,1151048,1151048,1151048,0,0,0,65536,0,0,0,0),
24920 (75455,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24921 (75457,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24922 (75465,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24923 (75474,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24924 (75475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24925 (75481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45),
24926 (75490,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
24927 (75495,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
24928 /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
24929 UNLOCK TABLES;
24932 -- Table structure for table `spell_proc_item_enchant`
24935 DROP TABLE IF EXISTS `spell_proc_item_enchant`;
24936 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24937 /*!40101 SET character_set_client = utf8 */;
24938 CREATE TABLE `spell_proc_item_enchant` (
24939   `entry` mediumint(8) unsigned NOT NULL,
24940   `ppmRate` float NOT NULL DEFAULT '0',
24941   PRIMARY KEY (`entry`)
24942 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
24943 /*!40101 SET character_set_client = @saved_cs_client */;
24946 -- Dumping data for table `spell_proc_item_enchant`
24949 LOCK TABLES `spell_proc_item_enchant` WRITE;
24950 /*!40000 ALTER TABLE `spell_proc_item_enchant` DISABLE KEYS */;
24951 INSERT INTO `spell_proc_item_enchant` (`entry`, `ppmRate`) VALUES
24952 (8034,9),
24953 (8680,8.5714),
24954 (13218,21.4286),
24955 (13897,6),
24956 (20004,6),
24957 (20005,1.6),
24958 (44525,3.4),
24959 (44578,3.4);
24960 /*!40000 ALTER TABLE `spell_proc_item_enchant` ENABLE KEYS */;
24961 UNLOCK TABLES;
24964 -- Table structure for table `spell_script_target`
24967 DROP TABLE IF EXISTS `spell_script_target`;
24968 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24969 /*!40101 SET character_set_client = utf8 */;
24970 CREATE TABLE `spell_script_target` (
24971   `entry` mediumint(8) unsigned NOT NULL,
24972   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
24973   `targetEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
24974   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
24975 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Spell System';
24976 /*!40101 SET character_set_client = @saved_cs_client */;
24979 -- Dumping data for table `spell_script_target`
24982 LOCK TABLES `spell_script_target` WRITE;
24983 /*!40000 ALTER TABLE `spell_script_target` DISABLE KEYS */;
24984 /*!40000 ALTER TABLE `spell_script_target` ENABLE KEYS */;
24985 UNLOCK TABLES;
24988 -- Table structure for table `spell_scripts`
24991 DROP TABLE IF EXISTS `spell_scripts`;
24992 /*!40101 SET @saved_cs_client     = @@character_set_client */;
24993 /*!40101 SET character_set_client = utf8 */;
24994 CREATE TABLE `spell_scripts` (
24995   `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
24996   `delay` int(10) unsigned NOT NULL DEFAULT '0',
24997   `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
24998   `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
24999   `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
25000   `datalong3` int(10) unsigned NOT NULL DEFAULT '0',
25001   `datalong4` int(10) unsigned NOT NULL DEFAULT '0',
25002   `data_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
25003   `dataint` int(11) NOT NULL DEFAULT '0',
25004   `dataint2` int(11) NOT NULL DEFAULT '0',
25005   `dataint3` int(11) NOT NULL DEFAULT '0',
25006   `dataint4` int(11) NOT NULL DEFAULT '0',
25007   `buddy_entry` int(11) NOT NULL DEFAULT '0',
25008   `search_radius` int(11) NOT NULL DEFAULT '0',
25009   `x` float NOT NULL DEFAULT '0',
25010   `y` float NOT NULL DEFAULT '0',
25011   `z` float NOT NULL DEFAULT '0',
25012   `o` float NOT NULL DEFAULT '0',
25013   `comments` varchar(255) NOT NULL
25014 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
25015 /*!40101 SET character_set_client = @saved_cs_client */;
25018 -- Dumping data for table `spell_scripts`
25021 LOCK TABLES `spell_scripts` WRITE;
25022 /*!40000 ALTER TABLE `spell_scripts` DISABLE KEYS */;
25023 /*!40000 ALTER TABLE `spell_scripts` ENABLE KEYS */;
25024 UNLOCK TABLES;
25027 -- Table structure for table `spell_target_position`
25030 DROP TABLE IF EXISTS `spell_target_position`;
25031 /*!40101 SET @saved_cs_client     = @@character_set_client */;
25032 /*!40101 SET character_set_client = utf8 */;
25033 CREATE TABLE `spell_target_position` (
25034   `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
25035   `target_map` smallint(5) unsigned NOT NULL DEFAULT '0',
25036   `target_position_x` float NOT NULL DEFAULT '0',
25037   `target_position_y` float NOT NULL DEFAULT '0',
25038   `target_position_z` float NOT NULL DEFAULT '0',
25039   `target_orientation` float NOT NULL DEFAULT '0',
25040   PRIMARY KEY (`id`)
25041 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
25042 /*!40101 SET character_set_client = @saved_cs_client */;
25045 -- Dumping data for table `spell_target_position`
25048 LOCK TABLES `spell_target_position` WRITE;
25049 /*!40000 ALTER TABLE `spell_target_position` DISABLE KEYS */;
25050 /*!40000 ALTER TABLE `spell_target_position` ENABLE KEYS */;
25051 UNLOCK TABLES;
25054 -- Table structure for table `spell_threat`
25057 DROP TABLE IF EXISTS `spell_threat`;
25058 /*!40101 SET @saved_cs_client     = @@character_set_client */;
25059 /*!40101 SET character_set_client = utf8 */;
25060 CREATE TABLE `spell_threat` (
25061   `entry` mediumint(8) unsigned NOT NULL,
25062   `Threat` smallint(6) NOT NULL,
25063   `multiplier` float NOT NULL DEFAULT '1' COMMENT 'threat multiplier for damage/healing',
25064   `ap_bonus` float NOT NULL DEFAULT '0' COMMENT 'additional threat bonus from attack power',
25065   PRIMARY KEY (`entry`)
25066 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
25067 /*!40101 SET character_set_client = @saved_cs_client */;
25070 -- Dumping data for table `spell_threat`
25073 LOCK TABLES `spell_threat` WRITE;
25074 /*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
25075 INSERT INTO `spell_threat` (`entry`, `Threat`, `multiplier`, `ap_bonus`) VALUES
25076 (72,293,1,0),
25077 (78,20,1,0),
25078 (99,15,1,0),
25079 (284,39,1,0),
25080 (285,59,1,0),
25081 (469,40,1,0),
25082 (676,104,1,0),
25083 (770,108,1,0),
25084 (779,0,1.5,0),
25085 (845,10,1,0),
25086 (1160,16,1,0),
25087 (1608,78,1,0),
25088 (1672,180,1,0),
25089 (1715,61,1,0),
25090 (1735,25,1,0),
25091 (2048,70,1,0),
25092 (2139,300,1,0),
25093 (5242,26,1,0),
25094 (5676,0,2,0),
25095 (6190,26,1,0),
25096 (6192,32,1,0),
25097 (6343,0,1.75,0),
25098 (6572,155,1,0),
25099 (6574,195,1,0),
25100 (6673,18,1,0),
25101 (6807,13,1,0),
25102 (6808,20,1,0),
25103 (6809,27,1,0),
25104 (7369,40,1,0),
25105 (7372,101,1,0),
25106 (7373,141,1,0),
25107 (7379,235,1,0),
25108 (7386,100,1,0),
25109 (8972,47,1,0),
25110 (9490,29,1,0),
25111 (9745,75,1,0),
25112 (9747,36,1,0),
25113 (9880,106,1,0),
25114 (9881,140,1,0),
25115 (9898,42,1,0),
25116 (11549,40,1,0),
25117 (11550,48,1,0),
25118 (11551,56,1,0),
25119 (11554,30,1,0),
25120 (11555,37,1,0),
25121 (11556,43,1,0),
25122 (11564,98,1,0),
25123 (11565,118,1,0),
25124 (11566,137,1,0),
25125 (11567,145,1,0),
25126 (11600,275,1,0),
25127 (11601,315,1,0),
25128 (11608,60,1,0),
25129 (11609,70,1,0),
25130 (16857,108,1,0),
25131 (17735,200,1,0),
25132 (17750,300,1,0),
25133 (17751,450,1,0),
25134 (17752,600,1,0),
25135 (20243,0,1,0.05),
25136 (20569,100,1,0),
25137 (20736,100,1,0),
25138 (20925,20,1,0),
25139 (20927,30,1,0),
25140 (20928,40,1,0),
25141 (23922,160,1,0),
25142 (23923,190,1,0),
25143 (23924,220,1,0),
25144 (23925,250,1,0),
25145 (24394,580,1,0),
25146 (25202,50,1,0),
25147 (25203,55,1,0),
25148 (25231,130,1,0),
25149 (25258,286,1,0),
25150 (25269,400,1,0),
25151 (25286,175,1,0),
25152 (25288,355,1,0),
25153 (25289,62,1,0),
25154 (26996,212,1,0),
25155 (26998,49,1,0),
25156 (27179,54,1,0),
25157 (29704,230,1,0),
25158 (29707,196,1,0),
25159 (30324,220,1,0),
25160 (30356,323,1,0),
25161 (30357,483,1,0),
25162 (33745,182,0.5,0),
25163 (33878,129,1,0),
25164 (33986,180,1,0),
25165 (33987,232,1,0),
25166 (47436,78,1,0),
25167 (47437,63,1,0),
25168 (47439,60,1,0),
25169 (47440,80,1,0),
25170 (47449,236,1,0),
25171 (47450,259,1,0),
25172 (47487,520,1,0),
25173 (47488,770,1,0),
25174 (47519,180,1,0),
25175 (47520,225,1,0),
25176 (48479,345,1,0),
25177 (48480,422,1,0),
25178 (48559,54,1,0),
25179 (48560,62,1,0),
25180 (48567,409,0.5,0),
25181 (48568,515,0.5,0),
25182 (52212,0,1.9,0),
25183 (56815,0,1.75,0),
25184 (57755,0,1.5,0),
25185 (57823,500,1,0);
25186 /*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
25187 UNLOCK TABLES;
25190 -- Table structure for table `transports`
25193 DROP TABLE IF EXISTS `transports`;
25194 /*!40101 SET @saved_cs_client     = @@character_set_client */;
25195 /*!40101 SET character_set_client = utf8 */;
25196 CREATE TABLE `transports` (
25197   `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
25198   `name` text,
25199   `period` mediumint(8) unsigned NOT NULL DEFAULT '0',
25200   PRIMARY KEY (`entry`)
25201 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Transports';
25202 /*!40101 SET character_set_client = @saved_cs_client */;
25205 -- Dumping data for table `transports`
25208 LOCK TABLES `transports` WRITE;
25209 /*!40000 ALTER TABLE `transports` DISABLE KEYS */;
25210 /*!40000 ALTER TABLE `transports` ENABLE KEYS */;
25211 UNLOCK TABLES;
25214 -- Table structure for table `vehicle_accessory`
25217 DROP TABLE IF EXISTS `vehicle_accessory`;
25218 /*!40101 SET @saved_cs_client     = @@character_set_client */;
25219 /*!40101 SET character_set_client = utf8 */;
25220 CREATE TABLE `vehicle_accessory` (
25221   `vehicle_entry` int(10) unsigned NOT NULL COMMENT 'entry of the npc who has some accessory as vehicle',
25222   `seat` mediumint(8) unsigned NOT NULL COMMENT 'onto which seat shall the passenger be boarded',
25223   `accessory_entry` int(10) unsigned NOT NULL COMMENT 'entry of the passenger that is to be boarded',
25224   `comment` varchar(255) NOT NULL,
25225   PRIMARY KEY (`vehicle_entry`,`seat`)
25226 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Vehicle Accessory (passengers that are auto-boarded onto a v';
25227 /*!40101 SET character_set_client = @saved_cs_client */;
25230 -- Dumping data for table `vehicle_accessory`
25233 LOCK TABLES `vehicle_accessory` WRITE;
25234 /*!40000 ALTER TABLE `vehicle_accessory` DISABLE KEYS */;
25235 /*!40000 ALTER TABLE `vehicle_accessory` ENABLE KEYS */;
25236 UNLOCK TABLES;
25239 -- Table structure for table `world_template`
25242 DROP TABLE IF EXISTS `world_template`;
25243 /*!40101 SET @saved_cs_client     = @@character_set_client */;
25244 /*!40101 SET character_set_client = utf8 */;
25245 CREATE TABLE `world_template` (
25246   `map` smallint(5) unsigned NOT NULL,
25247   `ScriptName` varchar(128) NOT NULL DEFAULT '',
25248   PRIMARY KEY (`map`)
25249 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
25250 /*!40101 SET character_set_client = @saved_cs_client */;
25253 -- Dumping data for table `world_template`
25256 LOCK TABLES `world_template` WRITE;
25257 /*!40000 ALTER TABLE `world_template` DISABLE KEYS */;
25258 /*!40000 ALTER TABLE `world_template` ENABLE KEYS */;
25259 UNLOCK TABLES;
25260 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
25262 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
25263 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
25264 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
25265 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
25266 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
25267 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
25268 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;