From 053d60a3f74bb5a70a5669e4018a19dbb0c221d0 Mon Sep 17 00:00:00 2001 From: tomrus88 Date: Mon, 15 Dec 2008 11:25:21 +0300 Subject: [PATCH] Added wotlk sql updates to mangos.sql --- sql/characters.sql | 67 +- sql/mangos.sql | 1245 +---------------- sql/wotlk_updates/6_character_achievement.sql | 4 +- 3 files changed, 108 insertions(+), 1208 deletions(-) diff --git a/sql/characters.sql b/sql/characters.sql index f73ca3c78..0dc980ebb 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -35,6 +35,28 @@ INSERT INTO `character_db_version` VALUES /*!40000 ALTER TABLE `character_db_version` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `account_data` +-- + +DROP TABLE IF EXISTS `account_data`; +CREATE TABLE `account_data` ( + `account` int(11) unsigned NOT NULL default '0', + `type` int(11) unsigned NOT NULL default '0', + `time` bigint(11) unsigned NOT NULL default '0', + `data` longtext NOT NULL, + PRIMARY KEY (`account`,`type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `account_data` +-- + +LOCK TABLES `account_data` WRITE; +/*!40000 ALTER TABLE `account_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `account_data` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `arena_team` -- @@ -216,6 +238,47 @@ LOCK TABLES `characters` WRITE; /*!40000 ALTER TABLE `characters` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `character_achievement` +-- + +CREATE TABLE IF NOT EXISTS `character_achievement` ( + `guid` int(11) NOT NULL, + `achievement` int(11) NOT NULL, + `date` int(11) NOT NULL, + PRIMARY KEY (`guid`,`achievement`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `character_achievement` +-- + +LOCK TABLES `character_achievement` WRITE; +/*!40000 ALTER TABLE `character_achievement` DISABLE KEYS */; +/*!40000 ALTER TABLE `character_achievement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `character_achievement_progress` +-- + +CREATE TABLE IF NOT EXISTS `character_achievement_progress` ( + `guid` int(11) NOT NULL, + `criteria` int(11) NOT NULL, + `counter` int(11) NOT NULL, + `date` int(11) NOT NULL, + PRIMARY KEY (`guid`,`criteria`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `character_achievement_progress` +-- + +LOCK TABLES `character_achievement_progress` WRITE; +/*!40000 ALTER TABLE `character_achievement_progress` DISABLE KEYS */; +/*!40000 ALTER TABLE `character_achievement_progress` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `character_action` -- @@ -398,9 +461,7 @@ CREATE TABLE `character_pet` ( `level` int(11) unsigned NOT NULL default '1', `exp` int(11) unsigned NOT NULL default '0', `Reactstate` tinyint(1) unsigned NOT NULL default '0', - `loyaltypoints` int(11) NOT NULL default '0', - `loyalty` int(11) unsigned NOT NULL default '0', - `trainpoint` int(11) NOT NULL default '0', + `talentpoints` int(11) unsigned NOT NULL default '0', `name` varchar(100) default 'Pet', `renamed` tinyint(1) unsigned NOT NULL default '0', `slot` int(11) unsigned NOT NULL default '0', diff --git a/sql/mangos.sql b/sql/mangos.sql index 2909816f3..d64e0c5d0 100644 --- a/sql/mangos.sql +++ b/sql/mangos.sql @@ -519,15 +519,9 @@ UNLOCK TABLES; DROP TABLE IF EXISTS `creature_equip_template`; CREATE TABLE `creature_equip_template` ( `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Unique entry', - `equipmodel1` mediumint(8) unsigned NOT NULL default '0', - `equipmodel2` mediumint(8) unsigned NOT NULL default '0', - `equipmodel3` mediumint(8) unsigned NOT NULL default '0', - `equipinfo1` int(10) unsigned NOT NULL default '0', - `equipinfo2` int(10) unsigned NOT NULL default '0', - `equipinfo3` int(10) unsigned NOT NULL default '0', - `equipslot1` int(11) NOT NULL default '0', - `equipslot2` int(11) NOT NULL default '0', - `equipslot3` int(11) NOT NULL default '0', + `equipentry1` mediumint(8) unsigned NOT NULL default '0', + `equipentry2` mediumint(8) unsigned NOT NULL default '0', + `equipentry3` mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (`entry`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)'; @@ -1547,6 +1541,7 @@ CREATE TABLE `item_template` ( `maxcount` smallint(5) unsigned NOT NULL default '0', `stackable` smallint(5) unsigned NOT NULL default '1', `ContainerSlots` tinyint(3) unsigned NOT NULL default '0', + `StatsCount` tinyint(3) unsigned NOT NULL default '0', `stat_type1` tinyint(3) unsigned NOT NULL default '0', `stat_value1` smallint(6) NOT NULL default '0', `stat_type2` tinyint(3) unsigned NOT NULL default '0', @@ -1567,6 +1562,8 @@ CREATE TABLE `item_template` ( `stat_value9` smallint(6) NOT NULL default '0', `stat_type10` tinyint(3) unsigned NOT NULL default '0', `stat_value10` smallint(6) NOT NULL default '0', + `ScalingStatDistribution` smallint(6) NOT NULL default '0', + `ScalingStatValue` smallint(6) NOT NULL default '0', `dmg_min1` float NOT NULL default '0', `dmg_max1` float NOT NULL default '0', `dmg_type1` tinyint(3) unsigned NOT NULL default '0', @@ -1655,12 +1652,13 @@ CREATE TABLE `item_template` ( `GemProperties` mediumint(9) NOT NULL default '0', `RequiredDisenchantSkill` smallint(6) NOT NULL default '-1', `ArmorDamageModifier` float NOT NULL default '0', + `Duration` int(11) NOT NULL default '0' COMMENT 'Duration in seconds. Negative value means realtime, postive value ingame time', + `ItemLimitCategory` smallint(6) NOT NULL default '0', `ScriptName` varchar(64) NOT NULL default '', `DisenchantID` mediumint(8) unsigned NOT NULL default '0', `FoodType` tinyint(3) unsigned NOT NULL default '0', `minMoneyLoot` int(10) unsigned NOT NULL default '0', `maxMoneyLoot` int(10) unsigned NOT NULL default '0', - `Duration` int(11) NOT NULL default '0' COMMENT 'Duration in seconds. Negative value means realtime, postive value ingame time', PRIMARY KEY (`entry`), KEY `items_index` (`class`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System'; @@ -2462,6 +2460,8 @@ INSERT INTO `mangos_string` VALUES (342,'%s is now not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (343,'Creature (Entry: %u) cannot be tamed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (344,'You already have pet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), +(345,'Forced customize for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), +(346,'Forced customize for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (401,'You change security level of account %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), (402,'%s changed your security level to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), @@ -2757,6 +2757,33 @@ INSERT INTO `mangos_string` VALUES /*!40000 ALTER TABLE `mangos_string` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `milling_loot_template` +-- + +DROP TABLE IF EXISTS `milling_loot_template`; +CREATE TABLE `milling_loot_template` ( + `entry` mediumint(8) unsigned NOT NULL default '0', + `item` mediumint(8) unsigned NOT NULL default '0', + `ChanceOrQuestChance` float NOT NULL default '100', + `groupid` tinyint(3) unsigned NOT NULL default '0', + `mincountOrRef` mediumint(9) NOT NULL default '1', + `maxcount` tinyint(3) unsigned NOT NULL default '1', + `lootcondition` tinyint(3) unsigned NOT NULL default '0', + `condition_value1` mediumint(8) unsigned NOT NULL default '0', + `condition_value2` mediumint(8) unsigned NOT NULL default '0', + PRIMARY KEY (`entry`,`item`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System'; + +-- +-- Dumping data for table `milling_loot_template` +-- + +LOCK TABLES `milling_loot_template` WRITE; +/*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `npc_gossip` -- @@ -10409,6 +10436,8 @@ CREATE TABLE `quest_template` ( `QuestFlags` smallint(5) unsigned NOT NULL default '0', `SpecialFlags` tinyint(3) unsigned NOT NULL default '0', `CharTitleId` tinyint(3) unsigned NOT NULL default '0', + `PlayersSlain` tinyint(3) unsigned NOT NULL default '0', + `BonusTalents` tinyint(3) unsigned NOT NULL default '0', `PrevQuestId` mediumint(9) NOT NULL default '0', `NextQuestId` mediumint(9) NOT NULL default '0', `ExclusiveGroup` mediumint(9) NOT NULL default '0', @@ -10666,7 +10695,9 @@ DROP TABLE IF EXISTS `spell_affect`; CREATE TABLE `spell_affect` ( `entry` smallint(5) unsigned NOT NULL default '0', `effectId` tinyint(3) unsigned NOT NULL default '0', - `SpellFamilyMask` bigint(20) unsigned NOT NULL default '0', + `SpellClassMask0` int(5) unsigned NOT NULL default '0', + `SpellClassMask1` int(5) unsigned NOT NULL default '0', + `SpellClassMask2` int(5) unsigned NOT NULL default '0', PRIMARY KEY (`entry`,`effectId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -10676,1198 +10707,6 @@ CREATE TABLE `spell_affect` ( LOCK TABLES `spell_affect` WRITE; /*!40000 ALTER TABLE `spell_affect` DISABLE KEYS */; -INSERT INTO `spell_affect` VALUES -(5420,2,0x00001012100000D0), -(8875,1,0x0000040000000000), -(11069,0,0x0000000000000001), -(11070,0,0x0000000000000020), -(11071,0,0x0000000000100000), -(11083,0,0x0000000000C20017), -(11124,0,0x0000000008C20017), -(11151,0,0x00000000000202E0), -(11160,0,0x00000001020203E0), -(11175,1,0x0000000000100000), -(11207,0,0x00000000000202E0), -(11222,0,0x0000000020001800), -(11242,0,0x0000000020001000), -(11247,0,0x0000000000002000), -(12042,0,0x0000000020E01AF7), -(12042,1,0x0000000020E01AF7), -(12042,2,0x0000000020E01AF7), -(12043,0,0x0000000021400035), -(12285,0,0x0000000000000001), -(12286,0,0x0000000000000020), -(12287,1,0x0000000000000080), -(12295,1,0x0000000002000000), -(12295,2,0x0000040000000000), -(12301,0,0x0000000000000100), -(12303,1,0x0000100000000000), -(12308,0,0x0000000000004000), -(12318,0,0x0000008000010000), -(12321,0,0x0000008000030000), -(12321,1,0x0000008000030000), -(12330,0,0x0000000000200000), -(12338,0,0x0000000000000001), -(12339,0,0x0000000000000001), -(12340,0,0x0000000000000001), -(12341,0,0x0000000000000001), -(12351,0,0x0000000000C20017), -(12378,0,0x0000000008C20017), -(12398,0,0x0000000008C20017), -(12399,0,0x0000000008C20017), -(12400,0,0x0000000008C20017), -(12467,0,0x0000000020001000), -(12469,0,0x0000000020001000), -(12472,1,0x00000000E44008A5), -(12473,0,0x0000000000000020), -(12496,0,0x0000000000100000), -(12497,0,0x0000000000100000), -(12518,0,0x00000001020203E0), -(12519,0,0x00000001020203E0), -(12536,0,0x0000000020C01AF7), -(12569,1,0x0000000000100000), -(12571,1,0x0000000000100000), -(12658,0,0x0000000000000020), -(12659,0,0x0000000000000020), -(12665,1,0x0000000000000080), -(12666,1,0x0000000000000080), -(12672,0,0x00000000000202E0), -(12676,1,0x0000000002000000), -(12676,2,0x0000040000000000), -(12677,1,0x0000000002000000), -(12677,2,0x0000040000000000), -(12697,0,0x0000000000000001), -(12788,1,0x0000100000000000), -(12789,1,0x0000100000000000), -(12810,0,0x0000000000004000), -(12811,0,0x0000000000004000), -(12818,0,0x0000000000000100), -(12835,0,0x0000008000030000), -(12835,1,0x0000008000030000), -(12836,0,0x0000008000030000), -(12836,1,0x0000008000030000), -(12837,0,0x0000008000030000), -(12837,1,0x0000008000030000), -(12838,0,0x0000008000030000), -(12838,1,0x0000008000030000), -(12839,0,0x0000000020001800), -(12840,0,0x0000000020001800), -(12841,0,0x0000000020001800), -(12842,0,0x0000000020001800), -(12857,0,0x0000008000010000), -(12858,0,0x0000008000010000), -(12860,0,0x0000008000010000), -(12861,0,0x0000008000010000), -(12862,0,0x0000000000200000), -(12945,1,0x0000000000001000), -(12952,0,0x00000000000202E0), -(12953,0,0x00000000000202E0), -(12954,0,0x00000000000202E0), -(12957,0,0x00000000000202E0), -(13733,0,0x0000000000000004), -(13733,1,0x0000000400000000), -(13742,0,0x0000000000000060), -(13743,0,0x0000000000000040), -(13865,0,0x0000000000000004), -(13865,1,0x0000000400000000), -(13866,0,0x0000000000000004), -(13866,1,0x0000000400000000), -(13872,0,0x0000000000000060), -(13875,0,0x0000000000000040), -(13975,0,0x0000000000400000), -(13975,1,0x0000000000400000), -(13976,0,0x0000000000000700), -(13979,0,0x0000000000000700), -(13980,0,0x0000000000000700), -(13981,0,0x0000000001000000), -(13981,1,0x0000000000000800), -(14057,0,0x0000000600000304), -(14062,0,0x0000000000400000), -(14062,1,0x0000000000400000), -(14063,0,0x0000000000400000), -(14063,1,0x0000000000400000), -(14064,0,0x0000000000400000), -(14064,1,0x0000000000400000), -(14065,0,0x0000000000400000), -(14065,1,0x0000000000400000), -(14066,0,0x0000000001000000), -(14066,1,0x0000000000000800), -(14072,0,0x0000000600000304), -(14073,0,0x0000000600000304), -(14074,0,0x0000000600000304), -(14075,0,0x0000000600000304), -(14076,0,0x0000000001000080), -(14076,1,0x0000000001000080), -(14082,0,0x0000000000000500), -(14083,0,0x0000000000000500), -(14094,0,0x0000000001000080), -(14094,1,0x0000000001000080), -(14113,0,0x000000000001E000), -(14114,0,0x000000000001E000), -(14115,0,0x000000000001E000), -(14116,0,0x000000000001E000), -(14117,0,0x000000000001E000), -(14128,0,0x000000062600000E), -(14132,0,0x000000062600000E), -(14135,0,0x000000062600000E), -(14136,0,0x000000062600000E), -(14137,0,0x000000062600000E), -(14143,0,0x0000000004000206), -(14149,0,0x0000000004000206), -(14162,0,0x0000000000020000), -(14163,0,0x0000000000020000), -(14164,0,0x0000000000020000), -(14168,0,0x0000000000080000), -(14169,0,0x0000000000080000), -(14174,0,0x0000000000200000), -(14175,0,0x0000000000200000), -(14176,0,0x0000000000200000), -(14177,0,0x0000000C6012031E), -(14179,0,0x00000009003E0000), -(14520,0,0x00000963BF61C16F), -(14523,1,0x000000208030016B), -(14523,2,0x000000208030016B), -(14743,0,0x0000049440963E90), -(14747,0,0x0000000000000002), -(14750,0,0x0000000000000010), -(14751,0,0xFFFFFFFFFFFFFFFF), -(14751,1,0xFFFFFFFFFFFFFFFF), -(14770,0,0x0000000000000002), -(14771,0,0x0000000000000002), -(14772,0,0x0000000000000010), -(14780,0,0x00000963BF61C16F), -(14781,0,0x00000963BF61C16F), -(14782,0,0x00000963BF61C16F), -(14783,0,0x00000963BF61C16F), -(14784,1,0x000000208030016B), -(14784,2,0x000000208030016B), -(14785,1,0x000000208030016B), -(14785,2,0x000000208030016B), -(14786,1,0x000000208030016B), -(14786,2,0x000000208030016B), -(14787,1,0x000000208030016B), -(14787,2,0x000000208030016B), -(14908,0,0x0000000000000040), -(14909,1,0x0000000000100080), -(14911,0,0x0000002000000200), -(14912,0,0x0000000000041400), -(14913,0,0x0000000400041E00), -(15012,0,0x0000000400041E00), -(15013,0,0x0000000000041400), -(15014,0,0x0000000000041400), -(15017,1,0x0000000000100080), -(15018,0,0x0000002000000200), -(15020,0,0x0000000000000040), -(15047,0,0x00000000000202E0), -(15052,0,0x00000000000202E0), -(15053,0,0x00000000000202E0), -(15257,0,0x000004020288A010), -(15259,0,0x0000000202002000), -(15259,1,0x0000040000808000), -(15260,0,0x00000442068BA000), -(15272,0,0x00000D4A068BE104), -(15307,0,0x0000000202002000), -(15307,1,0x0000040000808000), -(15308,0,0x0000000202002000), -(15308,1,0x0000040000808000), -(15309,0,0x0000000202002000), -(15309,1,0x0000040000808000), -(15310,0,0x0000000202002000), -(15310,1,0x0000040000808000), -(15318,0,0x00000D4A068BE104), -(15320,0,0x00000D4A068BE104), -(15327,0,0x00000442068BA000), -(15328,0,0x00000442068BA000), -(15329,0,0x00000442068BA000), -(15330,0,0x00000442068BA000), -(15331,0,0x000004020288A010), -(15332,0,0x000004020288A010), -(15333,0,0x000004020288A010), -(15334,0,0x000004020288A010), -(16035,0,0x0000000090100003), -(16038,0,0x0000000040000000), -(16039,0,0x0000000090100003), -(16041,0,0x0000000000000003), -(16043,0,0x0000000000000008), -(16043,1,0x0000000100000000), -(16086,0,0x0000000000000020), -(16086,1,0x0000000000000020), -(16086,2,0x0000000000000004), -(16089,0,0x00000004D3300407), -(16105,0,0x0000000090100003), -(16106,0,0x0000000090100003), -(16106,1,0x0000000090100003), -(16107,0,0x0000000090100003), -(16108,0,0x0000000090100003), -(16109,0,0x0000000090100003), -(16110,0,0x0000000090100003), -(16111,0,0x0000000090100003), -(16112,0,0x0000000090100003), -(16117,0,0x0000000000000003), -(16118,0,0x0000000000000003), -(16119,0,0x0000000000000003), -(16120,0,0x0000000000000003), -(16130,0,0x0000000000000008), -(16130,1,0x0000000100000000), -(16160,0,0x0000000040000000), -(16161,0,0x0000000040000000), -(16166,0,0x0000000090100003), -(16166,1,0x0000000090100003), -(16173,0,0x0000000020081018), -(16179,0,0x00000000000000C0), -(16181,0,0x00000000000001C0), -(16184,0,0x0000000000000200), -(16184,1,0x0000000000000200), -(16187,0,0x0000000000006000), -(16187,1,0x0000000000006000), -(16188,0,0x00000000000009C3), -(16189,0,0x000001000403E000), -(16205,0,0x0000000000006000), -(16205,1,0x0000000000006000), -(16206,0,0x0000000000006000), -(16206,1,0x0000000000006000), -(16207,0,0x0000000000006000), -(16207,1,0x0000000000006000), -(16208,0,0x0000000000006000), -(16208,1,0x0000000000006000), -(16209,1,0x0000000000000200), -(16214,0,0x00000000000000C0), -(16215,0,0x00000000000000C0), -(16216,0,0x00000000000000C0), -(16217,0,0x00000000000000C0), -(16222,0,0x0000000020081018), -(16223,0,0x0000000020081018), -(16224,0,0x0000000020081018), -(16225,0,0x0000000020081018), -(16230,0,0x00000000000001C0), -(16232,0,0x00000000000001C0), -(16233,0,0x00000000000001C0), -(16234,0,0x00000000000001C0), -(16246,0,0x0000000090100003), -(16258,0,0x0000000000008000), -(16258,1,0x0000000000040000), -(16259,0,0x0000000000010000), -(16259,1,0x0000000000020000), -(16261,0,0x0000000000000400), -(16266,0,0x0000000000400000), -(16266,1,0x0000000001000000), -(16266,2,0x0000000000800000), -(16290,0,0x0000000000000400), -(16291,0,0x0000000000000400), -(16293,0,0x0000000000008000), -(16293,1,0x0000000000040000), -(16295,0,0x0000000000010000), -(16295,1,0x0000000000020000), -(16493,0,0x0000014D2A600CEF), -(16494,0,0x0000014D2A600CEF), -(16513,0,0x000000080001E000), -(16513,1,0x000000000001E000), -(16513,2,0x000000000001E000), -(16514,0,0x000000080001E000), -(16514,1,0x000000000001E000), -(16514,2,0x000000000001E000), -(16515,0,0x000000080001E000), -(16515,1,0x000000000001E000), -(16515,2,0x000000000001E000), -(16544,2,0x0000000000000004), -(16578,0,0x0000000000000003), -(16579,0,0x0000000000000003), -(16580,0,0x0000000000000003), -(16581,0,0x0000000000000003), -(16582,0,0x0000000000000003), -(16719,0,0x000000080001E000), -(16719,1,0x000000000001E000), -(16719,2,0x000000000001E000), -(16720,0,0x000000080001E000), -(16720,1,0x000000000001E000), -(16720,2,0x000000000001E000), -(16757,0,0x00000000000200A0), -(16757,1,0x0000000000000240), -(16758,0,0x00000000000200A0), -(16758,1,0x0000000000000240), -(16763,0,0x0000000000000020), -(16765,0,0x0000000000000020), -(16766,0,0x0000000000000020), -(16814,0,0x0000000000000005), -(16815,0,0x0000000000000005), -(16816,0,0x0000000000000005), -(16817,0,0x0000000000000005), -(16818,0,0x0000000000000005), -(16819,0,0x0002122000600707), -(16820,0,0x0002122000600707), -(16821,0,0x0000000000000002), -(16821,1,0x0000000000000002), -(16821,2,0x0000000000000002), -(16822,0,0x0000000000000002), -(16822,1,0x0000000000000002), -(16822,2,0x0000000000000002), -(16833,0,0x0000E000E2000000), -(16834,0,0x0000E000E2000000), -(16835,0,0x0000E000E2000000), -(16836,1,0x0000000000000300), -(16839,1,0x0000000000000300), -(16840,1,0x0000000000000300), -(16850,1,0x0000000000000001), -(16870,0,0x001007F100E3FEFF), -(16886,0,0x0000000001000265), -(16896,0,0x0000000000000007), -(16896,1,0x0000000000000007), -(16897,0,0x0000000000000007), -(16897,1,0x0000000000000007), -(16899,0,0x0000000000000007), -(16899,1,0x0000000000000007), -(16900,0,0x0000000000000007), -(16900,1,0x0000000000000007), -(16901,0,0x0000000000000007), -(16901,1,0x0000000000000007), -(16918,0,0x0000002000000200), -(16919,0,0x0000002000000200), -(16920,0,0x0000002000000200), -(16923,1,0x0000000000000001), -(16924,1,0x0000000000000001), -(16934,0,0x0010004000000800), -(16934,1,0x0000040000001000), -(16935,0,0x0010004000000800), -(16935,1,0x0000040000001000), -(16936,0,0x0010004000000800), -(16936,1,0x0000040000001000), -(16937,0,0x0010004000000800), -(16937,1,0x0000040000001000), -(16938,0,0x0010004000000800), -(16938,1,0x0000040000001000), -(16947,1,0x0000000002000000), -(16948,1,0x0000000002000000), -(16949,1,0x0000000002000000), -(16966,0,0x0000000000008000), -(16966,1,0x0000010000000000), -(16968,0,0x0000000000008000), -(16968,1,0x0000010000000000), -(16998,0,0x0000000000001000), -(16998,2,0x0000000000001000), -(16999,0,0x0000000000001000), -(16999,2,0x0000000000001000), -(17104,0,0x00000010000000F0), -(17104,1,0x00000010000000F0), -(17111,0,0x0000000000000010), -(17112,0,0x0000000000000010), -(17113,0,0x0000000000000010), -(17114,0,0x0000000000000010), -(17115,0,0x0000000000000010), -(17116,0,0x0002002010000261), -(17118,0,0x001005D000E193F7), -(17118,1,0x0004103000340750), -(17119,0,0x001005D000E193F7), -(17119,1,0x0004103000340750), -(17120,0,0x001005D000E193F7), -(17120,1,0x0004103000340750), -(17121,0,0x001005D000E193F7), -(17121,1,0x0004103000340750), -(17122,0,0x001005D000E193F7), -(17122,1,0x0004103000340750), -(17123,0,0x0000000000000080), -(17124,0,0x0000000000000080), -(17191,0,0x0000000000000040), -(17322,0,0x00000542068AA004), -(17323,0,0x00000542068AA004), -(17768,0,0x0000000040000000), -(17768,1,0x0000000080000000), -(17778,0,0x000010C0000003E5), -(17779,0,0x000010C0000003E5), -(17780,0,0x000010C0000003E5), -(17781,0,0x000010C0000003E5), -(17782,0,0x000010C0000003E5), -(17788,1,0x0000008000000000), -(17789,1,0x0000008000000000), -(17790,1,0x0000008000000000), -(17791,1,0x0000008000000000), -(17792,1,0x0000008000000000), -(17904,0,0x0000000000000000), -(17912,0,0x0000000000000000), -(17913,0,0x0000000000000000), -(17914,0,0x0000000000000000), -(17915,0,0x0000000000000000), -(17916,0,0x0000000000000000), -(17917,0,0x000010C0000003A5), -(17917,1,0x000010C0000003E5), -(17918,0,0x000010C0000003A5), -(17918,1,0x000010C0000003E5), -(17927,0,0x0000000000000100), -(17929,0,0x0000000000000100), -(17930,0,0x0000000000000100), -(17941,0,0x0000000000000001), -(17954,0,0x000000C000001364), -(17954,1,0x000000C000001364), -(17954,2,0x0000004000000000), -(17955,0,0x000000C000001364), -(17955,1,0x000000C000001364), -(17955,2,0x0000004000000000), -(17956,0,0x000000C000001364), -(17956,1,0x000000C000001364), -(17956,2,0x0000004000000000), -(17957,0,0x000000C000001364), -(17957,1,0x000000C000001364), -(17957,2,0x0000004000000000), -(17958,0,0x000000C000001364), -(17958,1,0x000000C000001364), -(17958,2,0x0000004000000000), -(17959,0,0x000010C0000003E5), -(18126,0,0x0000000000001000), -(18127,0,0x0000000000001000), -(18130,0,0x000010C0000003E5), -(18131,0,0x000010C0000003E5), -(18132,0,0x000010C0000003E5), -(18133,0,0x000010C0000003E5), -(18134,0,0x000010C0000003E5), -(18135,0,0x000010C0000003E5), -(18136,0,0x000010C0000003E5), -(18174,0,0x0000071B804CC41A), -(18175,0,0x0000071B804CC41A), -(18176,0,0x0000071B804CC41A), -(18177,0,0x0000071B804CC41A), -(18178,0,0x0000071B804CC41A), -(18179,0,0x0000000000008000), -(18180,0,0x0000000000008000), -(18213,0,0x0000000000004000), -(18213,1,0x0000871B804CC41A), -(18218,0,0x000007138048C41A), -(18219,0,0x000007138048C41A), -(18271,0,0x000011130008A48B), -(18271,1,0x000011130008A48B), -(18272,0,0x000011130008A48B), -(18272,1,0x000011130008A48B), -(18273,0,0x000011130008A48B), -(18273,1,0x000011130008A48B), -(18274,0,0x000011130008A48B), -(18274,1,0x000011130008A48B), -(18275,0,0x000011130008A48B), -(18275,1,0x000011130008A48B), -(18288,0,0x0000000200000400), -(18288,1,0x0000000000400000), -(18372,1,0x0000871B804CC41A), -(18427,0,0x0000000000020006), -(18428,0,0x0000000000020006), -(18429,0,0x0000000000020006), -(18544,0,0x0000041202F8A090), -(18544,1,0x0000001202582090), -(18544,2,0x0000040000A08000), -(18547,0,0x0000041202F8A090), -(18547,1,0x0000001202582090), -(18547,2,0x0000040000A08000), -(18548,0,0x0000041202F8A090), -(18548,1,0x0000001202582090), -(18548,2,0x0000040000A08000), -(18549,0,0x0000041202F8A090), -(18549,1,0x0000001202582090), -(18549,2,0x0000040000A08000), -(18550,0,0x0000041202F8A090), -(18550,1,0x0000001202582090), -(18550,2,0x0000040000A08000), -(18703,1,0x0000000001000000), -(18704,1,0x0000000001000000), -(18731,0,0x0000000010000000), -(18743,0,0x0000000010000000), -(18744,0,0x0000000010000000), -(18748,0,0x0000000008000000), -(18749,0,0x0000000008000000), -(18750,0,0x0000000008000000), -(18767,1,0x0000000000020000), -(18768,1,0x0000000000020000), -(18821,0,0x0000000000000800), -(18821,1,0x0000000000000800), -(18821,2,0x0000000000000800), -(18822,0,0x0000000000000800), -(18822,1,0x0000000000000800), -(18822,2,0x0000000000000800), -(18827,0,0x0000000000000400), -(18829,0,0x0000000000000400), -(19239,0,0x0000000000000018), -(19239,1,0x0000000000000004), -(19245,0,0x0000000000000018), -(19245,1,0x0000200000000004), -(19416,0,0x000210810007FA00), -(19417,0,0x000210810007FA00), -(19418,0,0x000210810007FA00), -(19419,0,0x000210810007FA00), -(19420,0,0x000210810007FA00), -(19461,0,0x0000000000003000), -(19461,1,0x0000000000003000), -(19462,0,0x0000000000003000), -(19462,1,0x0000000000003000), -(19464,0,0x0000010000004000), -(19464,1,0x0000008000000000), -(19464,2,0x000011800000C000), -(19465,0,0x0000010000004000), -(19465,1,0x0000008000000000), -(19465,2,0x000011800000C000), -(19466,0,0x0000010000004000), -(19466,1,0x0000008000000000), -(19466,2,0x000011800000C000), -(19467,0,0x0000010000004000), -(19467,1,0x0000008000000000), -(19467,2,0x000011800000C000), -(19468,0,0x0000010000004000), -(19468,1,0x0000008000000000), -(19468,2,0x000011800000C000), -(19485,0,0x0000000100061801), -(19487,0,0x0000000100061801), -(19488,0,0x0000000100061801), -(19489,0,0x0000000100061801), -(19490,0,0x0000000100061801), -(19498,0,0x000210810007FA01), -(19499,0,0x000210810007FA01), -(19500,0,0x000210810007FA01), -(19549,0,0x0000000000080000), -(19550,0,0x0000000000080000), -(19551,0,0x0000000000080000), -(19552,0,0x0000000000100000), -(19552,1,0x0000020000000000), -(19553,0,0x0000000000100000), -(19553,1,0x0000020000000000), -(19554,0,0x0000000000100000), -(19554,1,0x0000020000000000), -(19555,0,0x0000000000100000), -(19555,1,0x0000020000000000), -(19556,0,0x0000000000100000), -(19556,1,0x0000020000000000), -(19559,0,0x0000000000200000), -(19560,0,0x0000000000200000), -(19572,1,0x0000000000800000), -(19573,1,0x0000000000800000), -(19583,0,0x0000000008000000), -(19584,0,0x0000000008000000), -(19585,0,0x0000000008000000), -(19586,0,0x0000000008000000), -(19587,0,0x0000000008000000), -(19590,0,0x0000000020000000), -(19592,0,0x0000000020000000), -(19598,0,0x0000000040000000), -(19599,0,0x0000000040000000), -(19600,0,0x0000000040000000), -(19601,0,0x0000000040000000), -(19602,0,0x0000000040000000), -(19609,0,0x0000000004000000), -(19610,0,0x0000000004000000), -(19612,0,0x0000000004000000), -(20101,0,0x000004000A000200), -(20102,0,0x000004000A000200), -(20103,0,0x000004000A000200), -(20104,0,0x000004000A000200), -(20105,0,0x000004000A000200), -(20138,0,0x0000000000000040), -(20139,0,0x0000000000000040), -(20140,0,0x0000000000000040), -(20141,0,0x0000000000000040), -(20142,0,0x0000000000000040), -(20174,0,0x0000000000000080), -(20174,1,0x0000000000000010), -(20175,0,0x0000000000000080), -(20175,1,0x0000000000000010), -(20216,0,0x00010000C0200000), -(20224,0,0x0000000008000400), -(20225,0,0x0000000008000400), -(20237,0,0x00000000C0000000), -(20238,0,0x00000000C0000000), -(20239,0,0x00000000C0000000), -(20249,0,0x0000000040000000), -(20250,0,0x0000000040000000), -(20251,0,0x0000000040000000), -(20254,0,0x0000000000020000), -(20254,1,0x0000000000020000), -(20254,2,0x0000000000020000), -(20255,0,0x0000000000020000), -(20255,1,0x0000000000020000), -(20255,2,0x0000000000020000), -(20256,0,0x0000000000020000), -(20256,1,0x0000000000020000), -(20256,2,0x0000000000020000), -(20330,0,0x0000000008000400), -(20331,0,0x0000000008000400), -(20332,0,0x0000000008000400), -(20335,0,0x0000000020000000), -(20336,0,0x0000000020000000), -(20337,0,0x0000000020000000), -(20359,0,0x0000000080000000), -(20360,0,0x0000000080000000), -(20361,0,0x0000000080000000), -(20468,1,0x0000000000000001), -(20469,1,0x0000000000000001), -(20470,1,0x0000000000000001), -(20575,0,0x0000000004000000), -(20575,1,0x0000000004000000), -(20576,0,0x0000000002000000), -(21873,0,0x0000E000E2000000), -(21881,0,0x000000000001E000), -(21887,0,0x0000036C2A764EEF), -(21895,0,0x000000000403E000), -(21899,0,0x0000000000000100), -(21942,1,0x0000000008000000), -(22008,0,0x0000000021400035), -(23025,0,0x0000000000010000), -(23047,0,0x0000040000000000), -(23047,1,0x0000040000000000), -(23158,0,0x0000000000000200), -(23300,0,0x0000000020000000), -(23555,0,0x000010C0000003E5), -(23561,0,0x0000000000004000), -(23566,0,0x0000000000001000), -(23724,0,0x0000E000E2000000), -(23726,0,0x0000000000002000), -(23726,1,0x0000000000010000), -(24348,0,0x0000000000200000), -(24429,0,0x0000000000004000), -(24431,0,0x0000000400000000), -(24460,0,0x0000000010000180), -(24469,0,0x0000000001000000), -(24499,0,0x0000000000000400), -(24542,1,0x00000000000000F0), -(24546,1,0x0000000400041E00), -(24691,0,0x0000000000003000), -(24691,1,0x0000000000003000), -(24943,0,0x00000010000000F0), -(24943,1,0x00000010000000F0), -(24944,0,0x00000010000000F0), -(24944,1,0x00000010000000F0), -(24945,0,0x00000010000000F0), -(24945,1,0x00000010000000F0), -(24946,0,0x00000010000000F0), -(24946,1,0x00000010000000F0), -(26106,0,0x0000000010000000), -(26109,0,0x00000080000F0000), -(26112,0,0x0000000000000020), -(26118,0,0x0000000004000000), -(26118,1,0x0000000004000000), -(26174,0,0x0000000000000020), -(27789,1,0x0000000010400200), -(27790,1,0x0000000010400200), -(27828,0,0x0000049440963E90), -(27846,0,0x0000000000000020), -(27850,0,0x0000000000000040), -(27851,0,0x0000000000001000), -(28088,0,0x000000000001E000), -(28107,0,0x0000000000040000), -(28539,0,0x0000000000001000), -(28682,0,0x0000004008C20017), -(28743,0,0x00000000000000F0), -(28746,1,0x0000000100000406), -(28751,0,0x0000000000021000), -(28755,0,0x0000000000000020), -(28763,0,0x0000000004000000), -(28774,0,0x0000000000008000), -(28775,0,0x0000000100000000), -(28787,0,0x0000000000001000), -(28807,0,0x0000000000000040), -(28808,0,0x0000000411041E40), -(28811,0,0x0000000002020006), -(28814,0,0x0000000000020000), -(28815,0,0x0000000002000006), -(28818,0,0x0000000020081018), -(28821,0,0x0000000000000400), -(28829,0,0x0000000000000002), -(28831,0,0x0000000000000001), -(28842,0,0x0000000100004440), -(28843,0,0x0000000000088000), -(28844,0,0x0000000000000400), -(28852,0,0x0000000000000200), -(28852,1,0x0000000020000000), -(28855,0,0x0000000000000800), -(28855,1,0x0010000000000000), -(28999,0,0x0000000000000003), -(29000,0,0x0000000000000003), -(29005,0,0x0000000090100003), -(29063,0,0x00000000000009C3), -(29079,0,0x0000000000400000), -(29079,1,0x0000000001000000), -(29079,2,0x0000000000800000), -(29080,0,0x0000000000400000), -(29080,1,0x0000000001000000), -(29080,2,0x0000000000800000), -(29171,0,0x0000000000004000), -(29187,0,0x00000000000001C0), -(29187,1,0x0004103000340750), -(29189,0,0x00000000000001C0), -(29189,1,0x0004103000340750), -(29191,0,0x00000000000001C0), -(29191,1,0x0004103000340750), -(29202,0,0x0000000000000040), -(29205,0,0x0000000000000040), -(29206,0,0x0000000000000040), -(29438,0,0x0000000000D000D7), -(29439,0,0x0000000000D000D7), -(29440,0,0x0000000000D000D7), -(29721,0,0x0000000400000000), -(29723,0,0x0000000800002010), -(29723,1,0x0000000800002010), -(29724,0,0x0000000800002010), -(29724,1,0x0000000800002010), -(29725,0,0x0000000800002010), -(29725,1,0x0000000800002010), -(29759,1,0x0000075D6E6ECEEF), -(29760,1,0x0000075D6E6ECEEF), -(29761,1,0x0000075D6E6ECEEF), -(29762,1,0x0000075D6E6ECEEF), -(29763,1,0x0000075D6E6ECEEF), -(29776,0,0x0000000400000000), -(29787,0,0x0000036C2A764EEF), -(29790,0,0x0000036C2A764EEF), -(29792,0,0x0000036C2A764EEF), -(29836,0,0x0000001000000020), -(29859,0,0x0000001000000020), -(29888,0,0x0000000040000000), -(29889,0,0x0000000040000000), -(29976,0,0x0000000021400035), -(30049,0,0x0000000000080000), -(30051,0,0x0000000000080000), -(30052,0,0x0000000000080000), -(30054,0,0x0000000800000000), -(30057,0,0x0000000800000000), -(30060,0,0x0000001000000402), -(30060,1,0x0000001000000402), -(30060,2,0x0000871B804CC41A), -(30061,0,0x0000001000000402), -(30061,1,0x0000001000000402), -(30061,2,0x0000871B804CC41A), -(30062,0,0x0000001000000402), -(30062,1,0x0000001000000402), -(30062,2,0x0000871B804CC41A), -(30063,0,0x0000001000000402), -(30063,1,0x0000001000000402), -(30063,2,0x0000871B804CC41A), -(30064,0,0x0000001000000402), -(30064,1,0x0000001000000402), -(30064,2,0x0000871B804CC41A), -(30085,0,0x0000071B804CC41A), -(30085,1,0x0000000000000400), -(30085,2,0x0000000000000002), -(30086,0,0x0000071B804CC41A), -(30086,1,0x0000000000000400), -(30086,2,0x0000000000000002), -(30017,0,0x0000000000000000), -(30143,0,0x0000002000000000), -(30144,0,0x0000002000000000), -(30145,0,0x0000002000000000), -(30242,0,0x0000200000000000), -(30245,0,0x0000200000000000), -(30246,0,0x0000200000000000), -(30247,0,0x0000200000000000), -(30248,0,0x0000200000000000), -(30251,0,0x000010C000000125), -(30256,0,0x000010C000000125), -(30280,0,0x0000000000000000), -(30288,0,0x0000004000000001), -(30289,0,0x0000004000000001), -(30290,0,0x0000004000000001), -(30291,0,0x0000004000000001), -(30292,0,0x0000004000000001), -(30319,1,0x0000400000000000), -(30320,1,0x0000400000000000), -(30321,1,0x0000400000000000), -(30326,0,0x0000000000040010), -(30327,0,0x0000000000040010), -(30328,0,0x0000000000040010), -(30812,0,0x00000C78B018141B), -(30813,0,0x00000C78B018141B), -(30814,0,0x00000C78B018141B), -(30872,0,0x0000000000000100), -(30873,0,0x0000000000000100), -(30892,0,0x0000000008000000), -(30893,0,0x0000000008000000), -(31216,1,0x0000000002000004), -(31217,1,0x0000000002000004), -(31218,1,0x0000000002000004), -(31219,1,0x0000000002000004), -(31220,1,0x0000000002000004), -(31226,0,0x000000000001E000), -(31227,0,0x000000000001E000), -(31234,0,0x000001002612030F), -(31234,1,0x0000000000100100), -(31235,0,0x000001002612030F), -(31235,1,0x0000000000100100), -(31236,0,0x000001002612030F), -(31236,1,0x0000000000100100), -(31237,0,0x000001002612030F), -(31237,1,0x0000000000100100), -(31238,0,0x000001002612030F), -(31238,1,0x0000000000100100), -(31571,0,0x0000000200000000), -(31572,0,0x0000000200000000), -(31573,0,0x0000000200000000), -(31579,0,0x0000000000200000), -(31579,1,0x0000000000000800), -(31582,0,0x0000000000200000), -(31582,1,0x0000000000000800), -(31583,0,0x0000000000200000), -(31583,1,0x0000000000000800), -(31656,0,0x0000000000000001), -(31657,0,0x0000000000000001), -(31658,0,0x0000000000000001), -(31659,0,0x0000000000000001), -(31660,0,0x0000000000000001), -(31670,0,0x0000000500000200), -(31672,0,0x0000000500000200), -(31682,0,0x0000000000000020), -(31682,1,0x0000000000000020), -(31683,0,0x0000000000000020), -(31683,1,0x0000000000000020), -(31684,0,0x0000000000000020), -(31684,1,0x0000000000000020), -(31685,0,0x0000000000000020), -(31685,1,0x0000000000000020), -(31686,0,0x0000000000000020), -(31686,1,0x0000000000000020), -(31821,0,0x0000000004020048), -(31825,0,0x0000000000001020), -(31825,1,0x0000000200000000), -(31826,0,0x0000000000001020), -(31826,1,0x0000000200000000), -(31834,0,0x0000000080000000), -(31844,1,0x000005401A00038C), -(31845,1,0x000005401A00038C), -(31848,0,0x0000000000400000), -(31848,1,0x0000000000400000), -(31849,0,0x0000000000400000), -(31849,1,0x0000000000400000), -(31869,0,0x0000002000000000), -(31870,0,0x0000002000000000), -(31879,0,0x0000000800000400), -(31880,0,0x0000000800000400), -(31881,0,0x0000000800000400), -(31882,0,0x0000000800000400), -(31883,0,0x0000000800000400), -(32043,1,0x000004000A000000), -(32203,1,0x0001100001C22000), -(32381,0,0x0000000000000002), -(32382,0,0x0000000000000002), -(32383,0,0x0000000000000002), -(32412,0,0x0000000000000400), -(32477,0,0x0000020000000000), -(32483,0,0x0000020000000000), -(32484,0,0x0000020000000000), -(32601,1,0x0000000020800008), -(32743,0,0x0000000000000800), -(32973,0,0x0000000090100000), -(33018,0,0x0000001000000000), -(33020,0,0x0000000000000400), -(33063,0,0x0000040000000000), -(33066,0,0x0000000000000002), -(33151,0,0x0000000000000080), -(33151,1,0x0000000000000080), -(33151,2,0x0000000000000080), -(33158,0,0x0000000000001000), -(33158,1,0x0000000000000800), -(33159,0,0x0000000000001000), -(33159,1,0x0000000000000800), -(33160,0,0x0000000000001000), -(33160,1,0x0000000000000800), -(33161,0,0x0000000000001000), -(33161,1,0x0000000000000800), -(33162,0,0x0000000000001000), -(33162,1,0x0000000000000800), -(33167,0,0x0000008100000000), -(33171,0,0x0000008100000000), -(33172,0,0x0000008100000000), -(33174,0,0x0000000000000020), -(33174,1,0x0000000000000020), -(33182,0,0x0000000000000020), -(33182,1,0x0000000000000020), -(33186,0,0x0000008000000000), -(33186,1,0x0000008000002080), -(33190,0,0x0000008000000000), -(33190,1,0x0000008000002080), -(33213,0,0x0000000000822000), -(33214,0,0x0000000000822000), -(33215,0,0x0000000000822000), -(33221,0,0x0000000200002000), -(33222,0,0x0000000200002000), -(33223,0,0x0000000200002000), -(33224,0,0x0000000200002000), -(33225,0,0x0000000200002000), -(33333,0,0x0000000020000000), -(33421,0,0x0000000200000000), -(33557,0,0x0000000000000200), -(33557,1,0x0000000020000000), -(33565,0,0x0000000000001000), -(33600,0,0x0000000000000400), -(33600,1,0x0000000000000400), -(33601,0,0x0000000000000400), -(33601,1,0x0000000000000400), -(33602,0,0x0000000000000400), -(33602,1,0x0000000000000400), -(33603,0,0x0000000000000004), -(33603,1,0x0000000000000001), -(33604,0,0x0000000000000004), -(33604,1,0x0000000000000001), -(33605,0,0x0000000000000004), -(33605,1,0x0000000000000001), -(33606,0,0x0000000000000004), -(33606,1,0x0000000000000001), -(33607,0,0x0000000000000004), -(33607,1,0x0000000000000001), -(33693,0,0x0000000000008000), -(33696,0,0x0000000000000001), -(33713,0,0x0000000200000000), -(33714,0,0x0000000200000000), -(33830,0,0x0000002000000000), -(33830,1,0x0000002000000000), -(33877,0,0x0000000000000002), -(33879,0,0x0000000000000020), -(33880,0,0x0000000000000020), -(33886,0,0x00000010000000D0), -(33887,0,0x00000010000000D0), -(33888,0,0x00000010000000D0), -(33889,0,0x00000010000000D0), -(33890,0,0x00000010000000D0), -(34128,0,0x0000001000000000), -(34129,0,0x0000000040000000), -(34129,1,0x0000000040000000), -(34131,0,0x0000000000000080), -(34131,1,0x0000000000000080), -(34253,0,0x0000010000000000), -(34297,0,0x0000080000000000), -(34300,0,0x0000080000000000), -(34318,0,0x0000000000000400), -(34318,1,0x0000002000000000), -(34323,0,0x0000008000800000), -(34453,1,0x0000000400000000), -(34454,1,0x0000000400000000), -(34455,0,0x0000002000000000), -(34455,1,0x0000004000000000), -(34459,0,0x0000002000000000), -(34459,1,0x0000004000000000), -(34460,0,0x0000002000000000), -(34460,1,0x0000004000000000), -(34462,1,0x0000000800000000), -(34464,1,0x0000000800000000), -(34465,1,0x0000000800000000), -(34466,1,0x0000001000000000), -(34467,1,0x0000001000000000), -(34468,1,0x0000001000000000), -(34469,1,0x0000001000000000), -(34470,1,0x0000001000000000), -(34491,0,0x00004000000000C2), -(34491,1,0x0000000000000080), -(34492,0,0x00004000000000C2), -(34492,1,0x0000000000000080), -(34493,0,0x00004000000000C2), -(34493,1,0x0000000000000080), -(34520,1,0x0000000000000000), -(34754,0,0x0000000400001800), -(34936,0,0x0000004000000001), -(34948,1,0x0000000000000020), -(34949,1,0x0000000000000020), -(35029,1,0x0000080000000000), -(35030,1,0x0000080000000000), -(35098,0,0x0000000000020801), -(35099,0,0x0000000000020801), -(35104,0,0x0000000000001000), -(35104,1,0x0000000000002000), -(35110,0,0x0000000000001000), -(35110,1,0x0000000000002000), -(35111,0,0x0000000000001000), -(35111,1,0x0000000000002000), -(35363,0,0x0000000000000005), -(35364,0,0x0000000000000005), -(35396,1,0x000004000A000000), -(35397,1,0x000004000A000000), -(35446,0,0x0000000002000000), -(35446,1,0x0000000002000000), -(35448,0,0x0000000002000000), -(35448,1,0x0000000002000000), -(35449,0,0x0000000002000000), -(35449,1,0x0000000002000000), -(35450,0,0x0000000002000000), -(35450,1,0x0000000002000000), -(35451,0,0x0000000002000000), -(35451,1,0x0000000002000000), -(35578,0,0x0000000028E212F7), -(35581,0,0x0000000028E212F7), -(36032,0,0x0000000020000000), -(36032,1,0x0000000020000000), -(36413,0,0x0000000000000001), -(36563,1,0x0000000000000204), -(36563,2,0x0000000000000100), -(37166,0,0x0000000000800000), -(37167,0,0x0000000000040000), -(37171,0,0x00000009003E0000), -(37180,0,0x0000000000000020), -(37181,0,0x0000000400000000), -(37183,0,0x0000010000000000), -(37184,0,0x0000040008000000), -(37184,1,0x0000040008000000), -(37185,0,0x0000004000000000), -(37186,0,0x0000000020000000), -(37187,0,0x0000020000000000), -(37190,0,0x0000000000000008), -(37191,0,0x0000004000000000), -(37194,0,0x0000000000800000), -(37207,0,0x0000000000000002), -(37209,0,0x0000000000000400), -(37209,1,0x0000002000000000), -(37210,0,0x0000000000004000), -(37211,0,0x0000008000000000), -(37212,0,0x0000010000000000), -(37223,0,0x0000000000010000), -(37224,0,0x0000001000000000), -(37225,0,0x0000000000000080), -(37234,0,0x0000000000000080), -(37240,0,0x0000000000000080), -(37241,0,0x0000020000000000), -(37286,0,0x0000000000000010), -(37287,0,0x0000E000E2000000), -(37292,0,0x0008000000000000), -(37297,0,0x0000100000000000), -(37313,0,0x0000000000000040), -(37314,0,0x0000001000000000), -(37316,0,0x0000000000000040), -(37325,0,0x0000000000000040), -(37333,0,0x0000000000008000), -(37333,1,0x0000010000000000), -(37376,0,0x0000001000000000), -(37380,0,0x0000000000000006), -(37423,0,0x0000000000000004), -(37424,0,0x0000000000008000), -(37438,0,0x0000000000000021), -(37439,0,0x0000002000000000), -(37439,1,0x0000004000000000), -(37439,2,0x0000008000000000), -(37441,0,0x0000000020000000), -(37441,1,0x0000000020000000), -(37447,0,0x0000010000000000), -(37481,0,0x0000000000000080), -(37484,0,0x0000000000000100), -(37485,0,0x0000000000001000), -(37505,0,0x0000000100000000), -(37507,0,0x0000000000000800), -(37508,0,0x0000000100061800), -(37508,1,0x0000000000000000), -(37512,0,0x00000080000F0000), -(37513,0,0x0000000000000001), -(37517,0,0x0000014D2A600CEF), -(37518,0,0x0000000400000000), -(37522,0,0x0000000000001000), -(37535,0,0x0000000002000000), -(37536,0,0x0000000000010000), -(37556,0,0x0000000400000000), -(37564,0,0x0000000000000200), -(37565,0,0x0000000000001000), -(37570,1,0x0000010000000000), -(37571,0,0x0000000000000080), -(37571,1,0x0000000000800000), -(37593,0,0x0000000000000040), -(37706,0,0x0000000411041E40), -(37721,0,0x00000010000000F0), -(37722,0,0x00000000000001C0), -(37723,0,0x00000000C0000000), -(37736,0,0x0000040000000000), -(37736,1,0x0000004000000000), -(37737,0,0x0000000000000040), -(37738,0,0x0000000000000040), -(37739,0,0x0000000080000000), -(37740,0,0x0000000000000001), -(37742,0,0x0000004000000000), -(37760,0,0x0000000000000001), -(37762,0,0x0000001000000000), -(37763,0,0x0000800000000000), -(37878,0,0x00000010000000F0), -(37879,0,0x00000000C0000000), -(37880,0,0x0000000411041E40), -(37881,0,0x00000000000001C0), -(38314,0,0x0000E000E2000000), -(38321,0,0x0000000000000020), -(38322,0,0x0000000000000100), -(38388,0,0x0000000000040000), -(38389,0,0x0000000E00000006), -(38392,0,0x0000000100000000), -(38393,0,0x0000000000000001), -(38396,0,0x0000000004000000), -(38397,0,0x0000000000000821), -(38398,0,0x0000000020000000), -(38399,0,0x0000000002000000), -(38407,0,0x0000000100000000), -(38408,0,0x0000008000000000), -(38410,0,0x0000000000000200), -(38411,0,0x0000000000001000), -(38412,0,0x0000000000002000), -(38413,0,0x0000000000008000), -(38414,0,0x0000000000000002), -(38415,0,0x0000000000000004), -(38416,0,0x0010000000800000), -(38416,1,0x0010000000800000), -(38417,0,0x0000000200000000), -(38420,0,0x0000000000000020), -(38421,0,0x0000100000000000), -(38422,0,0x0000000000000020), -(38424,0,0x0000008000000000), -(38425,0,0x0000000040000000), -(38426,0,0x0000000080000000), -(38429,0,0x0000000090100000), -(38434,0,0x0000000000000100), -(38435,0,0x0000000000000080), -(38436,0,0x0000000000000001), -(38447,0,0x0000040000000000), -(38447,1,0x0000004000000000), -(38466,0,0x0008000000000000), -(38499,0,0x0000008000000000), -(38501,0,0x0000000000000080), -(38522,0,0x0000000040000000), -(39805,0,0x0000000000000003), -(39805,1,0x0000000000000003), -(39926,1,0x0000080000000000), -(39926,2,0x0000200000000000), -(39950,0,0x0000000000000040), -(40389,0,0x0000800000000000), -(40460,0,0x00000009003E0000), -(41021,0,0x0000004000000000), -(41021,1,0x0000004000000000), -(41026,0,0x0000004000000000), -(41026,1,0x0000004000000000), -(41037,0,0x0000044000000000), -(41042,0,0x0000000000800000), -(42367,0,0x0000001000000000), -(43339,0,0x0000000090100000), -(43725,0,0x0000001000000000), -(43736,0,0x0000000000000010), -(43743,1,0x0000000008000400), -(43752,0,0x0000000000000100), -(43837,0,0x0000000080000000), -(43840,0,0x0000044000000000), -(43841,0,0x0000000000000002), -(43842,0,0x0000044000000000), -(43843,0,0x0000044000000000), -(43844,0,0x0000000000000002), -(43845,0,0x0000000000000002), -(43850,0,0x0000000000800000), -(43851,0,0x0000000000800000), -(43852,0,0x0000000000800000), -(43854,0,0x0000004000000000), -(43855,0,0x0000004000000000), -(43856,0,0x0000004000000000), -(43857,0,0x0000001000000000), -(43858,0,0x0000001000000000), -(43859,0,0x0000001000000000), -(43860,0,0x0000000090100000), -(43861,0,0x0000000090100000), -(43862,0,0x0000000090100000), -(44292,0,0x0000000000001000), -(44293,0,0x0000000000000200), -(44295,0,0x0000000090100000), -(44296,0,0x0000000000000001), -(44297,0,0x0000000000010000), -(44299,0,0x0000000000040000), -(44300,0,0x0000800000000000), -(44301,0,0x0000000001000000), -(44302,0,0x0000000001000000), -(44373,0,0x0000000000000000), -(46088,0,0x0000044000000000), -(46090,0,0x0000000000000002), -(46091,0,0x0000000000800000), -(46095,0,0x0000004000000000), -(46096,0,0x0000001000000000), -(46097,0,0x0000000090100000), -(46100,0,0x0000001000000000), -(46833,0,0x0000000000000004), -(46834,0,0x0000000000000040), -(46851,0,0x0001000000000000); - /*!40000 ALTER TABLE `spell_affect` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/wotlk_updates/6_character_achievement.sql b/sql/wotlk_updates/6_character_achievement.sql index fed3a6c39..23326eb6f 100644 --- a/sql/wotlk_updates/6_character_achievement.sql +++ b/sql/wotlk_updates/6_character_achievement.sql @@ -3,7 +3,7 @@ CREATE TABLE IF NOT EXISTS `character_achievement` ( `achievement` int(11) NOT NULL, `date` int(11) NOT NULL, PRIMARY KEY (`guid`,`achievement`) - ) ENGINE=MyISAM DEFAULT CHARSET=latin1; + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `character_achievement_progress` ( `guid` int(11) NOT NULL, @@ -11,4 +11,4 @@ CREATE TABLE IF NOT EXISTS `character_achievement_progress` ( `counter` int(11) NOT NULL, `date` int(11) NOT NULL, PRIMARY KEY (`guid`,`criteria`) - ) ENGINE=MyISAM DEFAULT CHARSET=latin1; + ) ENGINE=MyISAM DEFAULT CHARSET=utf8;