Skip to content

Instantly share code, notes, and snippets.

@trumpetx
Last active May 29, 2022 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save trumpetx/fd4000445aa4061e7c4c2956c44c1921 to your computer and use it in GitHub Desktop.
Save trumpetx/fd4000445aa4061e7c4c2956c44c1921 to your computer and use it in GitHub Desktop.
2022 AzerothCoreMall.sql
/*
-- ############################################################################################################# --
-- /\
-- / \ AzerothCore Mall
-- / \
-- /______\ * Kris (grandmst20) - 6/10/10 - TrinityCore Triforce Mall v3.7
-- /\ /\ * Rownan 5/11/17 - 19 Twink Vendors
-- / \ / \ * SygianTheBest - 11/29/17 - MANY Fixes and additions AzerothCore Mall
-- / \ / \ * TrumpetX - 5/26/22 - DB Schema Updates to match modern AzerothCore, Fixed Class/Flight/Weapon Trainers
-- /______\/______\
--
-- ############################################################################################################# --
--
-- All NPCs are spawned on GMIsland (.tele gmisland)
-- Custom NPC Groups Spawned:
-- - Gem Vendors (Moonglade)
-- - Glyph Vendors (Undercity)
--
-- ############################################################################################################# --
--
-- Custom Vendor ID Range - 601000 - 601029
-- Vendor ID Range - 601500 - 601703
-- Trainer ID Range - 60151 - 60172
--
-- ############################################################################################################# --
--
-- TODO: FIX GLOBAL TRAINER TRAINER
--
-- ############################################################################################################# --
*/
USE acore_world;
-- ######################################################--
-- LEAVE NO TRACE
-- ######################################################--
-- NPC
DELETE FROM creature WHERE guid >= 601500 AND guid <= 601704;
DELETE FROM creature_template WHERE entry >= 601500 AND entry <= 601703;
DELETE FROM creature_template WHERE entry >= 60151 AND entry <= 60176;
-- Items/Spells
DELETE FROM npc_vendor WHERE entry >= 601500 AND entry <= 601703;
DELETE FROM npc_trainer WHERE ID >= 60151 AND ID <= 60176;
-- Gossip Options
DELETE FROM npc_text WHERE ID BETWEEN 65000 AND 65001;
DELETE FROM gossip_menu WHERE MenuID BETWEEN 65015 AND 65024;
DELETE FROM gossip_menu_option WHERE MenuID BETWEEN 65015 AND 65024;
DELETE FROM conditions WHERE SourceGroup BETWEEN 65015 AND 65024;
-- Teleporters
DELETE FROM gameobject WHERE guid BETWEEN 500000 AND 500002;
-- Training Dummies
DELETE FROM gameobject WHERE guid BETWEEN 500010 AND 500020;
-- NPC Equipped
DELETE FROM `creature_equip_template` WHERE `CreatureID`=601524 AND `ID`=1; --
INSERT INTO `creature_equip_template` VALUES (601524, 1, 1906, 0, 0, 18019); -- Torch, None
DELETE FROM `creature_equip_template` WHERE `CreatureID`=601518 AND `ID`=1; -- Cloth Goods
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `ItemID2`, `ItemID3`, `VerifiedBuild`) VALUES (601518, 1, 5277, 0, 0, 18019); -- Staff
DELETE FROM `creature_equip_template` WHERE `CreatureID`=601528 AND `ID`=1; -- Elemental Goods
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `ItemID2`, `ItemID3`, `VerifiedBuild`) VALUES (601528, 1, 12322, 0, 0, 18019); -- Staff
DELETE FROM `creature_equip_template` WHERE `CreatureID`=601560 AND `ID`=1; -- Metal/Stone Goods
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `ItemID2`, `ItemID3`, `VerifiedBuild`) VALUES (601560, 1, 5532, 0, 0, 18019); -- Poker
-- ######################################################--
-- MALL VENDORS
-- ######################################################--
INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`,`KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`,`subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`,`npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `DamageModifier`, `baseattacktime`, `unit_class`,`unit_flags`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`,`trainer_class`, `trainer_race`,`type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `PetSpellDataId`,`VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`,`HealthModifier`, `ManaModifier`, `ArmorModifier`, `RacialLeader`, `movementId`,`RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`)
VALUES ('601500','0','0','0','0','0','18239','0','0','0','Alchemy','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601501','0','0','0','0','0','18239','0','0','0','Amulets','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601502','0','0','0','0','0','18239','0','0','0','Arena Season 1','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601503','0','0','0','0','0','18239','0','0','0','Arena Season 2','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601504','0','0','0','0','0','18239','0','0','0','Arena Season 3','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601505','0','0','0','0','0','18239','0','0','0','Arena Season 4','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601506','0','0','0','0','0','18239','0','0','0','Arena Season 5 (Deadly Gladiator)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601507','0','0','0','0','0','18239','0','0','0','Arena Season 5 (Hateful Gladiator)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601508','0','0','0','0','0','18239','0','0','0','Arena Season 5 (Savage Gladiator)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601509','0','0','0','0','0','18239','0','0','0','Arena Season 6','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601510','0','0','0','0','0','18239','0','0','0','Arena Season 7','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601511','0','0','0','0','0','18239','0','0','0','Armor Tokens','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601512','0','0','0','0','0','18239','0','0','0','Bandages','Consumables',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601513','0','0','0','0','0','18239','0','0','0','Blacksmithing','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601514','0','0','0','0','0','19193','0','0','0','Azuria','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601515','0','0','0','0','0','18239','0','0','0','Books','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601516','0','0','0','0','0','18239','0','0','0','Bows','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601517','0','0','0','0','0','18239','0','0','0','Cloaks','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601518','0','0','0','0','0','6060','0','0','0','Rezzaka','Cloth Goods',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601519','0','0','0','0','0','18239','0','0','0','Commendations','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601520','0','0','0','0','0','18239','0','0','0','Containers','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601521','0','0','0','0','0','18239','0','0','0','Cooking','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601522','0','0','0','0','0','18239','0','0','0','Crafting','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601523','0','0','0','0','0','18239','0','0','0','Crossbows','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601524','0','0','0','0','0','28900','0','0','0','Trump','Currency Exchange',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601525','0','0','0','0','0','18239','0','0','0','Daggers','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601526','0','0','0','0','0','18239','0','0','0','Deathius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601527','0','0','0','0','0','18239','0','0','0','Druidius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601528','0','0','0','0','0','8356','0','0','0','Palatki','Elemental Goods',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601529','0','0','0','0','0','18239','0','0','0','Elixirs','Consumables',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601530','0','0','0','0','0','18239','0','0','0','Enchanting','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601531','0','0','0','0','0','18239','0','0','0','Enchanting','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601532','0','0','0','0','0','18239','0','0','0','Engineering','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601533','0','0','0','0','0','18239','0','0','0','Epic Mounts','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601534','0','0','0','0','0','18239','0','0','0','First Aid','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601535','0','0','0','0','0','18239','0','0','0','Fishing','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601536','0','0','0','0','0','18239','0','0','0','Fishing Poles','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601537','0','0','0','0','0','18239','0','0','0','Fist Weapons','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601538','0','0','0','0','0','18239','0','0','0','Flasks','Consumables',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601539','0','0','0','0','0','18239','0','0','0','Flying Mounts','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601540','0','0','0','0','0','18239','0','0','0','Gems','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601541','0','0','0','0','0','2200','0','0','0','Trailia','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601542','0','0','0','0','0','18239','0','0','0','Guns','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601543','0','0','0','0','0','18239','0','0','0','Herbs','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601544','0','0','0','0','0','18239','0','0','0','Hierlooms','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601545','0','0','0','0','0','18239','0','0','0','Hierlooms','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601546','0','0','0','0','0','18239','0','0','0','Hunterius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601547','0','0','0','0','0','18239','0','0','0','Inscription','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601548','0','0','0','0','0','18239','0','0','0','Inscription','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601549','0','0','0','0','0','18239','0','0','0','Item Enhancements (Permanent)','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601550','0','0','0','0','0','18239','0','0','0','Item Enhancements (Temporary)','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601551','0','0','0','0','0','18239','0','0','0','Jewelcrafting','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601552','0','0','0','0','0','18239','0','0','0','Jewelcrafting','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601553','0','0','0','0','0','18239','0','0','0','Keys','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601554','0','0','0','0','0','18239','0','0','0','Leather','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601555','0','0','0','0','0','18239','0','0','0','Leatherworking','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601556','0','0','0','0','0','18239','0','0','0','Legendary','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601557','0','0','0','0','0','18239','0','0','0','Magius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601558','0','0','0','0','0','18239','0','0','0','Cooking','Trade Goods',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601559','0','0','0','0','0','7274','0','0','0','Metaria','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601560','0','0','0','0','0','1313','0','0','0','Tovar','Metal & Stone Goods',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601561','0','0','0','0','0','18239','0','0','0','Mining','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601562','0','0','0','0','0','18239','0','0','0','Mounts','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601563','0','0','0','0','0','18239','0','0','0','Off-Hand','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601564','0','0','0','0','0','18239','0','0','0','One-Handed Axes','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601565','0','0','0','0','0','18239','0','0','0','One-Handed Maces','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601566','0','0','0','0','0','18239','0','0','0','One-Handed Swords','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601567','0','0','0','0','0','16797','0','0','0','Emberia','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601568','0','0','0','0','0','18239','0','0','0','Paladius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601569','0','0','0','0','0','18239','0','0','0','Pets','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601570','0','0','0','0','0','18239','0','0','0','Polearms','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601571','0','0','0','0','0','16694','0','0','0','Prismia','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601572','0','0','0','0','0','18239','0','0','0','Projectiles','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601573','0','0','0','0','0','14615','0','0','0','Starria','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601574','0','0','0','0','0','18239','0','0','0','Quivers','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601575','0','0','0','0','0','18239','0','0','0','Raid Tier 1','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601576','0','0','0','0','0','18239','0','0','0','Raid Tier 2','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601577','0','0','0','0','0','18239','0','0','0','Raid Tier 3','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601578','0','0','0','0','0','18239','0','0','0','Raid Tier 4','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601579','0','0','0','0','0','18239','0','0','0','Raid Tier 5','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601580','0','0','0','0','0','18239','0','0','0','Raid Tier 6','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601581','0','0','0','0','0','18239','0','0','0','Raid Tier 7','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601582','0','0','0','0','0','18239','0','0','0','Raid Tier 7.5','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601583','0','0','0','0','0','18239','0','0','0','Raid Tier 8','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601584','0','0','0','0','0','18239','0','0','0','Raid Tier 8.5','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601585','0','0','0','0','0','18239','0','0','0','Raid Tier 9 (Alliance)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601586','0','0','0','0','0','18239','0','0','0','Raid Tier 9.5 (Alliance)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601587','0','0','0','0','0','18239','0','0','0','Raid Tier 9.5 (Alliance-Heroic)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601588','0','0','0','0','0','18239','0','0','0','Raid Tier 10','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601589','0','0','0','0','0','18239','0','0','0','Raid Tier 10.5','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601590','0','0','0','0','0','18239','0','0','0','Raid Tier 10.5 (Heroic)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601591','0','0','0','0','0','18239','0','0','0','Reagents','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601592','0','0','0','0','0','16799','0','0','0','Crimsonia','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601593','0','0','0','0','0','18239','0','0','0','Relics','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601594','0','0','0','0','0','18239','0','0','0','Rings','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601595','0','0','0','0','0','18239','0','0','0','Rogius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601596','0','0','0','0','0','18239','0','0','0','Scrolls','Consumables',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601597','0','0','0','0','0','18239','0','0','0','Shamanius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601598','0','0','0','0','0','18239','0','0','0','Shields','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601599','0','0','0','0','0','18239','0','0','0','Shirts','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601600','0','0','0','0','0','18239','0','0','0','Staves','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601601','0','0','0','0','0','18239','0','0','0','Tabards','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601602','0','0','0','0','0','18239','0','0','0','Tailoring','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601603','0','0','0','0','0','18239','0','0','0','Blizzard Collectables','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601604','0','0','0','0','0','18239','0','0','0','Thrown','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601605','0','0','0','0','0','18239','0','0','0','Trinkets','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601606','0','0','0','0','0','18239','0','0','0','Two-Handed Axes','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601607','0','0','0','0','0','18239','0','0','0','Two-Handed Maces','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601608','0','0','0','0','0','18239','0','0','0','Two-Handed Swords','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601609','0','0','0','0','0','18239','0','0','0','Wands','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601610','0','0','0','0','0','18239','0','0','0','Warloius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601611','0','0','0','0','0','18239','0','0','0','Warrius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601612','0','0','0','0','0','11048','0','0','0','Sunfloria','Gemstones',NULL,'0','80','80','0','35','4225','1','1.14286','1.0','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601613','0','0','0','0','0','18239','0','0','0','Priestius','Glyphs',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','0','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601614','0','0','0','0','0','18239','0','0','0','Arena Season 8','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601615','0','0','0','0','0','18239','0','0','0','PvP Accessories','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601616','0','0','0','0','0','18239','0','0','0','Arena Season 1','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601617','0','0','0','0','0','18239','0','0','0','Arena Season 2','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601618','0','0','0','0','0','18239','0','0','0','Arena Season 3','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601619','0','0','0','0','0','18239','0','0','0','Arena Season 4','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601620','0','0','0','0','0','18239','0','0','0','Arena Season 5','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601621','0','0','0','0','0','18239','0','0','0','Arena Season 6','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601622','0','0','0','0','0','18239','0','0','0','Arena Season 7','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601623','0','0','0','0','0','18239','0','0','0','Arena Season 8','Weapons',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601624','0','0','0','0','0','18239','0','0','0','Rings II','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601625','0','0','0','0','0','18239','0','0','0','Blacksmithing II','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601626','0','0','0','0','0','18239','0','0','0','Enchanting II','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601627','0','0','0','0','0','18239','0','0','0','Tailoring II','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601628','0','0','0','0','0','18239','0','0','0','Leatherworking II','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601629','0','0','0','0','0','18239','0','0','0','Leatherworking III','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601630','0','0','0','0','0','18239','0','0','0','Jewelcrafting II','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601631','0','0','0','0','0','18239','0','0','0','Jewelcrafting III','Recipes',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601632','0','0','0','0','0','18239','0','0','0','Raid Tier 9 (Horde)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601633','0','0','0','0','0','18239','0','0','0','Raid Tier 9.5 (Horde)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601634','0','0','0','0','0','18239','0','0','0','Raid Tier 9.5 (Horde-Heroic)','Item Sets',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601635','0','0','0','0','0','18239','0','0','0','Potions','Consumables',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601636','0','0','0','0','0','18239','0','0','0','Weapon Enchant Scrolls','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601637','0','0','0','0','0','18239','0','0','0','Armor Enchant Scrolls','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601638','0','0','0','0','0','18239','0','0','0','Armor Enchant Scrolls II','Miscellaneous',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601639','0','0','0','0','0','18239','0','0','0','Boots','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601640','0','0','0','0','0','18239','0','0','0','Boots II','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601641','0','0','0','0','0','18239','0','0','0','Belts','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601642','0','0','0','0','0','18239','0','0','0','Belts II','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601643','0','0','0','0','0','18239','0','0','0','Bracers','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601644','0','0','0','0','0','18239','0','0','0','Bracers II','Armor',NULL,'0','80','80','0','35','4225','1','1.14286','0.25','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601645','0','0','0','0','0','30721','0','0','0','Blizzard','Blizzard Entertainment',NULL,'0','80','80','0','35','4225','1','1.14286','0.75','3','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1');
-- ######################################################--
-- PROFESSION TRAINERS
-- ######################################################--
SET
@Entry := 60151,
@Model := 18239, -- Epic Mage
@Name := "Alchemy",
@Title := "Grandmaster Trainer",
@Icon := "Trainer",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 81, -- Gossip + Profession Trainer (1+16+32)
@UnitFlags := 4608,
@UnitFlags2 := 2048,
@Scale := 0.25,
@Rank := 1, -- Elite
@Type := 7, -- Humanoid
@TypeFlags := 0,
@TrainerType := 2, -- Profession Trainer
@TrainerSpell := 0,
@TrainerClass := 0,
@TrainerRace := 0,
@FlagsExtra := 2,
@AIName := "",
@Script := "",
@VerifiedBuild := "12340";
-- Alchemy
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Blacksmithing
SET
@Entry := @Entry + 1,
@Name := "Blacksmithing";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Enchanting
SET
@Entry := @Entry + 1,
@Name := "Enchanting";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Engineering
SET
@Entry := @Entry + 1,
@Name := "Engineering";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Herbalism
SET
@Entry := @Entry + 1,
@Name := "Herbalism";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Inscription
SET
@Entry := @Entry + 1,
@Name := "Inscription";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Jewelcrafting
SET
@Entry := @Entry + 1,
@Name := "Jewelcrafting";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Leatherworking
SET
@Entry := @Entry + 1,
@Name := "Leatherworking";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Mining
SET
@Entry := @Entry + 1,
@Name := "Mining";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Skinning
SET
@Entry := @Entry + 1,
@Name := "Skinning";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Tailoring
SET
@Entry := @Entry + 1,
@Name := "Tailoring";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Cooking
SET
@Entry := @Entry + 1,
@Name := "Cooking";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- First Aid
SET
@Entry := @Entry + 1,
@Name := "First Aid";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Fishing
SET
@Entry := @Entry + 1,
@Name := "Fishing";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Weapon Master
SET
@Entry := @WeaponMasterEntry := @Entry + 1,
@Name := "Weapon Master",
@TrainerClass := 1,
@Title := "Global Trainer";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Flight Instructor
SET
@Entry := @FlightEntry := @Entry + 1,
@TrainerClass := 0,
@TrainerType := 1,
@Name := "Flight Instructor";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- ######################################################--
-- CLASS TRAINERS
-- ######################################################--
-- Deathknight
SET
@Entry := @DeathknightEntry := @Entry + 1,
@Name := "Death Knight",
@GossipMenu := 65015,
@TrainerType := 0,
@TrainerClass := 6,
@NPCFlag := 49, -- Gossip + Class Trainer (1+16+32)
@Title := "Class Trainer";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Druid
SET
@Entry := @DruidEntry := @Entry + 1,
@TrainerClass := 11,
@GossipMenu := 65016,
@Name := "Druid";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Hunter
SET
@Entry := @HunterEntry := @Entry + 1,
@TrainerClass := 3,
@GossipMenu := 65017,
@Name := "Hunter";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Mage
SET
@Entry := @MageEntry := @Entry + 1,
@TrainerClass := 8,
@GossipMenu := 65018,
@Name := "Mage";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Paladin
SET
@Entry := @PaladinEntry := @Entry + 1,
@TrainerClass := 2,
@GossipMenu := 65019,
@Name := "Paladin";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Priest
SET
@Entry := @PriestEntry := @Entry + 1,
@TrainerClass := 5,
@GossipMenu := 65020,
@Name := "Priest";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Rogue
SET
@Entry := @RogueEntry := @Entry + 1,
@TrainerClass := 4,
@GossipMenu := 65021,
@Name := "Rogue";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race, RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES (@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Shaman
SET
@Entry := @ShamanEntry := @Entry + 1,
@TrainerClass := 7,
@GossipMenu := 65022,
@Name := "Shaman";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Warlock
SET
@Entry := @WarlockEntry := @Entry + 1,
@TrainerClass := 9,
@GossipMenu := 65023,
@Name := "Warlock";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- Warrior
SET
@Entry := @WarriorEntry := @Entry + 1,
@TrainerClass := 1,
@GossipMenu := 65024,
@Name := "Warrior";
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, unit_flags2, type, type_flags, trainer_type, trainer_spell, trainer_class, trainer_race,RegenHealth, flags_extra, AiName, ScriptName, VerifiedBuild)
VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, @UnitFlags, @UnitFlags2, @Type, @TypeFlags, @TrainerType, @TrainerSpell, @TrainerClass, @TrainerRace, 1, @FlagsExtra, @AIName, @Script, @VerifiedBuild);
-- ######################################################--
-- EXOTIC PET VENDOR - 601000
-- ######################################################--
SET
@Entry := 601000,
@Model := 23812, -- Male Lumberjack
@Name := "Grizzly Adams",
@Title := "Exotic Pets",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 2714, 0, 0, 18019); -- Lantern, None
-- NPC ITEMS
DELETE FROM `npc_vendor` WHERE `entry` = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,8494), -- Parrot Cage Hyacinth Macaw
(@Entry,10822), -- Dark Whelpling
(@Entry,8498), -- Tiny Emerald Whelpling
(@Entry,8499), -- Tiny Crimson Whelpling
(@Entry,34535), -- Azure Whelpling
(@Entry,49362), -- Onyxian Whelpling
(@Entry,10398), -- Mechanical Chicken
(@Entry,11023), -- Ancona Chicken
(@Entry,11110), -- Chicken Egg
(@Entry,11474), -- Sprite Darter Egg
(@Entry,11825), -- Pet Bombling
(@Entry,11826), -- Lil' Smoky
(@Entry,11903), -- Cat Carrier Corrupted Kitten
(@Entry,12264), -- Worg Carrier
(@Entry,12529), -- Smolderweb Carrier
(@Entry,13582), -- Zergling Leash
(@Entry,13583), -- Panda Collar
(@Entry,13584), -- Diablo Stone
(@Entry,15996), -- Lifelike Mechanical Toad
(@Entry,18964), -- Turtle Egg Loggerhead
(@Entry,19054), -- Red Dragon Orb
(@Entry,19055), -- Green Dragon Orb
-- (@Entry,19450), -- A Jubling's Tiny Home
(@Entry,19462), -- Unhatched Jubling Egg
(@Entry,20371), -- Blue Murloc Egg
(@Entry,20651), -- Orange Murloc Egg
(@Entry,20769), -- Disgusting Oozeling
(@Entry,21168), -- Baby Shark
(@Entry,21277), -- Tranquil Mechanical Yeti
(@Entry,21301), -- Green Helper Box
(@Entry,21305), -- Red Helper Box
(@Entry,21308), -- Jingling Bell
(@Entry,21309), -- Snowman Kit
(@Entry,22114), -- Pink Murloc Egg
-- (@Entry,22200), -- Silver Shafted Arrow
(@Entry,22235), -- Truesilver Shafted Arrow
(@Entry,22780), -- White Murloc Egg
(@Entry,22781), -- Polar Bear Collar
(@Entry,23002), -- Turtle Box
(@Entry,23007), -- Piglet's Collar
(@Entry,23015), -- Rat Cage
(@Entry,23083), -- Captured Flame
(@Entry,23712), -- White Tiger Cub
(@Entry,23713), -- Hippogryph Hatchling
(@Entry,25535), -- Netherwhelp's Collar
(@Entry,27445), -- Magical Crawdad Box
(@Entry,29363), -- Mana Wyrmling
(@Entry,29953), -- Golden Dragonhawk Hatchling
(@Entry,29956), -- Red Dragonhawk Hatchling
(@Entry,29957), -- Silver Dragonhawk Hatchling
(@Entry,29958), -- Blue Dragonhawk Hatchling
(@Entry,29960), -- Captured Firefly
(@Entry,30360), -- Lurky's Egg
(@Entry,31760), -- Miniwing
(@Entry,32233), -- Wolpertinger's Tankard
-- (@Entry,32465), -- Fortune Coin
(@Entry,32498), -- Fortune Coin
(@Entry,32588), -- Banana Charm
(@Entry,32616), -- Egbert's Egg
(@Entry,32617), -- Sleepy Willy
(@Entry,32622), -- Elekk Training Collar
(@Entry,33154), -- Sinister Squashling
(@Entry,33816), -- Toothy's Bucket
(@Entry,33818), -- Muckbreath's Bucket
(@Entry,33993), -- Mojo
(@Entry,34425), -- Clockwork Rocket Bot
(@Entry,34478), -- Tiny Sporebat
(@Entry,34492), -- Rocket Chicken
(@Entry,34493), -- Dragon Kite
(@Entry,34518), -- Golden Pig Coin
(@Entry,34519), -- Silver Pig Coin
(@Entry,34955), -- Scorched Stone
(@Entry,46396), -- Wolvar Orphan Whistle
(@Entry,46397), -- Oracle Orphan Whistle
(@Entry,35349), -- Snarly's Bucket
(@Entry,35350), -- Chuck's Bucket
(@Entry,35504), -- Phoenix Hatchling
(@Entry,37297), -- Gold Medallion
(@Entry,37298), -- Competitor's Souvenir
(@Entry,38050), -- Soul-Trader Beacon
(@Entry,38628), -- Nether Ray Fry
(@Entry,38658), -- Vampiric Batling
(@Entry,39148), -- Baby Coralshell Turtle
(@Entry,39286), -- Frosty's Collar
(@Entry,39656), -- Tyrael's Hilt
(@Entry,39973), -- Ghostly Skull
(@Entry,40653), -- Reeking Pet Carrier
(@Entry,41133), -- Unhatched Mr. Chilly
(@Entry,43517), -- Penguin Egg
(@Entry,43698), -- Giant Sewer Rat
(@Entry,44721), -- Proto-Drake Whelp
(@Entry,44723), -- Nurtured Penguin Egg
(@Entry,44738), -- Kirin Tor Familiar
(@Entry,44794), -- Spring Rabbit's Foot
(@Entry,44810), -- Turkey Cage
(@Entry,44819), -- Baby Blizzard Bear
(@Entry,44822), -- Albino Snake
(@Entry,44841), -- Little Fawn's Salt Lick
(@Entry,44965), -- Teldrassil Sproutling
(@Entry,44970), -- Dun Morogh Cub
(@Entry,44971), -- Tirisfal Batling
(@Entry,44972), -- Alarming Clockbot NOT IN USE
(@Entry,44973), -- Durotar Scorpion
(@Entry,44974), -- Elwynn Lamb
(@Entry,44980), -- Mulgore Hatchling
(@Entry,44982), -- Enchanted Broom
(@Entry,44983), -- Strand Crawler
(@Entry,44984), -- Ammen Vale Lashling
(@Entry,44998), -- Argent Squire
(@Entry,45002), -- Mechanopeep
(@Entry,45022), -- Argent Gruntling
-- (@Entry,45180), -- Murkimus' Little Spear
(@Entry,45606), -- Sen'jin Fetish
(@Entry,45942), -- XS-001 Constructor Bot
(@Entry,46544), -- Curious Wolvar Pup
(@Entry,46545), -- Curious Oracle Hatchling
(@Entry,46707), -- Pint-Sized Pink Pachyderm
(@Entry,46767), -- Warbot Ignition Key
(@Entry,46802), -- Heavy Murloc Egg
(@Entry,46820), -- Shimmering Wyrmling
-- (@Entry,46821), -- Shimmering Wyrmling
-- (@Entry,46831), -- Macabre Marionette
(@Entry,48112), -- Darting Hatchling
(@Entry,48114), -- Deviate Hatchling
(@Entry,48116), -- Gundrak Hatchling
(@Entry,48118), -- Leaping Hatchling
(@Entry,48120), -- Obsidian Hatchling
(@Entry,48122), -- Ravasaur Hatchling
(@Entry,48124), -- Razormaw Hatchling
(@Entry,48126), -- Razzashi Hatchling
(@Entry,48527), -- Enchanted Onyx
(@Entry,49287), -- Tuskarr Kite
(@Entry,46892), -- Murkimus' Tiny Spear
(@Entry,49343), -- Spectral Tiger Cub
(@Entry,49646), -- Core Hound Pup
(@Entry,49662), -- Gryphon Hatchling
(@Entry,49663), -- Wind Rider Cub
(@Entry,49665), -- Pandaren Monk
(@Entry,49693), -- Lil' Phylactery
(@Entry,49912), -- Perky Pug
(@Entry,50446), -- Toxic Wasteling
(@Entry,53641), -- Ice Chip
(@Entry,54436), -- Blue Clockwork Rocket Bot
(@Entry,54810), -- Celestial Dragon
(@Entry,54847), -- Lil' XT
-- (@Entry,54857), -- Murkimus' Little Spear
(@Entry,56806); -- Mini Thor
-- ######################################################--
-- PET VENDOR - 601001
-- ######################################################--
SET
@Entry := 601001,
@Model := 23814, -- Female Lumberjack
@Name := "Petra O\'Shea",
@Title := "Pets & Supplies",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 2714, 0, 0, 18019); -- Lantern, None
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,8485), -- Cat Carrier Bombay
(@Entry,8486), -- Cat Carrier Cornish Rex
(@Entry,8487), -- Cat Carrier Orange Tabby
(@Entry,8488), -- Cat Carrier Silver Tabby
(@Entry,8489), -- Cat Carrier White Kitten
(@Entry,8490), -- Cat Carrier Siamese
(@Entry,8491), -- Cat Carrier Black Tabby
(@Entry,46398), -- Calico Cat
(@Entry,8492), -- Parrot Cage Green Wing Macaw
(@Entry,8495), -- Parrot Cage Senegal
(@Entry,8496), -- Parrot Cage Cockatiel
(@Entry,8497), -- Rabbit Crate Snowshoe
(@Entry,8500), -- Great Horned Owl
(@Entry,8501), -- Hawk Owl
(@Entry,10360), -- Black Kingsnake
(@Entry,10361), -- Brown Snake
(@Entry,10392), -- Crimson Snake
(@Entry,39898), -- Cobra Hatchling
(@Entry,10393), -- Cockroach
(@Entry,10394), -- Prairie Dog Whistle
(@Entry,11026), -- Tree Frog Box
(@Entry,11027), -- Wood Frog Box
(@Entry,29364), -- Brown Rabbit Crate
(@Entry,29901), -- Blue Moth Egg
(@Entry,29902), -- Red Moth Egg
(@Entry,29903), -- Yellow Moth Egg
(@Entry,29904), -- White Moth Egg
(@Entry,39896), -- Tickbird Hatchling
(@Entry,39899), -- White Tickbird Hatchling
(@Entry,4401), -- Mechanical Squirrel Box
(@Entry,44820), -- Red Ribbon Pet Leash
(@Entry,37460), -- Rope Pet Leash
(@Entry,43626), -- Happy Pet Snack
(@Entry,35223), -- Papa Hummel's Old Fashioned Pet Buscuit
(@Entry,47541), -- Argent Pony Bridle
(@Entry,37431), -- Fetch Ball
(@Entry,43004), -- Critter Bites
(@Entry,43352); -- Pet Grooming Kit
-- ######################################################--
-- FOOD VENDOR - 601002
-- ######################################################--
SET
@Entry := 601002,
@Model := 16302, -- Orc Cook
@Name := "Chef Gruul",
@Title := "Exotic Foods",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 2827, 3351, 0, 18019); -- Meat Cleaver, Rolling Pin
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry, 21023), -- Dirge's Kickin' Chimaerok Chops
(@Entry, 21024), -- Chimaerok Tenderloin
(@Entry, 34753), -- Great Feast
(@Entry, 6358), -- Oily Blackmouth
(@Entry, 6522), -- Deviate Fish
(@Entry, 43015), -- Fish Feast
(@Entry, 43478), -- Giant Feast
(@Entry, 46887), -- Bountiful Feast
(@Entry, 43086),
(@Entry, 45932),
(@Entry, 45279),
(@Entry, 44049),
(@Entry, 44071),
(@Entry, 44072),
(@Entry, 44607),
(@Entry, 44722),
(@Entry, 44940),
(@Entry, 33444),
(@Entry, 34769),
(@Entry, 34768),
(@Entry, 35950),
(@Entry, 34764),
(@Entry, 34767),
(@Entry, 34765),
(@Entry, 35948),
(@Entry, 34766),
(@Entry, 35951),
(@Entry, 35947),
(@Entry, 35952),
(@Entry, 38706),
(@Entry, 38698),
(@Entry, 43490),
(@Entry, 41729),
(@Entry, 39520),
(@Entry, 40202),
(@Entry, 43491),
(@Entry, 43492),
(@Entry, 41731),
(@Entry, 42429),
(@Entry, 42778),
(@Entry, 42431),
(@Entry, 42779),
(@Entry, 42777),
(@Entry, 42942),
(@Entry, 42993),
(@Entry, 42994),
(@Entry, 42995),
(@Entry, 42998),
(@Entry, 42996),
(@Entry, 42997),
(@Entry, 43480),
(@Entry, 43488),
(@Entry, 43268),
(@Entry, 43236),
(@Entry, 42999),
(@Entry, 43000),
(@Entry, 43001),
(@Entry, 43005),
(@Entry, 43004),
(@Entry, 34748),
(@Entry, 33445),
(@Entry, 34749),
(@Entry, 34747),
(@Entry, 34751),
(@Entry, 34752),
(@Entry, 34750),
(@Entry, 34754),
(@Entry, 34755),
(@Entry, 34757),
(@Entry, 34756),
(@Entry, 34758),
(@Entry, 34762),
(@Entry, 34759),
(@Entry, 34760),
(@Entry, 44941),
(@Entry, 44953),
(@Entry, 34761),
(@Entry, 34763);
-- ######################################################--
-- POTION VENDOR - 601004
-- ######################################################--
SET
@Entry := 601004,
@Model := 16182, -- Elven Wine Seller
@Name := "Glenfiddich Macallan",
@Title := "Potions",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 13612, 0, 0, 18019);
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,8529), -- NoggenFogger Elixer
(@Entry, 44958), -- Ethereal Oil
(@Entry, 43572), -- Magic Eater
(@Entry, 40195), -- Pygmy Oil
(@Entry, 35720), -- Lord of Frost's Private Label
(@Entry,21721), -- Moonglow
(@Entry,12820), -- Winterfall Firewater
(@Entry,'118'),
(@Entry,'858'),
(@Entry,'929'),
(@Entry,'1710'),
(@Entry,'2455'),
(@Entry,'2456'),
(@Entry,'2459'),
(@Entry,'2633'),
(@Entry,'3087'),
(@Entry,'3384'),
(@Entry,'3385'),
(@Entry,'3386'),
(@Entry,'3387'),
(@Entry,'3823'),
(@Entry,'3827'),
(@Entry,'3928'),
(@Entry,'4596'),
(@Entry,'4623'),
(@Entry,'5631'),
(@Entry,'5632'),
(@Entry,'5633'),
(@Entry,'5634'),
(@Entry,'5816'),
(@Entry,'6048'),
(@Entry,'6049'),
(@Entry,'6050'),
(@Entry,'6051'),
(@Entry,'6052'),
(@Entry,'6149'),
(@Entry,'6372'),
(@Entry,'9030'),
(@Entry,'9036'),
(@Entry,'9144'),
(@Entry,'9172'),
(@Entry,'12190'),
(@Entry,'13442'),
(@Entry,'13443'),
(@Entry,'13444'),
(@Entry,'13446'),
(@Entry,'13455'),
(@Entry,'13456'),
(@Entry,'13457'),
(@Entry,'13458'),
(@Entry,'13459'),
(@Entry,'13460'),
(@Entry,'13461'),
(@Entry,'13462'),
(@Entry,'17348'),
(@Entry,'17349'),
(@Entry,'17351'),
(@Entry,'17352'),
(@Entry,'18253'),
(@Entry,'18839'),
(@Entry,'18841'),
(@Entry,'20002'),
(@Entry,'20008'),
(@Entry,'22826'),
(@Entry,'22828'),
(@Entry,'22829'),
(@Entry,'22832'),
(@Entry,'22836'),
(@Entry,'22837'),
(@Entry,'22838'),
(@Entry,'22839'),
(@Entry,'22841'),
(@Entry,'22842'),
(@Entry,'22844'),
(@Entry,'22845'),
(@Entry,'22846'),
(@Entry,'22847'),
(@Entry,'22849'),
(@Entry,'22850'),
(@Entry,'22871'),
(@Entry,'23578'),
(@Entry,'23579'),
(@Entry,'23822'),
(@Entry,'23823'),
(@Entry,'28100'),
(@Entry,'28101'),
(@Entry,'31676'),
(@Entry,'31677'),
(@Entry,'31838'),
-- (@Entry,'31839'),
-- (@Entry,'31840'),
-- (@Entry,'31841'),
-- (@Entry,'31852'),
-- (@Entry,'31853'),
-- (@Entry,'31854'),
-- (@Entry,'31855'),
(@Entry,'32762'),
(@Entry,'32763'),
-- (@Entry,'32783'),
-- (@Entry,'32784'),
(@Entry,'32840'),
(@Entry,'32844'),
(@Entry,'32845'),
(@Entry,'32846'),
(@Entry,'32847'),
-- (@Entry,'32902'),
-- (@Entry,'32903'),
-- (@Entry,'32904'),
-- (@Entry,'32905'),
-- (@Entry,'32909'),
-- (@Entry,'32910'),
(@Entry,'32947'),
(@Entry,'32948'),
(@Entry,'33092'),
(@Entry,'33093'),
(@Entry,'33447'),
(@Entry,'33448'),
(@Entry,'33934'),
(@Entry,'33935'),
(@Entry,'34440'),
-- (@Entry,'36770'),
(@Entry,'38351'),
(@Entry,'39327'),
(@Entry,'39671'),
(@Entry,'40067'),
(@Entry,'40077'),
(@Entry,'40081'),
(@Entry,'40087'),
(@Entry,'40093'),
(@Entry,'40211'),
(@Entry,'40212'),
(@Entry,'40213'),
(@Entry,'40214'),
(@Entry,'40215'),
(@Entry,'40216'),
(@Entry,'40217'),
(@Entry,'41166'),
(@Entry,'42545'),
-- (@Entry,'43530'),
-- (@Entry,'43531'),
(@Entry,'43569'),
(@Entry,'43570'),
(@Entry,'44728'),
(@Entry,'45276'),
(@Entry,'45277');
-- ######################################################--
-- FISHING VENDOR - 601005
-- ######################################################--
SET
@Entry := 601005,
@Model := 3285, -- Fishing Trainer
@Name := "John the Fisherman",
@Title := "Pro Angler",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 45991, 34484, 0, 18019); -- Fishing Pole, Old Ironjaw
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
-- BOOKS
(@Entry,27532), -- Book: Master Fishing
(@Entry,16082), -- Book: Artisan Fishing
(@Entry,16083), -- Book: Expert Fishing
-- ENCHANTS
(@Entry,50816), -- Scroll Enchant Gloves: Angler
(@Entry,50406), -- Formula Enchant Gloves: Angler
(@Entry,38802), -- Enchant Gloves Fishing
-- POTIONS
(@Entry,6372), -- Swim Speed Potion
(@Entry,5996), -- Elixer of Water Breathing
(@Entry,18294), -- Elixer of Greater Water Breathing
(@Entry,8827), -- Elixer of Water Walking
-- SPECIAL
(@Entry,19979), -- Hook of the Master Angler
(@Entry,33223), -- Fishing Chair
-- VANITY
(@Entry,1827), -- Meat Cleaver
(@Entry,2763), -- Fisherman's Knife
-- CLOTHING
(@Entry,7996), -- Worn Fishing Hat
(@Entry,19972), -- Lucky Fishing Hat
(@Entry,3563), -- Seafarer's Pantaloons
(@Entry,7052), -- Azure Silk Belt
(@Entry, 50287),-- Boots of the Bay
(@Entry,19969), -- Nat Pagle's Extreme Anglin' Boots
(@Entry,6263), -- Blue Overalls
(@Entry,3342), -- Captain Sander's Shirt
(@Entry,4509), -- Seawolf Gloves
(@Entry,792), -- Knitted Sandals
(@Entry,33820), -- Weather Beaten Fishing Hat
(@Entry, 7348), -- Fletcher's Gloves
(@Entry, 36019), -- Aerie Belt of Nature Protection
-- POLES
(@Entry,19970), -- Arcanite Fishing Pole
(@Entry,44050), -- Mastercraft Kaluak Fishing Pole
(@Entry,45992), -- Jeweled Fishing Pole
(@Entry,25978), -- Seth's Graphite Fishing Pole
(@Entry,19022), -- Nat Pagle's Extreme Angler FC-5000
(@Entry,45991), -- Bone Fishing Pole
(@Entry,45858), -- Nat's Lucky Fishing Pole
(@Entry,12225), -- Blump Family Fishing Pole
(@Entry,6367), -- Big Iron Fishing Pole
(@Entry,6365), -- Strong Fishing Pole
(@Entry,6366), -- Darkwood Fishing Pole
(@Entry,6256), -- Fishing Pole
-- LINE
(@Entry,34836), -- Trusilver Spun Fishing Line
(@Entry,19971), -- High Test Eternium Fishing Line
-- LURES
(@Entry,34861), -- Sharpened Fishing Hook
(@Entry,46006), -- Glow Worm
(@Entry,6811), -- Aquadynamic Fish Lens
(@Entry,7307), -- Flesh Eating Worm
(@Entry,6533), -- Aquadynamic Fish Attractor
(@Entry,6532), -- Bright Baubles
(@Entry,6530), -- Nightcrawlers
(@Entry,6529), -- Shiny Bauble
-- ANGLIN'
(@Entry,34832), -- Captain Rumsey's Lager
(@Entry,18229); -- Nat Pagle's Guide to Extreme Anglin'
-- ######################################################--
-- ARTIFACT VENDOR - 601006
-- ######################################################--
SET
@Entry := 601006,
@Model := 22340, -- Harrison Jones
@Name := "Harrison Jones",
@Title := "Artifacts",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 1906, 0, 0, 18019); -- Torch, None
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,1973), -- Orb of Deception
(@Entry,2608), -- Threshadon Ambergris
(@Entry,4471), -- Flint and Tinder
(@Entry,4696), -- Lapidis Tankard of Tidesippe
(@Entry,5060), -- Thieves' Tools
(@Entry,5373), -- Lucky Charm
(@Entry,5429), -- A Pretty Rock
(@Entry,5433), -- Rag Doll
(@Entry,5530), -- Blinding Powder
(@Entry,6297), -- Old Skull
(@Entry,8350), -- The 1 Ring
(@Entry,34837), -- The 2 Ring
(@Entry,45859), -- The 5 Ring
(@Entry,9327), -- Security DELTA Data Access Card
(@Entry,11382), -- Blood of the Mountain
(@Entry,11420), -- Elegant Writing Tool
(@Entry,13047), -- Twig of the World Tree
(@Entry,9242), -- Ancient Tablet
(@Entry,18335), -- Pristine Black Diamond
(@Entry,18665), -- The Eye of Shadow
(@Entry,24231), -- Coarse Snuff
(@Entry,29570), -- A Gnome Effigy
(@Entry,29572), -- Aboriginal Carvings
(@Entry,31945), -- Shadow Circuit
(@Entry,39355), -- Haute Club Membership Card
(@Entry,39356), -- Mind-Soothing Bauble
(@Entry,40393), -- Green Sparkly
(@Entry,39351), -- Richly Appointed Pipe
(@Entry,44464), -- Crude Eating Utensils
(@Entry,44678), -- Wine Glass
(@Entry,34826), -- Gold Wedding Band
(@Entry,45994), -- Lost Ring
(@Entry,45995), -- Lost Necklace
(@Entry,9360), -- Cuergo's Gold
(@Entry,11840), -- Master Builder's Shirt
(@Entry,44430), -- Titanium Seal of Dalaran
(@Entry,18401), -- Foror's Compendium of Dragonslaying
(@Entry,9423), -- The Jackhammer
(@Entry,9429), -- Miner's Hat of the Deep
(@Entry,9424), -- Ginn-su sword
(@Entry,9465), -- Digmaster 5000
(@Entry,9427), -- Stonevault Bonebreaker
(@Entry,19865), -- Warblade of Hakkari
(@Entry,19866), -- Warblade of Hakkari
(@Entry,38802), -- Enchant Gloves Fishing
(@Entry,1168), -- Skullflame Shield
(@Entry,19854), -- Zin'rokh, Destroyer of Worlds
(@Entry,4446), -- Blackvenom Blade
(@Entry,35664), -- Unknown Archeologist's Hammer
(@Entry,8226), -- The Butcher
(@Entry,12608), -- Butcher's Apron
(@Entry,23540), -- Felsteel Longblade
(@Entry,1728), -- Teebu's Blazing Longsword
(@Entry,17782), -- Talisman of Binding Shard
(@Entry,14551), -- Edgemaster Handguards
(@Entry,1604), -- Chromatic Sword
(@Entry,18755), -- Xorthian Firestick
(@Entry,9491), -- Hotshot Pilot Gloves
(@Entry,9425), -- Pendulum of Doom
(@Entry,8029), -- Plans: Wicked Mithril Blade
(@Entry,4354), -- Plans: Rich Purple Silk Shirt
-- (@Entry,45087), -- Runed Orb
-- (@Entry,45506), -- Archivum Data Disc
-- (@Entry,43321), -- Crystallized Tear
-- (@Entry,43329), -- Pigtail Holder
-- (@Entry,34057), -- Abyss Crystal
-- (@Entry,37604), -- Tooth Pick
-- (@Entry,27978), -- Soap on a Rope
-- (@Entry,27979), -- Stone of Stupendous Springing Strides
-- (@Entry,19974), -- Mudskunk Lure
-- (@Entry,21536), -- Elune Stone
-- (@Entry,21829), -- Perfume Bottle
-- (@Entry,21833), -- Cologne Bottle
-- (@Entry,11325), -- Dark Iron Ale Mug
(@Entry,46359); -- Velociraptor Skull
-- ######################################################--
-- BOOK VENDOR - 601007
-- ######################################################--
SET
@Entry := 601007,
@Model := 3071, -- Dwarf Female
@Name := "Corma McCarthy",
@Title := "Books",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,11108), -- Faded Photograph
-- (@Entry,700100), -- ***Azerothian Humor Vol. 1
(@Entry,11482), -- Crystal Pylon User's Manual
(@Entry,18228), -- Autographed Picture of Foror & Tigule
(@Entry,18229), -- Nat Pagle's Guide to Extreme Anglin'
(@Entry,18364), -- The Emerald Dream
(@Entry,18365), -- A Thoroughly Read Copy of \"Nat Pagle's Guide to Extreme Anglin'.\"
(@Entry,19483), -- Peeling the Onion
(@Entry,19484), -- The Frostwolf Artichoke
(@Entry,19851), -- Grom's Tribute
(@Entry,20010), -- The Horde's Hellscream
(@Entry,20677), -- Decoded Twilight Text
(@Entry,29571), -- A Steamy Romance Novel
(@Entry,37467), -- A Steamy Romance Novel, Forbidden Love
(@Entry,46023), -- A Steamy Romance Novel, Northern Exposure
(@Entry,54291), -- A Steamy Romance Novel, Blue Moon
(@Entry,39358), -- Give to the Church and the Light Will Provide
(@Entry,39317), -- News From The North
-- (@Entry,32620), -- Time-Lost Scroll
-- (@Entry,36877), -- Folded Letter
(@Entry,39361); -- Turning the Other Cheek
-- ######################################################--
-- HOLIDAY VENDOR - 601008
-- ######################################################--
SET
@Entry := 601008,
@Model := 10815, -- Red Imp
@Name := "Krampus the Grinch",
@Title := "Holiday Supplies",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Type := 7,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,20397), -- Hallowed Wand: Pirate
(@Entry,20398), -- Hallowed Wand: Ninja
(@Entry,20399), -- Hallowed Wand: Leper Gnome
(@Entry,20409), -- Hallowed Wand: Ghost
(@Entry,20410), -- Hallowed Wand: Bat
(@Entry,20411), -- Hallowed Wand: Skeleton
(@Entry,20413), -- Hallowed Wand: Random
(@Entry,20414), -- Hallowed Wand: Wisp
(@Entry,29575), -- A Jack-o'-Lantern
(@Entry,34068), -- Weighted Jack-o'-Lantern
(@Entry,37895), -- Filled Green Brewfest Stein
(@Entry,33019), -- Filled Blue Brewfest Stein
(@Entry,44803), -- Spring Circlet
(@Entry,3419), -- Red Rose
(@Entry,34480), -- Romantic Picnic Basket
(@Entry,21154), -- Festival Dress
(@Entry,17712), -- Winter Veil Disguise Kit
(@Entry,21213), -- Preserved Holly
(@Entry,35557), -- Huge Snowball
(@Entry,17202), -- Snowball
(@Entry,21524), -- Red Winter Hat
(@Entry,21542), -- Festival Suit
(@Entry,34085), -- Red Winter Clothes
(@Entry,34086), -- Winter Boots
(@Entry,34087), -- Green Winter Clothes
(@Entry,34850), -- Midsummer Ground Flower
(@Entry,23323), -- Crown of the Fire Festival
(@Entry,23324), -- Mantle of the Fire Festival
(@Entry,34683), -- Sandals of Summer
(@Entry,34685), -- Vestment of Summer
(@Entry,35280), -- Tabard of Summer Flames
(@Entry,35279), -- Tabard of Summer Skies
(@Entry,34686), -- Brazier of Dancing Flames
(@Entry,42438), -- Lovely Cake
(@Entry,42436); -- Chocolate Celebration Cake
-- ######################################################--
-- TOOL VENDOR - 601009
-- ######################################################--
SET
@Entry := 601009,
@Model := 22270, -- Human Merchant
@Name := "DeWalt Stihl",
@Title := "Tools",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,5507), -- Ornate Spyglass
(@Entry,40772), -- Gnomish Army Knife
(@Entry,45631), -- High-Powered Flashlight
-- (@Entry,46709); -- MiniZep Controller
-- (@Entry,34498), -- Paper Zeppelin Kit
(@Entry,38089), -- Ruby Shades
(@Entry,4384), -- Explosive Sheep
(@Entry,35227); -- Goblin Weather Machine Prototype 01-B
-- ######################################################--
-- CLOTHING VENDOR - 601010
-- ######################################################--
SET
@Entry := 601010,
@Model := 16695, -- Elven Banker
@Name := "Prada Armani",
@Title := "Clothing",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,154), -- Primitive Mantle
(@Entry,2955), -- First Mate Hat
(@Entry,3322), -- Wispy Cloak
(@Entry,3342), -- Captain Sanders' Shirt
(@Entry,4334), -- Formal White Shirt
(@Entry,6125), -- Brawler's Harness
(@Entry,6139), -- Novice's Robe
(@Entry,6263), -- Blue Overalls
(@Entry,6555), -- Bard's Cloak
(@Entry,3427), -- Stylish Black Shirt
(@Entry,7348), -- Fletcher's Gloves
(@Entry,6796), -- Red Swashbuckler's Shirt
(@Entry,6833), -- White Tuxedo Shirt
(@Entry,6835), -- Black Tuxedo Pants
(@Entry,10034), -- Tuxedo Shirt
(@Entry,10035), -- Tuxedo Pants
(@Entry,10036), -- Tuxedo Jacket
(@Entry,18231), -- Sleeveless T-Shirt
(@Entry,19028), -- Elegant Dress
(@Entry,22276), -- Lovely Red Dress
(@Entry,22278), -- Lovely Blue Dress
(@Entry,22279), -- Lovely Black Dress
(@Entry,22280), -- Lovely Purple Dress
(@Entry,10053), -- Simple Black Dress
(@Entry,22282), -- Purple Dinner Suit
(@Entry,33820), -- Weather-Beaten Fishing Hat
(@Entry,38277), -- Haliscan Jacket
(@Entry,41250), -- Green Lumberjack Shirt
(@Entry,38),
(@Entry,45),
(@Entry,49),
(@Entry,53),
(@Entry,127),
(@Entry,148),
(@Entry,859),
(@Entry,20901),
(@Entry,2105),
(@Entry,2575),
(@Entry,2576),
(@Entry,2577),
(@Entry,2579),
(@Entry,2587),
(@Entry,3426),
(@Entry,3428),
(@Entry,4330),
(@Entry,4332),
(@Entry,4333),
(@Entry,4335),
(@Entry,4336),
(@Entry,4344),
(@Entry,5107),
(@Entry,6096),
(@Entry,6097),
(@Entry,6117),
(@Entry,6120),
(@Entry,6134),
(@Entry,6136),
(@Entry,6384),
(@Entry,6385),
(@Entry,6795),
(@Entry,10052),
(@Entry,10054),
(@Entry,10055),
(@Entry,10056),
(@Entry,11840),
(@Entry,14617),
(@Entry,16059),
(@Entry,16060),
(@Entry,17723),
(@Entry,20897),
(@Entry,23345),
(@Entry,23473),
(@Entry,23476),
(@Entry,24143),
(@Entry,41248),
(@Entry,41249),
(@Entry,41251),
(@Entry,41252),
(@Entry,41253),
(@Entry,41254),
(@Entry,41255),
(@Entry,42360),
(@Entry,42361),
(@Entry,42363),
(@Entry,42365),
(@Entry,42368),
(@Entry,42369),
(@Entry,42370),
(@Entry,42371),
(@Entry,42372),
(@Entry,42373),
(@Entry,42374),
(@Entry,42375),
(@Entry,42376),
(@Entry,42377),
(@Entry,42378),
(@Entry,44693),
(@Entry,44694),
(@Entry,45280),
(@Entry,45664),
(@Entry,45666),
(@Entry,45667),
(@Entry,45668),
(@Entry,45669),
(@Entry,45670),
(@Entry,45671),
(@Entry,45672),
(@Entry,45673),
(@Entry,45674),
(@Entry,46104),
(@Entry,52019);
-- ######################################################--
-- BAG VENDOR - 601011
-- ######################################################--
SET
@Entry := 601011,
@Model := 19156, -- Shattrath Thug
@Name := "Slim Shady",
@Title := "Bags",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,'804'),
(@Entry,'805'),
(@Entry,'828'),
(@Entry,'856'),
(@Entry,'857'),
(@Entry,'918'),
(@Entry,'932'),
(@Entry,'933'),
(@Entry,'1470'),
(@Entry,'1537'),
(@Entry,'1652'),
(@Entry,'1685'),
(@Entry,'1725'),
(@Entry,'1729'),
(@Entry,'2082'),
(@Entry,'2657'),
(@Entry,'3233'),
(@Entry,'3343'),
(@Entry,'3352'),
(@Entry,'3914'),
(@Entry,'4238'),
(@Entry,'4240'),
(@Entry,'4241'),
(@Entry,'4245'),
(@Entry,'4496'),
(@Entry,'4497'),
(@Entry,'4498'),
(@Entry,'4499'),
(@Entry,'4500'),
(@Entry,'4957'),
(@Entry,'5081'),
(@Entry,'5571'),
(@Entry,'5572'),
(@Entry,'5573'),
(@Entry,'5574'),
(@Entry,'5575'),
(@Entry,'5576'),
(@Entry,'5762'),
(@Entry,'5763'),
(@Entry,'5764'),
(@Entry,'5765'),
(@Entry,'6446'),
(@Entry,'6756'),
(@Entry,'9587'),
(@Entry,'10050'),
(@Entry,'10051'),
(@Entry,'10959'),
(@Entry,'11324'),
(@Entry,'11742'),
(@Entry,'11845'),
(@Entry,'14046'),
(@Entry,'14155'),
(@Entry,'14156'),
(@Entry,'17966'),
(@Entry,'19291'),
(@Entry,'19914'),
(@Entry,'20400'),
(@Entry,'20474'),
(@Entry,'21340'),
(@Entry,'21341'),
(@Entry,'21342'),
(@Entry,'21841'),
(@Entry,'21843'),
(@Entry,'21858'),
(@Entry,'21872'),
(@Entry,'21876'),
(@Entry,'22243'),
(@Entry,'22244'),
(@Entry,'22246'),
(@Entry,'22248'),
(@Entry,'22249'),
(@Entry,'22250'),
(@Entry,'22251'),
(@Entry,'22252'),
(@Entry,'22571'),
(@Entry,'22679'),
(@Entry,'22976'),
(@Entry,'23389'),
(@Entry,'23774'),
(@Entry,'23775'),
(@Entry,'23852'),
(@Entry,'24270'),
(@Entry,'27680'),
(@Entry,'29540'),
(@Entry,'30744'),
(@Entry,'30745'),
(@Entry,'30746'),
(@Entry,'30747'),
(@Entry,'30748'),
(@Entry,'33117'),
(@Entry,'34067'),
(@Entry,'34482'),
(@Entry,'34490'),
(@Entry,'34845'),
(@Entry,'35516'),
(@Entry,'37606'),
(@Entry,'38082'),
(@Entry,'38145'),
(@Entry,'38225'),
(@Entry,'38347'),
(@Entry,'38399'),
(@Entry,'39489'),
(@Entry,'41597'),
(@Entry,'41598'),
(@Entry,'41599'),
(@Entry,'41600'),
(@Entry,'43345'),
(@Entry,'44446'),
(@Entry,'45773'),
(@Entry,'49295'),
(@Entry,'50316'),
(@Entry,'50317'),
(@Entry,'51809');
-- ######################################################--
-- FIREWORKS VENDOR - 601012
-- ######################################################--
SET
@Entry := 601012,
@Model := 7181, -- Goblin
@Name := "Sparky Skyfire",
@Title := "Fireworks",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35, -- 118(Undercity)
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIP
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 2884, 0, 0, 18019); -- Dynamite Stick, None
-- NPC VENDOR ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,41427), -- Dalaran Firework
(@Entry,34599), -- Juggling Torch
(@Entry,23771), -- Green Smoke Flare
(@Entry,23768), -- White Smoke Flare
(@Entry,21747), -- Festival Firecracker
(@Entry,21745), -- Elder's Moonstone
(@Entry,21744), -- Lucky Rocket Cluster
(@Entry,21713), -- Elune's Candle
(@Entry,34850), -- Midsummer Ground Flower
(@Entry,21576), -- Red Rocket Cluster
(@Entry,21574), -- Green Rocket Cluster
(@Entry,21571), -- Blue Rocket Cluster
(@Entry,21570), -- Cluster Launcher
(@Entry,19026), -- Snake Burst Firework
(@Entry, 9318), -- Red Firework
(@Entry, 9315), -- Yellow Rose Firework
(@Entry, 9314), -- Red Streaks Firework
(@Entry, 9313), -- Green Firework
(@Entry, 9312), -- Blue Firework
(@Entry, 8626); -- Blue Sparkler
-- ######################################################--
-- LOCKSMITH - 601022
-- ######################################################--
SET
@Entry := 601022,
@Model := 6837, -- Fancy Undead Male
@Name := "Harlowe Coldfinger",
@Title := "Locksmith",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35, -- 118(Undercity)
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIP
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 2714, 0, 0, 18019); -- Lantern, None
-- NPC VENDOR ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,5060), -- Thieves Tools
(@Entry,'5396'),
(@Entry,'6893'),
(@Entry,'7146'),
(@Entry,'11000'),
(@Entry,'11078'),
(@Entry,'12382'),
(@Entry,'15869'),
(@Entry,'15870'),
(@Entry,'15871'),
(@Entry,'15872'),
(@Entry,'18249'),
(@Entry,'18250'),
(@Entry,'18266'),
(@Entry,'18268'),
(@Entry,'21761'),
(@Entry,'21762'),
(@Entry,'24490'),
(@Entry,'27991'),
(@Entry,'28395'),
(@Entry,'30622'),
(@Entry,'30623'),
(@Entry,'30633'),
(@Entry,'30634'),
(@Entry,'30635'),
(@Entry,'30637'),
(@Entry,'31084'),
(@Entry,'31704'),
(@Entry,'32449'),
(@Entry,'42482'),
(@Entry,'43853'),
(@Entry,'43854'),
(@Entry,'44581'),
(@Entry,'44582'),
(@Entry,'45796'),
(@Entry,'45798');
-- ######################################################--
-- ENGINEER VENDOR - 601023
-- ######################################################--
SET
@Entry := 601023,
@Model := 11690, -- Umaron Stragarelm (Everlook Goblin)
@Name := "Fizik Glowspark",
@Title := "Contraptions",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC VENDOR ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,4394), -- Big Iron Bomb
(@Entry,10506), -- Deepdive Helmet
(@Entry,18984), -- Dimensional Ripper Everlook
(@Entry,30542), -- Dimensional Ripper Area 52
(@Entry,37863), -- Direbrew's Remote
(@Entry,40768), -- MOLL-E
(@Entry,48933), -- Wormhole Generator: Northrend
-- (@Entry,49278), -- Goblin Rocket Pack
(@Entry,5507), -- Ornate Spyglass
(@Entry,40772), -- Gnomish Army Knife
(@Entry,45631), -- High-Powered Flashlight
(@Entry,4384), -- Explosive Sheep
(@Entry,35227), -- Goblin Weather Machine Prototype 01-B
(@Entry,9492), -- Electromagnetic Gigaflux Reactivator
(@Entry,40727), -- Gnomish Gravity Well
(@Entry,49040); -- Jeeves
-- ######################################################--
-- SPECIALTY ITEMS - 601024
-- ######################################################--
SET
@Entry := 601024,
@Model := 18148, -- Haris Pilton
@Name := "Andara Delaine",
@Title := "Specialty Gifts",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIP
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 45861, 0, 0, 18019); -- Diamond-Tipped Cane, None
-- NPC VENDOR ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,7340), -- Flawless Diamond Solitaire
(@Entry,38089), -- Ruby Shades
(@Entry,7337), -- The Rock
(@Entry,34827), -- Noble's Monocle
(@Entry,34828), -- Antique Silver Cufflinks
(@Entry, 37934), -- Noble' Elementium Signet
(@Entry,4368), -- Flying Tiger Goggles
(@Entry,32566), -- Picnic Basket
(@Entry,41367), -- Dark Jade Focusing Lens
(@Entry,42420), -- Shadow Crystal Focusing Lens
(@Entry,42421), -- Shadow Jade Focusing Lens
-- (@Entry,39351), -- Richly Appointed Pipe
(@Entry,45861), -- Diamond-Tipped Cane
(@Entry, 18258), -- Gordok Ogre Suit
(@Entry, 44228), -- Baby Spice
-- (@Entry, 44958), -- Ethereal Oil
-- (@Entry, 13506), -- Potion of Petrification
-- (@Entry, 43572), -- Magic Eater
-- (@Entry, 40195), -- Pygmy Oil
(@Entry, 31337), -- Orb of the Blackwhelp
(@Entry, 35275), -- Orb of the Sindorei
(@Entry, 45853), -- Rituals of the New Moon
(@Entry, 32782), -- Time-Lost Figurine
(@Entry, 19979), -- Hook of the Master Angler
(@Entry, 5462), -- Dartol's Rod of Transformation
(@Entry, 4388), -- Discombobulator Ray
(@Entry, 52201), -- Muradin's Favor
(@Entry, 37254), -- Super Simian Sphere
(@Entry, 49704), -- Carved Ogre Idol
(@Entry, 23835), -- Gnomish Poultryizer
(@Entry, 10716), -- Gnomish Shrink Ray
(@Entry, 44818), -- Noblegarden Egg
(@Entry, 5332), -- Glowing Cat Figurine
(@Entry, 10725), -- Gnomish Battle Chicken
(@Entry, 40110), -- Haunted Momento
(@Entry, 12185), -- Bloodsail Admiral's Hat
(@Entry, 40492), -- Argent War Horn
(@Entry, 14022), -- Barov Peasent Caller (H)
(@Entry, 14023), -- Barov Peasent Called (A)
(@Entry, 32864), -- Commander's Badge
(@Entry, 32695), -- Captain's Badge
(@Entry, 32694), -- Overseer's Badge
(@Entry, 3456), -- Dog Whistle
(@Entry, 38506), -- Don Carlo's Favorite Hat
(@Entry, 16022), -- Arcanite Dragonling
(@Entry, 4396), -- Mechanical Dragonling
(@Entry, 35694), -- Khorium Boar
(@Entry, 42418), -- Emerald Boar
(@Entry, 24124), -- Felsteel Boar
(@Entry, 50471), -- The Heartbreaker
(@Entry, 54212), -- Instant Statue Pedestal
(@Entry, 50966), -- Abracadaver
(@Entry, 5218), -- Cleansed Timberling Heart
(@Entry, 49490), -- Antilinuvian Cornerstone Grimiore
(@Entry, 49308), -- Ancient Cornerstone Grimiore
(@Entry, 34029), -- Tiny Voodoo Mask
(@Entry, 13353), -- Book of the Dead
(@Entry, 54438), -- Tiny Blue Ragdoll
(@Entry, 44849), -- Tiny Green Ragdoll
(@Entry, 34686), -- Brazier of Dancing Flames
(@Entry, 33927), -- Brewfest Pony Keg
(@Entry, 38578), -- Flag of Ownership
(@Entry, 44606), -- Tiny Train Set
(@Entry, 34480), -- Romantic Picnic Basket
(@Entry, 44481), -- Grindgear Toy Gorilla
(@Entry, 45047), -- Sandbox Tiger
(@Entry, 46780), -- Ogre Pinata
(@Entry, 45063), -- Foam Sword Rack
(@Entry, 38301), -- D.I.S.C.O.
(@Entry, 33223), -- Fishing Chair
(@Entry, 33219), -- Goblin Gumbo Kettle
(@Entry, 32542), -- Imp in a Ball
(@Entry, 21326), -- Defender of the Timbermaw
(@Entry, 38518), -- Cro's Apple
-- (@Entry, 43491), -- Bad Clams
(@Entry, 25679), -- Comfortable Insoles
-- (@Entry, 43004), -- Critter Bites
(@Entry, 36863), -- Decahedral Dwarven Dice
(@Entry, 12217), -- Dragonbreath Chili
(@Entry, 43492), -- Haunted Herring
(@Entry, 44601), -- Heavy Copper Racer
(@Entry, 18662), -- Heavy Leather Ball
-- (@Entry, 43488), -- Last Week's Mammoth
(@Entry, 44792), -- Blossoming Branch
(@Entry, 38266), -- Rotund Relic
(@Entry, 17202), -- Snowball
(@Entry, 43490), -- Tasty Cupcake
(@Entry, 33081), -- Voodoo Skull
(@Entry, 36862), -- Worn Troll Dice
-- (@Entry, 52490), -- Stardust
(@Entry, 37604), -- Toothpick
(@Entry, 44731), -- Bouquet of Ebon Roses
(@Entry, 22206), -- Bouquet of Red Roses
(@Entry, 18660), -- World Enlarger
(@Entry, 18951), -- Evonice's Landin' Pilla
(@Entry, 37313), -- Riding Crop
(@Entry, 11122), -- Carrot on a Stick
(@Entry, 43660), -- Fire Eater's Guide
(@Entry, 13379), -- Piccolo of the Flaming Fire
(@Entry, 44482), -- Trusty Copper Racer
(@Entry, 50741), -- Vile Fumigator's Mask
(@Entry, 44599), -- Zippy Copper Racer
(@Entry, 54452), -- Etheral Portal
(@Entry, 46349), -- Chef's Hat
(@Entry, 38577), -- Party Grenade
(@Entry, 54455), -- Paint Bomb
(@Entry, 46779), -- Path of Cenarius
(@Entry, 38233), -- Path of Illidan
(@Entry, 34499), -- Paper Flying Machine
(@Entry, 54806), -- Frostscyth of Lord Ahune
-- (@Entry, 64482), -- Puzzle Box of Yogg Saron
(@Entry,18640), -- Happy Fun Rock
(@Entry, 52252), -- Tabard of the Lightbringer
(@Entry,46709), -- MiniZep Controller
(@Entry,34498); -- Paper Zeppelin Kit
-- ######################################################--
-- TABARDS - 601025
-- ######################################################--
SET
@Entry := 601025,
@Model := 12675, -- Tauren Female with Tabard
@Name := "Tanis Rayen",
@Title := "Tabards",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC VENDOR ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,'5976'),
(@Entry,'11364'),
(@Entry,'15196'),
(@Entry,'15197'),
(@Entry,'15198'),
(@Entry,'15199'),
(@Entry,'19031'),
(@Entry,'19032'),
(@Entry,'19160'),
(@Entry,'19505'),
(@Entry,'19506'),
(@Entry,'20131'),
(@Entry,'20132'),
(@Entry,'22999'),
(@Entry,'23192'),
(@Entry,'23999'),
(@Entry,'24004'),
(@Entry,'24344'),
(@Entry,'25549'),
(@Entry,'28788'),
(@Entry,'31279'),
(@Entry,'31404'),
(@Entry,'31405'),
(@Entry,'31773'),
(@Entry,'31774'),
(@Entry,'31775'),
(@Entry,'31776'),
(@Entry,'31777'),
(@Entry,'31778'),
(@Entry,'31779'),
(@Entry,'31780'),
(@Entry,'31781'),
(@Entry,'31804'),
(@Entry,'32445'),
(@Entry,'32828'),
(@Entry,'35221'),
(@Entry,'35279'),
(@Entry,'35280'),
(@Entry,'36941'),
(@Entry,'40643'),
(@Entry,'43154'),
(@Entry,'43155'),
(@Entry,'43156'),
(@Entry,'43157'),
-- (@Entry,'43300'),
-- (@Entry,'43348'),
(@Entry,'43349'),
(@Entry,'45574'),
(@Entry,'45577'),
(@Entry,'45578'),
(@Entry,'45579'),
(@Entry,'45580'),
(@Entry,'45581'),
(@Entry,'45582'),
(@Entry,'45583'),
(@Entry,'45584'),
(@Entry,'45585'),
(@Entry,'45983'),
(@Entry,'46817'),
(@Entry,'46818'),
(@Entry,'46874'),
(@Entry,'49052'),
(@Entry,'49054'),
(@Entry,'49086'),
(@Entry,'51534'),
(@Entry,'52252');
-- ######################################################--
-- BEASTMASTER - 601026
-- ######################################################--
SET
@Entry := 601026,
@Model := 729, -- Shadowfang Moonwalker (White Worgen)
@Name := "White Fang",
@Title := "BeastMaster",
@Icon := "Speak",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 4194433,
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := ""; -- BeastMaster
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 2196, 1906, 0, 18019); -- Haunch of Meat, Torch
-- NPC TEXT
DELETE FROM `npc_text` WHERE `ID`=@Entry;
INSERT INTO `npc_text` (`ID`, `text0_0`) VALUES (@Entry, 'Greetings $N. And when, on the still cold nights, he pointed his nose at a star and howled long and wolflike, it was his ancestors, dead and dust, pointing nose at star and howling down through the centuries and through him.');
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
-- MEAT
(@Entry,35953), -- (75) -- Mead Blasted Caribou
(@Entry,33454), -- (65) -- Salted Venison
(@Entry,27854), -- (55) -- Smoked Talbuk Venison
(@Entry,8952), -- (45) -- Roasted Quail
(@Entry,4599), -- (35) -- Cured Ham Steak
(@Entry,3771), -- (25) -- Wild Hog Shank
(@Entry,3770), -- (15) -- Mutton Chop
(@Entry,2287), -- (5) -- Haunch of Meat
(@Entry,117), -- (1) -- Tough Jerky
-- FUNGUS
(@Entry,35947), -- (75) -- Sparkling Frostcap
(@Entry,33452), -- (65) -- Honey-Spiced Lichen
(@Entry,27859), -- (55) -- Zangar Caps
(@Entry,8948), -- (45) -- Dried King Bolete
(@Entry,4608), -- (35) -- Raw Black Truffle
(@Entry,4607), -- (25) -- Delicious Cave Mold
(@Entry,4606), -- (15) -- Spongy Morel
(@Entry,4605), -- (5) -- Red-Speckled Mushroom
(@Entry,4604), -- (1) -- Forest Mushroom Cap
-- BREAD
(@Entry,35950), -- (75) -- Sweet Potato Bread
(@Entry,33449), -- (65) -- Crusty Flatbread
(@Entry,27855), -- (55) -- Mag'har Grainbread
(@Entry,8950), -- (45) -- Homemade Cherry Pie
(@Entry,4601), -- (35) -- Soft Banana Bread
(@Entry,4544), -- (25) -- Mulgore Spice Bread
(@Entry,4542), -- (15) -- Moist Cornbread
(@Entry,4541), -- (5) -- Freshly Baked Bread
(@Entry,4540), -- (1) -- Tough Hunk of Bread
-- FRUIT
(@Entry,35948), -- (75) -- Savory Snowplum
(@Entry,35949), -- (65) -- Tundra Berries
(@Entry,27856), -- (55) -- Sklethyl Berries
(@Entry,8953), -- (45) -- Deep Fried Plantains
(@Entry,4602), -- (35) -- Moon Harvest Pumpkin
(@Entry,4539), -- (25) -- Goldenbark Apple
(@Entry,4538), -- (15) -- Snapvine Watermelon
(@Entry,4537), -- (5) -- Tel'Abim Banana
(@Entry,4536), -- (1) -- Shiny Red Apple
-- FISH
(@Entry,35951), -- (75) -- Poached Emperor Salmon
(@Entry,33451), -- (65) -- Filet of Icefin
(@Entry,27858), -- (55) -- Sunspring Carp
(@Entry,8957), -- (45) -- Spinefin Halibut
(@Entry,21552), -- (35) -- Striped Yellowtail
(@Entry,4594), -- (25) -- Rockscale Cod
(@Entry,4593), -- (15) -- Bristle Whisker Catfish
(@Entry,4592), -- (5) -- Longjaw Mud Snapper
(@Entry,787), -- (1) -- Slitherskin Mackeral
-- CHEESE
(@Entry,35952), -- (75) -- Briny Hardcheese
(@Entry,33443), -- (65) -- Sour Goat Cheese
(@Entry,27857), -- (55) -- Gradar Sharp
(@Entry,8932), -- (45) -- Alterac Swiss
(@Entry,3927), -- (35) -- Fine Aged Chedder
(@Entry,1707), -- (25) -- Stormwind Brie
(@Entry,422), -- (15) -- Dwarven Mild
(@Entry,414), -- (5) -- Dalaran Sharp
(@Entry,2070), -- (1) -- Darnassian Bleu
-- BUFF
(@Entry,33875); -- Kibler's Bits
-- ######################################################--
-- ELIXER/FLASK VENDOR - 601029
-- ######################################################--
SET
@Entry := 601029,
@Model := 16801, -- Elven Reagent Seller
@Name := "Priorat Bordeaux",
@Title := "Elixers & Flasks",
@Icon := "Buy",
@GossipMenu := 0,
@MinLevel := 80,
@MaxLevel := 80,
@Faction := 35,
@NPCFlag := 128, -- Vendor
@Scale := 1.0,
@Rank := 0,
@Type := 7,
@TypeFlags := 0,
@FlagsExtra := 2,
@AIName := "SmartAI",
@Script := "";
-- NPC
DELETE FROM creature_template WHERE entry = @Entry;
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, faction, npcflag, speed_walk, speed_run, scale, `rank`, unit_class, unit_flags, type, type_flags,RegenHealth, flags_extra, AiName, ScriptName) VALUES
(@Entry, @Model, @Name, @Title, @Icon, @GossipMenu, @MinLevel, @MaxLevel, @Faction, @NPCFlag, 1, 1.14286, @Scale, @Rank, 1, 2, @Type, @TypeFlags, 1, @FlagsExtra, @AIName, @Script);
-- NPC EQUIPPED
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@Entry AND `ID`=1;
INSERT INTO `creature_equip_template` VALUES (@Entry, 1, 13612, 0, 0, 18019); -- Wine Glass
-- NPC ITEMS
DELETE FROM npc_vendor WHERE entry = @Entry;
INSERT INTO npc_vendor (entry, item) VALUES
(@Entry,'2454'),
(@Entry,'2457'),
(@Entry,'2458'),
(@Entry,'3382'),
(@Entry,'3383'),
(@Entry,'3388'),
(@Entry,'3389'),
(@Entry,'3390'),
(@Entry,'3391'),
(@Entry,'3825'),
(@Entry,'3826'),
(@Entry,'3828'),
(@Entry,'5996'),
(@Entry,'5997'),
(@Entry,'6373'),
(@Entry,'6662'),
(@Entry,'8410'),
(@Entry,'8411'),
(@Entry,'8412'),
(@Entry,'8423'),
(@Entry,'8424'),
(@Entry,'8529'),
(@Entry,'8827'),
(@Entry,'8949'),
(@Entry,'8951'),
(@Entry,'9088'),
(@Entry,'9154'),
(@Entry,'9155'),
(@Entry,'9179'),
(@Entry,'9187'),
(@Entry,'9197'),
(@Entry,'9206'),
(@Entry,'9224'),
(@Entry,'9233'),
(@Entry,'9264'),
(@Entry,'10592'),
(@Entry,'12820'),
(@Entry,'13445'),
(@Entry,'13447'),
(@Entry,'13452'),
(@Entry,'13453'),
(@Entry,'13454'),
(@Entry,'17708'),
(@Entry,'18294'),
(@Entry,'20004'),
(@Entry,'20007'),
(@Entry,'20079'),
(@Entry,'20080'),
(@Entry,'20081'),
(@Entry,'21546'),
(@Entry,'22823'),
(@Entry,'22824'),
(@Entry,'22825'),
(@Entry,'22827'),
(@Entry,'22830'),
(@Entry,'22831'),
(@Entry,'22833'),
(@Entry,'22834'),
(@Entry,'22835'),
(@Entry,'22840'),
(@Entry,'22848'),
(@Entry,'23444'),
(@Entry,'23871'),
(@Entry,'25539'),
(@Entry,'28102'),
(@Entry,'28103'),
(@Entry,'28104'),
(@Entry,'31679'),
(@Entry,'32062'),
(@Entry,'32063'),
(@Entry,'32067'),
(@Entry,'32068'),
(@Entry,'34130'),
(@Entry,'34537'),
(@Entry,'37449'),
(@Entry,'39666'),
(@Entry,'40068'),
(@Entry,'40070'),
(@Entry,'40072'),
(@Entry,'40073'),
(@Entry,'40076'),
(@Entry,'40078'),
(@Entry,'40097'),
(@Entry,'40109'),
(@Entry,'44012'),
(@Entry,'44325'),
(@Entry,'44327'),
(@Entry,'44328'),
(@Entry,'44329'),
(@Entry,'44330'),
(@Entry,'44331'),
(@Entry,'44332'),
(@Entry,'45621'),
(@Entry,'13510'),
(@Entry,'13511'),
(@Entry,'13512'),
(@Entry,'13513'),
(@Entry,'22851'),
(@Entry,'22853'),
(@Entry,'22854'),
(@Entry,'22861'),
(@Entry,'22866'),
-- (@Entry,'32596'), -- unstable flasks
-- (@Entry,'32597'),
-- (@Entry,'32598'),
-- (@Entry,'32599'),
-- (@Entry,'32600'),
-- (@Entry,'32601'),
(@Entry,'32764'),
(@Entry,'32766'),
(@Entry,'32767'),
-- (@Entry,'32898'), -- shattrath
-- (@Entry,'32899'), -- shattrath
-- (@Entry,'32900'),
-- (@Entry,'32901'),
(@Entry,'33208'),
-- (@Entry,'35716'), -- shattrath
-- (@Entry,'35717'), -- shattrath
(@Entry,'40079'),
-- (@Entry,'40082'), -- mixture
-- (@Entry,'40083'), -- mixture
-- (@Entry,'40084'), -- mixture
-- (@Entry,'40404'), -- mixture
(@Entry,'44939'),
(@Entry,'45006'),
(@Entry,'45007'),
(@Entry,'45008'),
(@Entry,'45009'),
(@Entry,'46376'),
(@Entry,'46377'),
(@Entry,'46378'),
(@Entry,'46379'),
(@Entry,'47499');
-- ######################################################--
-- CUSTOM VENDORS (GM Island)
-- ######################################################--
describe creature;
-- Rare Pets
DELETE FROM `creature` WHERE `guid`=1977857;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977857, 601000, 1, 1, 1, 1, 16211.2, 16242.9, 10.7703, 5.6713, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Pets
DELETE FROM `creature` WHERE `guid`=1978343;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1978343, 601001, 1, 1, 1, 1, 16222.3, 16235.7, 9.54736, 2.62788, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Food
DELETE FROM `creature` WHERE `guid`=1977855;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977855, 601002, 1, 1, 1, 1, 16224.2, 16238.8, 10.5448, 2.69856, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Armor
DELETE FROM `creature` WHERE `guid`=1977854;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977854, 601003, 1, 1, 1, 1, 16225.7, 16241.9, 11.4356, 2.70249, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Potions
DELETE FROM `creature` WHERE `guid`=1977853;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977853, 601004, 1, 1, 1, 1, 16226.7, 16244.9, 12.0007, 2.91062, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1980706;
-- Fishing
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1980706, 601005, 1, 1, 1, 1, 16227.3, 16247.6, 12.3907, 2.80068, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Artifacts
DELETE FROM `creature` WHERE `guid`=1977851;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977851, 601006, 1, 1, 1, 1, 16228, 16250.6, 12.8686, 2.91062, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Books
DELETE FROM `creature` WHERE `guid`=1977850;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977850, 601007, 1, 1, 1, 0, 16228.1, 16253.2, 13.1069, 3.15802, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Holiday
DELETE FROM `creature` WHERE `guid`=1977848;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977848, 601008, 1, 1, 1, 0, 16213.7, 16245.9, 12.0913, 5.93833, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Tools
DELETE FROM `creature` WHERE `guid`=1977847;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977847, 601009, 1, 1, 1, 0, 16214.8, 16248.2, 12.4535, 5.93833, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Clothing
DELETE FROM `creature` WHERE `guid`=1977846;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977846, 601010, 1, 1, 1, 0, 16216.2, 16250.8, 12.7625, 5.93833, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Bags
DELETE FROM `creature` WHERE `guid`=1977845;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977845, 601011, 1, 1, 1, 0, 16217.1, 16253.4, 13.042, 5.93833, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Fireworks
DELETE FROM `creature` WHERE `guid`=1977844;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977844, 601012, 1, 1, 1, 1, 16217.2, 16256.1, 13.3398, 0.138163, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Locksmith
DELETE FROM `creature` WHERE `guid`=1977823;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977823, 601022, 1, 1, 1, 1, 16227.6, 16265.9, 13.2387, 3.13053, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Engineer
DELETE FROM `creature` WHERE `guid`=1977822;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977822, 601023, 1, 1, 1, 0, 16227, 16269.1, 13.1011, 3.13053, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Specialty
DELETE FROM `creature` WHERE `guid`=1977710;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977710, 601024, 1, 1, 1, 1, 16216.9, 16266.1, 13.3949, 0.149947, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Tabard
DELETE FROM `creature` WHERE `guid`=1977709;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1977709, 601025, 1, 1, 1, 0, 16217.1, 16269.5, 13.1584, 6.08756, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- Elixer/Flash
DELETE FROM `creature` WHERE `guid`=1979519;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979519, 601029, 1, 1, 1, 1, 16221.4, 16233.2, 8.7621, 2.66323, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- ######################################################--
-- GEM VENDORS (Moonglade)
-- ######################################################--
DELETE FROM `creature` WHERE `guid`=1979222;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979222, 601612, 1, 1, 1, 0, 7762.53, -2418.19, 488.062, 1.57748, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979216;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979216, 601592, 1, 1, 1, 0, 7760.14, -2418.98, 488.285, 1.33794, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979162;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979162, 601541, 1, 1, 1, 0, 7752.34, -2417.92, 488.612, 0.902049, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979161;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979161, 601514, 1, 1, 1, 0, 7754.64, -2419.47, 488.508, 1.00808, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979147;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979147, 601573, 1, 1, 1, 0, 7757.68, -2418.48, 488.61, 1.19265, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979145;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979145, 601571, 1, 1, 1, 0, 7749.78, -2408.11, 488.074, 0.00668859, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979117;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979117, 601567, 1, 1, 1, 0, 7751.76, -2414.94, 488.689, 0.917751, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1979115;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1979115, 601559, 1, 1, 1, 0, 7750.07, -2410.65, 488.38, 0.246234, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- ######################################################--
-- GLYPH VENDORS (Undercity)
-- ######################################################--
DELETE FROM `creature` WHERE `guid`=1993008;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1993008, 601526, 0, 1, 1, 0, 1699.56, 25.8713, -62.2943, 1.21598, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1993002;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1993002, 601527, 0, 1, 1, 0, 1720.81, 37.0314, -62.2873, 2.9792, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992998;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992998, 601546, 0, 1, 1, 0, 1713.2, 46.3529, -64.0865, 3.63108, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992996;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992996, 601557, 0, 1, 1, 0, 1699.78, 49.8368, -64.0865, 5.27648, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992995;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992995, 601568, 0, 1, 1, 0, 1696.08, 36.4568, -64.0864, 0.540524, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992993;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992993, 601613, 0, 1, 1, 0, 1709.29, 33.2251, -64.0863, 2.05242, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992990;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992990, 601595, 0, 1, 1, 0, 1718.92, 49.5565, -62.2855, 3.68212, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992989;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992989, 601597, 0, 1, 1, 0, 1696.62, 55.4259, -62.2931, 5.30003, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992987;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992987, 601610, 0, 1, 1, 0, 1690.3, 33.1239, -62.2937, 0.568009, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
DELETE FROM `creature` WHERE `guid`=1992985;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES (1992985, 601611, 0, 1, 1, 0, 1712.38, 27.4021, -62.292, 2.01314, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- ######################################################--
-- 19 TWINK VENDORS
-- ######################################################--
INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `DamageModifier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `HealthModifier`, `ManaModifier`, `ArmorModifier`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES
('601677','0','0','0','0','0','20659','0','0','0','Cloth Armor','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601678','0','0','0','0','0','20659','0','0','0','Leather Armor','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601679','0','0','0','0','0','20659','0','0','0','Mail Armor','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601680','0','0','0','0','0','20659','0','0','0','One-Hand Weapons','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601681','0','0','0','0','0','20659','0','0','0','Two-Hand Weapons','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601682','0','0','0','0','0','20659','0','0','0','Jewelry','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601683','0','0','0','0','0','20659','0','0','0','Cloaks and Off-Hand','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601684','0','0','0','0','0','20659','0','0','0','Enchants','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601685','0','0','0','0','0','20659','0','0','0','Bags','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601686','0','0','0','0','0','20659','0','0','0','Pets','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601687','0','0','0','0','0','20659','0','0','0','General Goods','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601688','0','0','0','0','0','20659','0','0','0','Potions & Scrolls','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601689','0','0','0','0','0','20659','0','0','0','Enchanting Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601690','0','0','0','0','0','20659','0','0','0','Enchanting Recipes','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601691','0','0','0','0','0','20659','0','0','0','Alchemy Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601692','0','0','0','0','0','20659','0','0','0','Alchemy Recipes','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601693','0','0','0','0','0','20659','0','0','0','Engineering Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601694','0','0','0','0','0','20659','0','0','0','Engineering Recipes','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601695','0','0','0','0','0','20659','0','0','0','Inscription Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601696','0','0','0','0','0','20659','0','0','0','Jewelcrafting Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601697','0','0','0','0','0','20659','0','0','0','Jewelcrafting Recipes','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601698','0','0','0','0','0','20659','0','0','0','Leatherworking Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601699','0','0','0','0','0','20659','0','0','0','Leatherworking Recipes','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601700','0','0','0','0','0','20659','0','0','0','Tailoring Materials','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601701','0','0','0','0','0','20659','0','0','0','Tailoring Recipes','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601702','0','0','0','0','0','20659','0','0','0','Ranged Weapons','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1'),
('601703','0','0','0','0','0','20659','0','0','0','Mounts','',NULL,'0','80','80','0','35','4225','1','1.14286','1.25','3','0','1','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','0','1','1','1','0','0','1','0','0','0','1');
-- ######################################################--
-- GM-ISLAND NPC SPAWN POINTS
-- ######################################################--
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES
(601500, 601500, 1, 1, 1, 0, 16297.4, 16244.5, 24.8233, 0.791318, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601501, 601501, 1, 1, 1, 0, 16221.7, 16275.9, 20.9251, 1.27072, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601502, 601502, 1, 1, 1, 0, 16269.2, 16306, 14.1796, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601503, 601503, 1, 1, 1, 0, 16269.5, 16309.3, 14.0666, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601504, 601504, 1, 1, 1, 0, 16269.7, 16312.1, 14.0177, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601505, 601505, 1, 1, 1, 0, 16270, 16314.7, 14.0523, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601506, 601506, 1, 1, 1, 0, 16270.8, 16323.1, 14.0398, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601507, 601507, 1, 1, 1, 0, 16270.5, 16320.2, 14.184, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601508, 601508, 1, 1, 1, 0, 16270.3, 16317.5, 14.0864, 6.1893, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601509, 601509, 1, 1, 1, 0, 16269.6, 16325.3, 13.77, 0.734073, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601510, 601510, 1, 1, 1, 0, 16267.1, 16325.9, 13.4964, 1.48177, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601511, 601511, 1, 1, 1, 0, 16216, 16291.9, 20.9124, 6.1382, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601512, 601512, 1, 1, 1, 0, 16225, 16326.2, 20.9198, 4.58311, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601513, 601513, 1, 1, 1, 0, 16299.3, 16242.9, 24.9814, 1.15831, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601514, 601514, 1, 1, 1, 0, 16276.2, 16269, 18.6019, 0.492025, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601515, 601515, 1, 1, 1, 0, 16288.6, 16277.2, 17.5515, 3.98777, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601516, 601516, 1, 1, 1, 0, 16251.5, 16285.4, 20.9276, 1.64415, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601517, 601517, 1, 1, 1, 0, 16224.7, 16275.5, 20.9251, 1.61001, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601518, 601518, 1, 1, 1, 0, 16276.5, 16256.8, 22.2729, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601519, 601519, 1, 1, 1, 0, 16216.5, 16300.6, 20.907, 6.20103, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601520, 601520, 1, 1, 1, 0, 16216.7, 16303.6, 20.907, 6.20103, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601521, 601521, 1, 1, 1, 0, 16304.8, 16243.4, 25.0522, 2.45401, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601522, 601522, 1, 1, 1, 0, 16272.8, 16262, 20.202, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601523, 601523, 1, 1, 1, 0, 16254.4, 16286.1, 20.9245, 1.74154, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601524, 601524, 1, 1, 1, 0, 16217.2, 16309.9, 20.9056, 6.20103, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601525, 601525, 1, 1, 1, 0, 16257.3, 16287.1, 20.9298, 2.03685, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601526, 601526, 1, 1, 1, 0, 16241.6, 16240.1, 22.5532, 2.21144, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601527, 601527, 1, 1, 1, 0, 16243.8, 16242.7, 22.9235, 2.23972, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601528, 601528, 1, 1, 1, 0, 16270.7, 16264.8, 19.2506, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601529, 601529, 1, 1, 1, 0, 16228, 16325.8, 20.9198, 4.58311, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601530, 601530, 1, 1, 1, 0, 16305.9, 16246.1, 24.8253, 2.74089, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601531, 601531, 1, 1, 1, 0, 16268.9, 16267.2, 18.3966, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601532, 601532, 1, 1, 1, 0, 16281.6, 16284, 15.7308, 3.71844, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601533, 601533, 1, 1, 1, 0, 16217.6, 16313.1, 20.9089, 6.09971, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601534, 601534, 1, 1, 1, 0, 16286.3, 16279.1, 16.9927, 3.98777, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601535, 601535, 1, 1, 1, 0, 16307.9, 16252.1, 23.8032, 2.82786, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601536, 601536, 1, 1, 1, 0, 16259.6, 16288.6, 20.9195, 2.24733, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601537, 601537, 1, 1, 1, 0, 16261.5, 16291.3, 20.9133, 2.51123, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601538, 601538, 1, 1, 1, 0, 16230.8, 16325.5, 20.9183, 4.58311, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601539, 601539, 1, 1, 1, 0, 16219.2, 16321.8, 20.8946, 6.09971, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601540, 601540, 1, 1, 1, 0, 16278.4, 16254.4, 23.404, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601541, 601541, 1, 1, 1, 0, 16277.9, 16266.3, 19.6108, 0.625545, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601542, 601542, 1, 1, 1, 0, 16262.7, 16294.4, 20.9154, 2.89764, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601543, 601543, 1, 1, 1, 0, 16266.9, 16270, 17.47, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601544, 601544, 1, 1, 1, 0, 16215.7, 16285.8, 20.9157, 6.21741, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601545, 601545, 1, 1, 1, 0, 16215.9, 16289, 20.9116, 6.21741, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601546, 601546, 1, 1, 1, 0, 16246.2, 16244.6, 23.4578, 2.23972, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601547, 601547, 1, 1, 1, 0, 16308.2, 16255, 23.2236, 3.0195, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601548, 601548, 1, 1, 1, 0, 16266.5, 16273.4, 16.5073, 2.90802, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601549, 601549, 1, 1, 1, 0, 16237, 16325, 20.9198, 4.58311, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601550, 601550, 1, 1, 1, 0, 16234, 16325.4, 20.9198, 4.58311, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601551, 601551, 1, 1, 1, 0, 16307.6, 16258.1, 22.533, 3.33779, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601552, 601552, 1, 1, 1, 0, 16272.1, 16274, 16.7648, 0.7309, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601553, 601553, 1, 1, 1, 0, 16218.1, 16316.2, 20.9039, 6.09971, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601554, 601554, 1, 1, 1, 0, 16274.3, 16271.4, 17.6777, 0.7309, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601555, 601555, 1, 1, 1, 0, 16301.6, 16266, 20.2315, 3.7407, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601556, 601556, 1, 1, 1, 0, 16218.8, 16276.9, 20.9279, 0.850785, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601557, 601557, 1, 1, 1, 0, 16248.7, 16246.1, 23.9555, 1.97582, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601558, 601558, 1, 1, 1, 0, 16274.6, 16259.5, 21.1822, 3.77516, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601559, 601559, 1, 1, 1, 0, 16279.8, 16263.8, 20.5778, 0.625545, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601560, 601560, 1, 1, 1, 0, 16269.3, 16275, 16.2661, 1.63839, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601561, 601561, 1, 1, 1, 0, 16283.9, 16281.3, 16.3183, 3.88561, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601562, 601562, 1, 1, 1, 0, 16218.6, 16318.9, 20.8982, 6.09971, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601563, 601563, 1, 1, 1, 0, 16228, 16276.3, 20.9203, 2.0137, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601564, 601564, 1, 1, 1, 0, 16263.4, 16297.2, 20.9194, 2.89764, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601565, 601565, 1, 1, 1, 0, 16263.8, 16300.2, 20.922, 3.00535, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601566, 601566, 1, 1, 1, 0, 16264.3, 16303.6, 20.9238, 3.00535, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601567, 601567, 1, 1, 1, 0, 16281.6, 16261.3, 21.6288, 0.625545, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601568, 601568, 1, 1, 1, 0, 16251.3, 16246.7, 24.6954, 1.51715, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601569, 601569, 1, 1, 1, 0, 16216.1, 16294.8, 20.9095, 6.22312, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601570, 601570, 1, 1, 1, 0, 16264.5, 16306.7, 20.9223, 3.04855, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601571, 601571, 1, 1, 1, 0, 16283.3, 16258.9, 22.6919, 0.625545, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601572, 601572, 1, 1, 1, 0, 16216.1, 16282.6, 20.9152, 0.122721, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601573, 601573, 1, 1, 1, 0, 16284.9, 16256.5, 23.6226, 0.0412089, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601574, 601574, 1, 1, 1, 0, 16216.9, 16279.5, 20.9251, 0.499712, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601575, 601575, 1, 1, 1, 0, 16232.1, 16272.4, 13.5268, 5.34119, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601576, 601576, 1, 1, 1, 0, 16234, 16273.8, 14.3324, 5.34119, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601577, 601577, 1, 1, 1, 0, 16236.5, 16275.6, 14.7502, 5.34119, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601578, 601578, 1, 1, 1, 0, 16238.9, 16277.4, 14.8296, 5.33805, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601579, 601579, 1, 1, 1, 0, 16241.4, 16278.8, 14.6115, 4.95792, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601580, 601580, 1, 1, 1, 0, 16244.1, 16279.4, 14.3032, 4.95792, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601581, 601581, 1, 1, 1, 0, 16246.9, 16280.1, 14.1194, 4.9265, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601582, 601582, 1, 1, 1, 0, 16249.9, 16280.8, 14.008, 4.9265, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601583, 601583, 1, 1, 1, 0, 16253.4, 16281.6, 14.5249, 4.9265, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601584, 601584, 1, 1, 1, 0, 16256.6, 16282.3, 15.0063, 4.9265, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601585, 601585, 1, 1, 1, 0, 16259.2, 16283.2, 15.0799, 5.1153, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601586, 601586, 1, 1, 1, 0, 16261.4, 16284.5, 14.775, 5.32376, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601587, 601587, 1, 1, 1, 0, 16263.6, 16286.4, 14.2083, 5.66933, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601588, 601588, 1, 1, 1, 0, 16267.9, 16297.3, 15.0568, 6.21679, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601589, 601589, 1, 1, 1, 0, 16268.3, 16300.3, 14.7457, 6.12647, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601590, 601590, 1, 1, 1, 0, 16268.8, 16303.1, 14.43, 6.12647, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601591, 601591, 1, 1, 1, 0, 16216.7, 16306.7, 20.9123, 6.19781, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601592, 601592, 1, 1, 1, 0, 16283.8, 16253.4, 24.4607, 5.35364, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601593, 601593, 1, 1, 1, 0, 16231, 16278.2, 20.9186, 2.22105, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601594, 601594, 1, 1, 1, 0, 16233.7, 16280.3, 20.9162, 2.22105, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601595, 601595, 1, 1, 1, 0, 16257.2, 16245.6, 25.8256, 0.970515, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601596, 601596, 1, 1, 1, 0, 16240.2, 16324.8, 20.9198, 4.58311, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601597, 601597, 1, 1, 1, 0, 16259.9, 16243.8, 26.6382, 0.731754, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601598, 601598, 1, 1, 1, 0, 16239.2, 16283.1, 20.928, 1.85463, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601599, 601599, 1, 1, 1, 0, 16242.1, 16284, 20.928, 1.85463, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601600, 601600, 1, 1, 1, 0, 16264.8, 16309.7, 20.9223, 3.04855, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601601, 601601, 1, 1, 1, 0, 16245, 16284.6, 20.9261, 1.63786, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601602, 601602, 1, 1, 1, 0, 16293.3, 16273.3, 17.9495, 4.01323, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601603, 601603, 1, 1, 1, 0, 16216.2, 16297.6, 20.9069, 6.20103, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601604, 601604, 1, 1, 1, 0, 16265.1, 16312.6, 20.9223, 3.04855, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601605, 601605, 1, 1, 1, 0, 16248, 16284.8, 20.9276, 1.63786, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601606, 601606, 1, 1, 1, 0, 16265.4, 16315.7, 20.9223, 3.04855, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601607, 601607, 1, 1, 1, 0, 16265.6, 16318.5, 20.9223, 3.04855, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601608, 601608, 1, 1, 1, 0, 16265.4, 16321.9, 20.9189, 3.81017, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601609, 601609, 1, 1, 1, 0, 16262.5, 16322.5, 20.917, 4.63641, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601610, 601610, 1, 1, 1, 0, 16261.9, 16241.4, 27.5851, 0.52755, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601611, 601611, 1, 1, 1, 0, 16262.9, 16238.3, 28.4341, 0.288789, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601612, 601612, 1, 1, 1, 0, 16280.8, 16252.3, 24.4522, 4.62418, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601613, 601613, 1, 1, 1, 0, 16254.4, 16246.4, 25.4709, 1.36321, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601614, 601614, 1, 1, 1, 0, 16264.1, 16326.2, 13.2057, 1.48177, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601615, 601615, 1, 1, 1, 0, 16261.5, 16326.4, 13.0337, 1.48177, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601616, 601616, 1, 1, 1, 0, 16285, 16317.6, 12.4073, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601617, 601617, 1, 1, 1, 0, 16284.7, 16314.9, 12.459, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601618, 601618, 1, 1, 1, 0, 16284.2, 16312, 12.3671, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601619, 601619, 1, 1, 1, 0, 16283.8, 16308.9, 12.3322, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601620, 601620, 1, 1, 1, 0, 16283.4, 16306, 12.3807, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601621, 601621, 1, 1, 1, 0, 16283, 16302.9, 12.4772, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601622, 601622, 1, 1, 1, 0, 16282.5, 16299.7, 12.6269, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601623, 601623, 1, 1, 1, 0, 16282.1, 16296.3, 12.8724, 3.003, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601624, 601624, 1, 1, 1, 0, 16236.5, 16282, 20.9158, 2.08957, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601625, 601625, 1, 1, 1, 0, 16302.3, 16242.3, 25.1048, 1.73835, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601626, 601626, 1, 1, 1, 0, 16306.9, 16249.1, 24.3765, 2.7688, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601627, 601627, 1, 1, 1, 0, 16290.6, 16274.9, 17.6997, 4.13304, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601628, 601628, 1, 1, 1, 0, 16299.1, 16268.5, 19.4621, 3.92569, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601629, 601629, 1, 1, 1, 0, 16296.5, 16270.7, 18.783, 3.91941, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601630, 601630, 1, 1, 1, 0, 16305.9, 16260.9, 21.7662, 3.66016, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601631, 601631, 1, 1, 1, 0, 16303.8, 16263.5, 20.9705, 3.79217, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601632, 601632, 1, 1, 1, 0, 16265.4, 16289.1, 14.2102, 5.81385, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601633, 601633, 1, 1, 1, 0, 16266.7, 16291.9, 14.7185, 5.95522, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601634, 601634, 1, 1, 1, 0, 16267.4, 16294.8, 15.086, 5.99606, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601635, 601635, 1, 1, 1, 0, 16221.7, 16326.5, 20.9175, 4.60715, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601636, 601636, 1, 1, 1, 0, 16243.2, 16324.7, 20.9227, 4.59138, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601637, 601637, 1, 1, 1, 0, 16246, 16324.3, 20.9227, 4.59138, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601638, 601638, 1, 1, 1, 0, 16248.7, 16324, 20.9212, 4.59138, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601639, 601639, 1, 1, 1, 0, 16247.3, 16291.2, 20.859, 4.72876, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601640, 601640, 1, 1, 1, 0, 16250.7, 16291.2, 20.8647, 4.72876, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601641, 601641, 1, 1, 1, 0, 16253.9, 16291.5, 20.864, 4.72876, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601642, 601642, 1, 1, 1, 0, 16257.4, 16291.8, 20.8667, 4.72876, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601643, 601643, 1, 1, 1, 0, 16238, 16289, 20.8743, 4.64157, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601644, 601644, 1, 1, 1, 0, 16241.4, 16288.8, 20.8806, 4.64157, 25, 0, 0, 1000000, 260150, 0, 0, 0, 0),
(601645, 601645, 1, 1, 1, 0, 16227.8, 16290.1, 31.7204, 1.44149, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601646, 31146, 1, 1, 1, 0, 16211.7, 16250.7, 14.9206, 6.15196, 300, 0, 0, 24009944, 0, 0, 0, 0, 0),
(601647, 31146, 1, 1, 1, 0, 16211.8, 16257, 15.248, 0.116152, 300, 0, 0, 24009944, 0, 0, 0, 0, 0),
(601648, 31146, 1, 1, 1, 0, 16209.2, 16262.4, 15.3925, 0.552075, 300, 0, 0, 24009944, 0, 0, 0, 0, 0),
(601651, 60151, 1, 1, 1, 0, 16239, 16293.7, 13.1752, 1.46258, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601652, 60152, 1, 1, 1, 0, 16253.4, 16299.9, 13.1759, 4.31827, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601653, 60153, 1, 1, 1, 0, 16239.4, 16301.1, 13.1752, 4.61203, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601654, 60154, 1, 1, 1, 0, 16255.3, 16295.9, 13.1744, 2.99545, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601655, 60155, 1, 1, 1, 0, 16242.5, 16293.3, 13.1752, 1.47829, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601656, 60156, 1, 1, 1, 0, 16249.7, 16292.7, 13.1757, 1.32199, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601657, 60157, 1, 1, 1, 0, 16252.6, 16292.4, 13.1759, 1.40837, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601658, 60158, 1, 1, 1, 0, 16246.8, 16299.9, 13.1755, 4.53427, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601659, 60159, 1, 1, 1, 0, 16246.1, 16293.9, 13.1759, 1.45552, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601660, 60160, 1, 1, 1, 0, 16243.1, 16300.8, 13.1752, 4.51385, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601661, 60161, 1, 1, 1, 0, 16250.2, 16300.2, 13.1757, 4.57355, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601662, 60162, 1, 1, 1, 0, 16225.7, 16300.7, 20.8599, 5.01875, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601663, 60163, 1, 1, 1, 0, 16237.8, 16314.9, 20.8445, 3.77947, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601664, 60164, 1, 1, 1, 0, 16234.2, 16316.2, 20.847, 4.41164, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601665, 60165, 1, 1, 1, 0, 16236.6, 16297.3, 20.8457, 0.64654, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601666, 60166, 1, 1, 1, 0, 16254.5, 16301.9, 20.8442, 2.76317, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601667, 60167, 1, 1, 1, 0, 16253.6, 16298.6, 20.8449, 2.23696, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601668, 60168, 1, 1, 1, 0, 16255.4, 16304.8, 20.8443, 3.06948, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601669, 60169, 1, 1, 1, 0, 16245.2, 16296.5, 20.8441, 1.9071, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601670, 60170, 1, 1, 1, 0, 16254.9, 16310.9, 20.8445, 3.45038, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601671, 60171, 1, 1, 1, 0, 16252.3, 16313.5, 20.8446, 3.96482, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601672, 60172, 1, 1, 1, 0, 16255.1, 16307.8, 20.8443, 3.30116, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601673, 60173, 1, 1, 1, 0, 16248.8, 16314.6, 20.8446, 4.45178, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601674, 60174, 1, 1, 1, 0, 16249.9, 16296.8, 20.8449, 1.5144, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601675, 60175, 1, 1, 1, 0, 16240.5, 16291.9, 22.9303, 1.45472, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601676, 60176, 1, 1, 1, 0, 16242.6, 16311.2, 20.8431, 4.58137, 25, 0, 0, 1000000, 250000, 0, 0, 0, 0),
(601678, 601678, 1, 1, 1, 0, 16212.1, 16284.4, 12.9097, 3.29155, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601677, 601677, 1, 1, 1, 0, 16212.4, 16281.8, 12.7439, 3.29155, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601679, 601679, 1, 1, 1, 0, 16212.1, 16287.1, 13.1808, 3.24836, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601680, 601680, 1, 1, 1, 0, 16212.3, 16289.3, 13.4514, 3.09913, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601681, 601681, 1, 1, 1, 0, 16212.2, 16292, 13.7413, 3.13055, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601682, 601682, 1, 1, 1, 0, 16212.2, 16294.7, 14.1255, 3.13055, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601683, 601683, 1, 1, 1, 0, 16212.3, 16297.1, 14.2575, 3.13055, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601684, 601684, 1, 1, 1, 0, 16212.6, 16299.9, 14.1174, 2.93027, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601685, 601685, 1, 1, 1, 0, 16212.6, 16302.5, 14.3508, 3.24443, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601686, 601686, 1, 1, 1, 0, 16212.8, 16305.3, 14.739, 3.17374, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601687, 601687, 1, 1, 1, 0, 16213.2, 16308, 15.2581, 3.11484, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601688, 601688, 1, 1, 1, 0, 16213.4, 16310.9, 15.793, 3.16589, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601689, 601689, 1, 1, 1, 0, 16213.9, 16314, 16.0897, 2.97347, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601690, 601690, 1, 1, 1, 0, 16214.4, 16317.1, 16.2086, 2.97347, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601691, 601691, 1, 1, 1, 0, 16214.9, 16320.1, 16.5246, 2.97347, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601692, 601692, 1, 1, 1, 0, 16215.4, 16323, 17.1629, 2.97347, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601693, 601693, 1, 1, 1, 0, 16216, 16326.3, 18.3182, 2.97347, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601694, 601694, 1, 1, 1, 0, 16216.5, 16329.8, 20.254, 2.97347, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601695, 601695, 1, 1, 1, 0, 16214.6, 16331.3, 20.866, 4.43823, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601696, 601696, 1, 1, 1, 0, 16211.6, 16332.9, 20.8497, 4.43823, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601697, 601697, 1, 1, 1, 0, 16208.4, 16334.3, 20.6828, 4.43823, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601698, 601698, 1, 1, 1, 0, 16205.3, 16335.2, 20.1622, 4.43823, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601699, 601699, 1, 1, 1, 0, 16203.9, 16330.8, 18.7315, 6.27211, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601700, 601700, 1, 1, 1, 0, 16204.9, 16327, 18.3482, 0.134214, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601701, 601701, 1, 1, 1, 0, 16205.9, 16323.1, 18.2392, 0.738983, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601702, 601702, 1, 1, 1, 0, 16206.5, 16319.1, 18.1171, 0.248097, 300, 0, 0, 5342, 0, 0, 0, 0, 0),
(601703, 601703, 1, 1, 1, 0, 16206.4, 16315.4, 17.7365, 6.16215, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- ######################################################--
-- VENDOR ITEMS
-- ######################################################--
INSERT INTO `npc_vendor` (`entry`,`item`) VALUES
('601500','2553'),
('601500','2555'),
('601500','3393'),
('601500','3394'),
('601500','3395'),
('601500','3396'),
('601500','3830'),
('601500','3831'),
('601500','3832'),
('601500','4597'),
('601500','4624'),
('601500','5640'),
('601500','5642'),
('601500','5643'),
('601500','6053'),
('601500','6054'),
('601500','6055'),
('601500','6056'),
('601500','6057'),
('601500','6068'),
('601500','6211'),
('601500','6663'),
('601500','9293'),
('601500','9294'),
('601500','9295'),
('601500','9296'),
('601500','9297'),
('601500','9298'),
('601500','9300'),
('601500','9301'),
('601500','9302'),
('601500','9303'),
('601500','9304'),
('601500','9305'),
('601500','10644'),
('601500','12958'),
('601500','13476'),
('601500','13477'),
('601500','13478'),
('601500','13479'),
('601500','13480'),
('601500','13481'),
('601500','13482'),
('601500','13483'),
('601500','13484'),
('601500','13485'),
('601500','13486'),
('601500','13487'),
('601500','13488'),
('601500','13489'),
('601500','13490'),
('601500','13491'),
('601500','13492'),
('601500','13493'),
('601500','13494'),
('601500','13495'),
('601500','13496'),
('601500','13497'),
('601500','13499'),
('601500','13501'),
('601500','13517'),
('601500','13518'),
('601500','13519'),
('601500','13520'),
('601500','13521'),
('601500','13522'),
('601500','14634'),
('601500','17709'),
('601500','18257'),
('601500','20011'),
('601500','20012'),
('601500','20013'),
('601500','20014'),
('601500','20761'),
('601500','21547'),
('601500','22900'),
('601500','22901'),
('601500','22902'),
('601500','22903'),
('601500','22904'),
('601500','22905'),
('601500','22906'),
('601500','22907'),
('601500','22908'),
('601500','22909'),
('601500','22910'),
('601500','22911'),
('601500','22912'),
('601500','22913'),
('601500','22914'),
('601500','22915'),
('601500','22916'),
('601500','22917'),
('601500','22918'),
('601500','22919'),
('601500','22920'),
('601500','22921'),
('601500','22922'),
('601500','22923'),
('601500','22924'),
('601500','22925'),
('601500','22926'),
('601500','22927'),
('601500','23574'),
('601500','24001'),
('601500','25869'),
('601500','25870'),
('601500','29232'),
('601500','30443'),
('601500','31354'),
('601500','31355'),
('601500','31356'),
('601500','31357'),
('601500','31680'),
('601500','31681'),
('601500','31682'),
('601500','32070'),
('601500','32071'),
('601500','33209'),
('601500','35294'),
('601500','35295'),
('601500','35752'),
('601500','35753'),
('601500','35754'),
('601500','35755'),
('601500','44564'),
('601500','44565'),
('601500','44566'),
('601500','44567'),
('601500','44568'),
-- ('601501','39146'),
-- ('601501','39232'),
-- ('601501','39246'),
-- ('601501','39282'),
('601501','39392'),
('601501','39421'),
('601501','39470'),
('601501','39472'),
('601501','40064'),
('601501','40065'),
('601501','40069'),
('601501','40071'),
('601501','40369'),
('601501','40374'),
('601501','40378'),
('601501','40387'),
('601501','40412'),
('601501','40427'),
('601501','40486'),
('601501','40678'),
('601501','40679'),
('601501','40680'),
('601501','40681'),
('601501','42645'),
('601501','42646'),
('601501','42647'),
('601501','43992'),
('601501','44657'),
('601501','44658'),
('601501','44659'),
('601501','44660'),
('601501','44661'),
('601501','44662'),
('601501','44664'),
('601501','44665'),
('601501','45116'),
('601501','45133'),
('601501','45193'),
('601501','45236'),
('601501','45243'),
('601501','45262'),
('601501','45285'),
('601501','45443'),
('601501','45447'),
('601501','45459'),
('601501','45480'),
('601501','45485'),
('601501','45517'),
('601501','45538'),
('601501','45539'),
('601501','45696'),
('601501','45699'),
('601501','45819'),
('601501','45820'),
('601501','45821'),
('601501','45822'),
('601501','45823'),
('601501','45933'),
('601501','45945'),
('601501','46008'),
('601501','46015'),
('601501','46022'),
('601501','46040'),
('601501','46047'),
('601501','46343'),
('601501','47043'),
('601501','47060'),
('601501','47105'),
('601501','47110'),
('601501','47116'),
('601501','47133'),
('601501','47139'),
('601501','47144'),
('601501','47219'),
('601501','47272'),
('601501','47297'),
('601501','47305'),
('601501','47307'),
('601501','47433'),
('601501','47458'),
('601501','47466'),
('601501','47468'),
('601501','47494'),
('601501','47562'),
('601501','47566'),
('601501','47607'),
('601501','47619'),
('601501','47679'),
('601501','47747'),
('601501','47849'),
('601501','47864'),
('601501','47872'),
('601501','47890'),
('601501','47915'),
('601501','47930'),
('601501','47939'),
('601501','47957'),
('601501','47988'),
('601501','48003'),
('601501','48011'),
('601501','48030'),
('601501','49306'),
('601501','49485'),
('601501','49492'),
('601501','49799'),
('601501','49818'),
('601501','49975'),
('601501','49989'),
('601501','50005'),
('601501','50023'),
('601501','50061'),
('601501','50180'),
('601501','50182'),
('601501','50195'),
('601501','50196'),
('601501','50211'),
('601501','50228'),
('601501','50310'),
('601501','50421'),
('601501','50452'),
('601501','50609'),
('601501','50627'),
('601501','50633'),
('601501','50647'),
('601501','50658'),
('601501','50682'),
('601501','50700'),
('601501','50724'),
('601501','50728'),
('601501','50763'),
('601501','50809'),
('601501','50852'),
('601501','51008'),
('601501','51012'),
('601501','51016'),
('601501','51548'),
('601501','51779'),
('601501','51804'),
('601501','51805'),
('601501','51806'),
('601501','51807'),
('601501','51808'),
('601501','51822'),
('601501','51842'),
('601501','51863'),
('601501','51867'),
('601501','51871'),
('601501','51890'),
('601501','51894'),
('601501','51934'),
('601501','53103'),
('601501','53132'),
('601501','54557'),
('601501','54581'),
('601502','24544'),
('601502','24545'),
('601502','24546'),
('601502','24547'),
('601502','24549'),
('601502','24552'),
('601502','24553'),
('601502','24554'),
('601502','24555'),
('601502','24556'),
('601502','25830'),
('601502','25831'),
('601502','25832'),
('601502','25833'),
('601502','25834'),
('601502','25854'),
('601502','25855'),
('601502','25856'),
('601502','25857'),
('601502','25858'),
('601502','25997'),
('601502','25998'),
('601502','25999'),
('601502','26000'),
('601502','26001'),
('601502','27469'),
('601502','27470'),
('601502','27471'),
('601502','27472'),
('601502','27473'),
('601502','27702'),
('601502','27703'),
('601502','27704'),
('601502','27705'),
('601502','27706'),
('601502','27707'),
('601502','27708'),
('601502','27709'),
('601502','27710'),
('601502','27711'),
('601502','27879'),
('601502','27880'),
('601502','27881'),
('601502','27882'),
('601502','27883'),
('601502','28126'),
('601502','28127'),
('601502','28128'),
('601502','28129'),
('601502','28130'),
('601502','28136'),
('601502','28137'),
('601502','28138'),
('601502','28139'),
('601502','28140'),
('601502','28331'),
('601502','28332'),
('601502','28333'),
('601502','28334'),
('601502','28335'),
('601502','30186'),
('601502','30187'),
('601502','30188'),
('601502','30200'),
('601502','30201'),
('601502','31375'),
('601502','31376'),
('601502','31377'),
('601502','31378'),
('601502','31379'),
('601502','31396'),
('601502','31397'),
('601502','31400'),
('601502','31406'),
('601502','31407'),
('601502','31409'),
('601502','31410'),
('601502','31411'),
('601502','31412'),
('601502','31413'),
('601502','31613'),
('601502','31614'),
('601502','31616'),
('601502','31618'),
('601502','31619'),
('601503','30486'),
('601503','30487'),
('601503','30488'),
('601503','30489'),
('601503','30490'),
('601503','31960'),
('601503','31961'),
('601503','31962'),
('601503','31963'),
('601503','31964'),
('601503','31967'),
('601503','31968'),
('601503','31969'),
('601503','31971'),
('601503','31972'),
('601503','31973'),
('601503','31974'),
('601503','31975'),
('601503','31976'),
('601503','31977'),
('601503','31979'),
('601503','31980'),
('601503','31981'),
('601503','31982'),
('601503','31983'),
('601503','31987'),
('601503','31988'),
('601503','31989'),
('601503','31990'),
('601503','31991'),
('601503','31992'),
('601503','31993'),
('601503','31995'),
('601503','31996'),
('601503','31997'),
('601503','31998'),
('601503','31999'),
('601503','32000'),
('601503','32001'),
('601503','32002'),
('601503','32004'),
('601503','32005'),
('601503','32006'),
('601503','32007'),
('601503','32008'),
('601503','32009'),
('601503','32010'),
('601503','32011'),
('601503','32012'),
('601503','32013'),
('601503','32015'),
('601503','32016'),
('601503','32017'),
('601503','32018'),
('601503','32019'),
('601503','32020'),
('601503','32021'),
('601503','32022'),
('601503','32023'),
('601503','32024'),
('601503','32029'),
('601503','32030'),
('601503','32031'),
('601503','32032'),
('601503','32033'),
('601503','32034'),
('601503','32035'),
('601503','32036'),
('601503','32037'),
('601503','32038'),
('601503','32039'),
('601503','32040'),
('601503','32041'),
('601503','32042'),
('601503','32043'),
('601503','32047'),
('601503','32048'),
('601503','32049'),
('601503','32050'),
('601503','32051'),
('601503','32056'),
('601503','32057'),
('601503','32058'),
('601503','32059'),
('601503','32060'),
('601504','33664'),
('601504','33665'),
('601504','33666'),
('601504','33667'),
('601504','33668'),
('601504','33671'),
('601504','33672'),
('601504','33673'),
('601504','33674'),
('601504','33675'),
('601504','33676'),
('601504','33677'),
('601504','33678'),
('601504','33679'),
('601504','33680'),
('601504','33682'),
('601504','33683'),
('601504','33684'),
('601504','33685'),
('601504','33686'),
('601504','33690'),
('601504','33691'),
('601504','33692'),
('601504','33693'),
('601504','33694'),
('601504','33695'),
('601504','33696'),
('601504','33697'),
('601504','33698'),
('601504','33699'),
('601504','33700'),
('601504','33701'),
('601504','33702'),
('601504','33703'),
('601504','33704'),
('601504','33706'),
('601504','33707'),
('601504','33708'),
('601504','33709'),
('601504','33710'),
('601504','33711'),
('601504','33712'),
('601504','33713'),
('601504','33714'),
('601504','33715'),
('601504','33717'),
('601504','33718'),
('601504','33719'),
('601504','33720'),
('601504','33721'),
('601504','33722'),
('601504','33723'),
('601504','33724'),
('601504','33725'),
('601504','33726'),
('601504','33728'),
('601504','33729'),
('601504','33730'),
('601504','33731'),
('601504','33732'),
('601504','33738'),
('601504','33739'),
('601504','33740'),
('601504','33741'),
('601504','33742'),
('601504','33744'),
('601504','33745'),
('601504','33746'),
('601504','33747'),
('601504','33748'),
('601504','33749'),
('601504','33750'),
('601504','33751'),
('601504','33752'),
('601504','33753'),
('601504','33757'),
('601504','33758'),
('601504','33759'),
('601504','33760'),
('601504','33761'),
('601504','33767'),
('601504','33768'),
('601504','33769'),
('601504','33770'),
('601504','33771'),
('601505','34990'),
('601505','34991'),
('601505','34992'),
('601505','34993'),
('601505','34994'),
('601505','34998'),
('601505','34999'),
('601505','36015'),
('601505','36016'),
('601505','35002'),
('601505','35003'),
('601505','35004'),
('601505','35005'),
('601505','35006'),
('601505','35007'),
('601505','35009'),
('601505','35010'),
('601505','35011'),
('601505','35012'),
('601505','35013'),
('601505','35022'),
('601505','35023'),
('601505','35024'),
('601505','35025'),
('601505','35026'),
('601505','35027'),
('601505','35028'),
('601505','35029'),
('601505','35030'),
('601505','35031'),
('601505','35032'),
('601505','35033'),
('601505','35034'),
('601505','35035'),
('601505','35036'),
('601505','35042'),
('601505','35043'),
('601505','35044'),
('601505','35045'),
('601505','35046'),
('601505','35048'),
('601505','35049'),
('601505','35050'),
('601505','35051'),
('601505','35052'),
('601505','35053'),
('601505','35054'),
('601505','35055'),
('601505','35056'),
('601505','35057'),
('601505','35059'),
('601505','35060'),
('601505','35061'),
('601505','35062'),
('601505','35063'),
('601505','35066'),
('601505','35067'),
('601505','35068'),
('601505','35069'),
('601505','35070'),
('601505','35077'),
('601505','35078'),
('601505','35079'),
('601505','35080'),
('601505','35081'),
('601505','35083'),
('601505','35084'),
('601505','35085'),
('601505','35086'),
('601505','35087'),
('601505','35088'),
('601505','35089'),
('601505','35090'),
('601505','35091'),
('601505','35092'),
('601505','35096'),
('601505','35097'),
('601505','35098'),
('601505','35099'),
('601505','35100'),
('601505','35111'),
('601505','35112'),
('601505','35113'),
('601505','35114'),
('601505','35115'),
('601506','40784'),
('601506','40785'),
('601506','40786'),
('601506','40804'),
('601506','40805'),
('601506','40806'),
('601506','40823'),
('601506','40824'),
('601506','40825'),
('601506','40844'),
('601506','40845'),
('601506','40846'),
('601506','40862'),
('601506','40863'),
('601506','40864'),
('601506','40905'),
('601506','40926'),
('601506','40932'),
('601506','40938'),
('601506','40962'),
('601506','40990'),
('601506','40991'),
('601506','41000'),
('601506','41006'),
('601506','41012'),
('601506','41018'),
('601506','41026'),
('601506','41032'),
('601506','41037'),
('601506','41043'),
('601506','41080'),
('601506','41086'),
('601506','41136'),
('601506','41142'),
('601506','41150'),
('601506','41156'),
('601506','41198'),
('601506','41204'),
('601506','41210'),
('601506','41216'),
('601506','41274'),
('601506','41280'),
('601506','41286'),
('601506','41292'),
('601506','41297'),
('601506','41303'),
('601506','41309'),
('601506','41315'),
('601506','41320'),
('601506','41326'),
('601506','41649'),
('601506','41654'),
('601506','41660'),
('601506','41666'),
('601506','41671'),
('601506','41677'),
('601506','41682'),
('601506','41714'),
('601506','41766'),
('601506','41772'),
('601506','41853'),
('601506','41858'),
('601506','41863'),
('601506','41868'),
('601506','41873'),
('601506','41914'),
('601506','41920'),
('601506','41926'),
('601506','41933'),
('601506','41939'),
('601506','41945'),
('601506','41951'),
('601506','41958'),
('601506','41964'),
('601506','41970'),
('601506','41992'),
('601506','41997'),
('601506','42004'),
('601506','42010'),
('601506','42016'),
('601507','40781'),
('601507','40782'),
('601507','40783'),
('601507','40801'),
('601507','40802'),
('601507','40803'),
('601507','40819'),
('601507','40820'),
('601507','40821'),
('601507','40840'),
('601507','40841'),
('601507','40842'),
('601507','40859'),
('601507','40860'),
('601507','40861'),
('601507','40904'),
('601507','40925'),
('601507','40931'),
('601507','40937'),
('601507','40961'),
('601507','40988'),
('601507','40989'),
('601507','40999'),
('601507','41005'),
('601507','41011'),
('601507','41017'),
('601507','41025'),
('601507','41031'),
('601507','41036'),
('601507','41042'),
('601507','41079'),
('601507','41085'),
('601507','41135'),
('601507','41141'),
('601507','41149'),
('601507','41155'),
('601507','41162'),
('601507','41203'),
('601507','41209'),
('601507','41215'),
('601507','41273'),
('601507','41279'),
('601507','41284'),
('601507','41291'),
('601507','41296'),
('601507','41302'),
('601507','41308'),
('601507','41314'),
('601507','41319'),
('601507','41325'),
('601507','41648'),
('601507','41653'),
('601507','41659'),
('601507','41665'),
('601507','41670'),
('601507','41676'),
('601507','41681'),
('601507','41713'),
('601507','41765'),
('601507','41771'),
('601507','41852'),
('601507','41857'),
('601507','41862'),
('601507','41867'),
('601507','41872'),
('601507','41913'),
('601507','41919'),
('601507','41925'),
('601507','41931'),
('601507','41938'),
('601507','41944'),
('601507','41950'),
('601507','41957'),
('601507','41963'),
('601507','41969'),
('601507','41991'),
('601507','42001'),
('601507','42003'),
('601507','42009'),
('601507','42015'),
('601508','40778'),
('601508','40779'),
('601508','40780'),
('601508','40797'),
('601508','40798'),
('601508','40799'),
('601508','40816'),
('601508','40817'),
('601508','40818'),
('601508','40836'),
('601508','40837'),
('601508','40838'),
('601508','40856'),
('601508','40857'),
('601508','40858'),
('601508','40898'),
('601508','40918'),
('601508','40930'),
('601508','40936'),
('601508','40960'),
('601508','40986'),
('601508','40987'),
('601508','40998'),
('601508','41004'),
('601508','41010'),
('601508','41016'),
('601508','41023'),
('601508','41024'),
('601508','41030'),
('601508','41041'),
('601508','41078'),
('601508','41084'),
('601508','41134'),
('601508','41140'),
('601508','41148'),
('601508','41154'),
('601508','41160'),
('601508','41202'),
('601508','41208'),
('601508','41214'),
('601508','41268'),
('601508','41269'),
('601508','41270'),
('601508','41271'),
('601508','41272'),
('601508','41278'),
('601508','41290'),
('601508','41301'),
('601508','41313'),
('601508','41324'),
('601508','41643'),
('601508','41644'),
('601508','41645'),
('601508','41646'),
('601508','41647'),
('601508','41658'),
('601508','41664'),
('601508','41675'),
('601508','41712'),
('601508','41770'),
('601508','41847'),
('601508','41848'),
('601508','41849'),
('601508','41850'),
('601508','41851'),
('601508','41912'),
('601508','41918'),
('601508','41924'),
('601508','41930'),
('601508','41937'),
('601508','41943'),
('601508','41949'),
('601508','41956'),
('601508','41962'),
('601508','41968'),
('601508','41990'),
('601508','41996'),
('601508','42002'),
('601508','42008'),
('601508','42014'),
('601509','40787'),
('601509','40788'),
('601509','40789'),
('601509','40807'),
('601509','40808'),
('601509','40809'),
('601509','40826'),
('601509','40827'),
('601509','40828'),
('601509','40847'),
('601509','40848'),
('601509','40849'),
('601509','40866'),
('601509','40868'),
('601509','40869'),
('601509','40907'),
('601509','40927'),
('601509','40933'),
('601509','40939'),
('601509','40963'),
('601509','40992'),
('601509','40993'),
('601509','41001'),
('601509','41007'),
('601509','41013'),
('601509','41019'),
('601509','41027'),
('601509','41033'),
('601509','41038'),
('601509','41044'),
('601509','41081'),
('601509','41087'),
('601509','41137'),
('601509','41143'),
('601509','41151'),
('601509','41157'),
('601509','41199'),
('601509','41205'),
('601509','41211'),
('601509','41217'),
('601509','41275'),
('601509','41281'),
('601509','41287'),
('601509','41293'),
('601509','41298'),
('601509','41304'),
('601509','41310'),
('601509','41316'),
('601509','41321'),
('601509','41327'),
('601509','41650'),
('601509','41655'),
('601509','41661'),
('601509','41667'),
('601509','41672'),
('601509','41678'),
('601509','41683'),
('601509','41715'),
('601509','41767'),
('601509','41773'),
('601509','41854'),
('601509','41859'),
('601509','41864'),
('601509','41869'),
('601509','41874'),
('601509','41915'),
('601509','41921'),
('601509','41927'),
('601509','41934'),
('601509','41940'),
('601509','41946'),
('601509','41953'),
('601509','41959'),
('601509','41965'),
('601509','41971'),
('601509','41993'),
('601509','41998'),
('601509','42005'),
('601509','42011'),
('601509','42017'),
('601510','40790'),
('601510','40791'),
('601510','40792'),
('601510','40810'),
('601510','40811'),
('601510','40812'),
('601510','40829'),
('601510','40830'),
('601510','40831'),
('601510','40850'),
('601510','40851'),
('601510','40852'),
('601510','40870'),
('601510','40871'),
('601510','40872'),
('601510','40910'),
('601510','40928'),
('601510','40934'),
('601510','40940'),
('601510','40964'),
('601510','40994'),
('601510','40995'),
('601510','41002'),
('601510','41008'),
('601510','41014'),
('601510','41020'),
('601510','41028'),
('601510','41034'),
('601510','41039'),
('601510','41045'),
('601510','41082'),
('601510','41088'),
('601510','41138'),
('601510','41144'),
('601510','41152'),
('601510','41158'),
('601510','41200'),
('601510','41206'),
('601510','41212'),
('601510','41218'),
('601510','41276'),
('601510','41282'),
('601510','41288'),
('601510','41294'),
('601510','41299'),
('601510','41305'),
('601510','41311'),
('601510','41317'),
('601510','41322'),
('601510','41328'),
('601510','41651'),
('601510','41656'),
('601510','41662'),
('601510','41668'),
('601510','41673'),
('601510','41679'),
('601510','41684'),
('601510','41716'),
('601510','41768'),
('601510','41774'),
('601510','41855'),
('601510','41860'),
('601510','41865'),
('601510','41870'),
('601510','41875'),
('601510','41916'),
('601510','41922'),
('601510','41928'),
('601510','41935'),
('601510','41941'),
('601510','41947'),
('601510','41954'),
('601510','41960'),
('601510','41966'),
('601510','41972'),
('601510','41994'),
('601510','41999'),
('601510','42006'),
('601510','42012'),
('601510','42018'),
('601511','40610'),
('601511','40611'),
('601511','40612'),
('601511','40613'),
('601511','40614'),
('601511','40615'),
('601511','40616'),
('601511','40617'),
('601511','40618'),
('601511','40619'),
('601511','40620'),
('601511','40621'),
('601511','40622'),
('601511','40623'),
('601511','40624'),
('601511','40625'),
('601511','40626'),
('601511','40627'),
('601511','40628'),
('601511','40629'),
('601511','40630'),
('601511','40631'),
('601511','40632'),
('601511','40633'),
('601511','40634'),
('601511','40635'),
('601511','40636'),
('601511','40637'),
('601511','40638'),
('601511','40639'),
('601511','45632'),
('601511','45633'),
('601511','45634'),
('601511','45635'),
('601511','45636'),
('601511','45637'),
('601511','45638'),
('601511','45639'),
('601511','45640'),
('601511','45641'),
('601511','45642'),
('601511','45643'),
('601511','45644'),
('601511','45645'),
('601511','45646'),
('601511','45647'),
('601511','45648'),
('601511','45649'),
('601511','45650'),
('601511','45651'),
('601511','45652'),
('601511','45653'),
('601511','45654'),
('601511','45655'),
('601511','45656'),
('601511','45657'),
('601511','45658'),
('601511','45659'),
('601511','45660'),
('601511','45661'),
('601511','47242'),
('601511','47557'),
('601511','47558'),
('601511','47559'),
('601511','52025'),
('601511','52026'),
('601511','52027'),
('601511','52028'),
('601511','52029'),
('601511','52030'),
('601512','1251'),
('601512','2581'),
('601512','3530'),
('601512','3531'),
('601512','6450'),
('601512','6451'),
('601512','8544'),
('601512','8545'),
('601512','14529'),
('601512','14530'),
('601512','19066'),
('601512','19067'),
('601512','19068'),
('601512','19307'),
('601512','20065'),
('601512','20066'),
('601512','20067'),
('601512','20232'),
('601512','20234'),
('601512','20235'),
('601512','20237'),
('601512','20243'),
('601512','20244'),
('601512','21990'),
('601512','21991'),
('601512','34721'),
('601512','34722'),
('601513','3871'),
('601513','3875'),
('601513','7976'),
('601513','7991'),
('601513','8028'),
('601513','11610'),
('601513','11611'),
('601513','11612'),
('601513','12696'),
('601513','12698'),
('601513','12699'),
('601513','12703'),
('601513','12711'),
('601513','12716'),
('601513','12717'),
('601513','12720'),
('601513','12725'),
('601513','12726'),
('601513','12727'),
('601513','12728'),
('601513','12821'),
('601513','12833'),
('601513','12834'),
('601513','12835'),
('601513','12836'),
('601513','12837'),
('601513','12838'),
('601513','12839'),
('601513','17049'),
('601513','17051'),
('601513','17052'),
('601513','17053'),
('601513','17059'),
('601513','17060'),
('601513','18264'),
('601513','18592'),
('601513','20553'),
('601513','20554'),
('601513','20555'),
('601513','22220'),
('601513','22222'),
('601513','22388'),
('601513','22389'),
('601513','22390'),
('601513','23605'),
('601513','23606'),
('601513','23607'),
('601513','23608'),
('601513','23609'),
('601513','23610'),
('601513','23611'),
('601513','23612'),
('601513','23613'),
('601513','23615'),
('601513','23620'),
('601513','23621'),
('601513','23622'),
('601513','23623'),
('601513','23624'),
('601513','23625'),
('601513','23626'),
('601513','23627'),
('601513','23628'),
('601513','23629'),
('601513','23630'),
('601513','23631'),
('601513','23632'),
('601513','23633'),
('601513','23634'),
('601513','23635'),
('601513','23636'),
('601513','23637'),
('601513','30321'),
('601513','30322'),
('601513','30323'),
('601513','30324'),
('601513','31390'),
('601513','31391'),
('601513','31392'),
('601513','31393'),
('601513','31394'),
('601513','31395'),
('601513','32736'),
('601513','32737'),
('601513','32738'),
('601513','32739'),
('601513','33954'),
('601513','35208'),
('601513','35209'),
('601513','35210'),
('601513','35211'),
('601513','45088'),
('601513','45089'),
('601513','45090'),
('601513','45091'),
('601513','45092'),
('601513','45093'),
('601513','47622'),
('601513','47623'),
('601513','47624'),
('601513','47625'),
('601513','47626'),
('601513','47627'),
('601513','47640'),
('601513','47641'),
('601513','47642'),
('601513','47643'),
('601513','47644'),
('601513','47645'),
('601513','49969'),
('601513','49970'),
('601513','49971'),
('601513','49972'),
('601513','49973'),
('601513','49974'),
('601514','23118'),
('601514','23119'),
('601514','23120'),
('601514','23121'),
('601514','24033'),
('601514','24035'),
('601514','24037'),
('601514','24039'),
('601514','28463'),
('601514','28464'),
('601514','28465'),
('601514','32200'),
('601514','32201'),
('601514','32202'),
('601514','32203'),
('601514','33135'),
('601514','33137'),
('601514','34256'),
('601514','34831'),
('601514','36767'),
('601514','39919'),
('601514','39920'),
('601514','39927'),
('601514','39932'),
('601514','40008'),
('601514','40009'),
('601514','40010'),
('601514','40011'),
('601514','40119'),
('601514','40120'),
('601514','40121'),
('601514','40122'),
('601514','41440'),
('601514','41441'),
('601514','41442'),
('601514','41443'),
('601514','42145'),
('601514','42146'),
('601514','42155'),
('601514','45880'),
('601514','45881'),
('601515','22739'),
('601515','44600'),
('601515','44602'),
('601515','44709'),
('601515','44714'),
('601515','44793'),
('601516','39296'),
('601516','40265'),
('601516','45327'),
('601516','45872'),
('601516','46342'),
('601516','48697'),
('601516','48711'),
('601516','49844'),
('601516','50034'),
('601516','50638'),
('601516','50776'),
('601516','51927'),
('601517','39225'),
('601517','39241'),
('601517','39272'),
('601517','39297'),
('601517','39404'),
('601517','39415'),
('601517','39425'),
('601517','40250'),
('601517','40251'),
('601517','40252'),
('601517','40253'),
('601517','40254'),
('601517','40403'),
('601517','40405'),
('601517','40410'),
('601517','40721'),
('601517','40722'),
('601517','40723'),
('601517','40724'),
('601517','41609'),
('601517','41610'),
('601517','43565'),
('601517','43566'),
('601517','43988'),
('601517','44005'),
('601517','45138'),
('601517','45224'),
('601517','45242'),
('601517','45317'),
('601517','45318'),
('601517','45319'),
('601517','45322'),
('601517','45461'),
('601517','45486'),
('601517','45493'),
('601517','45496'),
('601517','45529'),
('601517','45541'),
('601517','45588'),
('601517','45618'),
('601517','45704'),
('601517','45873'),
('601517','45973'),
('601517','46014'),
('601517','46032'),
('601517','46042'),
('601517','46320'),
('601517','46321'),
('601517','46341'),
('601517','46347'),
('601517','46970'),
('601517','46971'),
('601517','46976'),
('601517','46977'),
('601517','47042'),
('601517','47063'),
('601517','47089'),
('601517','47095'),
('601517','47183'),
('601517','47192'),
('601517','47225'),
('601517','47232'),
('601517','47238'),
('601517','47256'),
('601517','47257'),
('601517','47275'),
('601517','47291'),
('601517','47320'),
('601517','47328'),
('601517','47417'),
('601517','47418'),
('601517','47436'),
('601517','47452'),
('601517','47481'),
('601517','47490'),
('601517','47501'),
('601517','47545'),
('601517','47546'),
('601517','47547'),
('601517','47548'),
('601517','47549'),
('601517','47550'),
('601517','47551'),
('601517','47552'),
('601517','47553'),
('601517','47554'),
('601517','48666'),
('601517','48667'),
('601517','48668'),
('601517','48669'),
('601517','48670'),
('601517','48671'),
('601517','48672'),
('601517','48673'),
('601517','48674'),
('601517','48675'),
('601517','49307'),
('601517','49491'),
('601517','49792'),
('601517','49823'),
('601517','49832'),
('601517','49842'),
('601517','49998'),
('601517','50014'),
('601517','50019'),
('601517','50074'),
('601517','50205'),
('601517','50466'),
('601517','50467'),
('601517','50468'),
('601517','50469'),
('601517','50470'),
('601517','50628'),
('601517','50653'),
('601517','50668'),
('601517','50677'),
('601517','50718'),
('601517','50764'),
('601517','50791'),
('601517','50859'),
('601517','51382'),
('601517','51584'),
('601517','51826'),
('601517','51848'),
('601517','51888'),
('601517','51912'),
('601517','51933'),
('601517','53115'),
('601517','53489'),
('601517','54556'),
('601517','54583'),
('601517','54801'),
('601517','54803'),
('601517','54804'),
('601517','54805'),
('601518','2320'),
('601518','2321'),
('601518','2589'),
('601518','2592'),
('601518','2996'),
('601518','2997'),
('601518','3182'),
('601518','4291'),
('601518','4305'),
('601518','4306'),
('601518','4337'),
('601518','4338'),
('601518','4339'),
('601518','8343'),
('601518','10285'),
('601518','14047'),
('601518','14048'),
('601518','14227'),
('601518','14256'),
('601518','14341'),
('601518','14342'),
('601518','21840'),
('601518','21842'),
('601518','21844'),
('601518','21845'),
('601518','21877'),
('601518','21881'),
('601518','24271'),
('601518','24272'),
('601518','33470'),
('601518','38426'),
('601518','41510'),
('601518','41511'),
('601518','41593'),
('601518','41594'),
('601518','41595'),
('601518','42253'),
('601519','43950'),
('601519','44115'),
('601519','44710'),
('601519','44711'),
('601519','44713'),
('601519','45706'),
('601519','45714'),
('601519','45715'),
('601519','45716'),
('601519','45717'),
('601519','45718'),
('601519','45719'),
('601519','45720'),
('601519','45721'),
('601519','45722'),
('601519','45723'),
('601519','49702'),
('601519','54637'),
('601520','804'),
('601520','805'),
('601520','828'),
('601520','856'),
('601520','857'),
('601520','918'),
('601520','932'),
('601520','933'),
('601520','1470'),
('601520','1537'),
('601520','1652'),
('601520','1685'),
('601520','1725'),
('601520','1729'),
('601520','2082'),
('601520','2657'),
('601520','3233'),
('601520','3343'),
('601520','3352'),
('601520','3914'),
('601520','4238'),
('601520','4240'),
('601520','4241'),
('601520','4245'),
('601520','4496'),
('601520','4497'),
('601520','4498'),
('601520','4499'),
('601520','4500'),
('601520','4957'),
('601520','5081'),
('601520','5571'),
('601520','5572'),
('601520','5573'),
('601520','5574'),
('601520','5575'),
('601520','5576'),
('601520','5762'),
('601520','5763'),
('601520','5764'),
('601520','5765'),
('601520','6446'),
('601520','6756'),
('601520','9587'),
('601520','10050'),
('601520','10051'),
('601520','10959'),
('601520','11324'),
('601520','11742'),
('601520','11845'),
('601520','14046'),
('601520','14155'),
('601520','14156'),
('601520','17966'),
('601520','19291'),
('601520','19914'),
('601520','20400'),
('601520','20474'),
('601520','21340'),
('601520','21341'),
('601520','21342'),
('601520','21841'),
('601520','21843'),
('601520','21858'),
('601520','21872'),
('601520','21876'),
('601520','22243'),
('601520','22244'),
('601520','22246'),
('601520','22248'),
('601520','22249'),
('601520','22250'),
('601520','22251'),
('601520','22252'),
('601520','22571'),
('601520','22679'),
('601520','22976'),
('601520','23389'),
('601520','23774'),
('601520','23775'),
('601520','23852'),
('601520','24270'),
('601520','27680'),
('601520','29540'),
('601520','30744'),
('601520','30745'),
('601520','30746'),
('601520','30747'),
('601520','30748'),
('601520','33117'),
('601520','34067'),
('601520','34482'),
('601520','34490'),
('601520','34845'),
('601520','35516'),
('601520','37606'),
('601520','38082'),
('601520','38145'),
('601520','38225'),
('601520','38347'),
('601520','38399'),
('601520','39489'),
('601520','41597'),
('601520','41598'),
('601520','41599'),
('601520','41600'),
('601520','43345'),
('601520','44446'),
('601520','45773'),
('601520','49295'),
('601520','50316'),
('601520','50317'),
('601520','51809'),
('601521','728'),
('601521','2697'),
('601521','2698'),
('601521','2699'),
('601521','2700'),
('601521','2701'),
('601521','2889'),
('601521','3678'),
('601521','3679'),
('601521','3680'),
('601521','3681'),
('601521','3682'),
('601521','3683'),
('601521','3734'),
('601521','3735'),
('601521','3736'),
('601521','3737'),
('601521','4609'),
('601521','5482'),
('601521','5483'),
('601521','5484'),
('601521','5485'),
('601521','5486'),
('601521','5487'),
('601521','5488'),
('601521','5489'),
('601521','5528'),
('601521','6039'),
('601521','6325'),
('601521','6326'),
('601521','6328'),
('601521','6329'),
('601521','6330'),
('601521','6368'),
('601521','6369'),
('601521','6661'),
('601521','6892'),
('601521','7678'),
('601521','12226'),
('601521','12227'),
('601521','12228'),
('601521','12229'),
('601521','12231'),
('601521','12232'),
('601521','12233'),
('601521','12239'),
('601521','12240'),
('601521','13939'),
('601521','13940'),
('601521','13941'),
('601521','13942'),
('601521','13943'),
('601521','13945'),
('601521','13946'),
('601521','13947'),
('601521','13948'),
('601521','13949'),
('601521','16072'),
('601521','16110'),
('601521','16111'),
('601521','16767'),
('601521','17062'),
('601521','17200'),
('601521','17201'),
('601521','18046'),
('601521','18160'),
('601521','18267'),
('601521','20075'),
('601521','21025'),
('601521','21099'),
('601521','21219'),
('601521','22647'),
('601521','27684'),
('601521','27685'),
('601521','27686'),
('601521','27687'),
('601521','27688'),
('601521','27689'),
('601521','27690'),
('601521','27691'),
('601521','27692'),
('601521','27693'),
('601521','27694'),
('601521','27695'),
('601521','27696'),
('601521','27697'),
('601521','27698'),
('601521','27699'),
('601521','27700'),
('601521','27736'),
('601521','30156'),
('601521','31674'),
('601521','31675'),
('601521','33869'),
('601521','33870'),
('601521','33871'),
('601521','33873'),
('601521','33875'),
('601521','33925'),
('601521','34126'),
('601521','34413'),
('601521','34834'),
('601521','35564'),
('601521','35566'),
('601521','39644'),
('601521','39692'),
('601521','43017'),
('601521','43018'),
('601521','43019'),
('601521','43020'),
('601521','43021'),
('601521','43022'),
('601521','43023'),
('601521','43024'),
('601521','43025'),
('601521','43026'),
('601521','43027'),
('601521','43028'),
('601521','43029'),
('601521','43030'),
('601521','43031'),
('601521','43032'),
('601521','43033'),
('601521','43034'),
('601521','43035'),
('601521','43036'),
('601521','43037'),
('601521','43505'),
('601521','43506'),
('601521','43507'),
('601521','43508'),
('601521','43509'),
('601521','43510'),
('601521','44858'),
('601521','44859'),
('601521','44860'),
('601521','44861'),
('601521','44862'),
('601521','44954'),
('601521','44977'),
('601521','46710'),
('601521','46803'),
('601521','46804'),
('601521','46805'),
('601521','46806'),
('601521','46807'),
('601521','46810'),
--
('601522','12662'),
('601522','12811'),
('601522','17010'),
('601522','17011'),
('601522','20520'),
('601522','22682'),
('601522','32428'),
('601522','34664'),
('601522','43102'),
('601522','45087'),
('601522','47556'),
('601522','49908'),
--
('601523','37191'),
('601523','40346'),
('601523','45570'),
('601523','46018'),
('601523','46994'),
('601523','46995'),
('601523','47267'),
('601523','47428'),
('601523','47741'),
('601523','47907'),
('601523','47975'),
('601523','48052'),
('601523','49981'),
('601523','50262'),
('601523','50733'),
('601523','51802'),
('601523','51940'),
-- CURRENCY EXCHANGE
('601524','26044'), -- Halaa Research Token
('601524','26045'), -- Halaa Battle Token
('601524','20558'),
('601524','20559'),
('601524','20560'),
('601524','29024'),
('601524','29434'),
('601524','40752'),
('601524','40753'),
('601524','41596'),
('601524','42425'),
('601524','43016'),
('601524','43228'),
('601524','43589'),
('601524','44990'),
('601524','45624'),
('601524','47241'),
('601524','47395'),
('601524','49426'),
('601524','47557'),
('601524','47558'),
('601524','47559'),
('601524','24579'),
('601524','24581'),
('601524','24245'),
('601524','28558'),
('601524','29736'),
('601524','29735'),
--
('601525','37667'),
('601525','39140'),
('601525','39271'),
('601525','39420'),
('601525','39424'),
('601525','39427'),
('601525','39714'),
('601525','40281'),
('601525','40368'),
('601525','40386'),
('601525','40408'),
('601525','40702'),
('601525','42435'),
('601525','43613'),
('601525','44310'),
('601525','45077'),
('601525','45078'),
('601525','45085'),
('601525','45214'),
('601525','45222'),
('601525','45246'),
('601525','45332'),
('601525','45448'),
('601525','45484'),
('601525','45527'),
('601525','45605'),
('601525','45607'),
('601525','45620'),
('601525','45685'),
('601525','45930'),
('601525','46011'),
('601525','46024'),
('601525','46958'),
('601525','46969'),
('601525','46979'),
('601525','46980'),
('601525','47104'),
('601525','47113'),
('601525','47255'),
('601525','47261'),
('601525','47300'),
('601525','47416'),
('601525','47422'),
('601525','47461'),
('601525','47569'),
('601525','47676'),
('601525','47724'),
('601525','47736'),
('601525','47871'),
('601525','47874'),
('601525','47886'),
('601525','47938'),
('601525','47941'),
('601525','47953'),
('601525','48010'),
('601525','48013'),
('601525','48025'),
('601525','49120'),
('601525','49304'),
('601525','49437'),
('601525','49465'),
('601525','49494'),
('601525','49682'),
('601525','49789'),
('601525','49807'),
('601525','49846'),
('601525','49968'),
('601525','49982'),
('601525','50016'),
('601525','50183'),
('601525','50203'),
('601525','50227'),
('601525','50319'),
('601525','50426'),
('601525','50608'),
('601525','50621'),
('601525','50641'),
('601525','50676'),
('601525','50736'),
('601525','50793'),
('601525','51011'),
('601525','51384'),
('601525','51788'),
('601525','51800'),
('601525','51803'),
('601525','51815'),
('601525','51846'),
('601525','51868'),
('601525','51910'),
('601525','51939'),
('601525','51942'),
('601526','43533'),
('601526','43534'),
('601526','43535'),
('601526','43536'),
('601526','43537'),
('601526','43538'),
('601526','43539'),
('601526','43541'),
('601526','43542'),
('601526','43543'),
('601526','43544'),
('601526','43545'),
('601526','43546'),
('601526','43547'),
('601526','43548'),
('601526','43549'),
('601526','43550'),
('601526','43551'),
('601526','43552'),
('601526','43553'),
('601526','43554'),
('601526','43671'),
('601526','43672'),
('601526','43673'),
('601526','43825'),
('601526','43826'),
('601526','43827'),
('601526','45799'),
('601526','45800'),
('601526','45803'),
('601526','45804'),
('601526','45805'),
('601526','45806'),
('601527','40896'),
('601527','40897'),
('601527','40899'),
('601527','40900'),
('601527','40901'),
('601527','40902'),
('601527','40903'),
('601527','40906'),
('601527','40908'),
('601527','40909'),
('601527','40912'),
('601527','40913'),
('601527','40914'),
('601527','40915'),
('601527','40916'),
('601527','40919'),
('601527','40920'),
('601527','40921'),
('601527','40922'),
('601527','40923'),
('601527','40924'),
('601527','43316'),
('601527','43331'),
('601527','43332'),
('601527','43334'),
('601527','43335'),
('601527','43674'),
('601527','44922'),
('601527','44928'),
('601527','45601'),
('601527','45602'),
('601527','45603'),
('601527','45604'),
('601527','45622'),
('601527','45623'),
('601527','46372'),
('601527','48720'),
('601527','50125'),
('601528','7067'),
('601528','7068'),
('601528','7069'),
('601528','7070'),
('601528','7075'),
('601528','7076'),
('601528','7077'),
('601528','7078'),
('601528','7079'),
('601528','7080'),
('601528','7081'),
('601528','7082'),
('601528','7972'),
('601528','12803'),
('601528','12808'),
('601528','21884'),
('601528','21885'),
('601528','21886'),
('601528','22451'),
('601528','22452'),
('601528','22456'),
('601528','22457'),
('601528','22572'),
('601528','22573'),
('601528','22574'),
('601528','22575'),
('601528','22576'),
('601528','22577'),
('601528','22578'),
('601528','23571'),
('601528','23572'),
('601528','30183'),
('601528','35622'),
('601528','35623'),
('601528','35624'),
('601528','35625'),
('601528','35627'),
('601528','36860'),
('601528','37700'),
('601528','37701'),
('601528','37702'),
('601528','37703'),
('601528','37704'),
('601528','37705'),
('601528','40248'),
('601529','2454'),
('601529','2457'),
('601529','2458'),
('601529','3382'),
('601529','3383'),
('601529','3388'),
('601529','3389'),
('601529','3390'),
('601529','3391'),
('601529','3825'),
('601529','3826'),
('601529','3828'),
('601529','5996'),
('601529','5997'),
('601529','6373'),
('601529','6662'),
('601529','8410'),
('601529','8411'),
('601529','8412'),
('601529','8423'),
('601529','8424'),
('601529','8529'),
('601529','8827'),
('601529','8949'),
('601529','8951'),
('601529','9088'),
('601529','9154'),
('601529','9155'),
('601529','9179'),
('601529','9187'),
('601529','9197'),
('601529','9206'),
('601529','9224'),
('601529','9233'),
('601529','9264'),
('601529','10592'),
('601529','12820'),
('601529','13445'),
('601529','13447'),
('601529','13452'),
('601529','13453'),
('601529','13454'),
('601529','17708'),
('601529','18294'),
('601529','20004'),
('601529','20007'),
('601529','20079'),
('601529','20080'),
('601529','20081'),
('601529','21546'),
('601529','22823'),
('601529','22824'),
('601529','22825'),
('601529','22827'),
('601529','22830'),
('601529','22831'),
('601529','22833'),
('601529','22834'),
('601529','22835'),
('601529','22840'),
('601529','22848'),
('601529','23444'),
('601529','23871'),
('601529','25539'),
('601529','28102'),
('601529','28103'),
('601529','28104'),
('601529','31679'),
('601529','32062'),
('601529','32063'),
('601529','32067'),
('601529','32068'),
('601529','34130'),
('601529','34537'),
('601529','37449'),
('601529','39666'),
('601529','40068'),
('601529','40070'),
('601529','40072'),
('601529','40073'),
('601529','40076'),
('601529','40078'),
('601529','40097'),
('601529','40109'),
('601529','44012'),
('601529','44325'),
('601529','44327'),
('601529','44328'),
('601529','44329'),
('601529','44330'),
('601529','44331'),
('601529','44332'),
('601529','45621'),
('601530','6342'),
('601530','6344'),
('601530','6346'),
('601530','6347'),
('601530','6348'),
('601530','6375'),
('601530','6377'),
('601530','11038'),
('601530','11039'),
('601530','11081'),
('601530','11098'),
('601530','11101'),
('601530','11150'),
('601530','11151'),
('601530','11152'),
('601530','11163'),
('601530','11164'),
('601530','11165'),
('601530','11166'),
('601530','11167'),
('601530','11168'),
('601530','11202'),
('601530','11203'),
('601530','11204'),
('601530','11205'),
('601530','11206'),
('601530','11207'),
('601530','11208'),
('601530','11223'),
('601530','11224'),
('601530','11225'),
('601530','11226'),
('601530','11813'),
('601530','16214'),
('601530','16215'),
('601530','16216'),
('601530','16218'),
('601530','16219'),
('601530','16220'),
('601530','16222'),
('601530','16223'),
('601530','16242'),
('601530','16244'),
('601530','16245'),
('601530','16246'),
('601530','16247'),
('601530','16248'),
('601530','16249'),
('601530','16250'),
('601530','16251'),
('601530','16252'),
('601530','16253'),
('601530','16254'),
('601530','16255'),
('601530','17725'),
('601530','18259'),
('601530','18260'),
('601530','20726'),
('601530','20727'),
('601530','20728'),
('601530','20729'),
('601530','20730'),
('601530','20731'),
('601530','20734'),
('601530','20735'),
('601530','20736'),
('601530','22530'),
('601530','22559'),
('601530','22560'),
('601530','22561'),
('601530','28276'),
('601530','28277'),
('601530','28279'),
('601530','28280'),
('601530','33148'),
('601530','33149'),
('601530','33150'),
('601530','33151'),
('601530','33152'),
('601530','33153'),
('601530','33307'),
('601530','35297'),
('601530','35299'),
('601530','35498'),
('601530','35756'),
('601530','37339'),
('601530','37344'),
('601530','44473'),
('601530','44483'),
('601530','44486'),
('601530','44487'),
('601530','44492'),
('601530','44494'),
('601530','44495'),
('601530','44496'),
('601530','44944'),
('601530','44945'),
('601530','45059'),
('601530','46027'),
('601530','46348'),
('601531','6217'),
('601531','6338'),
('601531','10938'),
('601531','10939'),
('601531','10940'),
('601531','10978'),
('601531','10998'),
('601531','11082'),
('601531','11083'),
('601531','11084'),
('601531','11128'),
('601531','11134'),
('601531','11135'),
('601531','11137'),
('601531','11138'),
('601531','11139'),
('601531','11144'),
('601531','11174'),
('601531','11175'),
('601531','11176'),
('601531','11177'),
('601531','11178'),
('601531','14343'),
('601531','14344'),
('601531','16202'),
('601531','16203'),
('601531','16204'),
('601531','16206'),
('601531','20725'),
('601531','22445'),
('601531','22446'),
('601531','22447'),
('601531','22448'),
('601531','22449'),
('601531','22450'),
('601531','25843'),
('601531','25844'),
('601531','25845'),
('601531','34052'),
('601531','34053'),
('601531','34054'),
('601531','34055'),
('601531','34056'),
('601531','34057'),
('601531','41741'),
('601531','41745'),
('601531','46849'),
('601532','4408'),
('601532','4409'),
('601532','4410'),
('601532','4411'),
('601532','4412'),
('601532','4413'),
('601532','4414'),
('601532','4415'),
('601532','4416'),
('601532','4417'),
('601532','6672'),
('601532','6716'),
('601532','7560'),
('601532','7561'),
('601532','7742'),
('601532','10601'),
('601532','10602'),
('601532','10603'),
('601532','10604'),
('601532','10605'),
('601532','10606'),
('601532','10607'),
('601532','10608'),
('601532','10609'),
('601532','11827'),
('601532','11828'),
('601532','13308'),
('601532','13309'),
('601532','13310'),
('601532','13311'),
('601532','14639'),
('601532','16041'),
('601532','16042'),
('601532','16043'),
('601532','16044'),
('601532','16045'),
('601532','16046'),
('601532','16047'),
('601532','16048'),
('601532','16049'),
('601532','16050'),
('601532','16051'),
('601532','16052'),
('601532','16053'),
('601532','16054'),
('601532','16055'),
('601532','16056'),
('601532','17720'),
('601532','18290'),
('601532','18291'),
('601532','18292'),
('601532','18647'),
('601532','18648'),
('601532','18649'),
('601532','18650'),
('601532','18651'),
('601532','18652'),
('601532','18653'),
('601532','18654'),
('601532','18655'),
('601532','18656'),
('601532','18657'),
('601532','18658'),
('601532','18661'),
('601532','19027'),
('601532','20000'),
('601532','20001'),
('601532','21724'),
('601532','21725'),
('601532','21726'),
('601532','21727'),
('601532','21728'),
('601532','21729'),
('601532','21730'),
('601532','21731'),
('601532','21732'),
('601532','21733'),
('601532','21734'),
('601532','21735'),
('601532','21737'),
('601532','21738'),
('601532','22729'),
('601532','23799'),
('601532','23800'),
('601532','23802'),
('601532','23803'),
('601532','23804'),
('601532','23805'),
('601532','23806'),
('601532','23807'),
('601532','23808'),
('601532','23809'),
('601532','23810'),
('601532','23811'),
('601532','23814'),
('601532','23815'),
('601532','23816'),
('601532','23817'),
('601532','23874'),
('601532','23883'),
('601532','23884'),
('601532','23885'),
('601532','23887'),
('601532','23888'),
('601532','25887'),
('601532','32381'),
('601532','33804'),
('601532','34114'),
('601532','35186'),
('601532','35187'),
('601532','35189'),
('601532','35190'),
('601532','35191'),
('601532','35192'),
('601532','35193'),
('601532','35194'),
('601532','35195'),
('601532','35196'),
('601532','35197'),
('601532','35310'),
('601532','35311'),
('601532','35582'),
('601532','44502'),
('601532','44503'),
('601532','44918'),
('601532','44919'),
('601532','49050'),
('601532','52022'),
('601532','52023'),
('601533','8586'),
('601533','12302'),
('601533','12303'),
('601533','12330'),
('601533','12351'),
('601533','12353'),
('601533','12354'),
('601533','13086'),
('601533','13317'),
('601533','13326'),
('601533','13327'),
('601533','13328'),
('601533','13329'),
('601533','13334'),
('601533','13335'),
('601533','15292'),
('601533','15293'),
('601533','18766'),
('601533','18767'),
('601533','18772'),
('601533','18773'),
('601533','18774'),
('601533','18776'),
('601533','18777'),
('601533','18778'),
('601533','18785'),
('601533','18786'),
('601533','18787'),
('601533','18788'),
('601533','18789'),
('601533','18790'),
('601533','18791'),
('601533','18793'),
('601533','18794'),
('601533','18795'),
('601533','18796'),
('601533','18797'),
('601533','18798'),
('601533','18902'),
('601533','19029'),
('601533','19030'),
('601533','19872'),
('601533','19902'),
('601533','21176'),
('601533','28915'),
('601533','28936'),
('601533','29102'),
('601533','29103'),
('601533','29104'),
('601533','29105'),
('601533','29223'),
('601533','29224'),
('601533','29227'),
('601533','29228'),
('601533','29229'),
('601533','29230'),
('601533','29231'),
('601533','29465'),
('601533','29466'),
('601533','29467'),
('601533','29468'),
('601533','29469'),
('601533','29470'),
('601533','29471'),
('601533','29472'),
('601533','29745'),
('601533','29746'),
('601533','29747'),
('601533','30480'),
('601533','31829'),
('601533','31830'),
('601533','31831'),
('601533','31832'),
('601533','31833'),
('601533','31834'),
('601533','31835'),
('601533','31836'),
('601533','32768'),
('601533','33184'),
('601533','33809'),
('601533','33977'),
('601533','34129'),
('601533','35513'),
('601533','35906'),
('601533','37012'),
('601533','37719'),
('601533','37828'),
('601533','41508'),
('601533','43956'),
('601533','43958'),
('601533','43959'),
('601533','43961'),
('601533','43962'),
('601533','44077'),
('601533','44080'),
('601533','44083'),
('601533','44086'),
('601533','44223'),
('601533','44224'),
('601533','44225'),
('601533','44226'),
('601533','44230'),
('601533','44231'),
('601533','44234'),
('601533','44235'),
('601533','44413'),
('601533','45125'),
('601533','45586'),
('601533','45589'),
('601533','45590'),
('601533','45591'),
('601533','45592'),
('601533','45593'),
('601533','45595'),
('601533','45596'),
('601533','45597'),
('601533','46101'),
('601533','46102'),
('601533','46743'),
('601533','46744'),
('601533','46745'),
('601533','46746'),
('601533','46747'),
('601533','46748'),
('601533','46749'),
('601533','46750'),
('601533','46751'),
('601533','46752'),
('601533','46815'),
('601533','46816'),
('601533','47101'),
('601533','47179'),
('601533','47180'),
('601533','49044'),
('601533','49046'),
('601533','49096'),
('601533','49098'),
('601533','50818'),
('601533','52200'),
('601533','54068'),
('601534','6454'),
('601534','16084'),
('601534','16112'),
('601534','16113'),
('601534','19442'),
('601534','21992'),
('601534','21993'),
('601534','22012'),
('601534','39152'),
('601535','16083'),
('601535','27532'),
('601535','34109'),
('601536','6256'),
('601536','6365'),
('601536','6366'),
('601536','6367'),
('601536','12225'),
('601536','19022'),
('601536','19970'),
('601536','25978'),
('601536','44050'),
('601536','45858'),
('601536','45991'),
('601536','45992'),
('601537','37693'),
('601537','39416'),
('601537','39468'),
('601537','39763'),
('601537','40239'),
('601537','40383'),
('601537','40429'),
('601537','40704'),
('601537','45132'),
('601537','45284'),
('601537','45449'),
('601537','45489'),
('601537','45494'),
('601537','48703'),
('601537','48712'),
('601537','50035'),
('601537','50184'),
('601537','50315'),
('601537','50692'),
('601537','50710'),
('601537','51003'),
('601537','51784'),
('601537','51801'),
('601537','51819'),
('601537','51876'),
('601537','51941'),
('601538','13510'),
('601538','13511'),
('601538','13512'),
('601538','13513'),
('601538','22851'),
('601538','22853'),
('601538','22854'),
('601538','22861'),
('601538','22866'),
('601538','32596'),
('601538','32597'),
('601538','32598'),
('601538','32599'),
('601538','32600'),
('601538','32601'),
('601538','32764'),
('601538','32766'),
('601538','32767'),
('601538','32898'),
('601538','32899'),
('601538','32900'),
('601538','32901'),
('601538','33208'),
('601538','35716'),
('601538','35717'),
('601538','40079'),
('601538','40082'),
('601538','40083'),
('601538','40084'),
('601538','40404'),
('601538','44939'),
('601538','45006'),
('601538','45007'),
('601538','45008'),
('601538','45009'),
('601538','46376'),
('601538','46377'),
('601538','46378'),
('601538','46379'),
('601538','47499'),
('601539','25470'),
('601539','25471'),
('601539','25472'),
('601539','25473'),
('601539','25474'),
('601539','25475'),
('601539','25476'),
('601539','25477'),
('601539','25527'),
('601539','25528'),
('601539','25529'),
('601539','25531'),
('601539','25532'),
('601539','25533'),
('601539','30609'),
('601539','32314'),
('601539','32316'),
('601539','32317'),
('601539','32318'),
('601539','32319'),
('601539','32458'),
('601539','32857'),
('601539','32858'),
('601539','32859'),
('601539','32860'),
('601539','32861'),
('601539','32862'),
('601539','33176'),
('601539','33182'),
('601539','33999'),
('601539','34060'),
('601539','34061'),
('601539','34092'),
('601539','37676'),
('601539','40775'),
('601539','43516'),
('601539','43951'),
('601539','43952'),
('601539','43953'),
('601539','43954'),
('601539','43955'),
('601539','43986'),
('601539','44151'),
('601539','44160'),
('601539','44164'),
('601539','44168'),
('601539','44175'),
('601539','44177'),
('601539','44178'),
('601539','44554'),
('601539','44558'),
('601539','44689'),
('601539','44690'),
('601539','44707'),
('601539','44842'),
('601539','44843'),
('601539','45693'),
('601539','45725'),
('601539','45801'),
('601539','45802'),
('601539','46171'),
('601539','46708'),
('601539','46813'),
('601539','46814'),
('601539','47840'),
('601539','49636'),
('601539','50250'),
('601539','51954'),
('601539','51955'),
('601539','54797'),
('601539','54860'),
('601540','774'),
('601540','818'),
('601540','1206'),
('601540','1210'),
('601540','1529'),
('601540','1705'),
('601540','3864'),
('601540','5498'),
('601540','5500'),
('601540','7909'),
('601540','7910'),
('601540','7971'),
('601540','11382'),
('601540','12361'),
('601540','12363'),
('601540','12364'),
('601540','12799'),
('601540','12800'),
('601540','13926'),
('601540','19774'),
('601540','21929'),
('601540','23077'),
('601540','23079'),
('601540','23107'),
('601540','23112'),
('601540','23117'),
('601540','23436'),
('601540','23437'),
('601540','23438'),
('601540','23439'),
('601540','23440'),
('601540','23441'),
('601540','24478'),
('601540','24479'),
('601540','25867'),
('601540','25868'),
('601540','32227'),
('601540','32228'),
('601540','32229'),
('601540','32230'),
('601540','32231'),
('601540','32249'),
('601540','36783'),
('601540','36784'),
('601540','36917'),
('601540','36918'),
('601540','36919'),
('601540','36920'),
('601540','36921'),
('601540','36922'),
('601540','36923'),
('601540','36924'),
('601540','36925'),
('601540','36926'),
('601540','36927'),
('601540','36928'),
('601540','36929'),
('601540','36930'),
('601540','36931'),
('601540','36932'),
('601540','36933'),
('601540','36934'),
('601540','41266'),
('601540','41334'),
('601540','42225'),
('601540','45054'),
('601541','23103'),
('601541','23104'),
('601541','23105'),
('601541','23106'),
('601541','24062'),
('601541','24065'),
('601541','24066'),
('601541','24067'),
('601541','27785'),
('601541','27786'),
('601541','27809'),
('601541','27820'),
('601541','30548'),
('601541','30550'),
('601541','30560'),
('601541','30583'),
('601541','30586'),
('601541','30589'),
('601541','30590'),
('601541','30592'),
('601541','30594'),
('601541','30602'),
('601541','30605'),
('601541','30606'),
('601541','30608'),
('601541','32223'),
('601541','32224'),
('601541','32225'),
('601541','32226'),
('601541','32635'),
('601541','32639'),
('601541','32735'),
('601541','33782'),
('601541','35318'),
('601541','35758'),
('601541','35759'),
('601541','39968'),
('601541','39974'),
('601541','39975'),
('601541','39976'),
('601541','39977'),
('601541','39978'),
('601541','39979'),
('601541','39980'),
('601541','39981'),
('601541','39982'),
('601541','39983'),
('601541','39984'),
('601541','39985'),
('601541','39986'),
('601541','39988'),
('601541','39989'),
('601541','39990'),
('601541','39991'),
('601541','39992'),
('601541','40085'),
('601541','40086'),
('601541','40088'),
('601541','40089'),
('601541','40090'),
('601541','40091'),
('601541','40092'),
('601541','40094'),
('601541','40095'),
('601541','40096'),
('601541','40098'),
('601541','40099'),
('601541','40100'),
('601541','40101'),
('601541','40102'),
('601541','40103'),
('601541','40104'),
('601541','40105'),
('601541','40106'),
('601541','40164'),
('601541','40165'),
('601541','40166'),
('601541','40167'),
('601541','40168'),
('601541','40169'),
('601541','40170'),
('601541','40171'),
('601541','40172'),
('601541','40173'),
('601541','40174'),
('601541','40175'),
('601541','40176'),
('601541','40177'),
('601541','40178'),
('601541','40179'),
('601541','40180'),
('601541','40181'),
('601541','40182'),
('601541','41463'),
('601541','41464'),
('601541','41465'),
('601541','41466'),
('601541','41467'),
('601541','41468'),
('601541','41469'),
('601541','41470'),
('601541','41471'),
('601541','41472'),
('601541','41473'),
('601541','41474'),
('601541','41475'),
('601541','41476'),
('601541','41477'),
('601541','41478'),
('601541','41479'),
('601541','41480'),
('601541','41481'),
('601542','39419'),
('601542','40385'),
('601542','41168'),
('601542','44504'),
('601542','45130'),
('601542','45137'),
('601542','45210'),
('601542','45261'),
('601542','45309'),
('601542','45870'),
('601542','46339'),
('601542','47521'),
('601542','47523'),
('601542','47568'),
('601542','47740'),
('601542','47883'),
('601542','47950'),
('601542','48022'),
('601542','49305'),
('601542','49493'),
('601542','49813'),
('601542','50444'),
('601542','51385'),
('601542','51561'),
('601542','51834'),
('601542','51845'),
('601543','765'),
('601543','785'),
('601543','2447'),
('601543','2449'),
('601543','2450'),
('601543','2452'),
('601543','2453'),
('601543','3355'),
('601543','3356'),
('601543','3357'),
('601543','3358'),
('601543','3369'),
('601543','3818'),
('601543','3819'),
('601543','3820'),
('601543','3821'),
('601543','4625'),
('601543','8153'),
('601543','8831'),
('601543','8836'),
('601543','8838'),
('601543','8839'),
('601543','8845'),
('601543','8846'),
('601543','10286'),
('601543','13463'),
('601543','13464'),
('601543','13465'),
('601543','13466'),
('601543','13467'),
('601543','13468'),
('601543','19726'),
('601543','22710'),
('601543','22785'),
('601543','22786'),
('601543','22787'),
('601543','22788'),
('601543','22789'),
('601543','22790'),
('601543','22791'),
('601543','22792'),
('601543','22793'),
('601543','22794'),
('601543','22797'),
('601543','36901'),
('601543','36903'),
('601543','36904'),
('601543','36905'),
('601543','36906'),
('601543','36907'),
('601543','36908'),
('601543','37921'),
('601544','42943'),
('601544','42944'),
('601544','42945'),
('601544','42946'),
('601544','42947'),
('601544','42948'),
('601544','44091'),
('601544','44092'),
('601544','44093'),
('601544','44094'),
('601544','44095'),
('601544','44096'),
('601544','48716'),
('601544','48718'),
('601545','42949'),
('601545','42950'),
('601545','42951'),
('601545','42952'),
('601545','42984'),
('601545','42985'),
('601545','42991'),
('601545','42992'),
('601545','44097'),
('601545','44098'),
('601545','44099'),
('601545','44100'),
('601545','44101'),
('601545','44102'),
('601545','44103'),
('601545','44105'),
('601545','44107'),
('601545','48677'),
('601545','48683'),
('601545','48685'),
('601545','48687'),
('601545','48689'),
('601545','48691'),
('601545','50255'),
('601546','42897'),
('601546','42898'),
('601546','42899'),
('601546','42900'),
('601546','42901'),
('601546','42902'),
('601546','42903'),
('601546','42904'),
('601546','42905'),
('601546','42906'),
('601546','42907'),
('601546','42908'),
('601546','42909'),
('601546','42910'),
('601546','42911'),
('601546','42912'),
('601546','42913'),
('601546','42914'),
('601546','42915'),
('601546','42916'),
('601546','42917'),
('601546','43338'),
('601546','43350'),
('601546','43351'),
('601546','43354'),
('601546','43355'),
('601546','43356'),
('601546','45625'),
('601546','45731'),
('601546','45732'),
('601546','45733'),
('601546','45734'),
('601546','45735'),
('601547','45912'),
('601547','46108'),
('601547','50166'),
('601547','50167'),
('601547','50168'),
('601548','10648'),
('601548','37100'),
('601548','37101'),
('601548','39151'),
('601548','39334'),
('601548','39338'),
('601548','39339'),
('601548','39340'),
('601548','39341'),
('601548','39342'),
('601548','39343'),
('601548','39354'),
('601548','39469'),
('601548','39501'),
('601548','39502'),
('601548','39505'),
('601548','39774'),
('601548','43103'),
('601548','43104'),
('601548','43105'),
('601548','43106'),
('601548','43107'),
('601548','43108'),
('601548','43109'),
('601548','43115'),
('601548','43116'),
('601548','43117'),
('601548','43118'),
('601548','43119'),
('601548','43120'),
('601548','43121'),
('601548','43122'),
('601548','43123'),
('601548','43124'),
('601548','43125'),
('601548','43126'),
('601548','43127'),
('601549','2304'),
('601549','2313'),
('601549','4265'),
('601549','4405'),
('601549','4406'),
('601549','4407'),
('601549','6041'),
('601549','6042'),
('601549','6043'),
('601549','7967'),
('601549','7969'),
('601549','8173'),
('601549','10546'),
('601549','10548'),
('601549','12645'),
('601549','15564'),
('601549','18251'),
('601549','18283'),
('601549','19971'),
('601549','23530'),
('601549','23764'),
('601549','23765'),
('601549','23766'),
('601549','24273'),
('601549','24274'),
('601549','24275'),
('601549','24276'),
('601549','25650'),
('601549','25651'),
('601549','25652'),
('601549','28878'),
('601549','28881'),
('601549','28882'),
('601549','28885'),
('601549','28886'),
('601549','28887'),
('601549','28888'),
('601549','28889'),
('601549','28903'),
('601549','28904'),
('601549','28907'),
('601549','28908'),
('601549','28909'),
('601549','28910'),
('601549','28911'),
('601549','28912'),
('601549','29186'),
('601549','29187'),
('601549','29189'),
('601549','29190'),
('601549','29191'),
('601549','29192'),
('601549','29193'),
('601549','29194'),
('601549','29195'),
('601549','29196'),
('601549','29197'),
('601549','29198'),
('601549','29199'),
('601549','29533'),
('601549','29534'),
('601549','29535'),
('601549','29536'),
('601549','30846'),
('601549','33185'),
('601549','34207'),
('601549','34330'),
('601549','34836'),
('601549','38371'),
('601549','38372'),
('601549','38373'),
('601549','38374'),
('601549','38375'),
('601549','38376'),
('601549','41146'),
('601549','41167'),
('601549','41601'),
('601549','41602'),
('601549','41603'),
('601549','41604'),
('601549','41611'),
('601549','41976'),
('601549','42500'),
('601549','44067'),
('601549','44068'),
('601549','44069'),
('601549','44075'),
('601549','44129'),
('601549','44130'),
('601549','44131'),
('601549','44132'),
('601549','44137'),
('601549','44138'),
('601549','44139'),
('601549','44140'),
('601549','44141'),
('601549','44739'),
('601549','44936'),
('601549','44957'),
('601549','44963'),
('601549','50335'),
('601549','50336'),
('601549','50337'),
('601549','50338'),
('601549','50367'),
('601549','50368'),
('601549','50369'),
('601549','50370'),
('601549','50372'),
('601549','50373'),
('601550','2862'),
('601550','2863'),
('601550','2871'),
('601550','2892'),
('601550','2893'),
('601550','3239'),
('601550','3240'),
('601550','3241'),
('601550','3824'),
('601550','3829'),
('601550','5237'),
('601550','6529'),
('601550','6530'),
('601550','6532'),
('601550','6533'),
('601550','6811'),
('601550','6947'),
('601550','6949'),
('601550','6950'),
('601550','7307'),
('601550','7964'),
('601550','7965'),
('601550','8926'),
('601550','8927'),
('601550','8928'),
('601550','8984'),
('601550','8985'),
('601550','10918'),
('601550','10920'),
('601550','10921'),
('601550','10922'),
('601550','12404'),
('601550','12643'),
('601550','18262'),
('601550','20744'),
('601550','20745'),
('601550','20746'),
('601550','20747'),
('601550','20748'),
('601550','20749'),
('601550','20750'),
('601550','20844'),
('601550','21835'),
('601550','21927'),
('601550','22053'),
('601550','22054'),
('601550','22055'),
('601550','22521'),
('601550','22522'),
('601550','23122'),
('601550','23123'),
('601550','23528'),
('601550','23529'),
('601550','23559'),
('601550','23575'),
('601550','23576'),
('601550','25521'),
('601550','25679'),
('601550','28420'),
('601550','28421'),
('601550','31535'),
('601550','34538'),
('601550','34539'),
('601550','34861'),
('601550','36899'),
('601550','36900'),
('601550','41174'),
('601550','41196'),
('601550','43230'),
('601550','43231'),
('601550','43232'),
('601550','43233'),
('601550','43234'),
('601550','43235'),
('601550','43237'),
('601550','46006'),
('601550','3775'),
('601551','24158'),
('601551','24159'),
('601551','24160'),
('601551','24161'),
('601551','24162'),
('601551','24163'),
('601551','24164'),
('601551','24165'),
('601551','24166'),
('601551','24167'),
('601551','24168'),
('601551','24169'),
('601551','24170'),
('601551','24171'),
('601551','24172'),
('601551','24173'),
('601551','24174'),
('601551','24175'),
('601551','24176'),
('601551','24177'),
('601551','24178'),
('601551','24179'),
('601551','24180'),
('601551','24181'),
('601551','24182'),
('601551','24183'),
('601551','24192'),
('601551','24193'),
('601551','24194'),
('601551','24195'),
('601551','24196'),
('601551','24197'),
('601551','24198'),
('601551','24199'),
('601551','24200'),
('601551','24201'),
('601551','24202'),
('601551','24203'),
('601551','24204'),
('601551','24205'),
('601551','24206'),
('601551','24207'),
('601551','24208'),
('601551','24209'),
('601551','24210'),
('601551','24211'),
('601551','24212'),
('601551','24213'),
('601551','24214'),
('601551','24215'),
('601551','24216'),
('601551','24217'),
('601551','24218'),
('601551','24219'),
('601551','24220'),
('601551','25905'),
('601551','25906'),
('601551','25907'),
('601551','25909'),
('601551','30826'),
('601551','31358'),
('601551','31401'),
('601551','31402'),
('601551','31875'),
('601551','31876'),
('601551','31877'),
('601551','31878'),
('601551','31879'),
('601551','32274'),
('601551','32277'),
('601551','32281'),
('601551','32282'),
('601551','32283'),
('601551','32284'),
('601551','32285'),
('601551','32286'),
('601551','32287'),
('601551','32288'),
('601551','32289'),
('601551','32290'),
('601551','32291'),
('601551','32292'),
('601551','32293'),
('601551','32294'),
('601551','32295'),
('601551','32296'),
('601551','32297'),
('601551','32298'),
('601551','32299'),
('601551','32300'),
('601551','32301'),
('601551','32302'),
('601551','32303'),
('601551','32304'),
('601551','32305'),
('601551','32306'),
('601551','32307'),
('601551','32308'),
('601551','32309'),
('601551','32310'),
('601551','32311'),
('601551','32312'),
('601551','32411'),
('601551','32412'),
('601551','33622'),
('601551','33783'),
('601551','34221'),
('601551','34689'),
('601551','35198'),
('601551','35199'),
('601551','35200'),
('601551','35201'),
('601551','35202'),
('601551','35203'),
('601551','35304'),
('601551','35305'),
('601551','35306'),
('601551','35307'),
('601551','35322'),
('601551','35323'),
('601551','35325'),
('601551','35762'),
('601551','35763'),
('601551','35764'),
('601551','35765'),
('601551','35766'),
('601551','35767'),
('601551','35768'),
('601551','35769'),
('601551','41576'),
('601551','41577'),
('601551','41578'),
('601551','41579'),
('601551','41580'),
('601551','41581'),
('601551','41582'),
('601551','41686'),
('601551','41687'),
('601551','42648'),
('601551','42649'),
('601551','42650'),
('601551','42651'),
('601551','42652'),
('601551','42653'),
('601551','43597'),
('601552','20815'),
('601552','20816'),
('601552','20817'),
('601552','20824'),
('601552','20963'),
('601552','21752'),
('601552','24243'),
('601552','31079'),
('601553','5396'),
('601553','6893'),
('601553','7146'),
('601553','11000'),
('601553','11078'),
('601553','12382'),
('601553','15869'),
('601553','15870'),
('601553','15871'),
('601553','15872'),
('601553','18249'),
('601553','18250'),
('601553','18266'),
('601553','18268'),
('601553','21761'),
('601553','21762'),
('601553','24490'),
('601553','27991'),
('601553','28395'),
('601553','30622'),
('601553','30623'),
('601553','30633'),
('601553','30634'),
('601553','30635'),
('601553','30637'),
('601553','31084'),
('601553','31704'),
('601553','32449'),
('601553','42482'),
('601553','43853'),
('601553','43854'),
('601553','44581'),
('601553','44582'),
('601553','45796'),
('601553','45798'),
('601554','783'),
('601554','2318'),
('601554','2319'),
('601554','2934'),
('601554','4231'),
('601554','4232'),
('601554','4233'),
('601554','4234'),
('601554','4235'),
('601554','4236'),
('601554','4289'),
('601554','4304'),
('601554','4461'),
('601554','5082'),
('601554','5784'),
('601554','5785'),
('601554','6470'),
('601554','6471'),
('601554','7286'),
('601554','7392'),
('601554','8150'),
('601554','8154'),
('601554','8165'),
('601554','8167'),
('601554','8169'),
('601554','8170'),
('601554','8171'),
('601554','8172'),
('601554','12810'),
('601554','15407'),
('601554','15408'),
('601554','15409'),
('601554','15410'),
('601554','15412'),
('601554','15414'),
('601554','15415'),
('601554','15416'),
('601554','15417'),
('601554','15419'),
('601554','17012'),
('601554','17967'),
('601554','19767'),
('601554','19768'),
('601554','20381'),
('601554','20498'),
('601554','20500'),
('601554','20501'),
('601554','21887'),
('601554','23793'),
('601554','25649'),
('601554','25699'),
('601554','25700'),
('601554','25707'),
('601554','25708'),
('601554','29539'),
('601554','29547'),
('601554','29548'),
('601554','33567'),
('601554','33568'),
('601554','38425'),
('601554','38557'),
('601554','38558'),
('601554','38561'),
('601554','44128'),
('601555','4298'),
('601555','4301'),
('601555','7452'),
('601555','8384'),
('601555','15730'),
('601555','15733'),
('601555','15752'),
('601555','15753'),
('601555','15760'),
('601555','15763'),
('601555','15764'),
('601555','15770'),
('601555','15771'),
('601555','15772'),
('601555','15781'),
('601555','18252'),
('601555','18514'),
('601555','18515'),
('601555','18517'),
('601555','18518'),
('601555','18519'),
('601555','29723'),
('601555','29724'),
('601555','29725'),
('601555','29726'),
('601555','29727'),
('601555','29728'),
('601555','29729'),
('601555','29730'),
('601555','29731'),
('601555','29732'),
('601555','29733'),
('601555','29734'),
('601555','30301'),
('601555','30302'),
('601555','30303'),
('601555','30304'),
('601555','30305'),
('601555','30306'),
('601555','30307'),
('601555','30308'),
('601555','32744'),
('601555','32745'),
('601555','32746'),
('601555','32747'),
('601555','32748'),
('601555','32749'),
('601555','32750'),
('601555','32751'),
('601555','33205'),
('601555','35212'),
('601555','35213'),
('601555','35214'),
('601555','35215'),
('601555','35216'),
('601555','35217'),
('601555','35218'),
('601555','35219'),
('601555','35300'),
('601555','35301'),
('601555','35302'),
('601555','35303'),
('601555','44546'),
('601555','44547'),
('601555','44548'),
('601555','44549'),
('601555','44550'),
('601555','44551'),
('601555','44552'),
('601555','44553'),
('601555','44584'),
('601555','44585'),
('601555','44586'),
('601555','44587'),
('601555','44588'),
('601555','44589'),
('601555','44932'),
('601555','44933'),
('601555','45094'),
('601555','45095'),
('601555','45096'),
('601555','45097'),
('601555','45098'),
('601555','45099'),
('601555','45100'),
('601555','45101'),
('601555','47628'),
('601555','47629'),
('601555','47630'),
('601555','47631'),
('601555','47632'),
('601555','47633'),
('601555','47634'),
('601555','47635'),
('601555','47646'),
('601555','47647'),
('601555','47648'),
('601555','47649'),
('601555','47650'),
('601555','47651'),
('601555','47652'),
('601555','47653'),
('601555','49957'),
('601555','49958'),
('601555','49959'),
('601555','49961'),
('601555','49962'),
('601555','49963'),
('601555','49965'),
('601555','49966'),
('601556','13262'),
('601556','17182'),
('601556','19019'),
('601556','22589'),
('601556','22630'),
('601556','22631'),
('601556','22632'),
('601556','32837'),
('601556','32838'),
('601556','34334'),
('601556','46017'),
('601556','49623'),
('601557','42734'),
('601557','42735'),
('601557','42736'),
('601557','42737'),
('601557','42738'),
('601557','42739'),
('601557','42740'),
('601557','42741'),
('601557','42742'),
('601557','42743'),
('601557','42744'),
('601557','42745'),
('601557','42746'),
('601557','42747'),
('601557','42748'),
('601557','42749'),
('601557','42750'),
('601557','42751'),
('601557','42752'),
('601557','42753'),
('601557','42754'),
('601557','43339'),
('601557','43357'),
('601557','43359'),
('601557','43360'),
('601557','43361'),
('601557','43364'),
('601557','44684'),
('601557','44920'),
('601557','44955'),
('601557','45736'),
('601557','45737'),
('601557','45738'),
('601557','45739'),
('601557','45740'),
('601557','50045'),
('601558','723'),
('601558','729'),
('601558','730'),
('601558','731'),
('601558','769'),
('601558','1015'),
('601558','1080'),
('601558','1081'),
('601558','1468'),
('601558','2251'),
('601558','2296'),
('601558','2665'),
('601558','2672'),
('601558','2673'),
('601558','2674'),
('601558','2675'),
('601558','2677'),
('601558','2886'),
('601558','2924'),
('601558','3172'),
('601558','3173'),
('601558','3174'),
('601558','3404'),
('601558','3667'),
('601558','3685'),
('601558','3712'),
('601558','3730'),
('601558','3731'),
('601558','4603'),
('601558','4655'),
('601558','5465'),
('601558','5466'),
('601558','5467'),
('601558','5468'),
('601558','5469'),
('601558','5470'),
('601558','5471'),
('601558','5503'),
('601558','5504'),
('601558','6289'),
('601558','6291'),
('601558','6303'),
('601558','6308'),
('601558','6317'),
('601558','6361'),
('601558','6362'),
('601558','6889'),
('601558','7974'),
('601558','8365'),
('601558','8959'),
('601558','12037'),
('601558','12184'),
('601558','12202'),
('601558','12203'),
('601558','12204'),
('601558','12205'),
('601558','12206'),
('601558','12207'),
('601558','12208'),
('601558','12223'),
('601558','13754'),
('601558','13756'),
('601558','13758'),
('601558','13759'),
('601558','13760'),
('601558','13888'),
('601558','13889'),
('601558','13890'),
('601558','20424'),
('601558','21024'),
('601558','21071'),
('601558','21153'),
('601558','22644'),
('601558','23676'),
('601558','24477'),
('601558','27422'),
('601558','27425'),
('601558','27429'),
('601558','27435'),
('601558','27437'),
('601558','27438'),
('601558','27439'),
('601558','27668'),
('601558','27669'),
('601558','27671'),
('601558','27674'),
('601558','27676'),
('601558','27677'),
('601558','27678'),
('601558','27681'),
('601558','27682'),
('601558','31670'),
('601558','31671'),
('601558','33823'),
('601558','33824'),
('601558','34736'),
('601558','35285'),
('601558','35562'),
('601558','35794'),
('601558','36782'),
('601558','41800'),
('601558','41801'),
('601558','41802'),
('601558','41803'),
('601558','41805'),
('601558','41806'),
('601558','41807'),
('601558','41808'),
('601558','41809'),
('601558','41810'),
('601558','41812'),
('601558','41813'),
('601558','41814'),
('601558','43009'),
('601558','43010'),
('601558','43011'),
('601558','43012'),
('601558','43013'),
('601558','43501'),
('601558','43571'),
('601558','43572'),
('601558','43646'),
('601558','43647'),
('601558','43652'),
('601558','44834'),
('601559','25890'),
('601559','25893'),
('601559','25894'),
('601559','25895'),
('601559','25896'),
('601559','25897'),
('601559','25898'),
('601559','25899'),
('601559','25901'),
('601559','28556'),
('601559','28557'),
('601559','32409'),
('601559','32410'),
('601559','32640'),
('601559','32641'),
('601559','34220'),
('601559','35501'),
('601559','35503'),
('601559','41285'),
('601559','41307'),
('601559','41333'),
('601559','41335'),
('601559','41339'),
('601559','41375'),
('601559','41376'),
('601559','41377'),
('601559','41378'),
('601559','41379'),
('601559','41380'),
('601559','41381'),
('601559','41382'),
('601559','41385'),
('601559','41389'),
('601559','41395'),
('601559','41396'),
('601559','41397'),
('601559','41398'),
('601559','41400'),
('601559','41401'),
('601559','44076'),
('601559','44078'),
('601559','44081'),
('601559','44082'),
('601559','44084'),
('601559','44087'),
('601559','44088'),
('601559','44089'),
('601560','2770'),
('601560','2771'),
('601560','2772'),
('601560','2775'),
('601560','2776'),
('601560','2835'),
('601560','2836'),
('601560','2838'),
('601560','2840'),
('601560','2841'),
('601560','2842'),
('601560','3470'),
('601560','3478'),
('601560','3486'),
('601560','3575'),
('601560','3576'),
('601560','3577'),
('601560','3857'),
('601560','3858'),
('601560','3859'),
('601560','3860'),
('601560','6037'),
('601560','7911'),
('601560','7912'),
('601560','7966'),
('601560','10620'),
('601560','11370'),
('601560','11371'),
('601560','12359'),
('601560','12360'),
('601560','12365'),
('601560','12644'),
('601560','12655'),
('601560','12809'),
('601560','17203'),
('601560','17771'),
('601560','18562'),
('601560','18567'),
('601560','22202'),
('601560','22203'),
('601560','23424'),
('601560','23425'),
('601560','23426'),
('601560','23427'),
('601560','23445'),
('601560','23446'),
('601560','23447'),
('601560','23448'),
('601560','23449'),
('601560','23573'),
('601560','35128'),
('601560','36909'),
('601560','36910'),
('601560','36912'),
('601560','36913'),
('601560','36914'),
('601560','36915'),
('601560','36916'),
('601560','37663'),
('601560','37706'),
('601560','41163'),
('601561','35273'),
('601561','44956'),
('601562','1132'),
('601562','2411'),
('601562','2414'),
('601562','5655'),
('601562','5656'),
('601562','5665'),
('601562','5668'),
('601562','5864'),
('601562','5872'),
('601562','5873'),
('601562','8563'),
('601562','8588'),
('601562','8591'),
('601562','8592'),
('601562','8595'),
('601562','8629'),
('601562','8631'),
('601562','8632'),
('601562','13321'),
('601562','13322'),
('601562','13331'),
('601562','13332'),
('601562','13333'),
('601562','15277'),
('601562','15290'),
('601562','21218'),
('601562','21321'),
('601562','21323'),
('601562','21324'),
('601562','28481'),
('601562','28927'),
('601562','29220'),
('601562','29221'),
('601562','29222'),
('601562','29743'),
('601562','29744'),
('601562','33183'),
('601562','33189'),
('601562','33976'),
('601562','37011'),
('601562','46099'),
('601562','46100'),
('601562','46109'),
('601562','46308'),
('601562','47100'),
('601563','38322'),
('601563','39199'),
('601563','39311'),
('601563','39766'),
('601563','40192'),
('601563','40273'),
('601563','40350'),
('601563','40698'),
('601563','40699'),
('601563','44210'),
('601563','45115'),
('601563','45271'),
('601563','45314'),
('601563','45617'),
('601563','47053'),
('601563','47064'),
('601563','47138'),
('601563','47146'),
('601563','47276'),
('601563','47309'),
('601563','47437'),
('601563','47470'),
('601563','47742'),
('601563','47913'),
('601563','47958'),
('601563','48032'),
('601563','49308'),
('601563','49490'),
('601563','50173'),
('601563','50309'),
('601563','50423'),
('601563','50635'),
('601563','50719'),
('601563','50781'),
('601563','51922'),
('601564','40402'),
('601564','45076'),
('601564','45204'),
('601564','46031'),
('601564','46996'),
('601564','47001'),
('601564','47148'),
('601564','47156'),
('601564','47266'),
('601564','47314'),
('601564','47427'),
('601564','47475'),
('601564','47808'),
('601564','47898'),
('601564','47966'),
('601564','48043'),
('601564','49297'),
('601564','49500'),
('601564','4984'),
('601564','50012'),
('601564','50191'),
('601564','50290'),
('601564','50411'),
('601564','50654'),
('601564','50737'),
('601564','50759'),
('601564','50787'),
('601564','51795'),
('601564','51916'),
('601564','51938'),
('601564','51947'),
('601565','37169'),
('601565','39226'),
('601565','39281'),
('601565','39423'),
('601565','40189'),
('601565','40244'),
('601565','40264'),
('601565','40395'),
('601565','40488'),
('601565','41383'),
('601565','41384'),
('601565','45075'),
('601565','45147'),
('601565','45203'),
('601565','45315'),
('601565','45442'),
('601565','45463'),
('601565','45612'),
('601565','45876'),
('601565','45892'),
('601565','45972'),
('601565','46035'),
('601565','46097'),
('601565','46351'),
('601565','47193'),
('601565','47206'),
('601565','47322'),
('601565','47483'),
('601565','47508'),
('601565','47509'),
('601565','47526'),
('601565','47528'),
('601565','47809'),
('601565','47816'),
('601565','47894'),
('601565','47905'),
('601565','47962'),
('601565','47973'),
('601565','48039'),
('601565','48050'),
('601565','48663'),
('601565','48693'),
('601565','48699'),
('601565','48709'),
('601565','48714'),
('601565','49783'),
('601565','49845'),
('601565','49997'),
('601565','50028'),
('601565','50050'),
('601565','50051'),
('601565','50179'),
('601565','50303'),
('601565','50428'),
('601565','50685'),
('601565','50708'),
('601565','50734'),
('601565','50738'),
('601565','50760'),
('601565','50810'),
('601565','51004'),
('601565','51798'),
('601565','51875'),
('601565','51893'),
('601565','51937'),
('601565','51944'),
('601566','37401'),
('601566','39200'),
('601566','39270'),
('601566','39291'),
('601566','39344'),
('601566','39730'),
('601566','40336'),
('601566','40345'),
('601566','40396'),
('601566','40407'),
('601566','40491'),
('601566','40703'),
('601566','43611'),
('601566','44311'),
('601566','45110'),
('601566','45129'),
('601566','45142'),
('601566','45208'),
('601566','45266'),
('601566','45287'),
('601566','45298'),
('601566','45331'),
('601566','45437'),
('601566','45700'),
('601566','45947'),
('601566','45990'),
('601566','46036'),
('601566','47500'),
('601566','47506'),
('601566','47513'),
('601566','47517'),
('601566','47518'),
('601566','47810'),
('601566','47814'),
('601566','47899'),
('601566','47903'),
('601566','47967'),
('601566','47971'),
('601566','48044'),
('601566','48048'),
('601566','48701'),
('601566','48708'),
('601566','49128'),
('601566','49296'),
('601566','49298'),
('601566','49303'),
('601566','49495'),
('601566','49499'),
('601566','49501'),
('601566','49827'),
('601566','49833'),
('601566','50046'),
('601566','50047'),
('601566','50068'),
('601566','50210'),
('601566','50268'),
('601566','50302'),
('601566','50412'),
('601566','50427'),
('601566','50672'),
('601566','50704'),
('601566','50732'),
('601566','50771'),
('601566','51010'),
('601566','51021'),
('601566','51858'),
('601566','51869'),
('601566','51932'),
('601567','23098'),
('601567','23099'),
('601567','23100'),
('601567','23101'),
('601567','24058'),
('601567','24059'),
('601567','24060'),
('601567','24061'),
('601567','28123'),
('601567','28363'),
('601567','30547'),
('601567','30551'),
('601567','30553'),
('601567','30554'),
('601567','30556'),
('601567','30558'),
('601567','30559'),
('601567','30564'),
('601567','30565'),
('601567','30573'),
('601567','30575'),
('601567','30581'),
('601567','30582'),
('601567','30584'),
('601567','30585'),
('601567','30587'),
('601567','30588'),
('601567','30591'),
('601567','30593'),
('601567','30601'),
('601567','30604'),
('601567','30607'),
('601567','31866'),
('601567','31867'),
('601567','31868'),
('601567','31869'),
('601567','32217'),
('601567','32218'),
('601567','32219'),
('601567','32220'),
('601567','32221'),
('601567','32222'),
('601567','32637'),
('601567','32638'),
('601567','35316'),
('601567','35760'),
('601567','38547'),
('601567','38548'),
('601567','39946'),
('601567','39947'),
('601567','39948'),
('601567','39949'),
('601567','39950'),
('601567','39951'),
('601567','39952'),
('601567','39953'),
('601567','39954'),
('601567','39955'),
('601567','39956'),
('601567','39957'),
('601567','39958'),
('601567','39959'),
('601567','39960'),
('601567','39961'),
('601567','39962'),
('601567','39963'),
('601567','39964'),
('601567','39965'),
('601567','39966'),
('601567','39967'),
('601567','40037'),
('601567','40038'),
('601567','40039'),
('601567','40040'),
('601567','40041'),
('601567','40043'),
('601567','40044'),
('601567','40045'),
('601567','40046'),
('601567','40047'),
('601567','40048'),
('601567','40049'),
('601567','40050'),
('601567','40051'),
('601567','40052'),
('601567','40053'),
('601567','40054'),
('601567','40055'),
('601567','40056'),
('601567','40057'),
('601567','40058'),
('601567','40059'),
('601567','40142'),
('601567','40143'),
('601567','40144'),
('601567','40145'),
('601567','40146'),
('601567','40147'),
('601567','40148'),
('601567','40149'),
('601567','40150'),
('601567','40151'),
('601567','40152'),
('601567','40153'),
('601567','40154'),
('601567','40155'),
('601567','40156'),
('601567','40157'),
('601567','40158'),
('601567','40159'),
('601567','40160'),
('601567','40161'),
('601567','40162'),
('601567','40163'),
('601567','41429'),
('601567','41482'),
('601567','41483'),
('601567','41484'),
('601567','41485'),
('601567','41486'),
('601567','41487'),
('601567','41488'),
('601567','41489'),
('601567','41490'),
('601567','41491'),
('601567','41492'),
('601567','41493'),
('601567','41494'),
('601567','41495'),
('601567','41496'),
('601567','41497'),
('601567','41498'),
('601567','41499'),
('601567','41500'),
('601567','41501'),
('601567','41502'),
('601568','41092'),
('601568','41094'),
('601568','41095'),
('601568','41096'),
('601568','41097'),
('601568','41098'),
('601568','41099'),
('601568','41100'),
('601568','41101'),
('601568','41102'),
('601568','41103'),
('601568','41104'),
('601568','41105'),
('601568','41106'),
('601568','41107'),
('601568','41108'),
('601568','41109'),
('601568','41110'),
('601568','43340'),
('601568','43365'),
('601568','43366'),
('601568','43367'),
('601568','43368'),
('601568','43369'),
('601568','43867'),
('601568','43868'),
('601568','43869'),
('601568','45741'),
('601568','45742'),
('601568','45743'),
('601568','45744'),
('601568','45745'),
('601568','45746'),
('601568','45747'),
('601569','4401'),
('601569','8485'),
('601569','8486'),
('601569','8487'),
('601569','8488'),
('601569','8489'),
('601569','8490'),
('601569','8491'),
('601569','8492'),
('601569','8494'),
('601569','8495'),
('601569','8496'),
('601569','8497'),
('601569','8498'),
('601569','8499'),
('601569','8500'),
('601569','8501'),
('601569','10360'),
('601569','10361'),
('601569','10392'),
('601569','10393'),
('601569','10394'),
('601569','10398'),
('601569','10822'),
('601569','11023'),
('601569','11026'),
('601569','11027'),
('601569','11110'),
('601569','11474'),
('601569','11825'),
('601569','11826'),
('601569','12264'),
('601569','12529'),
('601569','15996'),
('601569','18964'),
('601569','19450'),
('601569','19462'),
('601569','20769'),
('601569','21168'),
('601569','21277'),
('601569','21301'),
('601569','21305'),
('601569','21308'),
('601569','21309'),
('601569','22200'),
('601569','22235'),
('601569','23002'),
('601569','23007'),
('601569','23015'),
('601569','23083'),
('601569','27445'),
('601569','29363'),
('601569','29364'),
('601569','29901'),
('601569','29902'),
('601569','29903'),
('601569','29904'),
('601569','29953'),
('601569','29956'),
('601569','29957'),
('601569','29958'),
('601569','29960'),
('601569','31760'),
('601569','32233'),
('601569','32616'),
('601569','32617'),
('601569','32622'),
('601569','33154'),
('601569','33816'),
('601569','33818'),
('601569','33993'),
('601569','34425'),
('601569','34478'),
('601569','34518'),
('601569','34519'),
('601569','34535'),
('601569','34955'),
('601569','35349'),
('601569','35350'),
('601569','35504'),
('601569','37297'),
('601569','37298'),
('601569','37460'),
('601569','38628'),
('601569','38658'),
('601569','39896'),
('601569','39898'),
('601569','39899'),
('601569','39973'),
('601569','40653'),
('601569','41133'),
('601569','43698'),
('601569','44721'),
('601569','44723'),
('601569','44738'),
('601569','44794'),
('601569','44810'),
('601569','44819'),
('601569','44820'),
('601569','44822'),
('601569','44841'),
('601569','44965'),
('601569','44970'),
('601569','44971'),
('601569','44973'),
('601569','44974'),
('601569','44980'),
('601569','44982'),
('601569','44983'),
('601569','44984'),
('601569','44998'),
('601569','45002'),
('601569','45022'),
('601569','45057'),
('601569','45180'),
('601569','45606'),
('601569','45942'),
('601569','46396'),
('601569','46397'),
('601569','46398'),
('601569','46544'),
('601569','46545'),
('601569','46707'),
('601569','46767'),
('601569','46820'),
('601569','46821'),
('601569','46831'),
('601569','48112'),
('601569','48114'),
('601569','48116'),
('601569','48118'),
('601569','48120'),
('601569','48122'),
('601569','48124'),
('601569','48126'),
('601569','49362'),
('601569','49646'),
('601569','49662'),
('601569','49663'),
('601569','49912'),
('601569','50446'),
('601569','54436'),
('601570','39221'),
('601570','40208'),
('601570','40497'),
('601570','45311'),
('601570','45498'),
('601570','45533'),
('601570','45996'),
('601570','47233'),
('601570','47239'),
('601570','47329'),
('601570','47491'),
('601570','47522'),
('601570','47834'),
('601570','47911'),
('601570','47979'),
('601570','48056'),
('601570','49301'),
('601570','49302'),
('601570','49496'),
('601570','49497'),
('601570','50178'),
('601570','50296'),
('601570','50425'),
('601570','50727'),
('601570','50735'),
('601570','51022'),
('601570','51857'),
('601571','22459'),
('601571','22460'),
('601571','34142'),
('601571','34143'),
('601571','42701'),
('601571','42702'),
('601571','49110'),
('601572','2512'),
('601572','2515'),
('601572','2516'),
('601572','2519'),
('601572','3030'),
('601572','3033'),
('601572','3464'),
('601572','3465'),
('601572','4960'),
('601572','5568'),
('601572','8067'),
('601572','8068'),
('601572','8069'),
('601572','9399'),
('601572','10512'),
('601572','10513'),
('601572','10579'),
('601572','11284'),
('601572','11285'),
('601572','11630'),
('601572','12654'),
('601572','13377'),
('601572','15997'),
('601572','18042'),
('601572','19316'),
('601572','19317'),
('601572','23772'),
('601572','23773'),
('601572','24417'),
('601572','28053'),
('601572','28056'),
('601572','28060'),
('601572','28061'),
('601572','30611'),
('601572','30612'),
('601572','31735'),
('601572','31737'),
('601572','31949'),
('601572','32760'),
('601572','32761'),
('601572','32882'),
('601572','32883'),
('601572','33803'),
('601572','34581'),
('601572','34582'),
('601572','41164'),
('601572','41165'),
('601572','41584'),
('601572','41586'),
('601572','52020'),
('601572','52021'),
('601573','23108'),
('601573','23109'),
('601573','23110'),
('601573','23111'),
('601573','24054'),
('601573','24055'),
('601573','24056'),
('601573','24057'),
('601573','30546'),
('601573','30549'),
('601573','30552'),
('601573','30555'),
('601573','30563'),
('601573','30566'),
('601573','30572'),
('601573','30574'),
('601573','30600'),
('601573','30603'),
('601573','31116'),
('601573','31117'),
('601573','31118'),
('601573','31862'),
('601573','31863'),
('601573','31864'),
('601573','31865'),
('601573','32211'),
('601573','32212'),
('601573','32213'),
('601573','32214'),
('601573','32215'),
('601573','32216'),
('601573','32634'),
('601573','32636'),
('601573','32833'),
('601573','32836'),
('601573','35707'),
('601573','37503'),
('601573','39933'),
('601573','39934'),
('601573','39935'),
('601573','39936'),
('601573','39937'),
('601573','39938'),
('601573','39939'),
('601573','39940'),
('601573','39941'),
('601573','39942'),
('601573','39943'),
('601573','39944'),
('601573','39945'),
('601573','40022'),
('601573','40023'),
('601573','40024'),
('601573','40025'),
('601573','40026'),
('601573','40027'),
('601573','40028'),
('601573','40029'),
('601573','40030'),
('601573','40031'),
('601573','40032'),
('601573','40033'),
('601573','40034'),
('601573','40129'),
('601573','40130'),
('601573','40131'),
('601573','40132'),
('601573','40133'),
('601573','40134'),
('601573','40135'),
('601573','40136'),
('601573','40137'),
('601573','40138'),
('601573','40139'),
('601573','40140'),
('601573','40141'),
('601573','41450'),
('601573','41451'),
('601573','41452'),
('601573','41453'),
('601573','41454'),
('601573','41455'),
('601573','41456'),
('601573','41457'),
('601573','41458'),
('601573','41459'),
('601573','41460'),
('601573','41461'),
('601573','41462'),
('601574','2101'),
('601574','2102'),
('601574','2662'),
('601574','2663'),
('601574','3573'),
('601574','3574'),
('601574','3604'),
('601574','3605'),
('601574','5439'),
('601574','5441'),
('601574','7278'),
('601574','7279'),
('601574','7371'),
('601574','7372'),
('601574','8217'),
('601574','8218'),
('601574','11362'),
('601574','11363'),
('601574','18714'),
('601574','19319'),
('601574','19320'),
('601574','29118'),
('601574','29143'),
('601574','29144'),
('601574','34099'),
('601574','34100'),
('601574','34105'),
('601574','34106'),
('601574','44447'),
('601574','44448'),
('601575','16795'),
('601575','16796'),
('601575','16797'),
('601575','16798'),
('601575','16799'),
('601575','16800'),
('601575','16801'),
('601575','16802'),
('601575','16803'),
('601575','16804'),
('601575','16805'),
('601575','16806'),
('601575','16807'),
('601575','16808'),
('601575','16809'),
('601575','16810'),
('601575','16811'),
('601575','16812'),
('601575','16813'),
('601575','16814'),
('601575','16815'),
('601575','16816'),
('601575','16817'),
('601575','16819'),
('601575','16820'),
('601575','16821'),
('601575','16822'),
('601575','16823'),
('601575','16824'),
('601575','16825'),
('601575','16826'),
('601575','16827'),
('601575','16828'),
('601575','16829'),
('601575','16830'),
('601575','16831'),
('601575','16833'),
('601575','16834'),
('601575','16835'),
('601575','16836'),
('601575','16837'),
('601575','16838'),
('601575','16839'),
('601575','16840'),
('601575','16841'),
('601575','16842'),
('601575','16843'),
('601575','16844'),
('601575','16845'),
('601575','16846'),
('601575','16847'),
('601575','16848'),
('601575','16849'),
('601575','16850'),
('601575','16851'),
('601575','16852'),
('601575','16853'),
('601575','16854'),
('601575','16855'),
('601575','16856'),
('601575','16857'),
('601575','16858'),
('601575','16859'),
('601575','16860'),
('601575','16861'),
('601575','16862'),
('601575','16863'),
('601575','16864'),
('601575','16865'),
('601575','16866'),
('601575','16867'),
('601575','16868'),
('601576','16818'),
('601576','16832'),
('601576','16897'),
('601576','16898'),
('601576','16899'),
('601576','16900'),
('601576','16901'),
('601576','16902'),
('601576','16903'),
('601576','16904'),
('601576','16905'),
('601576','16906'),
('601576','16907'),
('601576','16908'),
('601576','16909'),
('601576','16910'),
('601576','16911'),
('601576','16912'),
('601576','16913'),
('601576','16914'),
('601576','16915'),
('601576','16916'),
('601576','16917'),
('601576','16918'),
('601576','16919'),
('601576','16920'),
('601576','16921'),
('601576','16922'),
('601576','16923'),
('601576','16924'),
('601576','16925'),
('601576','16926'),
('601576','16927'),
('601576','16928'),
('601576','16929'),
('601576','16930'),
('601576','16931'),
('601576','16932'),
('601576','16933'),
('601576','16934'),
('601576','16935'),
('601576','16936'),
('601576','16937'),
('601576','16938'),
('601576','16939'),
('601576','16940'),
('601576','16941'),
('601576','16942'),
('601576','16943'),
('601576','16944'),
('601576','16945'),
('601576','16946'),
('601576','16947'),
('601576','16948'),
('601576','16949'),
('601576','16950'),
('601576','16951'),
('601576','16952'),
('601576','16953'),
('601576','16954'),
('601576','16955'),
('601576','16956'),
('601576','16957'),
('601576','16958'),
('601576','16959'),
('601576','16960'),
('601576','16961'),
('601576','16962'),
('601576','16963'),
('601576','16964'),
('601576','16965'),
('601576','16966'),
('601577','22416'),
('601577','22417'),
('601577','22418'),
('601577','22419'),
('601577','22420'),
('601577','22421'),
('601577','22422'),
('601577','22423'),
('601577','22424'),
('601577','22425'),
('601577','22426'),
('601577','22427'),
('601577','22428'),
('601577','22429'),
('601577','22430'),
('601577','22431'),
('601577','22436'),
('601577','22437'),
('601577','22438'),
('601577','22439'),
('601577','22440'),
('601577','22441'),
('601577','22442'),
('601577','22443'),
('601577','22464'),
('601577','22465'),
('601577','22466'),
('601577','22467'),
('601577','22468'),
('601577','22469'),
('601577','22470'),
('601577','22471'),
('601577','22476'),
('601577','22477'),
('601577','22478'),
('601577','22479'),
('601577','22480'),
('601577','22481'),
('601577','22482'),
('601577','22483'),
('601577','22488'),
('601577','22489'),
('601577','22490'),
('601577','22491'),
('601577','22492'),
('601577','22493'),
('601577','22494'),
('601577','22495'),
('601577','22496'),
('601577','22497'),
('601577','22498'),
('601577','22499'),
('601577','22500'),
('601577','22501'),
('601577','22502'),
('601577','22503'),
('601577','22504'),
('601577','22505'),
('601577','22506'),
('601577','22507'),
('601577','22508'),
('601577','22509'),
('601577','22510'),
('601577','22511'),
('601577','22512'),
('601577','22513'),
('601577','22514'),
('601577','22515'),
('601577','22516'),
('601577','22517'),
('601577','22518'),
('601577','22519'),
('601577','23059'),
('601577','23060'),
('601577','23061'),
('601577','23062'),
('601577','23063'),
('601577','23064'),
('601577','23065'),
('601577','23066'),
('601577','23067'),
('601578','28963'),
('601578','28964'),
('601578','28966'),
('601578','28967'),
('601578','28968'),
('601578','29011'),
('601578','29012'),
('601578','29015'),
('601578','29016'),
('601578','29017'),
('601578','29019'),
('601578','29020'),
('601578','29021'),
('601578','29022'),
('601578','29023'),
('601578','29028'),
('601578','29029'),
('601578','29030'),
('601578','29031'),
('601578','29032'),
('601578','29033'),
('601578','29034'),
('601578','29035'),
('601578','29036'),
('601578','29037'),
('601578','29038'),
('601578','29039'),
('601578','29040'),
('601578','29042'),
('601578','29043'),
('601578','29044'),
('601578','29045'),
('601578','29046'),
('601578','29047'),
('601578','29048'),
('601578','29049'),
('601578','29050'),
('601578','29053'),
('601578','29054'),
('601578','29055'),
('601578','29056'),
('601578','29057'),
('601578','29058'),
('601578','29059'),
('601578','29060'),
('601578','29061'),
('601578','29062'),
('601578','29063'),
('601578','29064'),
('601578','29065'),
('601578','29066'),
('601578','29067'),
('601578','29068'),
('601578','29069'),
('601578','29070'),
('601578','29071'),
('601578','29072'),
('601578','29073'),
('601578','29074'),
('601578','29075'),
('601578','29076'),
('601578','29077'),
('601578','29078'),
('601578','29079'),
('601578','29080'),
('601578','29081'),
('601578','29082'),
('601578','29083'),
('601578','29084'),
('601578','29085'),
('601578','29086'),
('601578','29087'),
('601578','29088'),
('601578','29089'),
('601578','29090'),
('601578','29091'),
('601578','29092'),
('601578','29093'),
('601578','29094'),
('601578','29095'),
('601578','29096'),
('601578','29097'),
('601578','29098'),
('601578','29099'),
('601578','29100'),
('601579','30113'),
('601579','30114'),
('601579','30115'),
('601579','30116'),
('601579','30117'),
('601579','30118'),
('601579','30119'),
('601579','30120'),
('601579','30121'),
('601579','30122'),
('601579','30123'),
('601579','30124'),
('601579','30125'),
('601579','30126'),
('601579','30127'),
('601579','30129'),
('601579','30130'),
('601579','30131'),
('601579','30132'),
('601579','30133'),
('601579','30134'),
('601579','30135'),
('601579','30136'),
('601579','30137'),
('601579','30138'),
('601579','30139'),
('601579','30140'),
('601579','30141'),
('601579','30142'),
('601579','30143'),
('601579','30144'),
('601579','30145'),
('601579','30146'),
('601579','30148'),
('601579','30149'),
('601579','30150'),
('601579','30151'),
('601579','30152'),
('601579','30153'),
('601579','30154'),
('601579','30159'),
('601579','30160'),
('601579','30161'),
('601579','30162'),
('601579','30163'),
('601579','30164'),
('601579','30165'),
('601579','30166'),
('601579','30167'),
('601579','30168'),
('601579','30169'),
('601579','30170'),
('601579','30171'),
('601579','30172'),
('601579','30173'),
('601579','30185'),
('601579','30189'),
('601579','30190'),
('601579','30192'),
('601579','30194'),
('601579','30196'),
('601579','30205'),
('601579','30206'),
('601579','30207'),
('601579','30210'),
('601579','30211'),
('601579','30212'),
('601579','30213'),
('601579','30214'),
('601579','30215'),
('601579','30216'),
('601579','30217'),
('601579','30219'),
('601579','30220'),
('601579','30221'),
('601579','30222'),
('601579','30223'),
('601579','30228'),
('601579','30229'),
('601579','30230'),
('601579','30231'),
('601579','30232'),
('601579','30233'),
('601579','30234'),
('601579','30235'),
('601580','30969'),
('601580','30970'),
('601580','30972'),
('601580','30974'),
('601580','30975'),
('601580','30976'),
('601580','30977'),
('601580','30978'),
('601580','30979'),
('601580','30980'),
('601580','30982'),
('601580','30983'),
('601580','30985'),
('601580','30987'),
('601580','30988'),
('601580','30989'),
('601580','30990'),
('601580','30991'),
('601580','30992'),
('601580','30993'),
('601580','30994'),
('601580','30995'),
('601580','30996'),
('601580','30997'),
('601580','30998'),
('601580','31001'),
('601580','31003'),
('601580','31004'),
('601580','31005'),
('601580','31006'),
('601580','31007'),
('601580','31008'),
('601580','31011'),
('601580','31012'),
('601580','31014'),
('601580','31015'),
('601580','31016'),
('601580','31017'),
('601580','31018'),
('601580','31019'),
('601580','31020'),
('601580','31021'),
('601580','31022'),
('601580','31023'),
('601580','31024'),
('601580','31026'),
('601580','31027'),
('601580','31028'),
('601580','31029'),
('601580','31030'),
('601580','31032'),
('601580','31034'),
('601580','31035'),
('601580','31037'),
('601580','31039'),
('601580','31040'),
('601580','31041'),
('601580','31042'),
('601580','31043'),
('601580','31044'),
('601580','31045'),
('601580','31046'),
('601580','31047'),
('601580','31048'),
('601580','31049'),
('601580','31050'),
('601580','31051'),
('601580','31052'),
('601580','31053'),
('601580','31054'),
('601580','31055'),
('601580','31056'),
('601580','31057'),
('601580','31058'),
('601580','31059'),
('601580','31060'),
('601580','31061'),
('601580','31063'),
('601580','31064'),
('601580','31065'),
('601580','31066'),
('601580','31067'),
('601580','31068'),
('601580','31069'),
('601580','31070'),
('601580','34431'),
('601580','34432'),
('601580','34433'),
('601580','34434'),
('601580','34435'),
('601580','34436'),
('601580','34437'),
('601580','34438'),
('601580','34439'),
('601580','34441'),
('601580','34442'),
('601580','34443'),
('601580','34444'),
('601580','34445'),
('601580','34446'),
('601580','34447'),
('601580','34448'),
('601580','34485'),
('601580','34487'),
('601580','34488'),
('601580','34527'),
('601580','34528'),
('601580','34541'),
('601580','34542'),
('601580','34543'),
('601580','34545'),
('601580','34546'),
('601580','34547'),
('601580','34549'),
('601580','34554'),
('601580','34555'),
('601580','34556'),
('601580','34557'),
('601580','34558'),
('601580','34559'),
('601580','34560'),
('601580','34561'),
('601580','34562'),
('601580','34563'),
('601580','34564'),
('601580','34565'),
('601580','34566'),
('601580','34567'),
('601580','34568'),
('601580','34569'),
('601580','34570'),
('601580','34571'),
('601580','34572'),
('601580','34573'),
('601580','34574'),
('601580','34575'),
('601581','39491'),
('601581','39492'),
('601581','39493'),
('601581','39494'),
('601581','39495'),
('601581','39496'),
('601581','39497'),
('601581','39498'),
('601581','39499'),
('601581','39500'),
('601581','39514'),
('601581','39515'),
('601581','39517'),
('601581','39518'),
('601581','39519'),
('601581','39521'),
('601581','39523'),
('601581','39528'),
('601581','39529'),
('601581','39530'),
('601581','39531'),
('601581','39538'),
('601581','39539'),
('601581','39542'),
('601581','39543'),
('601581','39544'),
('601581','39545'),
('601581','39546'),
('601581','39547'),
('601581','39548'),
('601581','39553'),
('601581','39554'),
('601581','39555'),
('601581','39556'),
('601581','39557'),
('601581','39558'),
('601581','39560'),
('601581','39561'),
('601581','39564'),
('601581','39565'),
('601581','39578'),
('601581','39579'),
('601581','39580'),
('601581','39581'),
('601581','39582'),
('601581','39583'),
('601581','39588'),
('601581','39589'),
('601581','39590'),
('601581','39591'),
('601581','39592'),
('601581','39593'),
('601581','39594'),
('601581','39595'),
('601581','39596'),
('601581','39597'),
('601581','39601'),
('601581','39602'),
('601581','39603'),
('601581','39604'),
('601581','39605'),
('601581','39606'),
('601581','39607'),
('601581','39608'),
('601581','39609'),
('601581','39610'),
('601581','39611'),
('601581','39612'),
('601581','39613'),
('601581','39617'),
('601581','39618'),
('601581','39619'),
('601581','39620'),
('601581','39621'),
('601581','39622'),
('601581','39623'),
('601581','39624'),
('601581','39625'),
('601581','39626'),
('601581','39627'),
('601581','39628'),
('601581','39629'),
('601581','39630'),
('601581','39631'),
('601581','39632'),
('601581','39633'),
('601581','39634'),
('601581','39635'),
('601581','39636'),
('601581','39637'),
('601581','39638'),
('601581','39639'),
('601581','39640'),
('601581','39641'),
('601581','39642'),
('601582','40415'),
('601582','40416'),
('601582','40417'),
('601582','40418'),
('601582','40419'),
('601582','40420'),
('601582','40421'),
('601582','40422'),
('601582','40423'),
('601582','40424'),
('601582','40445'),
('601582','40447'),
('601582','40448'),
('601582','40449'),
('601582','40450'),
('601582','40454'),
('601582','40456'),
('601582','40457'),
('601582','40458'),
('601582','40459'),
('601582','40460'),
('601582','40461'),
('601582','40462'),
('601582','40463'),
('601582','40465'),
('601582','40466'),
('601582','40467'),
('601582','40468'),
('601582','40469'),
('601582','40470'),
('601582','40471'),
('601582','40472'),
('601582','40473'),
('601582','40493'),
('601582','40494'),
('601582','40495'),
('601582','40496'),
('601582','40499'),
('601582','40500'),
('601582','40502'),
('601582','40503'),
('601582','40504'),
('601582','40505'),
('601582','40506'),
('601582','40507'),
('601582','40508'),
('601582','40509'),
('601582','40510'),
('601582','40512'),
('601582','40513'),
('601582','40514'),
('601582','40515'),
('601582','40516'),
('601582','40517'),
('601582','40518'),
('601582','40520'),
('601582','40521'),
('601582','40522'),
('601582','40523'),
('601582','40524'),
('601582','40525'),
('601582','40527'),
('601582','40528'),
('601582','40529'),
('601582','40530'),
('601582','40544'),
('601582','40545'),
('601582','40546'),
('601582','40547'),
('601582','40548'),
('601582','40550'),
('601582','40552'),
('601582','40554'),
('601582','40556'),
('601582','40557'),
('601582','40559'),
('601582','40563'),
('601582','40565'),
('601582','40567'),
('601582','40568'),
('601582','40569'),
('601582','40570'),
('601582','40571'),
('601582','40572'),
('601582','40573'),
('601582','40574'),
('601582','40575'),
('601582','40576'),
('601582','40577'),
('601582','40578'),
('601582','40579'),
('601582','40580'),
('601582','40581'),
('601582','40583'),
('601582','40584'),
('601583','45335'),
('601583','45336'),
('601583','45337'),
('601583','45338'),
('601583','45339'),
('601583','45340'),
('601583','45341'),
('601583','45342'),
('601583','45343'),
('601583','45344'),
('601583','45345'),
('601583','45346'),
('601583','45347'),
('601583','45348'),
('601583','45349'),
('601583','45351'),
('601583','45352'),
('601583','45353'),
('601583','45354'),
('601583','45355'),
('601583','45356'),
('601583','45357'),
('601583','45358'),
('601583','45359'),
('601583','45360'),
('601583','45361'),
('601583','45362'),
('601583','45363'),
('601583','45364'),
('601583','45365'),
('601583','45367'),
('601583','45368'),
('601583','45369'),
('601583','45370'),
('601583','45371'),
('601583','45372'),
('601583','45373'),
('601583','45374'),
('601583','45375'),
('601583','45376'),
('601583','45377'),
('601583','45379'),
('601583','45380'),
('601583','45381'),
('601583','45382'),
('601583','45383'),
('601583','45384'),
('601583','45385'),
('601583','45386'),
('601583','45387'),
('601583','45388'),
('601583','45389'),
('601583','45390'),
('601583','45391'),
('601583','45392'),
('601583','45393'),
('601583','45394'),
('601583','45395'),
('601583','45396'),
('601583','45397'),
('601583','45398'),
('601583','45399'),
('601583','45400'),
('601583','45401'),
('601583','45402'),
('601583','45403'),
('601583','45404'),
('601583','45405'),
('601583','45406'),
('601583','45408'),
('601583','45409'),
('601583','45410'),
('601583','45411'),
('601583','45412'),
('601583','45413'),
('601583','45414'),
('601583','45415'),
('601583','45416'),
('601583','45417'),
('601583','45419'),
('601583','45420'),
('601583','45421'),
('601583','45422'),
('601583','45424'),
('601583','45425'),
('601583','45426'),
('601583','45427'),
('601583','45428'),
('601583','45429'),
('601583','45430'),
('601583','45431'),
('601583','45432'),
('601583','45433'),
('601583','46131'),
('601583','46313'),
('601584','46111'),
('601584','46113'),
('601584','46115'),
('601584','46116'),
('601584','46117'),
('601584','46118'),
('601584','46119'),
('601584','46120'),
('601584','46121'),
('601584','46122'),
('601584','46123'),
('601584','46124'),
('601584','46125'),
('601584','46126'),
('601584','46127'),
('601584','46129'),
('601584','46130'),
('601584','46132'),
('601584','46133'),
('601584','46134'),
('601584','46135'),
('601584','46136'),
('601584','46137'),
('601584','46139'),
('601584','46140'),
('601584','46141'),
('601584','46142'),
('601584','46143'),
('601584','46144'),
('601584','46145'),
('601584','46146'),
('601584','46148'),
('601584','46149'),
('601584','46150'),
('601584','46151'),
('601584','46152'),
('601584','46153'),
('601584','46154'),
('601584','46155'),
('601584','46156'),
('601584','46157'),
('601584','46158'),
('601584','46159'),
('601584','46160'),
('601584','46161'),
('601584','46162'),
('601584','46163'),
('601584','46164'),
('601584','46165'),
('601584','46166'),
('601584','46167'),
('601584','46168'),
('601584','46169'),
('601584','46170'),
('601584','46172'),
('601584','46173'),
('601584','46174'),
('601584','46175'),
('601584','46176'),
('601584','46177'),
('601584','46178'),
('601584','46179'),
('601584','46180'),
('601584','46181'),
('601584','46182'),
('601584','46183'),
('601584','46184'),
('601584','46185'),
('601584','46186'),
('601584','46187'),
('601584','46188'),
('601584','46189'),
('601584','46190'),
('601584','46191'),
('601584','46192'),
('601584','46193'),
('601584','46194'),
('601584','46195'),
('601584','46196'),
('601584','46197'),
('601584','46198'),
('601584','46199'),
('601584','46200'),
('601584','46201'),
('601584','46202'),
('601584','46203'),
('601584','46204'),
('601584','46205'),
('601584','46206'),
('601584','46207'),
('601584','46208'),
('601584','46209'),
('601584','46210'),
('601584','46211'),
('601584','46212'),
('601585','47748'),
('601585','47749'),
('601585','47750'),
('601585','47751'),
('601585','47752'),
('601585','47783'),
('601585','47784'),
('601585','47785'),
('601585','47786'),
('601585','47787'),
('601585','47914'),
('601585','47936'),
('601585','47980'),
('601585','47981'),
('601585','47982'),
('601585','48072'),
('601585','48073'),
('601585','48074'),
('601585','48075'),
('601585','48076'),
('601585','48102'),
('601585','48129'),
('601585','48130'),
('601585','48131'),
('601585','48132'),
('601585','48158'),
('601585','48159'),
('601585','48160'),
('601585','48161'),
('601585','48162'),
('601585','48213'),
('601585','48214'),
('601585','48215'),
('601585','48216'),
('601585','48217'),
('601585','48218'),
('601585','48219'),
('601585','48220'),
('601585','48221'),
('601585','48222'),
('601585','48250'),
('601585','48251'),
('601585','48252'),
('601585','48253'),
('601585','48254'),
('601585','48280'),
('601585','48281'),
('601585','48282'),
('601585','48283'),
('601585','48284'),
('601585','48310'),
('601585','48312'),
('601585','48313'),
('601585','48314'),
('601585','48315'),
('601585','48341'),
('601585','48342'),
('601585','48343'),
('601585','48344'),
('601585','48345'),
('601585','48371'),
('601585','48372'),
('601585','48373'),
('601585','48374'),
('601585','48375'),
('601585','48429'),
('601585','48436'),
('601585','48445'),
('601585','48448'),
('601585','48449'),
('601585','48472'),
('601585','48474'),
('601585','48476'),
('601585','48478'),
('601585','48480'),
('601585','48529'),
('601585','48531'),
('601585','48533'),
('601585','48535'),
('601585','48537'),
('601585','48564'),
('601585','48566'),
('601585','48568'),
('601585','48572'),
('601585','48574'),
('601585','48602'),
('601585','48603'),
('601585','48604'),
('601585','48605'),
('601585','48606'),
('601585','48632'),
('601585','48633'),
('601585','48634'),
('601585','48635'),
('601585','48636'),
('601586','47753'),
('601586','47754'),
('601586','47755'),
('601586','47756'),
('601586','47757'),
('601586','47778'),
('601586','47779'),
('601586','47780'),
('601586','47781'),
('601586','47782'),
('601586','47983'),
('601586','47984'),
('601586','47985'),
('601586','47986'),
('601586','47987'),
('601586','48077'),
('601586','48078'),
('601586','48079'),
('601586','48080'),
('601586','48081'),
('601586','48133'),
('601586','48134'),
('601586','48135'),
('601586','48136'),
('601586','48137'),
('601586','48163'),
('601586','48164'),
('601586','48165'),
('601586','48166'),
('601586','48167'),
('601586','48208'),
('601586','48209'),
('601586','48210'),
('601586','48211'),
('601586','48212'),
('601586','48223'),
('601586','48224'),
('601586','48225'),
('601586','48226'),
('601586','48227'),
('601586','48255'),
('601586','48256'),
('601586','48257'),
('601586','48258'),
('601586','48259'),
('601586','48285'),
('601586','48286'),
('601586','48287'),
('601586','48288'),
('601586','48289'),
('601586','48316'),
('601586','48317'),
('601586','48318'),
('601586','48319'),
('601586','48320'),
('601586','48346'),
('601586','48347'),
('601586','48348'),
('601586','48349'),
('601586','48350'),
('601586','48376'),
('601586','48377'),
('601586','48378'),
('601586','48379'),
('601586','48380'),
('601586','48430'),
('601586','48446'),
('601586','48450'),
('601586','48452'),
('601586','48454'),
('601586','48481'),
('601586','48482'),
('601586','48483'),
('601586','48484'),
('601586','48485'),
('601586','48538'),
('601586','48539'),
('601586','48540'),
('601586','48541'),
('601586','48542'),
('601586','48575'),
('601586','48576'),
('601586','48577'),
('601586','48578'),
('601586','48579'),
('601586','48607'),
('601586','48608'),
('601586','48609'),
('601586','48610'),
('601586','48611'),
('601586','48637'),
('601586','48638'),
('601586','48639'),
('601586','48640'),
('601586','48641'),
('601587','47758'),
('601587','47759'),
('601587','47760'),
('601587','47761'),
('601587','47762'),
('601587','47788'),
('601587','47789'),
('601587','47790'),
('601587','47791'),
('601587','47792'),
('601587','48029'),
('601587','48031'),
('601587','48033'),
('601587','48035'),
('601587','48037'),
('601587','48082'),
('601587','48083'),
('601587','48084'),
('601587','48085'),
('601587','48086'),
('601587','48138'),
('601587','48139'),
('601587','48140'),
('601587','48141'),
('601587','48142'),
('601587','48168'),
('601587','48169'),
('601587','48170'),
('601587','48171'),
('601587','48172'),
('601587','48203'),
('601587','48204'),
('601587','48205'),
('601587','48206'),
('601587','48207'),
('601587','48228'),
('601587','48229'),
('601587','48230'),
('601587','48231'),
('601587','48232'),
('601587','48260'),
('601587','48261'),
('601587','48262'),
('601587','48263'),
('601587','48264'),
('601587','48290'),
('601587','48291'),
('601587','48292'),
('601587','48293'),
('601587','48294'),
('601587','48321'),
('601587','48322'),
('601587','48323'),
('601587','48324'),
('601587','48325'),
('601587','48351'),
('601587','48352'),
('601587','48353'),
('601587','48354'),
('601587','48355'),
('601587','48381'),
('601587','48382'),
('601587','48383'),
('601587','48384'),
('601587','48385'),
('601587','48433'),
('601587','48447'),
('601587','48451'),
('601587','48453'),
('601587','48455'),
('601587','48486'),
('601587','48487'),
('601587','48488'),
('601587','48489'),
('601587','48490'),
('601587','48543'),
('601587','48544'),
('601587','48545'),
('601587','48546'),
('601587','48547'),
('601587','48580'),
('601587','48581'),
('601587','48582'),
('601587','48583'),
('601587','48584'),
('601587','48612'),
('601587','48613'),
('601587','48614'),
('601587','48615'),
('601587','48616'),
('601587','48642'),
('601587','48643'),
('601587','48644'),
('601587','48645'),
('601587','48646'),
('601588','50078'),
('601588','50079'),
('601588','50080'),
('601588','50081'),
('601588','50082'),
('601588','50087'),
('601588','50088'),
('601588','50089'),
('601588','50090'),
('601588','50094'),
('601588','50095'),
('601588','50096'),
('601588','50097'),
('601588','50098'),
('601588','50105'),
('601588','50106'),
('601588','50107'),
('601588','50108'),
('601588','50109'),
('601588','50113'),
('601588','50114'),
('601588','50115'),
('601588','50116'),
('601588','50117'),
('601588','50118'),
('601588','50240'),
('601588','50241'),
('601588','50242'),
('601588','50243'),
('601588','50244'),
('601588','50275'),
('601588','50276'),
('601588','50277'),
('601588','50278'),
('601588','50279'),
('601588','50324'),
('601588','50325'),
('601588','50326'),
('601588','50327'),
('601588','50328'),
('601588','50391'),
('601588','50392'),
('601588','50393'),
('601588','50394'),
('601588','50396'),
('601588','50765'),
('601588','50766'),
('601588','50767'),
('601588','50768'),
('601588','50769'),
('601588','50819'),
('601588','50820'),
('601588','50821'),
('601588','50822'),
('601588','50823'),
('601588','50824'),
('601588','50825'),
('601588','50826'),
('601588','50827'),
('601588','50828'),
('601588','50830'),
('601588','50831'),
('601588','50832'),
('601588','50833'),
('601588','50834'),
('601588','50835'),
('601588','50836'),
('601588','50837'),
('601588','50838'),
('601588','50839'),
('601588','50841'),
('601588','50842'),
('601588','50843'),
('601588','50844'),
('601588','50845'),
('601588','50846'),
('601588','50847'),
('601588','50848'),
('601588','50849'),
('601588','50850'),
('601588','50853'),
('601588','50854'),
('601588','50855'),
('601588','50856'),
('601588','50857'),
('601588','50860'),
('601588','50861'),
('601588','50862'),
('601588','50863'),
('601588','50864'),
('601588','50865'),
('601588','50866'),
('601588','50867'),
('601588','50868'),
('601588','50869'),
('601589','51125'),
('601589','51126'),
('601589','51127'),
('601589','51128'),
('601589','51129'),
('601589','51130'),
('601589','51131'),
('601589','51132'),
('601589','51133'),
('601589','51134'),
('601589','51135'),
('601589','51136'),
('601589','51137'),
('601589','51138'),
('601589','51139'),
('601589','51140'),
('601589','51141'),
('601589','51142'),
('601589','51143'),
('601589','51144'),
('601589','51145'),
('601589','51146'),
('601589','51147'),
('601589','51148'),
('601589','51149'),
('601589','51150'),
('601589','51151'),
('601589','51152'),
('601589','51153'),
('601589','51154'),
('601589','51155'),
('601589','51156'),
('601589','51157'),
('601589','51158'),
('601589','51159'),
('601589','51160'),
('601589','51161'),
('601589','51162'),
('601589','51163'),
('601589','51164'),
('601589','51165'),
('601589','51166'),
('601589','51167'),
('601589','51168'),
('601589','51169'),
('601589','51170'),
('601589','51171'),
('601589','51172'),
('601589','51173'),
('601589','51174'),
('601589','51175'),
('601589','51176'),
('601589','51177'),
('601589','51178'),
('601589','51179'),
('601589','51180'),
('601589','51181'),
('601589','51182'),
('601589','51183'),
('601589','51184'),
('601589','51185'),
('601589','51186'),
('601589','51187'),
('601589','51188'),
('601589','51189'),
('601589','51190'),
('601589','51191'),
('601589','51192'),
('601589','51193'),
('601589','51194'),
('601589','51195'),
('601589','51196'),
('601589','51197'),
('601589','51198'),
('601589','51199'),
('601589','51200'),
('601589','51201'),
('601589','51202'),
('601589','51203'),
('601589','51204'),
('601589','51205'),
('601589','51206'),
('601589','51207'),
('601589','51208'),
('601589','51209'),
('601589','51210'),
('601589','51211'),
('601589','51212'),
('601589','51213'),
('601589','51214'),
('601589','51215'),
('601589','51216'),
('601589','51217'),
('601589','51218'),
('601589','51219'),
('601590','51220'),
('601590','51221'),
('601590','51222'),
('601590','51223'),
('601590','51224'),
('601590','51225'),
('601590','51226'),
('601590','51227'),
('601590','51228'),
('601590','51229'),
('601590','51230'),
('601590','51231'),
('601590','51232'),
('601590','51233'),
('601590','51234'),
('601590','51235'),
('601590','51236'),
('601590','51237'),
('601590','51238'),
('601590','51239'),
('601590','51240'),
('601590','51241'),
('601590','51242'),
('601590','51243'),
('601590','51244'),
('601590','51245'),
('601590','51246'),
('601590','51247'),
('601590','51248'),
('601590','51249'),
('601590','51250'),
('601590','51251'),
('601590','51252'),
('601590','51253'),
('601590','51254'),
('601590','51255'),
('601590','51256'),
('601590','51257'),
('601590','51258'),
('601590','51259'),
('601590','51260'),
('601590','51261'),
('601590','51262'),
('601590','51263'),
('601590','51264'),
('601590','51265'),
('601590','51266'),
('601590','51267'),
('601590','51268'),
('601590','51269'),
('601590','51270'),
('601590','51271'),
('601590','51272'),
('601590','51273'),
('601590','51274'),
('601590','51275'),
('601590','51276'),
('601590','51277'),
('601590','51278'),
('601590','51279'),
('601590','51280'),
('601590','51281'),
('601590','51282'),
('601590','51283'),
('601590','51284'),
('601590','51285'),
('601590','51286'),
('601590','51287'),
('601590','51288'),
('601590','51289'),
('601590','51290'),
('601590','51291'),
('601590','51292'),
('601590','51293'),
('601590','51294'),
('601590','51295'),
('601590','51296'),
('601590','51297'),
('601590','51298'),
('601590','51299'),
('601590','51300'),
('601590','51301'),
('601590','51302'),
('601590','51303'),
('601590','51304'),
('601590','51305'),
('601590','51306'),
('601590','51307'),
('601590','51308'),
('601590','51309'),
('601590','51310'),
('601590','51311'),
('601590','51312'),
('601590','51313'),
('601590','51314'),
('601591','5565'),
('601591','6265'),
('601591','16583'),
('601591','17020'),
('601591','17021'),
('601591','17026'),
('601591','17028'),
('601591','17029'),
('601591','17030'),
('601591','17031'),
('601591','17032'),
('601591','17033'),
('601591','17034'),
('601591','17035'),
('601591','17036'),
('601591','17037'),
('601591','17038'),
('601591','17056'),
('601591','17057'),
('601591','17058'),
('601591','21177'),
('601591','22147'),
('601591','22148'),
('601591','37201'),
('601591','44605'),
('601591','44614'),
('601591','44615'),
('601592','23094'),
('601592','23095'),
('601592','23096'),
('601592','23097'),
('601592','24027'),
('601592','24028'),
('601592','24029'),
('601592','24030'),
('601592','24031'),
('601592','24032'),
('601592','24036'),
('601592','27777'),
('601592','27812'),
('601592','28118'),
('601592','28360'),
('601592','28361'),
('601592','28362'),
('601592','28458'),
('601592','28459'),
('601592','28460'),
('601592','28461'),
('601592','28462'),
('601592','28595'),
('601592','30571'),
('601592','30598'),
('601592','32193'),
('601592','32194'),
('601592','32195'),
('601592','32196'),
('601592','32197'),
('601592','32198'),
('601592','32199'),
('601592','33131'),
('601592','33132'),
('601592','33133'),
('601592','33134'),
('601592','35487'),
('601592','35488'),
('601592','35489'),
('601592','36766'),
('601592','38545'),
('601592','38549'),
('601592','39900'),
('601592','39905'),
('601592','39906'),
('601592','39907'),
('601592','39908'),
('601592','39909'),
('601592','39910'),
('601592','39911'),
('601592','39996'),
('601592','39997'),
('601592','39998'),
('601592','39999'),
('601592','40000'),
('601592','40001'),
('601592','40002'),
('601592','40003'),
('601592','40111'),
('601592','40112'),
('601592','40113'),
('601592','40114'),
('601592','40115'),
('601592','40116'),
('601592','40117'),
('601592','40118'),
('601592','41432'),
('601592','41433'),
('601592','41434'),
('601592','41435'),
('601592','41436'),
('601592','41437'),
('601592','41438'),
('601592','41439'),
('601592','42142'),
('601592','42143'),
('601592','42144'),
('601592','42151'),
('601592','42152'),
('601592','42153'),
('601592','42154'),
('601592','45862'),
('601592','45879'),
('601592','45883'),
('601593','39728'),
('601593','39757'),
('601593','40191'),
('601593','40207'),
('601593','40267'),
('601593','40268'),
('601593','40321'),
('601593','40322'),
('601593','40337'),
('601593','40342'),
('601593','40705'),
('601593','40706'),
('601593','40707'),
('601593','40708'),
('601593','40709'),
('601593','40710'),
('601593','40711'),
('601593','40712'),
('601593','40713'),
('601593','40714'),
('601593','40715'),
('601593','45114'),
('601593','45144'),
('601593','45145'),
('601593','45169'),
('601593','45254'),
('601593','45255'),
('601593','45270'),
('601593','45436'),
('601593','45509'),
('601593','45510'),
('601593','46138'),
('601593','47661'),
('601593','47662'),
('601593','47664'),
('601593','47665'),
('601593','47666'),
('601593','47667'),
('601593','47668'),
('601593','47670'),
('601593','47671'),
('601593','47672'),
('601593','47673'),
('601593','50454'),
('601593','50455'),
('601593','50456'),
('601593','50457'),
('601593','50458'),
('601593','50459'),
('601593','50460'),
('601593','50461'),
('601593','50462'),
('601593','50463'),
('601593','50464'),
('601594','37192'),
('601594','37642'),
('601594','37694'),
('601594','37784'),
('601594','39141'),
('601594','39193'),
('601594','39231'),
('601594','39244'),
('601594','39250'),
('601594','39277'),
('601594','39389'),
('601594','39401'),
('601594','39407'),
('601594','40074'),
('601594','40075'),
('601594','40080'),
('601594','40107'),
('601594','40108'),
('601594','40370'),
('601594','40375'),
('601594','40399'),
('601594','40426'),
('601594','40433'),
('601594','40474'),
('601594','40585'),
('601594','40586'),
('601594','40717'),
('601594','40718'),
('601594','40719'),
('601594','40720'),
('601594','42642'),
('601594','42643'),
('601594','42644'),
('601594','43582'),
('601594','43993'),
('601594','44283'),
('601594','44308'),
('601594','44934'),
('601594','44935'),
('601594','45106'),
('601594','45112'),
('601594','45113'),
('601594','45157'),
('601594','45168'),
('601594','45235'),
('601594','45247'),
('601594','45250'),
('601594','45297'),
('601594','45303'),
('601594','45326'),
('601594','45418'),
('601594','45438'),
('601594','45451'),
('601594','45456'),
('601594','45469'),
('601594','45471'),
('601594','45495'),
('601594','45503'),
('601594','45515'),
('601594','45525'),
('601594','45530'),
('601594','45534'),
('601594','45540'),
('601594','45608'),
('601594','45614'),
('601594','45675'),
('601594','45688'),
('601594','45689'),
('601594','45690'),
('601594','45691'),
('601594','45702'),
('601594','45859'),
('601594','45871'),
('601594','45874'),
('601594','45946'),
('601594','46010'),
('601594','46046'),
('601594','46048'),
('601594','46096'),
('601594','46322'),
('601594','46323'),
('601594','46959'),
('601594','46966'),
('601594','47054'),
('601594','47070'),
('601594','47075'),
('601594','47149'),
('601594','47157'),
('601594','47200'),
('601594','47222'),
('601594','47223'),
('601594','47224'),
('601594','47237'),
('601594','47243'),
('601594','47252'),
('601594','47278'),
('601594','47282'),
('601594','47315'),
('601594','47327'),
('601594','47413'),
('601594','47439'),
('601594','47443'),
('601594','47476'),
('601594','47489'),
('601594','47512'),
('601594','47578'),
('601594','47618'),
('601594','47700'),
('601594','47703'),
('601594','47729'),
('601594','47730'),
('601594','47731'),
('601594','47732'),
('601594','47733'),
('601594','47854'),
('601594','47862'),
('601594','47868'),
('601594','47888'),
('601594','47920'),
('601594','47928'),
('601594','47934'),
('601594','47955'),
('601594','47993'),
('601594','48001'),
('601594','48007'),
('601594','48027'),
('601594','48954'),
('601594','48955'),
('601594','48956'),
('601594','48957'),
('601594','49121'),
('601594','49123'),
('601594','49124'),
('601594','49309'),
('601594','49313'),
('601594','49486'),
('601594','49489'),
('601594','49800'),
('601594','49803'),
('601594','49812'),
('601594','49949'),
('601594','49967'),
('601594','49977'),
('601594','49985'),
('601594','49990'),
('601594','49999'),
('601594','50008'),
('601594','50025'),
('601594','50170'),
('601594','50174'),
('601595','42954'),
('601595','42955'),
('601595','42956'),
('601595','42957'),
('601595','42958'),
('601595','42959'),
('601595','42960'),
('601595','42961'),
('601595','42962'),
('601595','42963'),
('601595','42964'),
('601595','42965'),
('601595','42966'),
('601595','42967'),
('601595','42968'),
('601595','42969'),
('601595','42970'),
('601595','42971'),
('601595','42972'),
('601595','42973'),
('601595','42974'),
('601595','43343'),
('601595','43376'),
('601595','43377'),
('601595','43378'),
('601595','43379'),
('601595','43380'),
('601595','45761'),
('601595','45762'),
('601595','45764'),
('601595','45766'),
('601595','45767'),
('601595','45768'),
('601595','45769'),
('601596','954'),
('601596','955'),
('601596','1180'),
('601596','1181'),
('601596','1477'),
('601596','1478'),
('601596','1711'),
('601596','1712'),
('601596','2289'),
('601596','2290'),
('601596','3012'),
('601596','3013'),
('601596','4419'),
('601596','4421'),
('601596','4422'),
('601596','4424'),
('601596','4425'),
('601596','4426'),
('601596','10305'),
('601596','10306'),
('601596','10307'),
('601596','10308'),
('601596','10309'),
('601596','10310'),
('601596','27498'),
('601596','27499'),
('601596','27500'),
('601596','27501'),
('601596','27502'),
('601596','27503'),
('601596','33457'),
('601596','33458'),
('601596','33459'),
('601596','33460'),
('601596','33461'),
('601596','33462'),
('601596','37091'),
('601596','37092'),
('601596','37093'),
('601596','37094'),
('601596','37097'),
('601596','37098'),
('601596','37118'),
('601596','43463'),
('601596','43464'),
('601596','43465'),
('601596','43466'),
('601596','43467'),
('601596','44314'),
('601596','44315'),
('601596','49632'),
('601597','41517'),
('601597','41518'),
('601597','41524'),
('601597','41526'),
('601597','41527'),
('601597','41529'),
('601597','41530'),
('601597','41531'),
('601597','41532'),
('601597','41533'),
('601597','41534'),
('601597','41535'),
('601597','41536'),
('601597','41537'),
('601597','41538'),
('601597','41539'),
('601597','41540'),
('601597','41541'),
('601597','41542'),
('601597','41547'),
('601597','41552'),
('601597','43344'),
('601597','43381'),
('601597','43385'),
('601597','43386'),
('601597','43388'),
('601597','43725'),
('601597','44923'),
('601597','45770'),
('601597','45771'),
('601597','45772'),
('601597','45775'),
('601597','45776'),
('601597','45777'),
('601597','45778'),
('601598','39233'),
('601598','39276'),
('601598','39716'),
('601598','40266'),
('601598','40400'),
('601598','40401'),
('601598','40475'),
('601598','40700'),
('601598','40701'),
('601598','42508'),
('601598','43085'),
('601598','44313'),
('601598','45450'),
('601598','45470'),
('601598','45587'),
('601598','45682'),
('601598','45707'),
('601598','45877'),
('601598','45887'),
('601598','46963'),
('601598','46964'),
('601598','47079'),
('601598','47085'),
('601598','47260'),
('601598','47287'),
('601598','47421'),
('601598','47448'),
('601598','47812'),
('601598','47835'),
('601598','47895'),
('601598','47910'),
('601598','47963'),
('601598','47978'),
('601598','48040'),
('601598','48055'),
('601598','49821'),
('601598','49835'),
('601598','49976'),
('601598','50065'),
('601598','50616'),
('601598','50729'),
('601598','50794'),
('601598','51791'),
('601598','51812'),
('601598','51909'),
('601599','38'),
('601599','45'),
('601599','49'),
('601599','53'),
('601599','127'),
('601599','148'),
('601599','154'),
('601599','859'),
('601599','20901'),
('601599','2105'),
('601599','2575'),
('601599','2576'),
('601599','2577'),
('601599','2579'),
('601599','2587'),
('601599','3342'),
('601599','3426'),
('601599','3427'),
('601599','3428'),
('601599','4330'),
('601599','4332'),
('601599','4333'),
('601599','4334'),
('601599','4335'),
('601599','4336'),
('601599','4344'),
('601599','5107'),
('601599','6096'),
('601599','6097'),
('601599','6117'),
('601599','6120'),
('601599','6125'),
('601599','6134'),
('601599','6136'),
('601599','6384'),
('601599','6385'),
('601599','6795'),
('601599','6796'),
('601599','6833'),
('601599','10034'),
('601599','10052'),
('601599','10054'),
('601599','10055'),
('601599','10056'),
('601599','11840'),
('601599','14617'),
('601599','16059'),
('601599','16060'),
('601599','17723'),
('601599','18231'),
('601599','20897'),
('601599','23345'),
('601599','23473'),
('601599','23476'),
('601599','24143'),
('601599','41248'),
('601599','41249'),
('601599','41250'),
('601599','41251'),
('601599','41252'),
('601599','41253'),
('601599','41254'),
('601599','41255'),
('601599','42360'),
('601599','42361'),
('601599','42363'),
('601599','42365'),
('601599','42368'),
('601599','42369'),
('601599','42370'),
('601599','42371'),
('601599','42372'),
('601599','42373'),
('601599','42374'),
('601599','42375'),
('601599','42376'),
('601599','42377'),
('601599','42378'),
('601599','44693'),
('601599','44694'),
('601599','45280'),
('601599','45664'),
('601599','45666'),
('601599','45667'),
('601599','45668'),
('601599','45669'),
('601599','45670'),
('601599','45671'),
('601599','45672'),
('601599','45673'),
('601599','45674'),
('601599','46104'),
('601599','49278'),
('601599','52019'),
('601600','37360'),
('601600','37883'),
('601600','39255'),
('601600','39256'),
('601600','39394'),
('601600','39422'),
('601600','40233'),
('601600','40280'),
('601600','40300'),
('601600','40348'),
('601600','40388'),
('601600','40455'),
('601600','40489'),
('601600','45128'),
('601600','45171'),
('601600','45212'),
('601600','45234'),
('601600','45256'),
('601600','45457'),
('601600','45479'),
('601600','45613'),
('601600','45695'),
('601600','45886'),
('601600','45934'),
('601600','46025'),
('601600','46033'),
('601600','46350'),
('601600','47114'),
('601600','47130'),
('601600','47302'),
('601600','47463'),
('601600','47524'),
('601600','47525'),
('601600','47743'),
('601600','47815'),
('601600','47892'),
('601600','47900'),
('601600','47960'),
('601600','47968'),
('601600','48036'),
('601600','48045'),
('601600','48705'),
('601600','48710'),
('601600','49790'),
('601600','49793'),
('601600','49801'),
('601600','49992'),
('601600','50040'),
('601600','50181'),
('601600','50273'),
('601600','50429'),
('601600','50648'),
('601600','50695'),
('601600','50725'),
('601600','50731'),
('601600','50805'),
('601600','50966'),
('601600','50998'),
('601600','51582'),
('601600','51797'),
('601600','51799'),
('601600','51828'),
('601600','51881'),
('601600','51887'),
('601600','51898'),
('601600','51943'),
('601600','51945'),
('601601','5976'),
('601601','11364'),
('601601','15196'),
('601601','15197'),
('601601','15198'),
('601601','15199'),
('601601','19031'),
('601601','19032'),
('601601','19160'),
('601601','19505'),
('601601','19506'),
('601601','20131'),
('601601','20132'),
('601601','22999'),
('601601','23192'),
('601601','23999'),
('601601','24004'),
('601601','24344'),
('601601','25549'),
('601601','28788'),
('601601','31279'),
('601601','31404'),
('601601','31405'),
('601601','31773'),
('601601','31774'),
('601601','31775'),
('601601','31776'),
('601601','31777'),
('601601','31778'),
('601601','31779'),
('601601','31780'),
('601601','31781'),
('601601','31804'),
('601601','32445'),
('601601','32828'),
('601601','35221'),
('601601','35279'),
('601601','35280'),
('601601','36941'),
('601601','40643'),
('601601','43154'),
('601601','43155'),
('601601','43156'),
('601601','43157'),
('601601','43300'),
('601601','43348'),
('601601','43349'),
('601601','45574'),
('601601','45577'),
('601601','45578'),
('601601','45579'),
('601601','45580'),
('601601','45581'),
('601601','45582'),
('601601','45583'),
('601601','45584'),
('601601','45585'),
('601601','45983'),
('601601','46817'),
('601601','46818'),
('601601','46874'),
('601601','49052'),
('601601','49054'),
('601601','49086'),
('601601','51534'),
('601601','52252'),
('601602','2598'),
('601602','2601'),
('601602','4292'),
('601602','4345'),
('601602','4346'),
('601602','4347'),
('601602','4348'),
('601602','4349'),
('601602','4350'),
('601602','4351'),
('601602','4352'),
('601602','4353'),
('601602','4354'),
('601602','4356'),
('601602','5773'),
('601602','5774'),
('601602','5775'),
('601602','6271'),
('601602','6390'),
('601602','6391'),
('601602','7084'),
('601602','7085'),
('601602','7086'),
('601602','7090'),
('601602','7091'),
('601602','7092'),
('601602','10300'),
('601602','10301'),
('601602','10302'),
('601602','10312'),
('601602','14486'),
('601602','14493'),
('601602','14497'),
('601602','14501'),
('601602','14507'),
('601602','14509'),
('601602','14510'),
('601602','14511'),
('601602','14512'),
('601602','14513'),
('601602','14514'),
('601602','18265'),
('601602','18414'),
('601602','18415'),
('601602','18416'),
('601602','18417'),
('601602','18418'),
('601602','20546'),
('601602','20547'),
('601602','20548'),
('601602','21371'),
('601602','21903'),
('601602','21904'),
('601602','21911'),
('601602','21915'),
('601602','21919'),
('601602','24296'),
('601602','24297'),
('601602','24298'),
('601602','24299'),
('601602','24300'),
('601602','24301'),
('601602','24302'),
('601602','24303'),
('601602','24304'),
('601602','24305'),
('601602','24306'),
('601602','24307'),
('601602','24308'),
('601602','24309'),
('601602','24310'),
('601602','24311'),
('601602','24312'),
('601602','24313'),
('601602','30280'),
('601602','30281'),
('601602','30282'),
('601602','30283'),
('601602','32752'),
('601602','32753'),
('601602','32754'),
('601602','32755'),
('601602','35204'),
('601602','35205'),
('601602','35206'),
('601602','35207'),
('601602','35308'),
('601602','35309'),
('601602','43876'),
('601602','45102'),
('601602','45103'),
('601602','45104'),
('601602','45105'),
('601602','47636'),
('601602','47637'),
('601602','47638'),
('601602','47639'),
('601602','47654'),
('601602','47655'),
('601602','47656'),
('601602','47657'),
('601602','49953'),
('601602','49954'),
('601602','49955'),
('601602','49956'),
('601603','13582'),
('601603','13583'),
('601603','13584'),
('601603','20371'),
('601603','22114'),
('601603','23705'),
('601603','23709'),
('601603','23713'),
('601603','23720'),
('601603','25535'),
('601603','30360'),
('601603','32498'),
('601603','32542'),
('601603','32566'),
('601603','32588'),
('601603','33079'),
('601603','33219'),
('601603','33223'),
('601603','34492'),
('601603','34493'),
('601603','34499'),
('601603','35223'),
('601603','35227'),
('601603','38050'),
('601603','38233'),
('601603','38301'),
('601603','38309'),
('601603','38310'),
('601603','38311'),
('601603','38312'),
('601603','38313'),
('601603','38314'),
('601603','38577'),
('601603','38578'),
('601603','39286'),
('601603','39656'),
('601603','43599'),
('601603','45037'),
('601603','45047'),
('601603','45063'),
('601603','46779'),
('601603','46780'),
('601603','46802'),
('601603','49282'),
('601603','49283'),
('601603','49284'),
('601603','49285'),
('601603','49286'),
('601603','49287'),
('601603','49288'),
('601603','49289'),
('601603','49290'),
('601603','49343'),
('601603','49665'),
('601603','49693'),
('601603','49703'),
('601603','49704'),
('601603','52201'),
('601603','52251'),
('601603','52253'),
('601603','54452'),
('601603','54455'),
('601603','54811'),
('601603','54847'),
('601603','56806'),
('601604','40190'),
('601604','40716'),
('601604','43612'),
('601604','45086'),
('601604','45296'),
('601604','47659'),
('601604','47660'),
('601604','50169'),
('601604','50474'),
('601604','50999'),
('601604','51880'),
('601605','37254'),
('601605','37835'),
('601605','39229'),
('601605','39257'),
('601605','39292'),
('601605','39388'),
('601605','40255'),
('601605','40256'),
('601605','40257'),
('601605','40258'),
('601605','40371'),
('601605','40372'),
('601605','40373'),
('601605','40382'),
('601605','40430'),
('601605','40431'),
('601605','40432'),
('601605','40531'),
('601605','40532'),
('601605','40682'),
('601605','40683'),
('601605','40684'),
('601605','40685'),
('601605','42987'),
('601605','42988'),
('601605','42990'),
('601605','43555'),
('601605','43573'),
('601605','44073'),
('601605','44074'),
('601605','44253'),
('601605','44254'),
('601605','44255'),
('601605','44870'),
('601605','45148'),
('601605','45158'),
('601605','45263'),
('601605','45286'),
('601605','45292'),
('601605','45308'),
('601605','45313'),
('601605','45466'),
('601605','45490'),
('601605','45507'),
('601605','45518'),
('601605','45522'),
('601605','45535'),
('601605','45609'),
('601605','45703'),
('601605','45866'),
('601605','45929'),
('601605','45931'),
('601605','46021'),
('601605','46038'),
('601605','46051'),
('601605','46312'),
('601605','47041'),
('601605','47059'),
('601605','47080'),
('601605','47088'),
('601605','47115'),
('601605','47131'),
('601605','47182'),
('601605','47188'),
('601605','47213'),
('601605','47214'),
('601605','47215'),
('601605','47216'),
('601605','47271'),
('601605','47290'),
('601605','47303'),
('601605','47316'),
('601605','47432'),
('601605','47451'),
('601605','47464'),
('601605','47477'),
('601605','47725'),
('601605','47726'),
('601605','47727'),
('601605','47728'),
('601605','47734'),
('601605','47735'),
('601605','47879'),
('601605','47880'),
('601605','47881'),
('601605','47882'),
('601605','47946'),
('601605','47947'),
('601605','47948'),
('601605','47949'),
('601605','48018'),
('601605','48019'),
('601605','48020'),
('601605','48021'),
('601605','48722'),
('601605','48724'),
('601605','49074'),
('601605','49076'),
('601605','49078'),
('601605','49080'),
('601605','49116'),
('601605','49118'),
('601605','49310'),
('601605','49463'),
('601605','49464'),
('601605','49487'),
('601605','49488'),
('601605','50198'),
('601605','50235'),
('601605','50259'),
('601605','50260'),
('601605','50339'),
('601605','50340'),
('601605','50341'),
('601605','50342'),
('601605','50343'),
('601605','50344'),
('601605','50345'),
('601605','50346'),
('601605','50348'),
('601605','50349'),
('601605','50351'),
('601605','50352'),
('601605','50353'),
('601605','50354'),
('601605','50355'),
('601605','50356'),
('601605','50357'),
('601605','50358'),
('601605','50359'),
('601605','50360'),
('601605','50361'),
('601605','50362'),
('601605','50363'),
('601605','50364'),
('601605','50365'),
('601605','50366'),
('601605','50706'),
('601605','50726'),
('601605','54569'),
('601605','54571'),
('601605','54572'),
('601605','54573'),
('601605','54588'),
('601605','54589'),
('601605','54590'),
('601605','54591'),
('601606','37852'),
('601606','39417'),
('601606','40384'),
('601606','45165'),
('601606','45458'),
('601606','47069'),
('601606','47078'),
('601606','47285'),
('601606','47446'),
('601606','47493'),
('601606','48695'),
('601606','48713'),
('601606','49888'),
('601606','50267'),
('601606','50415'),
('601606','50709'),
('601606','50798'),
('601606','51905'),
('601607','39245'),
('601607','39758'),
('601607','40406'),
('601607','41257'),
('601607','45282'),
('601607','45521'),
('601607','46067'),
('601607','47519'),
('601607','47520'),
('601607','49802'),
('601607','49919'),
('601607','50052'),
('601607','50603'),
('601607','51562'),
('601607','51796'),
('601607','51833'),
('601607','51946'),
('601608','39393'),
('601608','40343'),
('601608','45074'),
('601608','45205'),
('601608','45233'),
('601608','45516'),
('601608','45868'),
('601608','46016'),
('601608','47515'),
('601608','47516'),
('601608','47737'),
('601608','47884'),
('601608','47951'),
('601608','48023'),
('601608','49299'),
('601608','49498'),
('601608','49839'),
('601608','50048'),
('601608','50049'),
('601608','50070'),
('601608','50730'),
('601608','50761'),
('601608','51936'),
('601609','37238'),
('601609','37619'),
('601609','39426'),
('601609','39473'),
('601609','39712'),
('601609','40245'),
('601609','40284'),
('601609','40335'),
('601609','45170'),
('601609','45257'),
('601609','45294'),
('601609','45511'),
('601609','45713'),
('601609','47612'),
('601609','47658'),
('601609','47856'),
('601609','47922'),
('601609','47995'),
('601609','49852'),
('601609','50033'),
-- ('601609','50204'),
('601609','50291'),
('601609','50472'),
('601609','50631'),
('601609','50684'),
('601609','51326'),
('601609','51553'),
('601609','51838'),
('601609','51852'),
('601610','42453'),
('601610','42454'),
('601610','42455'),
('601610','42456'),
('601610','42457'),
('601610','42458'),
('601610','42459'),
('601610','42460'),
('601610','42461'),
('601610','42462'),
('601610','42463'),
('601610','42464'),
('601610','42465'),
('601610','42466'),
('601610','42467'),
('601610','42468'),
('601610','42469'),
('601610','42470'),
('601610','42471'),
('601610','42472'),
('601610','42473'),
('601610','43389'),
('601610','43390'),
('601610','43391'),
('601610','43392'),
('601610','43393'),
('601610','43394'),
('601610','45779'),
('601610','45780'),
('601610','45781'),
('601610','45782'),
('601610','45783'),
('601610','45785'),
('601610','45789'),
('601610','50077'),
('601611','43395'),
('601611','43396'),
('601611','43397'),
('601611','43398'),
('601611','43399'),
('601611','43400'),
('601611','43412'),
('601611','43413'),
('601611','43414'),
('601611','43415'),
('601611','43416'),
('601611','43417'),
('601611','43418'),
('601611','43419'),
('601611','43420'),
('601611','43421'),
('601611','43422'),
('601611','43423'),
('601611','43424'),
('601611','43425'),
('601611','43426'),
('601611','43427'),
('601611','43428'),
('601611','43429'),
('601611','43430'),
('601611','43431'),
('601611','43432'),
('601611','45790'),
('601611','45792'),
('601611','45793'),
('601611','45794'),
('601611','45795'),
('601611','45797'),
('601611','49084'),
('601612','23113'),
('601612','23114'),
('601612','23115'),
('601612','23116'),
('601612','24047'),
('601612','24048'),
('601612','24050'),
('601612','24051'),
('601612','24052'),
('601612','24053'),
('601612','27679'),
('601612','28119'),
('601612','28120'),
('601612','28290'),
('601612','28466'),
('601612','28467'),
('601612','28468'),
('601612','28469'),
('601612','28470'),
('601612','31860'),
('601612','31861'),
('601612','32204'),
('601612','32205'),
('601612','32206'),
('601612','32207'),
('601612','32208'),
('601612','32209'),
('601612','32210'),
('601612','33138'),
('601612','33139'),
('601612','33140'),
('601612','33141'),
('601612','33142'),
('601612','33143'),
('601612','33144'),
('601612','34627'),
('601612','35315'),
('601612','35761'),
('601612','38546'),
('601612','38550'),
('601612','39912'),
('601612','39914'),
('601612','39915'),
('601612','39916'),
('601612','39917'),
('601612','39918'),
('601612','40012'),
('601612','40013'),
('601612','40014'),
('601612','40015'),
('601612','40016'),
('601612','40017'),
('601612','40123'),
('601612','40124'),
('601612','40125'),
('601612','40126'),
('601612','40127'),
('601612','40128'),
('601612','41444'),
('601612','41445'),
('601612','41446'),
('601612','41447'),
('601612','41448'),
('601612','41449'),
('601612','42148'),
('601612','42149'),
('601612','42150'),
('601612','42156'),
('601612','42157'),
('601612','42158'),
('601612','44066'),
('601612','45882'),
('601612','45987'),
('601613','42396'),
('601613','42397'),
('601613','42398'),
('601613','42399'),
('601613','42400'),
('601613','42401'),
('601613','42402'),
('601613','42403'),
('601613','42404'),
('601613','42405'),
('601613','42406'),
('601613','42407'),
('601613','42408'),
('601613','42409'),
('601613','42410'),
('601613','42411'),
('601613','42412'),
('601613','42414'),
('601613','42415'),
('601613','42416'),
('601613','42417'),
('601613','43342'),
('601613','43370'),
('601613','43371'),
('601613','43372'),
('601613','43373'),
('601613','43374'),
('601613','45753'),
('601613','45755'),
('601613','45756'),
('601613','45757'),
('601613','45758'),
('601613','45760'),
('601614','51413'),
('601614','51414'),
('601614','51415'),
('601614','51416'),
('601614','51418'),
('601614','51419'),
('601614','51420'),
('601614','51421'),
('601614','51422'),
('601614','51424'),
('601614','51425'),
('601614','51426'),
('601614','51427'),
('601614','51428'),
('601614','51430'),
('601614','51433'),
('601614','51434'),
('601614','51435'),
('601614','51436'),
('601614','51438'),
('601614','51458'),
('601614','51459'),
('601614','51460'),
('601614','51461'),
('601614','51462'),
('601614','51463'),
('601614','51464'),
('601614','51465'),
('601614','51466'),
('601614','51467'),
('601614','51468'),
('601614','51469'),
('601614','51470'),
('601614','51471'),
('601614','51473'),
('601614','51474'),
('601614','51475'),
('601614','51476'),
('601614','51477'),
('601614','51479'),
('601614','51482'),
('601614','51483'),
('601614','51484'),
('601614','51485'),
('601614','51486'),
('601614','51487'),
('601614','51488'),
('601614','51489'),
('601614','51490'),
('601614','51491'),
('601614','51492'),
('601614','51493'),
('601614','51494'),
('601614','51495'),
('601614','51496'),
('601614','51497'),
('601614','51498'),
('601614','51499'),
('601614','51500'),
('601614','51502'),
('601614','51503'),
('601614','51504'),
('601614','51505'),
('601614','51506'),
('601614','51508'),
('601614','51509'),
('601614','51510'),
('601614','51511'),
('601614','51512'),
('601614','51514'),
('601614','51536'),
('601614','51537'),
('601614','51538'),
('601614','51539'),
('601614','51540'),
('601614','51541'),
('601614','51542'),
('601614','51543'),
('601614','51544'),
('601614','51545'),
('601615','42041'),
('601615','42042'),
('601615','42043'),
('601615','42044'),
('601615','42045'),
('601615','42046'),
('601615','42047'),
('601615','42076'),
('601615','42077'),
('601615','42078'),
('601615','42079'),
('601615','42080'),
('601615','42081'),
('601615','42082'),
('601615','42118'),
('601615','42119'),
('601615','42133'),
('601615','42134'),
('601615','42135'),
('601615','42136'),
('601615','42137'),
('601615','42579'),
('601615','42580'),
('601615','42584'),
('601615','42585'),
('601615','42589'),
('601615','42591'),
('601615','42598'),
('601615','42599'),
('601615','42603'),
('601615','42604'),
('601615','42608'),
('601615','42609'),
('601615','42615'),
('601615','42616'),
('601615','42621'),
('601615','42622'),
('601615','42853'),
('601615','42854'),
('601615','46374'),
('601615','51327'),
('601615','51328'),
('601615','51329'),
('601615','51330'),
('601615','51331'),
('601615','51332'),
('601615','51333'),
('601615','51334'),
('601615','51335'),
('601615','51336'),
('601615','51337'),
('601615','51338'),
('601615','51339'),
('601615','51340'),
('601615','51341'),
('601615','51342'),
('601615','51343'),
('601615','51344'),
('601615','51345'),
('601615','51346'),
('601615','51347'),
('601615','51348'),
('601615','51349'),
('601615','51350'),
('601615','51351'),
('601615','51352'),
('601615','51353'),
('601615','51354'),
('601615','51355'),
('601615','51356'),
('601615','51357'),
('601615','51358'),
('601615','51359'),
('601615','51360'),
('601615','51361'),
('601615','51362'),
('601615','51363'),
('601615','51364'),
('601615','51365'),
('601615','51366'),
('601615','51367'),
('601615','51368'),
('601615','51369'),
('601615','51370'),
('601615','51371'),
('601615','51372'),
('601615','51373'),
('601615','51374'),
('601615','51375'),
('601615','51376'),
('601615','51377'),
('601615','51378'),
('601615','51417'),
('601615','51423'),
('601615','51429'),
('601615','51437'),
('601615','51472'),
('601615','51478'),
('601615','51501'),
('601615','51507'),
('601615','51513'),
('601616','24550'),
('601616','24557'),
('601616','28294'),
('601616','28295'),
('601616','28297'),
('601616','28298'),
('601616','28299'),
('601616','28300'),
('601616','28302'),
('601616','28305'),
('601616','28307'),
('601616','28308'),
('601616','28309'),
('601616','28310'),
('601616','28312'),
('601616','28313'),
('601616','28314'),
('601616','28319'),
('601616','28320'),
('601616','28476'),
('601616','32450'),
('601616','32451'),
('601617','31958'),
('601617','31959'),
('601617','31965'),
('601617','31966'),
('601617','31984'),
('601617','31985'),
('601617','31986'),
('601617','32003'),
('601617','32014'),
('601617','32025'),
('601617','32026'),
('601617','32027'),
('601617','32028'),
('601617','32044'),
('601617','32046'),
('601617','32052'),
('601617','32053'),
('601617','32054'),
('601617','32055'),
('601617','32962'),
('601617','32963'),
('601617','32964'),
('601618','33006'),
('601618','33662'),
('601618','33663'),
('601618','33669'),
('601618','33670'),
('601618','33687'),
('601618','33688'),
('601618','33689'),
('601618','33705'),
('601618','33716'),
('601618','33727'),
('601618','33733'),
('601618','33734'),
('601618','33737'),
('601618','33743'),
('601618','33754'),
('601618','33756'),
('601618','33762'),
('601618','33763'),
('601618','33764'),
('601618','33765'),
('601618','33766'),
('601618','33801'),
('601618','34014'),
('601618','34015'),
('601618','34016'),
('601618','34059'),
('601618','34066'),
('601618','34529'),
('601618','34530'),
('601618','34540'),
('601619','34985'),
('601619','34987'),
('601619','34988'),
('601619','34989'),
('601619','34995'),
('601619','34996'),
('601619','34997'),
('601619','35014'),
('601619','35015'),
('601619','35017'),
('601619','35018'),
('601619','35037'),
('601619','35038'),
('601619','35047'),
('601619','35058'),
('601619','35064'),
('601619','35065'),
('601619','35071'),
('601619','35072'),
('601619','35075'),
('601619','35076'),
('601619','35082'),
('601619','35093'),
('601619','35095'),
('601619','35101'),
('601619','35102'),
('601619','35103'),
('601619','35107'),
('601619','35108'),
('601619','35109'),
('601619','35110'),
('601619','36737'),
('601619','37739'),
('601619','37740'),
('601620','42206'),
('601620','42207'),
('601620','42208'),
('601620','42212'),
('601620','42213'),
('601620','42214'),
('601620','42215'),
('601620','42216'),
('601620','42217'),
('601620','42218'),
('601620','42219'),
('601620','42220'),
('601620','42221'),
('601620','42222'),
('601620','42223'),
('601620','42224'),
('601620','42226'),
('601620','42227'),
('601620','42231'),
('601620','42232'),
('601620','42236'),
('601620','42237'),
('601620','42241'),
('601620','42242'),
('601620','42247'),
('601620','42248'),
('601620','42254'),
('601620','42255'),
('601620','42259'),
('601620','42260'),
('601620','42264'),
('601620','42265'),
('601620','42269'),
('601620','42270'),
('601620','42274'),
('601620','42275'),
('601620','42279'),
('601620','42280'),
('601620','42284'),
('601620','42285'),
('601620','42289'),
('601620','42290'),
('601620','42294'),
('601620','42295'),
('601620','42296'),
('601620','42297'),
('601620','42316'),
('601620','42317'),
('601620','42321'),
('601620','42322'),
('601620','42326'),
('601620','42327'),
('601620','42331'),
('601620','42332'),
('601620','42343'),
('601620','42344'),
('601620','42345'),
('601620','42346'),
('601620','42351'),
('601620','42352'),
('601620','42356'),
('601620','42359'),
('601620','42362'),
('601620','42382'),
('601620','42383'),
('601620','42384'),
('601620','42388'),
('601620','42389'),
('601620','42390'),
('601620','42444'),
('601620','42445'),
('601620','42446'),
('601620','42447'),
('601620','42448'),
('601620','42449'),
('601620','42450'),
('601620','42484'),
('601620','42485'),
('601620','42489'),
('601620','42490'),
('601620','42494'),
('601620','42495'),
('601620','42501'),
('601620','42502'),
('601620','42511'),
('601620','42512'),
('601620','42513'),
('601620','42517'),
('601620','42518'),
('601620','42519'),
('601620','44415'),
('601620','44416'),
('601620','44417'),
('601620','44418'),
('601620','44419'),
('601620','44420'),
('601621','42209'),
('601621','42228'),
('601621','42233'),
('601621','42243'),
('601621','42249'),
('601621','42256'),
('601621','42261'),
('601621','42266'),
('601621','42271'),
('601621','42276'),
('601621','42281'),
('601621','42286'),
('601621','42291'),
('601621','42318'),
('601621','42323'),
('601621','42328'),
('601621','42333'),
('601621','42347'),
('601621','42353'),
('601621','42364'),
('601621','42385'),
('601621','42391'),
('601621','42451'),
('601621','42486'),
('601621','42491'),
('601621','42496'),
('601621','42503'),
('601621','42514'),
('601621','42520'),
('601621','44421'),
('601621','44422'),
('601621','45937'),
('601621','45938'),
('601621','45939'),
('601621','45948'),
('601621','45949'),
('601621','45950'),
('601621','45951'),
('601621','45952'),
('601621','45953'),
('601621','45954'),
('601621','45955'),
('601621','45956'),
('601621','45957'),
('601621','45958'),
('601621','45959'),
('601621','45960'),
('601621','45961'),
('601621','45962'),
('601621','45963'),
('601621','45964'),
('601621','45965'),
('601621','45966'),
('601621','45967'),
('601621','45968'),
('601621','45969'),
('601621','45970'),
('601621','45971'),
('601622','42210'),
('601622','42229'),
('601622','42234'),
('601622','42244'),
('601622','42250'),
('601622','42257'),
('601622','42262'),
('601622','42267'),
('601622','42272'),
('601622','42277'),
('601622','42282'),
('601622','42287'),
('601622','42292'),
('601622','42319'),
('601622','42324'),
('601622','42329'),
('601622','42334'),
('601622','42348'),
('601622','42354'),
('601622','42366'),
('601622','42386'),
('601622','42392'),
('601622','42483'),
('601622','42487'),
('601622','42492'),
('601622','42498'),
('601622','42504'),
('601622','42515'),
('601622','42521'),
('601622','44423'),
('601622','44424'),
('601622','48402'),
('601622','48404'),
('601622','48406'),
('601622','48408'),
('601622','48410'),
('601622','48412'),
('601622','48414'),
('601622','48420'),
('601622','48422'),
('601622','48424'),
('601622','48426'),
('601622','48428'),
('601622','48432'),
('601622','48435'),
('601622','48438'),
('601622','48440'),
('601622','48442'),
('601622','48444'),
('601622','48507'),
('601622','48509'),
('601622','48511'),
('601622','48513'),
('601622','48515'),
('601622','48517'),
('601622','48519'),
('601622','48521'),
('601622','48523'),
('601622','49185'),
('601622','49189'),
('601622','49191'),
('601623','51388'),
('601623','51389'),
('601623','51390'),
('601623','51391'),
('601623','51392'),
('601623','51393'),
('601623','51394'),
('601623','51395'),
('601623','51397'),
('601623','51398'),
('601623','51399'),
('601623','51400'),
('601623','51401'),
('601623','51402'),
('601623','51403'),
('601623','51404'),
('601623','51405'),
('601623','51406'),
('601623','51410'),
('601623','51411'),
('601623','51412'),
('601623','51431'),
('601623','51432'),
('601623','51439'),
('601623','51440'),
('601623','51441'),
('601623','51442'),
('601623','51443'),
('601623','51444'),
('601623','51445'),
('601623','51446'),
('601623','51447'),
('601623','51448'),
('601623','51449'),
('601623','51450'),
('601623','51451'),
('601623','51453'),
('601623','51454'),
('601623','51456'),
('601623','51457'),
('601623','51480'),
('601623','51481'),
('601623','51515'),
('601623','51516'),
('601623','51517'),
('601623','51518'),
('601623','51519'),
('601623','51520'),
('601623','51521'),
('601623','51522'),
('601623','51523'),
('601623','51524'),
('601623','51525'),
('601623','51526'),
('601623','51527'),
('601623','51528'),
('601623','51529'),
('601623','51530'),
('601623','51531'),
('601623','51532'),
('601623','51535'),
('601624','50185'),
('601624','50186'),
('601624','50271'),
('601624','50306'),
('601624','50313'),
('601624','50375'),
('601624','50376'),
('601624','50377'),
('601624','50378'),
('601624','50384'),
('601624','50386'),
('601624','50387'),
('601624','50388'),
('601624','50397'),
('601624','50398'),
('601624','50399'),
('601624','50400'),
('601624','50401'),
('601624','50402'),
('601624','50403'),
('601624','50404'),
('601624','50414'),
('601624','50424'),
('601624','50447'),
('601624','50453'),
('601624','50604'),
('601624','50610'),
('601624','50614'),
('601624','50618'),
('601624','50622'),
('601624','50636'),
('601624','50642'),
('601624','50644'),
('601624','50657'),
('601624','50664'),
('601624','50678'),
('601624','50693'),
('601624','50714'),
('601624','50720'),
('601624','50790'),
('601624','50803'),
('601624','50986'),
('601624','51001'),
('601624','51024'),
('601624','51381'),
('601624','51387'),
('601624','51557'),
('601624','51558'),
('601624','51559'),
('601624','51560'),
('601624','51843'),
('601624','51849'),
('601624','51855'),
('601624','51878'),
('601624','51884'),
('601624','51900'),
('601624','51913'),
('601624','52569'),
('601624','52570'),
('601624','52571'),
('601624','52572'),
('601624','53110'),
('601624','53116'),
('601624','53133'),
('601624','53490'),
('601624','54563'),
('601624','54567'),
('601624','54576'),
('601624','54585'),
('601625','2881'),
('601625','2882'),
('601625','2883'),
('601625','3608'),
('601625','3609'),
('601625','3610'),
('601625','3611'),
('601625','3612'),
('601625','3866'),
('601625','3867'),
('601625','3868'),
('601625','3869'),
('601625','3870'),
('601625','3872'),
('601625','3873'),
('601625','3874'),
('601625','5543'),
('601625','5578'),
('601625','6044'),
('601625','6045'),
('601625','6046'),
('601625','6047'),
('601625','6735'),
('601625','7975'),
('601625','7978'),
('601625','7979'),
('601625','7980'),
('601625','7981'),
('601625','7982'),
('601625','7983'),
('601625','7984'),
('601625','7985'),
('601625','7989'),
('601625','7990'),
('601625','7992'),
('601625','7993'),
('601625','7995'),
('601625','8029'),
('601625','8030'),
('601625','9367'),
('601625','10424'),
('601625','10713'),
('601625','10858'),
('601625','11614'),
('601625','11615'),
('601625','12162'),
('601625','12163'),
('601625','12164'),
('601625','12261'),
('601625','12682'),
('601625','12683'),
('601625','12684'),
('601625','12685'),
('601625','12687'),
('601625','12688'),
('601625','12689'),
('601625','12690'),
('601625','12691'),
('601625','12692'),
('601625','12693'),
('601625','12694'),
('601625','12695'),
('601625','12697'),
('601625','12700'),
('601625','12701'),
('601625','12702'),
('601625','12704'),
('601625','12705'),
('601625','12706'),
('601625','12707'),
('601625','12713'),
('601625','12714'),
('601625','12715'),
('601625','12718'),
('601625','12719'),
('601625','12819'),
('601625','12823'),
('601625','12824'),
('601625','12825'),
('601625','12827'),
('601625','12828'),
('601625','12830'),
('601625','17706'),
('601625','19202'),
('601625','19203'),
('601625','19204'),
('601625','19205'),
('601625','19206'),
('601625','19207'),
('601625','19208'),
('601625','19209'),
('601625','19210'),
('601625','19211'),
('601625','19212'),
('601625','19776'),
('601625','19777'),
('601625','19778'),
('601625','19779'),
('601625','19780'),
('601625','19781'),
('601625','20040'),
('601625','22209'),
('601625','22214'),
('601625','22219'),
('601625','22221'),
('601625','22766'),
('601625','22767'),
('601625','22768'),
('601625','23590'),
('601625','23591'),
('601625','23592'),
('601625','23593'),
('601625','23594'),
('601625','23595'),
('601625','23596'),
('601625','23597'),
('601625','23598'),
('601625','23599'),
('601625','23600'),
('601625','23601'),
('601625','23602'),
('601625','23603'),
('601625','23604'),
('601625','23617'),
('601625','23618'),
('601625','23619'),
('601625','23638'),
('601625','23639'),
('601625','24002'),
('601625','25526'),
('601625','25846'),
('601625','25847'),
('601625','28632'),
('601625','32441'),
('601625','32442'),
('601625','32443'),
('601625','32444'),
('601625','33174'),
('601625','33186'),
('601625','33792'),
('601625','35296'),
('601625','41120'),
('601625','41122'),
('601625','41123'),
('601625','41124'),
('601625','44937'),
('601625','44938'),
('601626','6349'),
('601626','16217'),
('601626','16221'),
('601626','16224'),
('601626','16243'),
('601626','19444'),
('601626','19445'),
('601626','19446'),
('601626','19447'),
('601626','19448'),
('601626','19449'),
('601626','20732'),
('601626','20733'),
('601626','20752'),
('601626','20753'),
('601626','20754'),
('601626','20755'),
('601626','20756'),
('601626','20757'),
('601626','20758'),
('601626','22392'),
('601626','22531'),
('601626','22532'),
('601626','22533'),
('601626','22534'),
('601626','22535'),
('601626','22536'),
('601626','22537'),
('601626','22538'),
('601626','22539'),
('601626','22540'),
('601626','22541'),
('601626','22542'),
('601626','22543'),
('601626','22544'),
('601626','22545'),
('601626','22547'),
('601626','22548'),
('601626','22551'),
('601626','22552'),
('601626','22553'),
('601626','22554'),
('601626','22555'),
('601626','22556'),
('601626','22557'),
('601626','22558'),
('601626','22562'),
('601626','22563'),
('601626','22565'),
('601626','24000'),
('601626','24003'),
('601626','25848'),
('601626','25849'),
('601626','28270'),
('601626','28271'),
('601626','28272'),
('601626','28273'),
('601626','28274'),
('601626','28281'),
('601626','28282'),
('601626','33165'),
('601626','34872'),
('601626','35298'),
('601626','35500'),
('601626','37330'),
('601626','37331'),
('601626','37332'),
('601626','37333'),
('601626','37334'),
-- ('601626','37335'),
-- ('601626','37337'),
-- ('601626','37338'),
('601626','37340'),
('601626','37347'),
-- ('601626','37348'),
('601626','37349'),
('601626','44471'),
('601626','44472'),
('601626','44484'),
('601626','44485'),
('601626','44488'),
('601626','44489'),
('601626','44490'),
('601626','44491'),
('601626','44498'),
('601626','45050'),
('601626','50406'),
('601627','4355'),
('601627','5771'),
('601627','5772'),
('601627','6270'),
('601627','6272'),
('601627','6274'),
('601627','6275'),
('601627','6401'),
('601627','7087'),
('601627','7088'),
('601627','7089'),
('601627','7114'),
('601627','10311'),
('601627','10314'),
('601627','10315'),
('601627','10316'),
('601627','10317'),
('601627','10318'),
('601627','10320'),
('601627','10321'),
('601627','10323'),
('601627','10325'),
('601627','10326'),
('601627','10463'),
('601627','10728'),
('601627','14466'),
('601627','14467'),
('601627','14468'),
('601627','14469'),
('601627','14470'),
('601627','14471'),
('601627','14472'),
('601627','14473'),
('601627','14474'),
('601627','14476'),
('601627','14477'),
('601627','14478'),
('601627','14479'),
('601627','14480'),
('601627','14481'),
('601627','14482'),
('601627','14483'),
('601627','14484'),
('601627','14485'),
('601627','14488'),
('601627','14489'),
('601627','14490'),
('601627','14491'),
('601627','14492'),
('601627','14494'),
('601627','14495'),
('601627','14496'),
('601627','14498'),
('601627','14499'),
('601627','14500'),
('601627','14504'),
('601627','14505'),
('601627','14506'),
('601627','14508'),
('601627','14526'),
('601627','14627'),
('601627','14630'),
('601627','17017'),
('601627','17018'),
('601627','17724'),
('601627','18487'),
('601627','19215'),
('601627','19216'),
('601627','19217'),
('601627','19218'),
('601627','19219'),
('601627','19220'),
('601627','19764'),
('601627','19765'),
('601627','19766'),
('601627','21358'),
('601627','21722'),
('601627','21723'),
('601627','21892'),
('601627','21893'),
('601627','21894'),
('601627','21895'),
('601627','21896'),
('601627','21897'),
('601627','21898'),
('601627','21899'),
('601627','21900'),
('601627','21901'),
('601627','21902'),
('601627','21905'),
('601627','21906'),
('601627','21907'),
('601627','21908'),
('601627','21909'),
('601627','21910'),
('601627','21912'),
('601627','21913'),
('601627','21914'),
('601627','21916'),
('601627','21917'),
('601627','21918'),
('601627','22307'),
('601627','22308'),
('601627','22309'),
('601627','22310'),
('601627','22312'),
('601627','22683'),
('601627','22772'),
('601627','22773'),
('601627','22774'),
('601627','24292'),
('601627','24293'),
('601627','24294'),
('601627','24295'),
('601627','24314'),
('601627','24316'),
('601627','30483'),
('601627','30833'),
('601627','30842'),
('601627','30843'),
('601627','30844'),
('601627','32437'),
('601627','32438'),
('601627','32439'),
('601627','32440'),
('601627','32447'),
('601627','34261'),
('601627','34319'),
('601627','37915'),
('601627','38229'),
('601627','38327'),
('601627','38328'),
('601627','42172'),
('601627','42173'),
('601627','42175'),
('601627','42176'),
('601627','42177'),
('601627','42178'),
('601627','42183'),
('601627','42184'),
('601627','42185'),
('601627','42187'),
('601627','42188'),
('601627','44916'),
('601627','44917'),
('601627','45774'),
('601628','5786'),
('601628','5787'),
('601628','5973'),
('601628','6474'),
('601628','6475'),
('601628','7289'),
('601628','7290'),
('601628','7362'),
('601628','7613'),
('601628','8385'),
('601628','14635'),
('601628','15724'),
('601628','15725'),
('601628','15726'),
('601628','15728'),
('601628','15729'),
('601628','15731'),
('601628','15732'),
('601628','15734'),
('601628','15735'),
('601628','15737'),
('601628','15738'),
('601628','15739'),
('601628','15740'),
('601628','15741'),
('601628','15742'),
('601628','15743'),
('601628','15744'),
('601628','15745'),
('601628','15746'),
('601628','15747'),
('601628','15748'),
('601628','15749'),
('601628','15751'),
('601628','15754'),
('601628','15755'),
('601628','15756'),
('601628','15757'),
('601628','15758'),
('601628','15759'),
('601628','15761'),
('601628','15762'),
('601628','15765'),
('601628','15768'),
('601628','15773'),
('601628','15774'),
('601628','15775'),
('601628','15776'),
('601628','15777'),
('601628','15779'),
('601628','17022'),
('601628','17023'),
('601628','17025'),
('601628','17722'),
('601628','18239'),
('601628','18731'),
('601628','18949'),
('601628','19326'),
('601628','19327'),
('601628','19328'),
('601628','19329'),
('601628','19330'),
('601628','19331'),
('601628','19332'),
('601628','19333'),
('601628','19769'),
('601628','19770'),
('601628','19771'),
('601628','19772'),
('601628','19773'),
('601628','20253'),
('601628','20254'),
('601628','20382'),
('601628','20506'),
('601628','20507'),
('601628','20508'),
('601628','20509'),
('601628','20510'),
('601628','20511'),
('601628','20576'),
('601628','22769'),
('601628','22770'),
('601628','22771'),
('601628','25720'),
('601628','25721'),
('601628','25722'),
('601628','25725'),
('601628','25726'),
('601628','29664'),
('601628','29669'),
('601628','29672'),
('601628','29673'),
('601628','29674'),
('601628','29675'),
('601628','29677'),
('601628','29682'),
('601628','29684'),
('601628','29689'),
('601628','29691'),
('601628','29693'),
('601628','29698'),
('601628','29700'),
('601628','29701'),
('601628','29702'),
('601628','29703'),
('601628','29704'),
('601628','29713'),
('601628','29714'),
('601628','29717'),
('601628','29718'),
('601628','29719'),
('601628','29720'),
('601628','29721'),
('601628','29722'),
('601628','30444'),
('601628','31361'),
('601628','31362'),
('601628','32429'),
('601628','32430'),
('601628','32431'),
('601628','32432'),
('601628','32433'),
('601628','32434'),
('601628','32435'),
('601628','32436'),
('601628','34172'),
('601628','34173'),
('601628','34174'),
('601628','34175'),
('601628','34200'),
('601628','34201'),
('601628','34218'),
('601628','34262'),
('601628','34491'),
('601629','2406'),
('601629','2407'),
('601629','2408'),
('601629','2409'),
('601629','4293'),
('601629','4294'),
('601629','4296'),
('601629','4297'),
('601629','4299'),
('601629','4300'),
('601629','5083'),
('601629','5788'),
('601629','5789'),
('601629','5972'),
('601629','5974'),
('601629','6476'),
('601629','6710'),
('601629','7288'),
('601629','7360'),
('601629','7361'),
('601629','7363'),
('601629','7364'),
('601629','7449'),
('601629','7450'),
('601629','7451'),
('601629','7453'),
('601629','8386'),
('601629','8387'),
('601629','8389'),
('601629','8390'),
('601629','8395'),
('601629','8397'),
('601629','8398'),
('601629','8399'),
('601629','8400'),
('601629','8401'),
('601629','8402'),
('601629','8403'),
('601629','8404'),
('601629','8405'),
('601629','8406'),
('601629','8407'),
('601629','8408'),
('601629','8409'),
('601629','13287'),
('601629','13288'),
('601629','15727'),
('601629','18516'),
('601629','21548'),
('601629','25728'),
('601629','25729'),
('601629','25730'),
('601629','25731'),
('601629','25732'),
('601629','25733'),
('601629','25734'),
('601629','25735'),
('601629','25736'),
('601629','25737'),
('601629','25738'),
('601629','25739'),
('601629','25740'),
('601629','25741'),
('601629','25742'),
('601629','25743'),
('601629','29213'),
('601629','29214'),
('601629','29215'),
('601629','29217'),
('601629','29218'),
('601629','29219'),
('601629','33124'),
('601629','44509'),
('601629','44510'),
('601629','44511'),
('601629','44512'),
('601629','44513'),
('601629','44514'),
('601629','44515'),
('601629','44516'),
('601629','44517'),
('601629','44518'),
('601629','44519'),
('601629','44520'),
('601629','44521'),
('601629','44522'),
('601629','44523'),
('601629','44524'),
('601629','44525'),
('601629','44526'),
('601629','44527'),
('601629','44528'),
('601629','44530'),
('601629','44531'),
('601629','44532'),
('601629','44533'),
('601629','44534'),
('601629','44535'),
('601629','44536'),
('601629','44537'),
('601629','44538'),
('601629','44539'),
('601629','44540'),
('601629','44541'),
('601629','44542'),
('601629','44543'),
('601629','44544'),
('601629','44545'),
('601630','20854'),
('601630','20855'),
('601630','20856'),
('601630','20970'),
('601630','20971'),
('601630','20973'),
('601630','20974'),
('601630','20975'),
('601630','20976'),
('601630','21940'),
('601630','21941'),
('601630','21942'),
('601630','21943'),
('601630','21944'),
('601630','21945'),
('601630','21947'),
('601630','21948'),
('601630','21949'),
('601630','21952'),
('601630','21953'),
('601630','21954'),
('601630','21955'),
('601630','21956'),
('601630','21957'),
('601630','23130'),
('601630','23131'),
('601630','23133'),
('601630','23134'),
('601630','23135'),
('601630','23136'),
('601630','23137'),
('601630','23138'),
('601630','23140'),
('601630','23141'),
('601630','23142'),
('601630','23143'),
('601630','23144'),
('601630','23145'),
('601630','23146'),
('601630','23147'),
('601630','23148'),
('601630','23149'),
('601630','23150'),
('601630','23151'),
('601630','23152'),
('601630','23153'),
('601630','23154'),
('601630','23155'),
('601630','25902'),
('601630','25903'),
('601630','25904'),
('601630','25908'),
('601630','25910'),
('601630','28291'),
('601630','28596'),
('601630','31359'),
('601630','31870'),
('601630','31871'),
('601630','31872'),
('601630','31873'),
('601630','31874'),
('601630','33155'),
('601630','33156'),
('601630','33157'),
('601630','33158'),
('601630','33159'),
('601630','33160'),
('601630','33305'),
('601630','35238'),
('601630','35239'),
('601630','35240'),
('601630','35241'),
('601630','35242'),
('601630','35243'),
('601630','35244'),
('601630','35245'),
('601630','35246'),
('601630','35247'),
('601630','35248'),
('601630','35249'),
('601630','35250'),
('601630','35251'),
('601630','35252'),
('601630','35253'),
('601630','35254'),
('601630','35255'),
('601630','35256'),
('601630','35257'),
('601630','35258'),
('601630','35259'),
('601630','35260'),
('601630','35261'),
('601630','35262'),
('601630','35263'),
('601630','35264'),
('601630','35265'),
('601630','35266'),
('601630','35267'),
('601630','35268'),
('601630','35269'),
('601630','35270'),
('601630','35271'),
('601630','35502'),
('601630','35505'),
('601630','35695'),
('601630','35696'),
('601630','35697'),
('601630','35698'),
('601630','35699'),
('601630','35708'),
('601630','37504'),
('601630','41559'),
('601630','41560'),
('601630','41561'),
('601630','41562'),
('601630','41563'),
('601630','41564'),
('601630','41565'),
('601630','41566'),
('601630','41567'),
('601630','41568'),
('601630','41569'),
('601630','41570'),
('601630','41571'),
('601630','41572'),
('601630','41573'),
('601630','41574'),
('601630','41575'),
('601630','46948'),
('601630','46949'),
('601630','46950'),
('601630','46951'),
('601630','46952'),
('601630','46953'),
('601630','46956'),
('601630','47007'),
('601630','47008'),
('601630','47010'),
('601630','47011'),
('601630','47012'),
('601630','47015'),
('601630','47016'),
('601630','47017'),
('601630','47018'),
('601630','47019'),
('601630','47020'),
('601630','47021'),
('601630','47022'),
('601630','47023'),
('601630','49112'),
('601631','41688'),
('601631','41689'),
('601631','41690'),
('601631','41692'),
('601631','41693'),
('601631','41694'),
('601631','41696'),
('601631','41697'),
('601631','41698'),
('601631','41699'),
('601631','41701'),
('601631','41702'),
('601631','41703'),
('601631','41704'),
('601631','41705'),
('601631','41706'),
('601631','41707'),
('601631','41708'),
('601631','41709'),
('601631','41710'),
('601631','41711'),
('601631','41718'),
('601631','41719'),
('601631','41720'),
('601631','41721'),
('601631','41722'),
('601631','41723'),
('601631','41724'),
('601631','41725'),
('601631','41726'),
('601631','41727'),
('601631','41728'),
('601631','41730'),
('601631','41732'),
('601631','41733'),
('601631','41734'),
('601631','41735'),
('601631','41736'),
('601631','41737'),
('601631','41738'),
('601631','41739'),
('601631','41740'),
('601631','41742'),
('601631','41743'),
('601631','41744'),
('601631','41747'),
('601631','41777'),
('601631','41778'),
('601631','41779'),
('601631','41780'),
('601631','41781'),
('601631','41782'),
('601631','41783'),
('601631','41784'),
('601631','41785'),
('601631','41786'),
('601631','41787'),
('601631','41788'),
('601631','41789'),
('601631','41790'),
('601631','41791'),
('601631','41792'),
('601631','41793'),
('601631','41794'),
('601631','41795'),
('601631','41796'),
('601631','41797'),
('601631','41798'),
('601631','41799'),
('601631','41817'),
('601631','41818'),
('601631','41819'),
('601631','41820'),
('601631','42138'),
('601631','42298'),
('601631','42299'),
('601631','42300'),
('601631','42301'),
('601631','42302'),
('601631','42303'),
('601631','42304'),
('601631','42305'),
('601631','42306'),
('601631','42307'),
('601631','42308'),
('601631','42309'),
('601631','42310'),
('601631','42311'),
('601631','42312'),
('601631','42313'),
('601631','42314'),
('601631','42315'),
('601631','43317'),
('601631','43318'),
('601631','43319'),
('601631','43320'),
('601631','43485'),
('601631','43497'),
('601631','46897'),
('601631','46898'),
('601631','46899'),
('601631','46900'),
('601631','46901'),
('601631','46902'),
('601631','46903'),
('601631','46904'),
('601631','46905'),
('601631','46906'),
('601631','46907'),
('601631','46908'),
('601631','46909'),
('601631','46910'),
('601631','46911'),
('601631','46912'),
('601631','46913'),
('601631','46914'),
('601631','46915'),
('601631','46916'),
('601631','46917'),
('601631','46918'),
('601631','46919'),
('601631','46920'),
('601631','46921'),
('601631','46922'),
('601631','46923'),
('601631','46924'),
('601631','46925'),
('601631','46926'),
('601631','46927'),
('601631','46928'),
('601631','46929'),
('601631','46930'),
('601631','46931'),
('601631','46932'),
('601631','46933'),
('601631','46934'),
('601631','46935'),
('601631','46936'),
('601631','46937'),
('601631','46938'),
('601631','46939'),
('601631','46940'),
('601631','46941'),
('601631','46942'),
('601631','46943'),
('601631','46944'),
('601631','46945'),
('601631','46946'),
('601631','46947'),
('601632','47773'),
('601632','47774'),
('601632','47775'),
('601632','47776'),
('601632','47777'),
('601632','47798'),
('601632','47799'),
('601632','47800'),
('601632','47801'),
('601632','47802'),
('601632','48067'),
('601632','48068'),
('601632','48069'),
('601632','48070'),
('601632','48071'),
('601632','48097'),
('601632','48098'),
('601632','48099'),
('601632','48100'),
('601632','48101'),
('601632','48153'),
('601632','48154'),
('601632','48155'),
('601632','48156'),
('601632','48157'),
('601632','48183'),
('601632','48184'),
('601632','48185'),
('601632','48186'),
('601632','48187'),
('601632','48188'),
('601632','48189'),
('601632','48190'),
('601632','48191'),
('601632','48192'),
('601632','48243'),
('601632','48244'),
('601632','48245'),
('601632','48246'),
('601632','48247'),
('601632','48275'),
('601632','48276'),
('601632','48277'),
('601632','48278'),
('601632','48279'),
('601632','48295'),
('601632','48296'),
('601632','48297'),
('601632','48298'),
('601632','48299'),
('601632','48336'),
('601632','48337'),
('601632','48338'),
('601632','48339'),
('601632','48340'),
('601632','48366'),
('601632','48367'),
('601632','48368'),
('601632','48369'),
('601632','48370'),
('601632','48386'),
('601632','48387'),
('601632','48388'),
('601632','48389'),
('601632','48390'),
('601632','48456'),
('601632','48457'),
('601632','48458'),
('601632','48459'),
('601632','48460'),
('601632','48501'),
('601632','48502'),
('601632','48503'),
('601632','48504'),
('601632','48505'),
('601632','48558'),
('601632','48559'),
('601632','48560'),
('601632','48561'),
('601632','48562'),
('601632','48595'),
('601632','48596'),
('601632','48597'),
('601632','48598'),
('601632','48599'),
('601632','48627'),
('601632','48628'),
('601632','48629'),
('601632','48630'),
('601632','48631'),
('601632','48652'),
('601632','48653'),
('601632','48654'),
('601632','48655'),
('601632','48656'),
('601633','47768'),
('601633','47769'),
('601633','47770'),
('601633','47771'),
('601633','47772'),
('601633','47803'),
('601633','47804'),
('601633','47805'),
('601633','47806'),
('601633','47807'),
('601633','48062'),
('601633','48063'),
('601633','48064'),
('601633','48065'),
('601633','48066'),
('601633','48092'),
('601633','48093'),
('601633','48094'),
('601633','48095'),
('601633','48096'),
('601633','48148'),
('601633','48149'),
('601633','48150'),
('601633','48151'),
('601633','48152'),
('601633','48178'),
('601633','48179'),
('601633','48180'),
('601633','48181'),
('601633','48182'),
('601633','48193'),
('601633','48194'),
('601633','48195'),
('601633','48196'),
('601633','48197'),
('601633','48238'),
('601633','48239'),
('601633','48240'),
('601633','48241'),
('601633','48242'),
('601633','48270'),
('601633','48271'),
('601633','48272'),
('601633','48273'),
('601633','48274'),
('601633','48300'),
('601633','48301'),
('601633','48302'),
('601633','48303'),
('601633','48304'),
('601633','48331'),
('601633','48332'),
('601633','48333'),
('601633','48334'),
('601633','48335'),
('601633','48361'),
('601633','48362'),
('601633','48363'),
('601633','48364'),
('601633','48365'),
('601633','48391'),
('601633','48392'),
('601633','48393'),
('601633','48394'),
('601633','48395'),
('601633','48461'),
('601633','48462'),
('601633','48463'),
('601633','48464'),
('601633','48465'),
('601633','48496'),
('601633','48497'),
('601633','48498'),
('601633','48499'),
('601633','48500'),
('601633','48553'),
('601633','48554'),
('601633','48555'),
('601633','48556'),
('601633','48557'),
('601633','48590'),
('601633','48591'),
('601633','48592'),
('601633','48593'),
('601633','48594'),
('601633','48622'),
('601633','48623'),
('601633','48624'),
('601633','48625'),
('601633','48626'),
('601633','48657'),
('601633','48658'),
('601633','48659'),
('601633','48660'),
('601633','48661'),
('601634','47763'),
('601634','47764'),
('601634','47765'),
('601634','47766'),
('601634','47767'),
('601634','47793'),
('601634','47794'),
('601634','47795'),
('601634','47796'),
('601634','47797'),
('601634','48057'),
('601634','48058'),
('601634','48059'),
('601634','48060'),
('601634','48061'),
('601634','48087'),
('601634','48088'),
('601634','48089'),
('601634','48090'),
('601634','48091'),
('601634','48143'),
('601634','48144'),
('601634','48145'),
('601634','48146'),
('601634','48147'),
('601634','48173'),
('601634','48174'),
('601634','48175'),
('601634','48176'),
('601634','48177'),
('601634','48198'),
('601634','48199'),
('601634','48200'),
('601634','48201'),
('601634','48202'),
('601634','48233'),
('601634','48234'),
('601634','48235'),
('601634','48236'),
('601634','48237'),
('601634','48265'),
('601634','48266'),
('601634','48267'),
('601634','48268'),
('601634','48269'),
('601634','48305'),
('601634','48306'),
('601634','48307'),
('601634','48308'),
('601634','48309'),
('601634','48326'),
('601634','48327'),
('601634','48328'),
('601634','48329'),
('601634','48330'),
('601634','48356'),
('601634','48357'),
('601634','48358'),
('601634','48359'),
('601634','48360'),
('601634','48396'),
('601634','48397'),
('601634','48398'),
('601634','48399'),
('601634','48400'),
('601634','48466'),
('601634','48467'),
('601634','48468'),
('601634','48469'),
('601634','48470'),
('601634','48491'),
('601634','48492'),
('601634','48493'),
('601634','48494'),
('601634','48495'),
('601634','48548'),
('601634','48549'),
('601634','48550'),
('601634','48551'),
('601634','48552'),
('601634','48585'),
('601634','48586'),
('601634','48587'),
('601634','48588'),
('601634','48589'),
('601634','48617'),
('601634','48618'),
('601634','48619'),
('601634','48620'),
('601634','48621'),
('601634','48647'),
('601634','48648'),
('601634','48649'),
('601634','48650'),
('601634','48651'),
('601635','118'),
('601635','858'),
('601635','929'),
('601635','1710'),
('601635','2455'),
('601635','2456'),
('601635','2459'),
('601635','2633'),
('601635','3087'),
('601635','3384'),
('601635','3385'),
('601635','3386'),
('601635','3387'),
('601635','3823'),
('601635','3827'),
('601635','3928'),
('601635','4596'),
('601635','4623'),
('601635','5631'),
('601635','5632'),
('601635','5633'),
('601635','5634'),
('601635','5816'),
('601635','6048'),
('601635','6049'),
('601635','6050'),
('601635','6051'),
('601635','6052'),
('601635','6149'),
('601635','6372'),
('601635','9030'),
('601635','9036'),
('601635','9144'),
('601635','9172'),
('601635','12190'),
('601635','13442'),
('601635','13443'),
('601635','13444'),
('601635','13446'),
('601635','13455'),
('601635','13456'),
('601635','13457'),
('601635','13458'),
('601635','13459'),
('601635','13460'),
('601635','13461'),
('601635','13462'),
('601635','17348'),
('601635','17349'),
('601635','17351'),
('601635','17352'),
('601635','18253'),
('601635','18839'),
('601635','18841'),
('601635','20002'),
('601635','20008'),
('601635','22826'),
('601635','22828'),
('601635','22829'),
('601635','22832'),
('601635','22836'),
('601635','22837'),
('601635','22838'),
('601635','22839'),
('601635','22841'),
('601635','22842'),
('601635','22844'),
('601635','22845'),
('601635','22846'),
('601635','22847'),
('601635','22849'),
('601635','22850'),
('601635','22871'),
('601635','23578'),
('601635','23579'),
('601635','23822'),
('601635','23823'),
('601635','28100'),
('601635','28101'),
('601635','31676'),
('601635','31677'),
('601635','31838'),
('601635','31839'),
('601635','31840'),
('601635','31841'),
('601635','31852'),
('601635','31853'),
('601635','31854'),
('601635','31855'),
('601635','32762'),
('601635','32763'),
('601635','32783'),
('601635','32784'),
('601635','32840'),
('601635','32844'),
('601635','32845'),
('601635','32846'),
('601635','32847'),
('601635','32902'),
('601635','32903'),
('601635','32904'),
('601635','32905'),
('601635','32909'),
('601635','32910'),
('601635','32947'),
('601635','32948'),
('601635','33092'),
('601635','33093'),
('601635','33447'),
('601635','33448'),
('601635','33934'),
('601635','33935'),
('601635','34440'),
('601635','36770'),
('601635','38351'),
('601635','39327'),
('601635','39671'),
('601635','40067'),
('601635','40077'),
('601635','40081'),
('601635','40087'),
('601635','40093'),
('601635','40211'),
('601635','40212'),
('601635','40213'),
('601635','40214'),
('601635','40215'),
('601635','40216'),
('601635','40217'),
('601635','41166'),
('601635','42545'),
('601635','43530'),
('601635','43531'),
('601635','43569'),
('601635','43570'),
('601635','45276'),
('601635','45277'),
('601636','38772'),
('601636','38779'),
('601636','38780'),
('601636','38781'),
('601636','38788'),
('601636','38794'),
('601636','38796'),
('601636','38813'),
('601636','38814'),
('601636','38821'),
('601636','38822'),
('601636','38838'),
('601636','38840'),
('601636','38845'),
('601636','38848'),
('601636','38868'),
('601636','38869'),
('601636','38870'),
('601636','38871'),
('601636','38872'),
('601636','38873'),
('601636','38874'),
('601636','38875'),
('601636','38876'),
('601636','38877'),
('601636','38878'),
('601636','38879'),
('601636','38880'),
('601636','38883'),
('601636','38884'),
('601636','38896'),
('601636','38917'),
('601636','38918'),
('601636','38919'),
('601636','38920'),
('601636','38921'),
('601636','38922'),
('601636','38923'),
('601636','38924'),
('601636','38925'),
('601636','38926'),
('601636','38927'),
('601636','38946'),
('601636','38947'),
('601636','38948'),
('601636','38963'),
('601636','38965'),
('601636','38972'),
('601636','38981'),
('601636','38988'),
('601636','38991'),
('601636','38992'),
('601636','38995'),
('601636','38998'),
('601636','43987'),
('601636','44453'),
('601636','44463'),
('601636','44466'),
('601636','44467'),
('601636','44493'),
('601636','44497'),
('601636','45056'),
('601636','45060'),
('601636','46026'),
('601636','46098'),
('601637','37603'),
('601637','38850'),
('601637','38852'),
('601637','38853'),
('601637','38854'),
('601637','38855'),
('601637','38856'),
('601637','38857'),
('601637','38858'),
('601637','38859'),
('601637','38860'),
('601637','38861'),
('601637','38862'),
('601637','38863'),
('601637','38864'),
('601637','38865'),
('601637','38866'),
('601637','38867'),
('601637','38881'),
('601637','38882'),
('601637','38885'),
('601637','38886'),
('601637','38887'),
('601637','38888'),
('601637','38889'),
('601637','38890'),
('601637','38891'),
('601637','38892'),
('601637','38893'),
('601637','38894'),
('601637','38895'),
('601637','38897'),
('601637','38898'),
('601637','38899'),
('601637','38900'),
('601637','38901'),
('601637','38902'),
('601637','38903'),
('601637','38904'),
('601637','38905'),
('601637','38906'),
('601637','38907'),
('601637','38908'),
('601637','38909'),
('601637','38910'),
('601637','38911'),
('601637','38912'),
('601637','38913'),
('601637','38914'),
('601637','38915'),
('601637','38928'),
('601637','38929'),
('601637','38930'),
('601637','38931'),
('601637','38932'),
('601637','38933'),
('601637','38934'),
('601637','38935'),
('601637','38936'),
('601637','38937'),
('601637','38938'),
('601637','38939'),
('601637','38940'),
('601637','38941'),
('601637','38942'),
('601637','38943'),
('601637','38944'),
('601637','38945'),
('601637','38949'),
('601637','38950'),
('601637','38951'),
('601637','38953'),
('601637','38954'),
('601637','38955'),
('601637','38956'),
('601637','38959'),
('601637','38960'),
('601637','38961'),
('601637','38962'),
('601637','38964'),
('601637','38966'),
('601637','38967'),
('601637','38968'),
('601637','38969'),
('601637','38971'),
('601637','38973'),
('601637','38974'),
('601637','38975'),
('601637','38976'),
('601637','38977'),
('601637','38978'),
('601637','38979'),
('601637','38980'),
('601637','38982'),
('601637','38984'),
('601637','38986'),
('601637','38987'),
('601637','38989'),
('601637','38990'),
('601637','38993'),
('601637','38997'),
('601637','38999'),
('601637','39000'),
('601637','39001'),
('601637','39002'),
('601637','39003'),
('601637','39004'),
('601637','39005'),
('601637','39006'),
('601637','44449'),
('601637','44455'),
('601637','44456'),
('601637','44457'),
('601637','44458'),
('601637','44465'),
('601637','44469'),
('601637','44470'),
('601637','44815'),
('601637','44947'),
('601637','50816'),
('601638','38679'),
('601638','38766'),
('601638','38767'),
('601638','38768'),
('601638','38769'),
('601638','38770'),
('601638','38771'),
('601638','38773'),
('601638','38774'),
('601638','38775'),
('601638','38776'),
('601638','38777'),
('601638','38778'),
('601638','38782'),
('601638','38783'),
('601638','38784'),
('601638','38785'),
('601638','38786'),
('601638','38787'),
('601638','38789'),
('601638','38790'),
('601638','38791'),
('601638','38792'),
('601638','38793'),
('601638','38795'),
('601638','38797'),
('601638','38798'),
('601638','38799'),
('601638','38800'),
('601638','38801'),
('601638','38802'),
('601638','38803'),
('601638','38804'),
('601638','38805'),
('601638','38806'),
('601638','38807'),
('601638','38808'),
('601638','38809'),
('601638','38810'),
('601638','38811'),
('601638','38812'),
('601638','38815'),
('601638','38816'),
('601638','38817'),
('601638','38818'),
('601638','38819'),
('601638','38820'),
('601638','38823'),
('601638','38824'),
('601638','38825'),
('601638','38826'),
('601638','38827'),
('601638','38828'),
('601638','38829'),
('601638','38830'),
('601638','38831'),
('601638','38832'),
('601638','38833'),
('601638','38834'),
('601638','38835'),
('601638','38836'),
('601638','38837'),
('601638','38839'),
('601638','38841'),
('601638','38842'),
('601638','38843'),
('601638','38844'),
('601638','38846'),
('601638','38847'),
('601638','38849'),
('601638','38851'),
('601638','45628'),
('601639','39139'),
('601639','39189'),
('601639','39196'),
('601639','39215'),
('601639','39234'),
('601639','39236'),
('601639','39254'),
('601639','39273'),
('601639','39369'),
('601639','39701'),
('601639','39706'),
('601639','39717'),
('601639','39734'),
('601639','40184'),
('601639','40187'),
('601639','40206'),
('601639','40236'),
('601639','40237'),
('601639','40243'),
('601639','40246'),
('601639','40269'),
('601639','40270'),
('601639','40297'),
('601639','40320'),
('601639','40326'),
('601639','40367'),
('601639','40409'),
('601639','40519'),
('601639','40549'),
('601639','40558'),
('601639','40591'),
('601639','40592'),
('601639','40742'),
('601639','40743'),
('601639','40745'),
('601639','40746'),
('601639','40747'),
('601639','40748'),
('601639','40749'),
('601639','40750'),
('601639','40751'),
('601639','41391'),
('601639','41392'),
('601639','41394'),
('601639','43469'),
('601639','43502'),
('601639','43585'),
('601639','43588'),
('601639','43592'),
('601639','43595'),
('601639','43996'),
('601639','44182'),
('601639','44202'),
('601639','44297'),
('601639','44306'),
('601639','44930'),
('601639','45135'),
('601639','45162'),
('601639','45166'),
('601639','45232'),
('601639','45244'),
('601639','45249'),
('601639','45258'),
('601639','45260'),
('601639','45302'),
('601639','45330'),
('601639','45378'),
('601639','45434'),
('601639','45441'),
('601639','45483'),
('601639','45501'),
('601639','45513'),
('601639','45537'),
('601639','45542'),
('601639','45559'),
('601639','45560'),
('601639','45561'),
('601639','45562'),
('601639','45563'),
('601639','45564'),
('601639','45565'),
('601639','45566'),
('601639','45567'),
('601639','45599'),
('601639','45615'),
('601639','45698'),
('601639','45701'),
('601639','45988'),
('601639','45989'),
('601639','46030'),
('601639','46050'),
('601639','46346'),
('601639','46985'),
('601639','46986'),
('601639','46988'),
('601639','46989'),
('601639','46997'),
('601639','47003'),
('601639','47071'),
('601639','47077'),
('601639','47090'),
('601639','47092'),
('601639','47097'),
('601639','47099'),
('601639','47106'),
('601639','47109'),
('601639','47150'),
('601639','47154'),
('601639','47175'),
('601639','47194'),
('601639','47199'),
('601639','47201'),
('601639','47205'),
('601639','47248'),
('601639','47262'),
('601639','47263'),
('601639','47269'),
('601639','47284'),
('601639','47293'),
('601639','47295'),
('601639','47296'),
('601639','47312'),
('601639','47321'),
('601639','47423'),
('601639','47424'),
('601639','47430'),
('601639','47445'),
('601639','47454'),
('601639','47456'),
('601639','47457'),
('601639','47473'),
('601639','47482'),
('601639','47504'),
('601639','47511'),
('601639','47560'),
('601639','47608'),
('601639','47683'),
('601639','47721'),
('601639','47738'),
('601639','47853'),
('601639','47867'),
('601639','47873'),
('601639','47885'),
('601639','47919'),
('601639','47933'),
('601639','47940'),
('601639','47952'),
('601639','47992'),
('601639','48006'),
('601639','48012'),
('601640','48024'),
('601640','49231'),
('601640','49232'),
('601640','49233'),
('601640','49234'),
('601640','49235'),
('601640','49236'),
('601640','49237'),
('601640','49238'),
('601640','49795'),
('601640','49798'),
('601640','49805'),
('601640','49831'),
('601640','49890'),
('601640','49893'),
('601640','49894'),
('601640','49895'),
('601640','49896'),
('601640','49897'),
('601640','49905'),
('601640','49906'),
('601640','49907'),
('601640','49950'),
('601640','49983'),
('601640','49993'),
-- ('601640','60159'),
('601640','50062'),
('601640','50071'),
('601640','50190'),
('601640','50207'),
('601640','50215'),
('601640','50283'),
('601640','50286'),
('601640','50295'),
('601640','50305'),
('601640','50308'),
('601640','50416'),
('601640','50607'),
('601640','50625'),
('601640','50632'),
('601640','50639'),
('601640','50652'),
('601640','50665'),
('601640','50699'),
('601640','50711'),
('601640','50772'),
('601640','50783'),
('601640','50788'),
('601640','50804'),
('601640','50812'),
('601640','51006'),
('601640','51023'),
('601640','51380'),
('601640','51785'),
('601640','51787'),
('601640','51816'),
('601640','51818'),
('601640','51850'),
('601640','51856'),
('601640','51873'),
('601640','51891'),
('601640','51899'),
('601640','51915'),
('601640','51920'),
('601640','51931'),
('601640','53111'),
('601640','53119'),
('601640','53125'),
('601640','53127'),
('601640','53129'),
('601640','53487'),
('601640','54558'),
('601640','54564'),
('601640','54577'),
('601640','54578'),
('601640','54579'),
('601640','54586'),
('601641','37171'),
('601641','37194'),
('601641','37241'),
('601641','37242'),
('601641','37407'),
('601641','37408'),
('601641','37643'),
('601641','37670'),
('601641','37855'),
('601641','39190'),
('601641','39216'),
('601641','39251'),
('601641','39261'),
('601641','39279'),
('601641','39298'),
('601641','39308'),
('601641','39345'),
('601641','39379'),
('601641','39721'),
('601641','39735'),
('601641','39759'),
('601641','39762'),
('601641','40200'),
('601641','40205'),
('601641','40241'),
('601641','40259'),
('601641','40260'),
('601641','40263'),
('601641','40271'),
('601641','40272'),
('601641','40275'),
('601641','40278'),
('601641','40301'),
('601641','40317'),
('601641','40327'),
('601641','40341'),
('601641','40561'),
('601641','40566'),
('601641','40688'),
('601641','40689'),
('601641','40691'),
('601641','40692'),
('601641','40693'),
('601641','40694'),
('601641','40695'),
('601641','40696'),
('601641','40697'),
('601641','43484'),
('601641','43584'),
('601641','43587'),
('601641','43591'),
('601641','43594'),
('601641','43989'),
('601641','44181'),
('601641','44302'),
('601641','44309'),
('601641','45119'),
('601641','45139'),
('601641','45151'),
('601641','45161'),
('601641','45185'),
('601641','45241'),
('601641','45304'),
('601641','45306'),
('601641','45333'),
('601641','45455'),
('601641','45467'),
('601641','45491'),
('601641','45505'),
('601641','45508'),
('601641','45547'),
('601641','45548'),
('601641','45550'),
('601641','45551'),
('601641','45552'),
('601641','45553'),
('601641','45554'),
('601641','45555'),
('601641','45556'),
('601641','45557'),
('601641','45558'),
('601641','45616'),
('601641','45619'),
('601641','45694'),
('601641','45709'),
('601641','45824'),
('601641','45825'),
('601641','45826'),
('601641','45827'),
('601641','45828'),
('601641','45829'),
('601641','45830'),
('601641','45831'),
('601641','45895'),
('601641','45975'),
('601641','46041'),
('601641','46095'),
('601641','46972'),
('601641','46973'),
('601641','46990'),
('601641','46991'),
('601641','46999'),
('601641','47002'),
('601641','47072'),
('601641','47076'),
('601641','47081'),
('601641','47084'),
('601641','47107'),
('601641','47112'),
('601641','47140'),
('601641','47145'),
('601641','47152'),
('601641','47153'),
('601641','47170'),
('601641','47174'),
('601641','47181'),
('601641','47195'),
('601641','47207'),
('601641','47218'),
('601641','47227'),
('601641','47229'),
('601641','47231'),
('601641','47258'),
('601641','47265'),
('601641','47268'),
('601641','47283'),
('601641','47286'),
('601641','47299'),
('601641','47308'),
('601641','47311'),
('601641','47323'),
('601641','47419'),
('601641','47426'),
('601641','47429'),
('601641','47444'),
('601641','47447'),
('601641','47460'),
('601641','47469'),
('601641','47472'),
('601641','47484'),
('601641','47510'),
('601641','47563'),
('601641','47614'),
('601641','47615'),
('601641','47617'),
('601641','47621'),
('601641','47669'),
('601641','47711'),
('601641','47837'),
('601641','47855'),
('601642','47858'),
('601642','47859'),
('601642','47863'),
('601642','47866'),
('601642','47870'),
('601642','47909'),
('601642','47921'),
('601642','47924'),
('601642','47925'),
('601642','47929'),
('601642','47932'),
('601642','47937'),
('601642','47977'),
('601642','47994'),
('601642','47997'),
('601642','47998'),
('601642','48002'),
('601642','48005'),
('601642','48009'),
('601642','48054'),
('601642','49796'),
('601642','49806'),
('601642','49808'),
('601642','49810'),
('601642','49853'),
('601642','49978'),
-- ('601642','60160'),
-- ('601642','60165'),
('601642','50036'),
('601642','50063'),
('601642','50067'),
('601642','50069'),
('601642','50187'),
('601642','50263'),
('601642','50270'),
('601642','50314'),
('601642','50413'),
('601642','50451'),
('601642','50613'),
('601642','50620'),
('601642','50667'),
('601642','50671'),
('601642','50688'),
('601642','50691'),
('601642','50702'),
('601642','50705'),
('601642','50707'),
('601642','50762'),
('601642','50773'),
('601642','50778'),
('601642','50784'),
('601642','50795'),
('601642','50987'),
('601642','50989'),
('601642','50991'),
('601642','50992'),
('601642','50993'),
('601642','50994'),
('601642','50995'),
('601642','50996'),
('601642','50997'),
('601642','51000'),
('601642','51017'),
('601642','51325'),
('601642','51555'),
('601642','51564'),
('601642','51782'),
('601642','51821'),
('601642','51831'),
('601642','51836'),
('601642','51853'),
('601642','51862'),
('601642','51879'),
('601642','51908'),
('601642','51919'),
('601642','51925'),
('601642','51930'),
('601642','51935'),
('601642','53118'),
('601642','53121'),
('601642','53488'),
('601642','54562'),
('601642','54565'),
('601642','54587'),
('601643','37170'),
('601643','37240'),
('601643','37361'),
('601643','37620'),
('601643','37668'),
('601643','37696'),
('601643','37788'),
('601643','37853'),
('601643','37884'),
('601643','39195'),
('601643','39235'),
('601643','39247'),
('601643','39252'),
('601643','39278'),
('601643','39283'),
('601643','39307'),
('601643','39390'),
('601643','39467'),
('601643','39702'),
('601643','39722'),
('601643','39729'),
('601643','39731'),
('601643','39764'),
('601643','39765'),
('601643','40186'),
('601643','40198'),
('601643','40209'),
('601643','40274'),
('601643','40282'),
('601643','40306'),
('601643','40323'),
('601643','40324'),
('601643','40325'),
('601643','40330'),
('601643','40332'),
('601643','40338'),
('601643','40733'),
('601643','40734'),
('601643','40735'),
('601643','40736'),
('601643','40737'),
('601643','40738'),
('601643','40739'),
('601643','40740'),
('601643','40741'),
('601643','43459'),
('601643','44008'),
('601643','44203'),
('601643','45108'),
('601643','45111'),
('601643','45146'),
('601643','45149'),
('601643','45187'),
('601643','45252'),
('601643','45264'),
('601643','45269'),
('601643','45275'),
('601643','45283'),
('601643','45291'),
('601643','45301'),
('601643','45316'),
('601643','45423'),
('601643','45446'),
('601643','45454'),
('601643','45460'),
('601643','45549'),
('601643','45611'),
('601643','45663'),
('601643','45680'),
('601643','45869'),
('601643','45888'),
('601643','46009'),
('601643','46345'),
('601643','46961'),
('601643','46967'),
('601643','47055'),
('601643','47056'),
('601643','47066'),
('601643','47068'),
('601643','47073'),
('601643','47074'),
('601643','47093'),
('601643','47098'),
('601643','47108'),
('601643','47111'),
('601643','47141'),
('601643','47143'),
('601643','47151'),
('601643','47155'),
('601643','47173'),
('601643','47203'),
('601643','47208'),
('601643','47211'),
('601643','47253'),
('601643','47277'),
('601643','47280'),
('601643','47281'),
('601643','47294'),
('601643','47298'),
('601643','47306'),
('601643','47313'),
('601643','47324'),
('601643','47414'),
('601643','47438'),
('601643','47441'),
('601643','47442'),
('601643','47455'),
('601643','47459'),
('601643','47467'),
('601643','47474'),
('601643','47485'),
('601643','47496'),
('601643','47565'),
('601643','47570'),
('601643','47571'),
('601643','47572'),
('601643','47573'),
('601643','47574'),
('601643','47575'),
('601643','47576'),
('601643','47577'),
('601643','47579'),
('601643','47580'),
('601643','47581'),
('601643','47582'),
('601643','47583'),
('601643','47584'),
('601643','47585'),
('601643','47586'),
('601643','47587'),
('601643','47588'),
('601643','47610'),
('601643','47611'),
('601643','47663'),
('601643','47680'),
('601643','47850'),
('601643','47852'),
('601643','47861'),
('601643','47869'),
('601643','47916'),
('601643','47918'),
('601643','47927'),
('601643','47935'),
('601643','47989'),
('601643','47991'),
('601643','48000'),
('601643','48008'),
('601643','49787'),
('601643','49797'),
('601643','49809'),
('601644','49820'),
('601644','49960'),
('601644','49994'),
-- ('601644','60150'),
-- ('601644','60152'),
('601644','50030'),
('601644','50032'),
('601644','50175'),
('601644','50209'),
('601644','50230'),
('601644','50264'),
('601644','50292'),
('601644','50318'),
('601644','50333'),
('601644','50417'),
('601644','50611'),
('601644','50630'),
('601644','50651'),
('601644','50655'),
('601644','50659'),
('601644','50670'),
('601644','50686'),
('601644','50687'),
('601644','50721'),
('601644','50774'),
('601644','50785'),
('601644','50789'),
('601644','50796'),
('601644','50802'),
('601644','50985'),
('601644','51007'),
('601644','51563'),
('601644','51783'),
('601644','51820'),
('601644','51832'),
('601644','51872'),
('601644','51885'),
('601644','51901'),
('601644','51907'),
('601644','51914'),
('601644','51918'),
('601644','51929'),
('601644','53112'),
('601644','53126'),
('601644','53134'),
('601644','53486'),
('601644','54559'),
('601644','54580'),
('601644','54582'),
('601644','54584'),
('601645','17'),
('601645','192'),
('601645','2586'),
('601645','11508'),
('601645','12064'),
('601645','18582'),
('601645','18583'),
('601645','18584'),
('601645','23162'),
('601645','25596'),
-- ('601645','43651'),
('601645','44728');
-- ######################################################--
-- 19 TWINK VENDOR ITEMS
-- ######################################################--
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`) VALUES
/*Cloth Armour*/
(601677,0,14150),
(601677,1,48691),
(601677,2,14371),
(601677,3,1486),
(601677,4,14369),
(601677,5,5202),
(601677,6,6226),
(601677,7,6264),
(601677,8,6465),
(601677,9,4320),
(601677,10,14374),
(601677,11,3065),
(601677,12,3076),
(601677,13,9767),
(601677,14,14159),
(601677,15,1560),
(601677,16,3066),
(601677,17,3074),
(601677,18,5970),
(601677,19,5195),
(601677,20,14162),
(601677,21,1974),
(601677,22,14148),
(601677,23,3647),
(601677,24,12987),
(601677,25,4316),
(601677,26,6568),
(601677,27,14171),
(601677,28,4708),
(601677,29,4785),
(601677,30,2911),
(601677,31,3229),
(601677,32,1299),
(601677,33,6570),
(601677,34,9766),
(601677,35,4314),
(601677,36,4315),
(601677,37,19972),
/*Leather Armour*/
(601678,0,48687),
(601678,1,48689),
(601678,2,6473),
(601678,3,10399),
(601678,4,2314),
(601678,5,14562),
(601678,6,9782),
(601678,7,1121),
(601678,8,3057),
(601678,9,10411),
(601678,10,14568),
(601678,11,6582),
(601678,12,14572),
(601678,13,7285),
(601678,14,7284),
(601678,15,10413),
(601678,16,6586),
(601678,17,3230),
(601678,18,3202),
(601678,19,3205),
(601678,20,15331),
(601678,21,10410),
(601678,22,3022),
(601678,23,5199),
(601678,24,15117),
(601678,25,6587),
(601678,26,6319),
(601678,27,3429),
(601678,28,6468),
(601678,29,14567),
(601678,30,6382),
(601678,31,5975),
(601678,32,10403),
(601678,33,5404),
(601678,34,5254),
(601678,35,23909),
(601678,36,7997),
/*Mail Armour*/
(601679,0,48677),
(601679,1,48683),
(601679,2,48685),
(601679,3,2866),
(601679,4,14730),
(601679,5,15500),
(601679,6,6580),
(601679,7,14742),
(601679,8,6459),
(601679,9,6573),
(601679,10,12982),
(601679,11,12994),
(601679,12,14747),
(601679,13,1448),
(601679,14,15509),
(601679,15,6577),
(601679,16,5943),
(601679,17,14147),
(601679,18,2867),
(601679,19,14743),
(601679,20,6574),
(601679,21,4816),
(601679,22,4800),
(601679,23,6087),
(601679,24,15511),
(601679,25,6578),
(601679,26,6460),
(601679,27,5750),
(601679,28,14746),
(601679,29,5425),
(601679,30,12978),
(601679,31,3480),
(601679,32,19972),
/*One-Hand Weapons*/
(601680,0,885),
(601680,1,1459),
(601680,2,2807),
(601680,3,12990),
(601680,4,4445),
(601680,5,5196),
(601680,6,790),
(601680,7,42948),
(601680,8,44094),
(601680,9,48716),
(601680,10,2256),
(601680,11,6472),
(601680,12,5197),
(601680,13,1483),
(601680,14,2848),
(601680,15,15223),
(601680,16,44096),
(601680,17,42945),
(601680,18,5191),
(601680,19,1482),
(601680,20,6633),
(601680,21,20430),
(601680,22,20440),
(601680,23,5192),
(601680,24,2850),
(601680,25,1935),
(601680,26,2567),
(601680,27,20441),
(601680,28,20443),
(601680,29,5540),
(601680,30,6448),
(601680,31,2169),
/*Two-Hand Weapons*/
(601681,0,3415),
(601681,1,890),
(601681,2,20425),
(601681,3,5201),
(601681,4,20434),
(601681,5,2271),
(601681,6,880),
(601681,7,1484),
(601681,8,1455),
(601681,9,1318),
(601681,10,5194),
(601681,11,5749),
(601681,12,2175),
(601681,13,872),
(601681,14,15269),
(601681,15,3199),
(601681,16,7230),
(601681,17,1458),
(601681,18,3194),
(601681,19,12983),
(601681,20,3198),
(601681,21,12992),
(601681,22,4818),
(601681,23,4817),
/*Jewellery*/
(601682,0,20442),
(601682,1,20444),
(601682,2,21933),
(601682,3,21934),
(601682,4,25438),
(601682,5,12996),
(601682,6,20426),
(601682,7,20429),
(601682,8,20431),
(601682,9,20439),
(601682,10,30804),
(601682,11,12985),
(601682,12,6332),
(601682,13,24120),
(601682,14,24119),
(601682,15,24118),
(601682,16,12054),
(601682,17,42991),
(601682,18,42992),
(601682,19,19024),
(601682,20,1490),
(601682,21,10727),
(601682,22,19141),
(601682,23,10779),
(601682,24,10659),
(601682,25,19120),
(601682,26,40476),
(601682,27,40477),
/*Cloaks and Off-Hands*/
(601683,0,2059),
(601683,1,45626),
(601683,2,6629),
(601683,3,20427),
(601683,4,20428),
(601683,5,6449),
(601683,6,4706),
(601683,7,4793),
(601683,8,4792),
(601683,9,4710),
(601683,10,9805),
(601683,11,6383),
(601683,12,4444),
(601683,13,12997),
(601683,14,6320),
(601683,15,2879),
(601683,16,6341),
(601683,17,43515),
(601683,18,5183),
(601683,19,15912),
/*Enchants*/
(601684,0,38838),
(601684,1,38873),
(601684,2,38879),
(601684,3,38884),
(601684,4,38868),
(601684,5,38877),
(601684,6,38880),
(601684,7,38896),
(601684,8,38872),
(601684,9,38835),
(601684,10,38859),
(601684,11,38891),
(601684,12,38892),
(601684,13,38893),
(601684,14,38894),
(601684,15,38865),
(601684,16,38866),
(601684,17,38867),
(601684,18,38852),
(601684,19,38853),
(601684,20,38854),
(601684,21,38855),
(601684,22,38881),
(601684,23,38882),
(601684,24,38851),
(601684,25,38885),
(601684,26,38886),
(601684,27,38887),
(601684,28,38888),
(601684,29,38890),
(601684,30,38862),
(601684,31,38863),
(601684,32,38837),
(601684,33,38861),
(601684,34,38860),
(601684,35,4406),
(601684,36,11642),
(601684,37,11645),
(601684,38,11646),
(601684,39,11647),
(601684,40,11648),
(601684,41,11649),
(601684,42,18330),
(601684,43,18329),
(601684,44,18331),
(601684,45,11643),
(601684,46,11644),
/*Bags*/
(601685,0,804),
(601685,1,805),
(601685,2,828),
(601685,3,856),
(601685,4,857),
(601685,5,918),
(601685,6,932),
(601685,7,933),
(601685,8,1470),
(601685,9,1537),
(601685,10,1652),
(601685,11,1685),
(601685,12,1725),
(601685,13,1729),
(601685,14,2082),
(601685,15,2657),
(601685,16,3233),
(601685,17,3343),
(601685,18,3352),
(601685,19,3914),
(601685,20,4238),
(601685,21,4240),
(601685,22,4241),
(601685,23,4245),
(601685,24,4496),
(601685,25,4497),
(601685,26,4498),
(601685,27,4499),
(601685,28,4500),
(601685,29,4957),
(601685,30,5081),
(601685,31,5571),
(601685,32,5572),
(601685,33,5573),
(601685,34,5574),
(601685,35,5575),
(601685,36,5576),
(601685,37,5762),
(601685,38,5763),
(601685,39,5764),
(601685,40,5765),
(601685,41,6446),
(601685,42,6756),
(601685,43,9587),
(601685,44,10050),
(601685,45,10051),
(601685,46,10959),
(601685,47,11324),
(601685,48,11742),
(601685,49,11845),
(601685,50,14046),
(601685,51,14155),
(601685,52,14156),
(601685,53,17966),
(601685,54,19291),
(601685,55,19914),
(601685,56,20400),
(601685,57,20474),
(601685,58,21340),
(601685,59,21341),
(601685,60,21342),
(601685,61,21841),
(601685,62,21843),
(601685,63,21858),
(601685,64,21872),
(601685,65,21876),
(601685,66,22243),
(601685,67,22244),
(601685,68,22246),
(601685,69,22248),
(601685,70,22249),
(601685,71,22250),
(601685,72,22251),
(601685,73,22252),
(601685,74,22571),
(601685,75,22679),
(601685,76,22976),
(601685,77,23162),
(601685,78,23389),
(601685,79,23774),
(601685,80,23775),
(601685,81,23852),
(601685,82,24270),
(601685,83,27680),
(601685,84,29540),
(601685,85,30744),
(601685,86,30745),
(601685,87,30746),
(601685,88,30747),
(601685,89,30748),
(601685,90,33117),
(601685,91,34067),
(601685,92,34482),
(601685,93,34490),
(601685,94,34845),
(601685,95,35516),
(601685,96,37606),
(601685,97,38082),
(601685,98,38145),
(601685,99,38225),
(601685,100,38347),
(601685,101,38399),
(601685,102,39489),
(601685,103,41597),
(601685,104,41598),
(601685,105,41599),
(601685,106,41600),
(601685,107,43345),
(601685,108,44446),
(601685,109,45773),
(601685,110,49295),
(601685,111,50316),
(601685,112,50317),
(601685,113,51809),
/*Pets*/
(601686,0,4401),
(601686,1,8485),
(601686,2,8486),
(601686,3,8487),
(601686,4,8488),
(601686,5,8489),
(601686,6,8490),
(601686,7,8491),
(601686,8,8492),
(601686,9,8494),
(601686,10,8495),
(601686,11,8496),
(601686,12,8497),
(601686,13,8498),
(601686,14,8499),
(601686,15,8500),
(601686,16,8501),
(601686,17,10360),
(601686,18,10361),
(601686,19,10392),
(601686,20,10393),
(601686,21,10394),
(601686,22,10398),
(601686,23,10822),
(601686,24,11023),
(601686,25,11026),
(601686,26,11027),
(601686,27,11110),
(601686,28,11474),
(601686,29,11825),
(601686,30,11826),
(601686,31,12264),
(601686,32,12529),
(601686,33,15996),
(601686,34,18964),
(601686,35,19450),
(601686,36,19462),
(601686,37,20769),
(601686,38,21168),
(601686,39,21277),
(601686,40,21301),
(601686,41,21305),
(601686,42,21308),
(601686,43,21309),
(601686,44,22200),
(601686,45,22235),
(601686,46,23002),
(601686,47,23007),
(601686,48,23015),
(601686,49,23083),
(601686,50,27445),
(601686,51,29363),
(601686,52,29364),
(601686,53,29901),
(601686,54,29902),
(601686,55,29903),
(601686,56,29904),
(601686,57,29953),
(601686,58,29956),
(601686,59,29957),
(601686,60,29958),
(601686,61,29960),
(601686,62,31760),
(601686,63,32233),
(601686,64,32616),
(601686,65,32617),
(601686,66,32622),
(601686,67,33154),
(601686,68,33816),
(601686,69,33818),
(601686,70,33993),
(601686,71,34425),
(601686,72,34478),
(601686,73,34518),
(601686,74,34519),
(601686,75,34535),
(601686,76,34955),
(601686,77,35349),
(601686,78,35350),
(601686,79,35504),
(601686,80,37297),
(601686,81,37298),
(601686,82,37460),
(601686,83,38628),
(601686,84,38658),
(601686,85,39896),
(601686,86,39898),
(601686,87,39899),
(601686,88,39973),
(601686,89,40653),
(601686,90,41133),
(601686,91,43698),
(601686,92,44721),
(601686,93,44723),
(601686,94,44738),
(601686,95,44794),
(601686,96,44810),
(601686,97,44819),
(601686,98,44820),
(601686,99,44822),
(601686,100,44841),
(601686,101,44965),
(601686,102,44970),
(601686,103,44971),
(601686,104,44973),
(601686,105,44974),
(601686,106,44980),
(601686,107,44982),
(601686,108,44983),
(601686,109,44984),
(601686,110,44998),
(601686,111,45002),
(601686,112,45022),
(601686,113,45057),
(601686,114,45180),
(601686,115,45606),
(601686,116,45942),
(601686,117,46396),
(601686,118,46397),
(601686,119,46398),
(601686,120,46544),
(601686,121,46545),
(601686,122,46707),
(601686,123,46767),
(601686,124,46820),
(601686,125,46821),
(601686,126,46831),
(601686,127,48112),
(601686,128,48114),
(601686,129,48116),
(601686,130,48118),
(601686,131,48120),
(601686,132,48122),
(601686,133,48124),
(601686,134,48126),
(601686,135,49362),
(601686,136,49646),
(601686,137,49662),
(601686,138,49663),
(601686,139,49912),
(601686,140,50446),
(601686,141,54436),
/*General Goods*/
(601687,0,21215),
(601687,1,6265),
(601687,2,17056),
(601687,3,5175),
(601687,4,5177),
(601687,5,5178),
(601687,6,5176),
(601687,7,2515),
(601687,8,2519),
/*Potions and Scrolls*/
(601688,1,929),
(601688,2,3385),
(601688,3,6048),
(601688,4,5632),
(601688,5,3386),
(601688,6,3384),
(601688,7,6372),
(601688,8,6051),
(601688,9,2459),
(601688,10,2456),
(601688,11,5631),
(601688,12,38351),
(601688,13,2289),
(601688,14,1711),
(601688,15,1712),
(601688,16,1478),
(601688,17,2290),
(601688,18,1477),
/*Enchanting Materials*/
(601689,0,6217),
(601689,1,6338),
(601689,2,11128),
(601689,3,4470),
(601689,4,10940),
(601689,5,11083),
(601689,6,10938),
(601689,7,10939),
(601689,8,10998),
(601689,9,11082),
(601689,10,10978),
(601689,11,11084),
(601689,12,17034),
(601689,13,5500),
(601689,14,2772),
(601689,15,3356),
(601689,16,6048),
(601689,17,6370),
(601689,18,6371),
(601689,19,3371),
(601689,20,3372),
/*Enchanting Recipes*/
(601690,0,20758),
(601690,1,6342),
(601690,2,11150),
(601690,3,11101),
(601690,4,11098),
(601690,5,6377),
(601690,6,6375),
(601690,7,11081),
(601690,8,11039),
(601690,9,11038),
(601690,10,6349),
(601690,11,6348),
(601690,12,6347),
(601690,13,6346),
(601690,14,6344),
(601690,15,20752),
(601690,16,11152),
(601690,17,11151),
/*Alchemy Materials*/
(601691,0,3371),
(601691,1,3372),
(601691,2,2447),
(601691,3,765),
(601691,4,2449),
(601691,5,785),
(601691,6,2452),
(601691,7,2450),
(601691,8,3164),
(601691,9,5635),
(601691,10,6358),
(601691,11,6522),
(601691,12,3820),
(601691,13,6370),
(601691,14,2453),
(601691,15,3355),
(601691,16,1288),
(601691,17,6359),
(601691,18,3369),
(601691,19,6371),
(601691,20,3356),
/*Alchemy Recipes*/
(601692,0,44508),
(601692,1,2553),
(601692,2,4597),
(601692,3,2555),
(601692,4,5640),
(601692,5,6663),
(601692,6,6053),
(601692,7,3393),
(601692,8,3394),
(601692,9,6054),
(601692,10,3396),
(601692,11,6211),
(601692,12,5642),
/*Engineering Materials*/
(601693,0,2835),
(601693,1,4382),
(601693,2,4357),
(601693,3,2589),
(601693,4,2840),
(601693,5,4359),
(601693,6,4361),
(601693,7,4399),
(601693,8,2880),
(601693,9,774),
(601693,10,2836),
(601693,11,4364),
(601693,12,4363),
(601693,13,2841),
(601693,14,2592),
(601693,15,2842),
(601693,16,2318),
(601693,17,818),
(601693,18,159),
(601693,19,4404),
(601693,20,2319),
(601693,21,4371),
(601693,22,1206),
(601693,23,1210),
(601693,24,2838),
(601693,25,4377),
(601693,26,4375),
(601693,27,4402),
(601693,28,814),
(601693,29,4234),
(601693,30,1705),
(601693,31,6530),
(601693,32,3577),
(601693,33,4368),
/*Engineering Recipes*/
(601694,0,4408),
(601694,1,6716),
(601694,2,4409),
(601694,3,4410),
(601694,4,13309),
(601694,5,21726),
(601694,6,21725),
(601694,7,21724),
(601694,8,4411),
(601694,9,7560),
(601694,10,14639),
(601694,11,4412),
(601694,12,18647),
(601694,13,18648),
(601694,14,18649),
/*Inscription Materials*/
(601695,0,39469),
(601695,1,43118),
(601695,2,43120),
(601695,3,43124),
(601695,4,43126),
(601695,5,43115),
(601695,6,43117),
(601695,7,39774),
(601695,8,43116),
(601695,9,39151),
(601695,10,37101),
(601695,11,39354),
(601695,12,39334),
(601695,13,10648),
(601695,14,39501),
(601695,15,39502),
(601695,16,43103),
(601695,17,39338),
(601695,18,43104),
(601695,19,39339),
/*Jewelcrafting Materials*/
(601696,0,2840),
(601696,1,2835),
(601696,2,20816),
(601696,3,774),
(601696,4,818),
(601696,5,2841),
(601696,6,2836),
(601696,7,2842),
(601696,8,1210),
(601696,9,5498),
(601696,10,20817),
(601696,11,1206),
(601696,12,1705),
(601696,13,1529),
(601696,14,3575),
(601696,15,2838),
(601696,16,5637),
(601696,17,11083),
(601696,18,3827),
(601696,19,3391),
(601696,20,3577),
(601696,21,3864),
(601696,22,20963),
/*Jewelcrafting Recipes*/
(601697,0,20854),
(601697,1,20970),
(601697,2,20971),
(601697,3,20855),
(601697,4,20973),
(601697,5,20856),
/*Leatherworking Materials*/
(601698,0,2934),
(601698,1,2318),
(601698,2,2320),
(601698,3,783),
(601698,4,4289),
(601698,5,5082),
(601698,6,2324),
(601698,7,4231),
(601698,8,2321),
(601698,9,5498),
(601698,10,6470),
(601698,11,4232),
(601698,12,2319),
(601698,13,7286),
(601698,14,4340),
(601698,15,4243),
(601698,16,2997),
(601698,17,6471),
(601698,18,5784),
(601698,19,3383),
(601698,20,2457),
(601698,21,7287),
(601698,22,5373),
(601698,23,4233),
(601698,24,3389),
(601698,25,3182),
(601698,26,7067),
(601698,27,3356),
(601698,28,3390),
(601698,29,4234),
(601698,30,4235),
(601698,31,5637),
/*Leatherworking Recipes*/
(601699,0,7288),
(601699,1,5083),
(601699,2,2407),
(601699,3,2408),
(601699,4,6710),
(601699,5,5786),
(601699,6,2406),
(601699,7,6474),
(601699,8,5787),
(601699,9,2409),
(601699,10,4293),
(601699,11,20576),
(601699,12,7289),
(601699,13,5972),
(601699,14,6475),
(601699,15,6476),
(601699,16,7360),
(601699,17,4294),
(601699,18,7290),
(601699,19,7362),
(601699,20,7361),
(601699,21,4296),
(601699,22,7363),
(601699,23,7364),
(601699,24,4297),
(601699,25,18731),
/*Tailoring Materials*/
(601700,0,2589),
(601700,1,2996),
(601700,2,2320),
(601700,3,2324),
(601700,4,2318),
(601700,5,2604),
(601700,6,6260),
(601700,7,2605),
(601700,8,2321),
(601700,9,2592),
(601700,10,2997),
(601700,11,5498),
(601700,12,4340),
(601700,13,2319),
(601700,14,4306),
(601700,15,4305),
(601700,16,3182),
(601700,17,4234),
(601700,18,929),
/*Tailoring Recipes*/
(601701,0,2598),
(601701,1,6271),
(601701,2,6270),
(601701,3,5771),
(601701,4,6272),
(601701,5,4345),
(601701,6,4292),
(601701,7,4346),
(601701,8,6274),
(601701,9,2601),
(601701,10,5772),
(601701,11,6275),
(601701,12,10316),
(601701,13,6391),
(601701,14,6390),
(601701,15,4347),
(601701,16,4349),
(601701,17,4348),
(601701,18,14627),
(601701,19,4350),
(601701,20,7092),
(601701,21,7114),
(601701,22,7091),
(601701,23,5773),
/*Ranged Weapons*/
(601702,0,6469),
(601702,1,20438),
(601702,2,20437),
(601702,3,3039),
(601702,4,13136),
(601702,5,4372),
(601702,6,29201),
(601702,7,29584),
(601702,8,5198),
(601702,9,12984),
(601702,10,5243),
(601702,11,11288),
/*Mounts*/
(601703,0, 29465),
(601703,1, 29471),
(601703,2, 29468),
(601703,3, 29467),
(601703,4, 35906),
(601703,5, 29466),
(601703,6, 29469),
(601703,7, 29470),
(601703,8, 29472),
(601703,9, 34129);
-- ######################################################--
-- TRAINER SPELLS
-- ######################################################--
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
('60151','28672','20000','171','325','68'),
('60151','28675','20000','171','325','68'),
('60151','28677','20000','171','325','68'),
('60151','2275','10','0','0','5'),
('60151','2280','500','171','50','10'),
('60151','2331','100','171','25','0'),
('60151','2332','150','171','40','0'),
('60151','2334','250','171','50','0'),
('60151','2337','1000','171','55','0'),
('60151','3170','50','171','15','0'),
('60151','3171','500','171','90','0'),
('60151','3173','1500','171','120','0'),
('60151','3176','1500','171','125','0'),
('60151','3177','2000','171','130','0'),
('60151','3447','4000','171','110','0'),
('60151','3448','5000','171','165','0'),
('60151','3450','6000','171','175','0'),
('60151','3452','5000','171','160','0'),
('60151','3465','5000','171','125','20'),
('60151','7179','450','171','90','0'),
('60151','7181','5000','171','155','0'),
('60151','7836','250','171','80','0'),
('60151','7837','1000','171','130','0'),
('60151','7841','1000','171','100','0'),
('60151','7845','3000','171','140','0'),
('60151','11448','9000','171','205','0'),
('60151','11449','6500','171','185','0'),
('60151','11450','7500','171','195','0'),
('60151','11451','8000','171','205','0'),
('60151','11457','10000','171','215','0'),
('60151','11460','5000','171','230','0'),
('60151','11461','10000','171','235','0'),
('60151','11465','12000','171','235','0'),
('60151','11467','12000','171','240','0'),
('60151','11478','14000','171','250','0'),
('60151','11612','50000','171','200','35'),
('60151','12609','8000','171','200','0'),
('60151','15833','10000','171','230','0'),
('60151','17551','15000','171','250','0'),
('60151','17552','15000','171','255','0'),
('60151','17553','15000','171','260','0'),
('60151','17555','15000','171','270','0'),
('60151','17556','20000','171','275','0'),
('60151','17557','20000','171','275','0'),
('60151','17572','20000','171','285','0'),
('60151','17573','20000','171','285','0'),
('60151','22808','10000','171','215','0'),
('60151','28544','25000','171','305','0'),
('60151','28545','25000','171','310','0'),
('60151','28551','50000','171','325','0'),
('60151','28597','100000','171','275','50'),
('60151','33732','20000','171','300','0'),
('60151','33733','25000','171','310','0'),
('60151','33738','20000','171','300','0'),
('60151','33740','20000','171','300','0'),
('60151','33741','30000','171','315','0'),
('60151','38070','20000','171','325','0'),
('60151','39636','25000','171','310','0'),
('60151','39638','30000','171','320','0'),
('60151','45061','30000','171','325','0'),
('60151','53042','10000','171','50','0'),
('60151','63732','2000','171','135','0'),
('60151','51303','350000','171','350','65'),
('60151','53812','60000','171','375','0'),
('60151','53836','150000','171','405','0'),
('60151','53837','150000','171','410','0'),
('60151','53838','40000','171','350','0'),
('60151','53839','40000','171','360','0'),
('60151','53840','120000','171','395','0'),
('60151','53841','40000','171','355','0'),
('60151','53842','40000','171','365','0'),
('60151','53847','65000','171','385','0'),
('60151','53848','60000','171','375','0'),
('60151','53898','120000','171','390','0'),
('60151','53899','60000','171','375','0'),
('60151','53900','120000','171','380','0'),
('60151','53901','180000','171','435','0'),
('60151','53902','150000','171','435','0'),
('60151','53903','180000','171','435','0'),
('60151','53905','120000','171','395','0'),
('60151','54213','150000','171','435','0'),
('60151','54218','120000','171','385','0'),
('60151','57425','150000','171','430','0'),
('60151','57427','150000','171','425','0'),
('60151','58868','150000','171','410','0'),
('60151','58871','150000','171','410','0'),
('60151','60350','150000','171','395','0'),
('60151','60367','120000','171','395','0'),
('60151','60396','200000','171','400','0'),
('60151','60403','200000','171','400','0'),
('60151','60405','200000','171','400','0'),
('60151','60893','200000','171','400','0'),
('60151','62213','120000','171','385','0'),
('60151','62409','60000','171','375','0'),
('60151','66658','150000','171','450','0'),
('60151','66660','150000','171','450','0'),
('60151','66662','150000','171','450','0'),
('60151','66663','150000','171','450','0'),
('60151','66664','150000','171','450','0'),
('60151','67025','100000','171','425','0'),
('60152','16642','10000','164','250','0'),
('60152','16643','10000','164','250','0'),
('60152','16644','10000','164','255','0'),
('60152','16652','10000','164','280','0'),
('60152','16653','10000','164','280','0'),
('60152','16662','12000','164','300','0'),
('60152','16969','15000','164','275','0'),
('60152','16971','15000','164','280','0'),
('60152','9787','20000','164','200','40'),
('60152','9788','20000','164','200','40'),
('60152','2020','10','0','0','5'),
('60152','2021','500','164','50','10'),
('60152','2661','100','164','35','0'),
('60152','2662','50','164','1','0'),
('60152','2664','500','164','90','0'),
('60152','2665','100','164','65','0'),
('60152','2666','200','164','70','0'),
('60152','2668','300','164','105','0'),
('60152','2670','500','164','105','0'),
('60152','2672','500','164','120','0'),
('60152','2674','1000','164','125','0'),
('60152','2675','1000','164','145','0'),
('60152','2737','50','164','15','0'),
('60152','2738','50','164','20','0'),
('60152','2739','50','164','25','0'),
('60152','2740','200','164','110','0'),
('60152','2741','200','164','115','0'),
('60152','2742','200','164','120','0'),
('60152','3116','100','164','65','0'),
('60152','3117','1000','164','125','0'),
('60152','3292','500','164','95','0'),
('60152','3293','250','164','35','0'),
('60152','3294','500','164','70','0'),
('60152','3296','1000','164','130','0'),
('60152','3319','50','164','20','0'),
('60152','3320','100','164','25','0'),
('60152','3323','100','164','40','0'),
('60152','3324','200','164','45','0'),
('60152','3326','250','164','75','0'),
('60152','3328','500','164','110','0'),
('60152','3331','500','164','130','0'),
('60152','3333','1000','164','135','0'),
('60152','3337','1000','164','125','0'),
('60152','3491','600','164','105','0'),
('60152','3501','1000','164','165','0'),
('60152','3502','1250','164','170','0'),
('60152','3506','5000','164','155','0'),
('60152','3508','7500','164','180','0'),
('60152','3539','5000','164','125','20'),
('60152','6517','800','164','110','0'),
('60152','7223','1000','164','185','0'),
('60152','7408','300','164','65','0'),
('60152','7817','200','164','95','0'),
('60152','7818','100','164','100','0'),
('60152','8768','250','164','150','0'),
('60152','8880','100','164','30','0'),
('60152','9786','50000','164','200','35'),
('60152','9916','2500','164','200','0'),
('60152','9918','2500','164','200','0'),
('60152','9920','2500','164','200','0'),
('60152','9921','2500','164','200','0'),
('60152','9926','5000','164','205','0'),
('60152','9928','5000','164','205','0'),
('60152','9931','5000','164','210','0'),
('60152','9935','5000','164','215','0'),
('60152','9959','15000','164','230','0'),
('60152','9961','15000','164','230','0'),
('60152','9968','20000','164','235','0'),
('60152','9983','100','164','30','0'),
('60152','9985','250','164','125','0'),
('60152','9986','500','164','130','0'),
('60152','9987','500','164','135','0'),
('60152','9993','10000','164','210','0'),
('60152','10001','15000','164','230','0'),
('60152','14379','250','164','150','0'),
('60152','14380','2500','164','200','0'),
('60152','15972','7500','164','180','0'),
('60152','16639','10000','164','250','0'),
('60152','16640','10000','164','250','0'),
('60152','16641','10000','164','250','0'),
('60152','19666','100','164','100','0'),
('60152','19667','250','164','150','0'),
('60152','19668','2500','164','200','0'),
('60152','19669','10000','164','275','0'),
('60152','20201','10000','164','275','0'),
('60152','29545','15000','164','300','0'),
('60152','29547','15000','164','305','0'),
('60152','29548','20000','164','315','0'),
('60152','29549','20000','164','315','0'),
('60152','29550','25000','164','325','0'),
('60152','29551','15000','164','300','0'),
('60152','29552','18000','164','310','0'),
('60152','29553','20000','164','315','0'),
('60152','29556','22000','164','320','0'),
('60152','29557','18000','164','310','0'),
('60152','29558','20000','164','315','0'),
('60152','29565','22000','164','320','0'),
('60152','29654','15000','164','300','0'),
('60152','29845','100000','164','275','50'),
('60152','32284','25000','164','325','0'),
('60152','32655','10000','164','300','0'),
('60152','34607','15000','164','300','0'),
('60152','34979','600','164','100','0'),
('60152','34981','7500','164','200','0'),
('60152','34982','10000','164','300','0'),
('60152','34983','50000','164','350','0'),
('60152','51298','350000','164','350','65'),
('60152','52567','30000','164','370','0'),
('60152','52568','30000','164','350','0'),
('60152','52569','30000','164','350','0'),
('60152','52570','30000','164','375','0'),
('60152','52571','30000','164','370','0'),
('60152','52572','30000','164','360','0'),
('60152','54550','30000','164','360','0'),
('60152','54551','40000','164','395','0'),
('60152','54552','40000','164','400','0'),
('60152','54553','40000','164','400','0'),
('60152','54554','40000','164','395','0'),
('60152','54555','40000','164','405','0'),
('60152','54556','40000','164','405','0'),
('60152','54557','40000','164','390','0'),
('60152','54917','30000','164','375','0'),
('60152','54918','30000','164','380','0'),
('60152','54941','30000','164','385','0'),
('60152','54944','30000','164','385','0'),
('60152','54945','35000','164','390','0'),
('60152','54946','30000','164','395','0'),
('60152','54947','35000','164','395','0'),
('60152','54948','30000','164','400','0'),
('60152','54949','30000','164','400','0'),
('60152','55013','40000','164','390','0'),
('60152','55014','35000','164','410','0'),
('60152','55015','40000','164','415','0'),
('60152','55017','40000','164','410','0'),
('60152','55055','40000','164','395','0'),
('60152','55056','40000','164','400','0'),
('60152','55057','40000','164','405','0'),
('60152','55058','45000','164','415','0'),
('60152','55174','50000','164','390','0'),
('60152','55177','50000','164','395','0'),
('60152','55179','50000','164','400','0'),
('60152','55181','50000','164','405','0'),
('60152','55182','40000','164','410','0'),
('60152','55200','35000','164','380','0'),
('60152','55201','35000','164','380','0'),
('60152','55202','35000','164','385','0'),
('60152','55203','35000','164','385','0'),
('60152','55204','35000','164','390','0'),
('60152','55206','40000','164','405','0'),
('60152','55298','45000','164','420','0'),
('60152','55300','45000','164','420','0'),
('60152','55301','45000','164','420','0'),
('60152','55302','45000','164','425','0'),
('60152','55303','45000','164','425','0'),
('60152','55304','45000','164','425','0'),
('60152','55305','45000','164','420','0'),
('60152','55306','45000','164','420','0'),
('60152','55307','45000','164','420','0'),
('60152','55308','45000','164','420','0'),
('60152','55309','45000','164','420','0'),
('60152','55310','45000','164','425','0'),
('60152','55311','45000','164','425','0'),
('60152','55312','45000','164','425','0'),
('60152','55369','180000','164','440','0'),
('60152','55370','150000','164','440','0'),
('60152','55371','150000','164','440','0'),
('60152','55372','120000','164','440','0'),
('60152','55373','120000','164','440','0'),
('60152','55374','120000','164','440','0'),
('60152','55375','120000','164','440','0'),
('60152','55376','120000','164','440','0'),
('60152','55377','120000','164','440','0'),
('60152','55628','45000','164','400','0'),
('60152','55641','45000','164','400','0'),
('60152','55656','50000','164','415','0'),
('60152','55732','42000','164','420','0'),
('60152','55834','30000','164','360','0'),
('60152','55835','30000','164','370','0'),
('60152','55839','42000','164','420','0'),
('60152','56234','150000','164','440','0'),
('60152','56280','40000','164','410','0'),
('60152','56357','42000','164','420','0'),
('60152','56400','150000','164','440','0'),
('60152','56549','45000','164','420','0'),
('60152','56550','45000','164','420','0'),
('60152','56551','45000','164','420','0'),
('60152','56552','45000','164','420','0'),
('60152','56553','45000','164','420','0'),
('60152','56554','45000','164','425','0'),
('60152','56555','45000','164','425','0'),
('60152','56556','45000','164','425','0'),
('60152','59405','30000','164','350','0'),
('60152','59406','45000','164','430','0'),
('60152','59436','40000','164','395','0'),
('60152','59438','40000','164','400','0'),
('60152','59440','40000','164','405','0'),
('60152','59441','45000','164','415','0'),
('60152','59442','40000','164','410','0'),
('60152','61008','120000','164','425','0'),
('60152','61009','120000','164','420','0'),
('60152','61010','120000','164','420','0'),
('60152','63182','150000','164','440','0'),
('60153','7428','100','333','20','0'),
('60153','7414','10','0','0','5'),
('60153','7415','500','333','50','10'),
('60153','7416','5000','333','125','20'),
('60153','7420','50','333','15','0'),
('60153','7426','100','333','40','0'),
('60153','7454','100','333','45','0'),
('60153','7457','250','333','50','0'),
('60153','7745','500','333','100','0'),
('60153','7748','250','333','60','0'),
('60153','7771','200','333','70','0'),
('60153','7779','400','333','80','0'),
('60153','7788','500','333','90','0'),
('60153','7795','1000','333','100','0'),
('60153','7857','1000','333','120','0'),
('60153','7861','1250','333','125','0'),
('60153','7863','1400','333','125','0'),
('60153','13378','600','333','105','0'),
('60153','13421','800','333','115','0'),
('60153','13485','1500','333','130','0'),
('60153','13501','1500','333','130','0'),
('60153','13503','2000','333','140','0'),
('60153','13529','2400','333','145','0'),
('60153','13538','2500','333','140','0'),
('60153','13607','2400','333','145','0'),
('60153','13622','2500','333','150','0'),
('60153','13626','2500','333','150','0'),
('60153','13628','2500','333','150','0'),
('60153','13631','2600','333','155','0'),
('60153','13635','2600','333','155','0'),
('60153','13637','2800','333','160','0'),
('60153','13640','2700','333','160','0'),
('60153','13642','2800','333','165','0'),
('60153','13644','2800','333','170','0'),
('60153','13648','2800','333','170','0'),
('60153','13657','3000','333','175','0'),
('60153','13659','3200','333','180','0'),
('60153','13661','3600','333','180','0'),
('60153','13663','3800','333','185','0'),
('60153','13693','4000','333','195','0'),
('60153','13695','4000','333','200','0'),
('60153','13700','4000','333','200','0'),
('60153','13702','4000','333','200','0'),
('60153','13746','4200','333','205','0'),
('60153','13794','4200','333','205','0'),
('60153','13815','4400','333','210','0'),
('60153','13822','4400','333','210','0'),
('60153','13836','4600','333','215','0'),
('60153','13858','4800','333','220','0'),
('60153','13887','5000','333','225','0'),
('60153','13890','5000','333','225','0'),
('60153','13905','5400','333','230','0'),
('60153','13917','5400','333','230','0'),
('60153','13921','50000','333','200','35'),
('60153','13935','5800','333','235','0'),
('60153','13937','6200','333','240','0'),
('60153','13939','6200','333','240','0'),
('60153','13941','6200','333','245','0'),
('60153','13943','6200','333','245','0'),
('60153','13948','6500','333','250','0'),
('60153','14293','50','333','10','0'),
('60153','14807','200','333','70','0'),
('60153','14809','2600','333','155','0'),
('60153','14810','3000','333','175','0'),
('60153','17180','10000','333','250','0'),
('60153','17181','10000','333','250','0'),
('60153','20008','10000','333','255','0'),
('60153','20012','10000','333','270','0'),
('60153','20013','20000','333','295','0'),
('60153','20014','10000','333','265','0'),
('60153','20016','15000','333','280','0'),
('60153','20023','20000','333','295','0'),
('60153','20028','15000','333','290','0'),
('60153','27899','15000','333','305','0'),
('60153','27905','15000','333','315','0'),
('60153','27944','15000','333','310','0'),
('60153','27957','17500','333','315','0'),
('60153','27961','15000','333','310','0'),
('60153','28027','40000','333','325','0'),
('60153','28028','80000','333','350','0'),
('60153','28030','100000','333','275','50'),
('60153','32664','10000','333','300','0'),
('60153','33990','20000','333','320','0'),
('60153','33991','12500','333','300','0'),
('60153','33993','15000','333','305','0'),
('60153','33995','25000','333','340','0'),
('60153','33996','15000','333','310','0'),
('60153','34001','15000','333','305','0'),
('60153','34002','15000','333','300','0'),
('60153','34004','15000','333','310','0'),
('60153','42613','1000','333','300','0'),
('60153','42615','40000','333','335','0'),
('60153','44383','30000','333','330','0'),
('60153','44555','50000','333','375','60'),
('60153','44616','100000','333','400','60'),
('60153','47900','150000','333','425','60'),
('60153','63746','5000','333','225','0'),
('60153','69412','150000','333','445','60'),
('60153','27958','50000','333','350','60'),
('60153','32667','50000','333','375','35'),
('60153','44484','150000','333','405','60'),
('60153','44488','150000','333','410','60'),
('60153','44489','150000','333','420','60'),
('60153','44492','100000','333','395','60'),
('60153','44500','100000','333','395','60'),
('60153','44506','50000','333','375','60'),
('60153','44508','150000','333','410','60'),
('60153','44509','150000','333','420','60'),
('60153','44510','150000','333','410','60'),
('60153','44513','100000','333','395','60'),
('60153','44528','90000','333','385','60'),
('60153','44529','150000','333','415','60'),
('60153','44582','100000','333','395','60'),
('60153','44584','150000','333','405','60'),
('60153','44589','150000','333','415','60'),
('60153','44592','50000','333','360','60'),
('60153','44593','150000','333','420','60'),
('60153','44598','150000','333','415','60'),
('60153','44623','50000','333','370','60'),
('60153','44629','100000','333','395','60'),
('60153','44630','80000','333','390','60'),
('60153','44633','150000','333','410','60'),
('60153','44635','100000','333','395','60'),
('60153','44636','100000','333','400','60'),
('60153','44645','100000','333','400','60'),
('60153','47766','100000','333','400','60'),
('60153','51312','350000','333','350','65'),
('60153','59636','100000','333','400','60'),
('60153','60606','50000','333','375','60'),
('60153','60609','50000','333','350','60'),
('60153','60616','50000','333','360','60'),
('60153','60619','150000','333','425','0'),
('60153','60621','80000','333','380','60'),
('60153','60623','90000','333','385','60'),
('60153','60653','100000','333','395','60'),
('60153','60663','150000','333','420','60'),
('60153','60668','150000','333','425','60'),
('60153','60767','100000','333','440','60'),
('60153','62959','90000','333','385','60'),
('60154','3922','115','202','30','0'),
('60154','3923','130','202','30','0'),
('60154','3924','150','202','50','0'),
('60154','3925','150','202','50','0'),
('60154','3926','225','202','65','0'),
('60154','3929','250','202','75','0'),
('60154','3930','250','202','75','0'),
('60154','3931','250','202','75','0'),
('60154','3932','300','202','85','0'),
('60154','3934','400','202','100','0'),
('60154','3936','420','202','105','0'),
('60154','3937','450','202','105','0'),
('60154','3938','450','202','105','0'),
('60154','3941','500','202','120','0'),
('60154','3942','500','202','125','0'),
('60154','3945','500','202','125','0'),
('60154','3946','500','202','125','0'),
('60154','3947','300','202','125','0'),
('60154','3949','550','202','130','0'),
('60154','36015','600','202','140','0'),
('60154','3953','600','202','145','0'),
('60154','3955','750','202','150','0'),
('60154','3956','450','202','150','0'),
('60154','3958','800','202','160','0'),
('60154','3961','900','202','170','0'),
('60154','3962','1000','202','175','0'),
('60154','3963','1000','202','175','0'),
('60154','3965','1200','202','185','0'),
('60154','3967','1400','202','190','0'),
('60154','3973','300','202','90','0'),
('60154','3977','200','202','60','0'),
('60154','3978','475','202','110','0'),
('60154','4039','10','0','0','5'),
('60154','4040','500','202','50','10'),
('60154','4041','5000','202','125','20'),
('60154','6458','400','202','135','0'),
('60154','7430','150','202','50','0'),
('60154','8334','300','202','100','0'),
('60154','9271','500','202','150','0'),
('60154','12584','1000','202','150','0'),
('60154','12585','1000','202','175','0'),
('60154','12586','1000','202','175','0'),
('60154','12589','1300','202','195','0'),
('60154','12590','1000','202','175','0'),
('60154','12591','1500','202','200','0'),
('60154','12594','1600','202','205','0'),
('60154','12595','1600','202','205','0'),
('60154','12596','1700','202','210','0'),
('60154','12599','1800','202','215','0'),
('60154','12603','1800','202','215','0'),
('60154','12615','2500','202','225','0'),
('60154','12618','2200','202','230','0'),
('60154','12619','2400','202','235','0'),
('60154','12621','2800','202','245','0'),
('60154','12622','2800','202','245','0'),
('60154','12657','50000','202','200','35'),
('60154','15255','1500','202','200','0'),
('60154','19567','4000','202','250','0'),
('60154','19788','4000','202','250','0'),
('60154','19790','10000','202','260','0'),
('60154','19791','5000','202','260','0'),
('60154','19792','10000','202','260','0'),
('60154','19794','20000','202','270','0'),
('60154','19795','10000','202','275','0'),
('60154','19800','10000','202','285','0'),
('60154','19825','20000','202','290','0'),
('60154','23070','5000','202','250','0'),
('60154','23071','5000','202','260','0'),
('60154','30303','10000','202','300','0'),
('60154','30304','10000','202','300','0'),
('60154','30305','10000','202','300','0'),
('60154','30306','20000','202','325','0'),
('60154','30307','50000','202','340','0'),
('60154','30308','50000','202','340','0'),
('60154','30309','50000','202','340','0'),
('60154','30310','15000','202','300','0'),
('60154','30311','25000','202','325','0'),
('60154','30312','20000','202','320','0'),
('60154','30346','15000','202','310','0'),
('60154','30351','100000','202','275','50'),
('60154','39971','20000','202','335','0'),
('60154','39973','50000','202','325','0'),
('60154','40274','50000','202','350','0'),
('60154','44157','180000','202','375','0'),
('60154','41307','50000','202','375','0'),
('60154','41311','50000','202','350','0'),
('60154','41312','50000','202','350','0'),
('60154','41314','50000','202','350','0'),
('60154','41315','50000','202','350','0'),
('60154','41316','50000','202','350','0'),
('60154','41317','50000','202','350','0'),
('60154','41318','50000','202','350','0'),
('60154','41319','50000','202','350','0'),
('60154','41320','50000','202','350','0'),
('60154','41321','50000','202','350','0'),
('60154','44155','50000','202','300','60'),
('60154','51305','350000','202','350','65'),
('60154','53281','50000','202','350','0'),
('60154','54353','125000','202','400','0'),
('60154','54736','100000','202','390','0'),
('60154','54793','100000','202','380','0'),
('60154','54998','125000','202','400','0'),
('60154','54999','125000','202','400','0'),
('60154','55002','100000','202','380','0'),
('60154','55016','125000','202','405','0'),
('60154','56349','50000','202','350','0'),
('60154','56459','100000','202','375','0'),
('60154','56460','50000','202','350','0'),
('60154','56461','50000','202','375','0'),
('60154','56462','150000','202','435','0'),
('60154','56463','100000','202','375','0'),
('60154','56464','100000','202','375','0'),
('60154','56465','125000','202','420','0'),
('60154','56466','125000','202','420','0'),
('60154','56467','125000','202','420','0'),
('60154','56468','125000','202','405','0'),
('60154','56469','150000','202','425','0'),
('60154','56470','150000','202','425','0'),
('60154','56471','100000','202','390','0'),
('60154','56472','150000','202','425','0'),
('60154','56474','125000','202','410','0'),
('60154','56475','125000','202','415','0'),
('60154','56476','125000','202','410','0'),
('60154','56477','125000','202','415','0'),
('60154','56478','200000','202','430','0'),
('60154','56479','200000','202','450','0'),
('60154','56480','150000','202','440','0'),
('60154','56481','150000','202','440','0'),
('60154','56483','150000','202','440','0'),
('60154','56484','150000','202','440','0'),
('60154','56486','150000','202','440','0'),
('60154','56487','150000','202','440','0'),
('60154','56574','150000','202','440','0'),
('60154','60874','200000','202','450','0'),
('60154','61471','100000','202','390','0'),
('60154','61481','125000','202','420','0'),
('60154','61482','125000','202','420','0'),
('60154','61483','125000','202','420','0'),
('60154','62271','150000','202','440','0'),
('60154','63750','5000','202','250','0'),
('60154','63765','100000','202','380','0'),
('60154','63770','125000','202','400','0'),
('60154','67326','100000','202','410','0'),
('60154','67839','100000','202','410','0'),
('60154','67920','150000','202','435','0'),
('60154','8895','2200','202','225','0'),
('60154','12715','1500','202','205','0'),
('60154','12716','1500','202','205','0'),
('60154','12717','1500','202','205','0'),
('60154','12718','1500','202','205','0'),
('60154','12754','2250','202','235','0'),
('60154','12755','2400','202','230','0'),
('60154','12758','2600','202','245','0'),
('60154','12760','1500','202','205','0'),
('60154','12908','2800','202','240','0'),
('60154','13240','1500','202','205','0'),
('60154','20222','20000','202','200','30'),
('60154','30558','25000','202','325','65'),
('60154','30560','35000','202','340','0'),
('60154','30563','50000','202','350','70'),
('60154','30565','100000','202','375','70'),
('60154','30566','100000','202','375','70'),
('60154','56514','150000','202','425','70'),
('60154','12759','2800','202','240','0'),
('60154','12895','1500','202','200','0'),
('60154','12897','1500','202','210','0'),
('60154','12899','1500','202','205','0'),
('60154','12902','1800','202','210','0'),
('60154','12903','2000','202','215','0'),
('60154','12905','2200','202','225','0'),
('60154','12906','2400','202','230','0'),
('60154','12907','2600','202','235','0'),
('60154','20219','20000','202','200','30'),
('60154','30568','25000','202','325','0'),
('60154','30569','35000','202','340','0'),
('60154','30570','50000','202','350','0'),
('60154','30574','100000','202','375','0'),
('60154','30575','100000','202','375','0'),
('60154','56473','150000','202','425','0'),
('60155','11994','50000','182','200','25'),
('60155','2372','10','0','0','0'),
('60155','2373','500','182','50','0'),
('60155','28696','100000','182','275','50'),
('60155','3571','5000','182','125','10'),
('60155','50301','350000','182','350','55'),
('60156','45375','10','0','0','5'),
('60156','45376','6015','773','50','10'),
('60156','45377','4750','773','125','20'),
('60156','45378','47500','773','200','35'),
('60156','45379','100000','773','275','50'),
('60156','45380','350000','773','350','65'),
('60156','48121','380','773','100','0'),
('60156','48247','475','773','110','0'),
('60156','48248','47','773','35','0'),
('60156','50598','380','773','75','0'),
('60156','50599','712','773','165','0'),
('60156','50600','4275','773','215','0'),
('60156','50601','60165','773','260','0'),
('60156','50602','19000','773','310','0'),
('60156','50603','50000','773','360','0'),
('60156','50604','60000','773','410','0'),
('60156','50605','380','773','75','0'),
('60156','50606','712','773','160','0'),
('60156','50607','4275','773','210','0'),
('60156','50608','60165','773','255','0'),
('60156','50609','19000','773','295','0'),
('60156','50610','50000','773','355','0'),
('60156','50611','60000','773','405','0'),
('60156','50612','380','773','75','0'),
('60156','50614','712','773','155','0'),
('60156','50616','4275','773','205','0'),
('60156','50617','60165','773','250','0'),
('60156','50618','19000','773','290','0'),
('60156','50619','50000','773','350','0'),
('60156','50620','60000','773','400','0'),
('60156','52739','142','773','35','0'),
('60156','52840','380','773','75','0'),
('60156','52843','47','773','35','0'),
('60156','53462','285','773','75','0'),
('60156','56943','30000','773','350','0'),
('60156','56945','475','773','115','0'),
('60156','56948','712','773','150','0'),
('60156','56951','712','773','130','0'),
('60156','56952','20000','773','310','0'),
('60156','56953','6015','773','170','0'),
('60156','56955','285','773','80','0'),
('60156','56956','2850','773','200','0'),
('60156','56957','60165','773','260','0'),
('60156','56959','4275','773','220','0'),
('60156','56961','380','773','90','0'),
('60156','56963','285','773','85','0'),
('60156','56968','380','773','100','0'),
('60156','56971','475','773','115','0'),
('60156','56972','30000','773','335','0'),
('60156','56973','712','773','130','0'),
('60156','56974','712','773','155','0'),
('60156','56976','285','773','80','0'),
('60156','56978','380','773','90','0'),
('60156','56979','5700','773','225','0'),
('60156','56980','50000','773','375','0'),
('60156','56981','6015','773','175','0'),
('60156','56982','4275','773','205','0'),
('60156','56984','30000','773','325','0'),
('60156','56985','60165','773','280','0'),
('60156','56987','125000','773','400','0'),
('60156','56991','20000','773','315','0'),
('60156','56994','6015','773','175','0'),
('60156','56995','380','773','100','0'),
('60156','56997','475','773','115','0'),
('60156','57000','2850','773','200','0'),
('60156','57001','5700','773','225','0'),
('60156','57002','60165','773','260','0'),
('60156','57003','30000','773','350','0'),
('60156','57004','285','773','80','0'),
('60156','57005','712','773','130','0'),
('60156','57006','50000','773','375','0'),
('60156','57007','712','773','150','0'),
('60156','57008','20000','773','315','0'),
('60156','57009','380','773','90','0'),
('60156','57020','6015','773','180','0'),
('60156','57022','285','773','80','0'),
('60156','57023','4275','773','205','0'),
('60156','57024','5700','773','230','0'),
('60156','57025','60165','773','265','0'),
('60156','57026','20000','773','300','0'),
('60156','57027','380','773','90','0'),
('60156','57029','475','773','105','0'),
('60156','57030','475','773','120','0'),
('60156','57031','712','773','135','0'),
('60156','57032','712','773','155','0'),
('60156','57033','30000','773','335','0'),
('60156','57036','50000','773','375','0'),
('60156','57113','30000','773','340','0'),
('60156','57114','285','773','80','0'),
('60156','57119','380','773','95','0'),
('60156','57120','475','773','105','0'),
('60156','57121','475','773','120','0'),
('60156','57122','20000','773','305','0'),
('60156','57123','712','773','135','0'),
('60156','57125','712','773','160','0'),
('60156','57129','2850','773','185','0'),
('60156','57131','4275','773','210','0'),
('60156','57132','5700','773','235','0'),
('60156','57133','14250','773','285','0'),
('60156','57151','4275','773','220','0'),
('60156','57154','7125','773','240','0'),
('60156','57156','14250','773','285','0'),
('60156','57157','712','773','125','0'),
('60156','57158','380','773','95','0'),
('60156','57161','6015','773','170','0'),
('60156','57162','285','773','85','0'),
('60156','57163','475','773','110','0'),
('60156','57165','2850','773','190','0'),
('60156','57167','712','773','140','0'),
('60156','57168','20000','773','320','0'),
('60156','57172','30000','773','345','0'),
('60156','57183','5700','773','230','0'),
('60156','57184','475','773','105','0'),
('60156','57185','60165','773','270','0'),
('60156','57186','475','773','120','0'),
('60156','57187','20000','773','315','0'),
('60156','57188','712','773','135','0'),
('60156','57192','30000','773','350','0'),
('60156','57194','285','773','80','0'),
('60156','57196','380','773','95','0'),
('60156','57197','712','773','160','0'),
('60156','57198','50000','773','375','0'),
('60156','57200','6015','773','180','0'),
('60156','57201','4275','773','210','0'),
('60156','57210','60165','773','265','0'),
('60156','57213','14250','773','285','0'),
('60156','57216','60165','773','270','0'),
('60156','57219','60165','773','280','0'),
('60156','57221','20000','773','300','0'),
('60156','57222','30000','773','350','0'),
('60156','57224','30000','773','330','0'),
('60156','57225','50000','773','375','0'),
('60156','57226','20000','773','305','0'),
('60156','57227','30000','773','345','0'),
('60156','57236','20000','773','300','0'),
('60156','57238','475','773','110','0'),
('60156','57239','285','773','85','0'),
('60156','57240','712','773','125','0'),
('60156','57241','2850','773','185','0'),
('60156','57242','4275','773','215','0'),
('60156','57244','5700','773','235','0'),
('60156','57245','712','773','140','0'),
('60156','57246','380','773','95','0'),
('60156','57248','50000','773','375','0'),
('60156','57249','712','773','165','0'),
('60156','57251','60165','773','275','0'),
('60156','57252','30000','773','330','0'),
('60156','57257','30000','773','350','0'),
('60156','57259','285','773','85','0'),
('60156','57262','712','773','125','0'),
('60156','57265','475','773','110','0'),
('60156','57266','380','773','95','0'),
('60156','57269','712','773','140','0'),
('60156','57270','4275','773','215','0'),
('60156','57271','712','773','165','0'),
('60156','57272','60165','773','275','0'),
('60156','57274','7125','773','240','0'),
('60156','57275','30000','773','325','0'),
('60156','57277','2850','773','190','0'),
('60156','57703','380','773','85','0'),
('60156','57704','380','773','100','0'),
('60156','57706','712','773','125','0'),
('60156','57707','712','773','150','0'),
('60156','57708','712','773','175','0'),
('60156','57709','2850','773','200','0'),
('60156','57710','5700','773','225','0'),
('60156','57711','60165','773','250','0'),
('60156','57712','60165','773','275','0'),
('60156','57713','19000','773','290','0'),
('60156','57714','20000','773','325','0'),
('60156','57715','50000','773','350','0'),
('60156','57716','50000','773','375','0'),
('60156','58472','47','773','15','0'),
('60156','58473','380','773','85','0'),
('60156','58476','712','773','175','0'),
('60156','58478','4275','773','225','0'),
('60156','58480','60165','773','270','0'),
('60156','58481','19000','773','310','0'),
('60156','58482','50000','773','370','0'),
('60156','58483','60000','773','420','0'),
('60156','58484','47','773','15','0'),
('60156','58485','380','773','80','0'),
('60156','58486','712','773','170','0'),
('60156','58487','4275','773','220','0'),
('60156','58488','60165','773','265','0'),
('60156','58489','19000','773','305','0'),
('60156','58490','50000','773','365','0'),
('60156','58491','60000','773','415','0'),
('60156','58565','475','773','110','0'),
('60156','59338','20000','773','310','0'),
('60156','59339','20000','773','320','0'),
('60156','59340','30000','773','340','0'),
('60156','59387','2850','773','200','0'),
('60156','59475','712','773','125','0'),
('60156','59478','712','773','125','0'),
('60156','59480','712','773','125','0'),
('60156','59484','712','773','175','0'),
('60156','59486','712','773','175','0'),
('60156','59487','712','773','175','0'),
('60156','59488','5700','773','235','0'),
('60156','59489','5700','773','225','0'),
('60156','59490','5700','773','225','0'),
('60156','59491','5700','773','225','0'),
('60156','59493','60165','773','275','0'),
('60156','59494','60165','773','275','0'),
('60156','59495','20000','773','325','0'),
('60156','59496','20000','773','325','0'),
('60156','59497','50000','773','400','0'),
('60156','59498','50000','773','400','0'),
('60156','59499','2850','773','200','0'),
('60156','59500','50000','773','350','0'),
('60156','59501','100000','773','400','0'),
('60156','59502','60165','773','275','0'),
('60156','59503','20000','773','325','0'),
('60156','59504','50000','773','400','0'),
('60156','60336','2850','773','200','0'),
('60156','60337','50000','773','350','0'),
('60156','61117','75000','773','400','35'),
('60156','61118','75000','773','400','35'),
('60156','61119','75000','773','400','35'),
('60156','61120','75000','773','400','35'),
('60156','61177','100000','773','385','0'),
('60156','61288','6015','773','75','0'),
('60156','62162','50000','773','375','0'),
('60156','64053','50000','773','350','0'),
('60156','64258','10000','773','250','0'),
('60156','64259','10000','773','255','0'),
('60156','64260','10000','773','255','0'),
('60156','64261','10000','773','250','0'),
('60156','64262','10000','773','255','0'),
('60156','64266','10000','773','275','0'),
('60156','64267','10000','773','280','0'),
('60156','67600','400','773','100','0'),
('60156','69385','200000','773','440','0'),
('60157','25245','10','0','0','5'),
('60157','25246','500','755','50','10'),
('60157','25278','200','755','50','0'),
('60157','25280','200','755','50','0'),
('60157','25283','100','755','30','0'),
('60157','25284','400','755','60','0'),
('60157','25287','400','755','70','0'),
('60157','25305','1000','755','90','0'),
('60157','25317','600','755','80','0'),
('60157','25318','800','755','100','0'),
('60157','25321','1500','755','120','0'),
('60157','25490','300','755','50','0'),
('60157','25498','600','755','110','0'),
('60157','25613','1200','755','135','0'),
('60157','25615','1500','755','150','0'),
('60157','25620','2000','755','170','0'),
('60157','25621','2000','755','180','0'),
('60157','26872','2500','755','200','0'),
('60157','26874','5000','755','210','0'),
('60157','26876','3000','755','220','0'),
('60157','26880','3500','755','225','0'),
('60157','26883','4000','755','235','0'),
('60157','26885','5000','755','240','0'),
('60157','26902','10000','755','260','0'),
('60157','26903','10000','755','275','0'),
('60157','26907','10000','755','280','0'),
('60157','26908','12000','755','280','0'),
('60157','26911','15000','755','290','0'),
('60157','26916','20000','755','310','0'),
('60157','26926','50','755','5','0'),
('60157','26927','300','755','50','0'),
('60157','26928','100','755','30','0'),
('60157','28896','5000','755','125','20'),
('60157','28899','50000','755','200','35'),
('60157','28901','100000','755','275','50'),
('60157','28903','10000','755','300','0'),
('60157','28905','10000','755','305','0'),
('60157','28910','10000','755','300','0'),
('60157','28914','10000','755','315','0'),
('60157','28916','10000','755','300','0'),
('60157','28917','10000','755','305','0'),
('60157','28925','10000','755','300','0'),
('60157','28936','10000','755','325','0'),
('60157','28938','10000','755','300','0'),
('60157','28948','10000','755','325','0'),
('60157','28950','10000','755','300','0'),
('60157','28953','10000','755','305','0'),
('60157','31048','20000','755','310','0'),
('60157','31049','20000','755','310','0'),
('60157','31050','25000','755','320','0'),
('60157','31051','30000','755','335','0'),
('60157','31052','30000','755','335','0'),
('60157','31252','100','755','20','5'),
('60157','32178','100','755','20','0'),
('60157','32179','100','755','20','0'),
('60157','32801','200','755','50','0'),
('60157','32807','600','755','110','0'),
('60157','32808','2000','755','175','0'),
('60157','32809','3500','755','225','0'),
('60157','34069','10000','755','325','0'),
('60157','34590','10000','755','305','0'),
('60157','34955','2500','755','180','0'),
('60157','34959','3000','755','200','0'),
('60157','34960','10000','755','280','0'),
('60157','34961','10000','755','290','0'),
('60157','36523','600','755','75','0'),
('60157','36524','800','755','105','0'),
('60157','36525','4000','755','230','0'),
('60157','36526','10000','755','265','0'),
('60157','37818','500','755','65','0'),
('60157','38068','20000','755','325','0'),
('60157','38175','650','755','80','0'),
('60157','40514','8500','755','340','0'),
('60157','41414','10000','755','325','0'),
('60157','41415','10000','755','330','0'),
('60157','41418','30000','755','365','0'),
('60157','41420','8500','755','325','0'),
('60157','41429','10000','755','350','0'),
('60157','47280','30000','755','350','0'),
('60157','51310','350000','755','350','65'),
('60157','53831','10000','755','350','0'),
('60157','53832','10000','755','350','0'),
('60157','53834','10000','755','350','0'),
('60157','53835','10000','755','350','0'),
('60157','53843','10000','755','360','0'),
('60157','53844','10000','755','350','0'),
('60157','53845','10000','755','350','0'),
('60157','53852','10000','755','350','0'),
('60157','53853','10000','755','350','0'),
('60157','53854','10000','755','350','0'),
('60157','53855','10000','755','350','0'),
('60157','53856','10000','755','350','0'),
('60157','53859','10000','755','350','0'),
('60157','53860','10000','755','350','0'),
('60157','53861','10000','755','350','0'),
('60157','53862','10000','755','350','0'),
('60157','53863','10000','755','350','0'),
('60157','53864','10000','755','350','0'),
('60157','53866','10000','755','350','0'),
('60157','53867','10000','755','350','0'),
('60157','53868','10000','755','360','0'),
('60157','53870','10000','755','350','0'),
('60157','53871','10000','755','350','0'),
('60157','53872','10000','755','350','0'),
('60157','53873','10000','755','350','0'),
('60157','53874','10000','755','350','0'),
('60157','53876','10000','755','350','0'),
('60157','53878','10000','755','350','0'),
('60157','53880','10000','755','350','0'),
('60157','53881','10000','755','350','0'),
('60157','53882','10000','755','350','0'),
('60157','53883','10000','755','350','0'),
('60157','53886','10000','755','350','0'),
('60157','53887','10000','755','350','0'),
('60157','53889','10000','755','350','0'),
('60157','53890','10000','755','350','0'),
('60157','53891','10000','755','360','0'),
('60157','53892','10000','755','350','0'),
('60157','53893','10000','755','350','0'),
('60157','53894','10000','755','350','0'),
('60157','53916','10000','755','350','0'),
('60157','53918','10000','755','350','0'),
('60157','53920','10000','755','350','0'),
('60157','53922','10000','755','350','0'),
('60157','53923','10000','755','350','0'),
('60157','53925','10000','755','350','0'),
('60157','53926','10000','755','350','0'),
('60157','53927','10000','755','350','0'),
('60157','53928','10000','755','350','0'),
('60157','53930','10000','755','350','0'),
('60157','53931','10000','755','350','0'),
('60157','53934','10000','755','350','0'),
('60157','53940','10000','755','350','0'),
('60157','53941','10000','755','350','0'),
('60157','53947','100000','755','390','0'),
('60157','53953','100000','755','390','0'),
('60157','53956','100000','755','390','0'),
('60157','53969','100000','755','390','0'),
('60157','53989','100000','755','390','0'),
('60157','54007','100000','755','390','0'),
('60157','54017','10000','755','350','0'),
('60157','55386','120000','755','420','0'),
('60157','55394','120000','755','420','0'),
('60157','55399','120000','755','420','0'),
('60157','55402','120000','755','420','0'),
('60157','56193','30000','755','350','0'),
('60157','56194','30000','755','350','0'),
('60157','56195','120000','755','380','0'),
('60157','56196','80000','755','380','0'),
('60157','56197','100000','755','420','0'),
('60157','56199','150000','755','400','0'),
('60157','56201','150000','755','400','0'),
('60157','56202','150000','755','400','0'),
('60157','56203','150000','755','400','0'),
('60157','56205','10000','755','350','0'),
('60157','56206','20000','755','360','0'),
('60157','56208','20000','755','370','0'),
('60157','56530','20000','755','360','0'),
('60157','56531','100000','755','390','0'),
('60157','58141','30000','755','350','0'),
('60157','58142','30000','755','350','0'),
('60157','58143','30000','755','370','0'),
('60157','58144','30000','755','370','0'),
('60157','58145','50000','755','390','0'),
('60157','58146','50000','755','390','0'),
('60157','59759','150000','755','400','0'),
('60157','62242','150000','755','425','0'),
('60157','62941','10000','755','300','0'),
('60157','63743','3000','755','200','0'),
('60157','64725','100000','755','420','0'),
('60157','64726','100000','755','420','0'),
('60157','64727','100000','755','420','0'),
('60157','64728','100000','755','420','0'),
('60158','10482','2000','165','200','0'),
('60158','10487','2000','165','200','0'),
('60158','10499','3000','165','205','0'),
('60158','10507','3000','165','205','0'),
('60158','10511','3000','165','210','0'),
('60158','10518','3500','165','210','0'),
('60158','10548','4000','165','230','0'),
('60158','10552','4000','165','230','0'),
('60158','10556','4500','165','235','0'),
('60158','10558','4500','165','235','0'),
('60158','10619','10000','165','225','0'),
('60158','10621','10000','165','225','0'),
('60158','10630','10000','165','230','0'),
('60158','10632','10000','165','250','0'),
('60158','10647','10000','165','250','0'),
('60158','10650','10000','165','255','0'),
('60158','10656','20000','165','225','40'),
('60158','10658','20000','165','225','40'),
('60158','10660','20000','165','225','40'),
('60158','14930','4000','165','225','0'),
('60158','14932','4000','165','225','0'),
('60158','19047','5000','165','250','0'),
('60158','19052','10000','165','265','0'),
('60158','19055','10000','165','270','0'),
('60158','19058','5000','165','250','0'),
('60158','19065','10000','165','275','0'),
('60158','19071','10000','165','280','0'),
('60158','19072','10000','165','280','0'),
('60158','19082','15000','165','290','0'),
('60158','19083','15000','165','290','0'),
('60158','19091','15000','165','300','0'),
('60158','19092','15000','165','300','0'),
('60158','19098','15000','165','300','0'),
('60158','19102','15000','165','300','0'),
('60158','19103','15000','165','300','0'),
('60158','20648','500','165','100','0'),
('60158','20649','1000','165','150','0'),
('60158','20650','4000','165','200','0'),
('60158','2153','50','165','15','0'),
('60158','2159','250','165','85','0'),
('60158','2160','100','165','40','0'),
('60158','2161','100','165','55','0'),
('60158','2162','100','165','60','0'),
('60158','2165','250','165','100','0'),
('60158','2166','450','165','120','0'),
('60158','2167','350','165','100','0'),
('60158','2168','350','165','110','0'),
('60158','22331','5000','165','250','0'),
('60158','24654','50000','165','300','0'),
('60158','24655','30000','165','280','0'),
('60158','2154','500','165','50','10'),
('60158','32454','10000','165','300','0'),
('60158','32455','20000','165','325','0'),
('60158','32456','15000','165','300','0'),
('60158','32462','15000','165','300','0'),
('60158','32463','20000','165','310','0'),
('60158','32464','20000','165','320','0'),
('60158','32465','25000','165','335','0'),
('60158','32466','15000','165','300','0'),
('60158','32467','20000','165','310','0'),
('60158','32468','20000','165','325','0'),
('60158','32469','25000','165','335','0'),
('60158','32470','15000','165','300','0'),
('60158','32471','20000','165','315','0'),
('60158','32472','20000','165','320','0'),
('60158','32473','25000','165','330','0'),
('60158','32478','15000','165','300','0'),
('60158','32479','20000','165','310','0'),
('60158','32480','20000','165','320','0'),
('60158','32481','25000','165','330','0'),
('60158','35540','20000','165','340','0'),
('60158','35575','100000','165','375','0'),
('60158','35576','100000','165','375','0'),
('60158','35577','100000','165','375','0'),
('60158','35580','100000','165','375','0'),
('60158','35582','100000','165','375','0'),
('60158','35584','100000','165','375','0'),
('60158','35585','100000','165','375','0'),
('60158','35587','100000','165','375','0'),
('60158','35588','100000','165','375','0'),
('60158','35589','100000','165','375','0'),
('60158','35590','100000','165','375','0'),
('60158','35591','100000','165','375','0'),
('60158','36074','10000','165','260','0'),
('60158','36075','10000','165','260','0'),
('60158','36076','10000','165','260','0'),
('60158','36077','20000','165','330','0'),
('60158','36078','20000','165','330','0'),
('60158','36079','40000','165','330','0'),
('60158','3753','75','165','25','0'),
('60158','3756','150','165','55','0'),
('60158','3759','200','165','75','0'),
('60158','3760','600','165','150','0'),
('60158','3761','350','165','85','0'),
('60158','3763','300','165','80','0'),
('60158','3764','500','165','145','0'),
('60158','3766','400','165','125','0'),
('60158','3768','500','165','130','0'),
('60158','3770','500','165','135','0'),
('60158','3774','1000','165','160','0'),
('60158','3776','1200','165','180','0'),
('60158','3780','750','165','150','0'),
('60158','3816','50','165','35','0'),
('60158','3817','200','165','100','0'),
('60158','3818','500','165','150','0'),
('60158','44343','18000','165','315','0'),
('60158','44344','18000','165','315','0'),
('60158','44770','50000','165','350','0'),
('60158','44970','50000','165','350','0'),
('60158','45100','15000','165','300','0'),
('60158','6661','2000','165','190','0'),
('60158','7135','400','165','115','0'),
('60158','7147','1000','165','160','0'),
('60158','7151','1200','165','175','0'),
('60158','7156','2400','165','190','0'),
('60158','9060','100','165','30','0'),
('60158','9062','100','165','30','0'),
('60158','9065','150','165','70','0'),
('60158','9068','400','165','95','0'),
('60158','9074','500','165','120','0'),
('60158','9145','500','165','125','0'),
('60158','9193','500','165','150','0'),
('60158','9194','500','165','150','0'),
('60158','9196','1500','165','175','0'),
('60158','9198','2000','165','180','0'),
('60158','9201','2000','165','185','0'),
('60158','9206','2500','165','195','0'),
('60158','2155','10','0','0','5'),
('60158','3812','5000','165','125','20'),
('60158','10663','50000','165','200','35'),
('60158','32550','100000','165','275','50'),
('60158','50936','80000','165','390','0'),
('60158','50938','30000','165','375','0'),
('60158','50939','30000','165','370','0'),
('60158','50940','30000','165','380','0'),
('60158','50941','30000','165','370','0'),
('60158','50942','30000','165','375','0'),
('60158','50943','30000','165','380','0'),
('60158','50944','30000','165','370','0'),
('60158','50945','30000','165','375','0'),
('60158','50946','30000','165','380','0'),
('60158','50947','30000','165','375','0'),
('60158','50948','30000','165','370','0'),
('60158','50949','30000','165','380','0'),
('60158','50950','30000','165','375','0'),
('60158','50951','30000','165','370','0'),
('60158','50952','30000','165','375','0'),
('60158','50953','30000','165','380','0'),
('60158','50954','30000','165','380','0'),
('60158','50955','30000','165','370','0'),
('60158','50956','30000','165','375','0'),
('60158','50957','30000','165','370','0'),
('60158','50958','30000','165','380','0'),
('60158','50959','30000','165','370','0'),
('60158','50960','30000','165','380','0'),
('60158','50961','30000','165','375','0'),
('60158','50962','50000','165','350','0'),
('60158','50963','80000','165','395','0'),
('60158','50964','50000','165','405','0'),
('60158','50965','80000','165','425','0'),
('60158','50966','50000','165','400','0'),
('60158','50967','80000','165','425','0'),
('60158','51301','350000','165','350','65'),
('60158','51568','100000','165','400','0'),
('60158','51569','80000','165','395','0'),
('60158','51570','80000','165','395','0'),
('60158','51571','30000','165','385','0'),
('60158','51572','30000','165','385','0'),
('60158','55199','80000','165','395','0'),
('60158','57683','70000','165','400','0'),
('60158','57690','70000','165','400','0'),
('60158','57691','70000','165','400','0'),
('60158','60583','50000','165','405','0'),
('60158','60584','50000','165','400','0'),
('60158','60599','30000','165','385','0'),
('60158','60600','30000','165','385','0'),
('60158','60601','80000','165','395','0'),
('60158','60604','80000','165','395','0'),
('60158','60605','100000','165','400','0'),
('60158','60607','30000','165','385','0'),
('60158','60608','30000','165','385','0'),
('60158','60611','80000','165','395','0'),
('60158','60613','80000','165','395','0'),
('60158','60620','100000','165','400','0'),
('60158','60622','30000','165','385','0'),
('60158','60624','30000','165','385','0'),
('60158','60627','80000','165','395','0'),
('60158','60629','80000','165','395','0'),
('60158','60630','80000','165','400','0'),
('60158','60631','80000','165','380','0'),
('60158','60637','200000','165','440','0'),
('60158','60640','200000','165','440','0'),
('60158','60643','50000','165','415','0'),
('60158','60649','100000','165','425','0'),
('60158','60651','100000','165','420','0'),
('60158','60652','100000','165','420','0'),
('60158','60655','200000','165','425','0'),
('60158','60658','200000','165','420','0'),
('60158','60660','100000','165','425','0'),
('60158','60665','100000','165','420','0'),
('60158','60666','80000','165','420','0'),
('60158','60669','100000','165','425','0'),
('60158','60671','100000','165','420','0'),
('60158','62448','80000','165','425','0'),
('60158','64661','50000','165','350','0'),
('60158','69386','200000','165','450','0'),
('60158','69388','200000','165','450','0'),
('60159','2581','10','186','0','0'),
('60159','2582','500','186','50','0'),
('60159','2658','200','186','75','0'),
('60159','2659','200','186','65','0'),
('60159','3304','50','186','65','0'),
('60159','3307','500','186','125','0'),
('60159','3308','2500','186','155','0'),
('60159','3568','5000','186','125','10'),
('60159','3569','2500','186','165','0'),
('60159','10097','5000','186','175','0'),
('60159','10098','10000','186','230','0'),
('60159','10249','50000','186','200','25'),
('60159','14891','35000','186',230,'40'),
('60159','16153','20000','186','250','0'),
('60159','29355','100000','186','275','50'),
('60159','29356','40000','186','300','0'),
('60159','29358','40000','186','325','0'),
('60159','29359','40000','186','350','0'),
('60159','29360','40000','186','350','0'),
('60159','29361','100000','186','350','0'),
('60159','29686','100000','186','375','0'),
('60159','35750','10000','186','300','0'),
('60159','35751','10000','186','300','0'),
('60159','49252','100000','186','350','0'),
('60159','49258','150000','186','400','0'),
('60159','50309','350000','186','350','55'),
('60159','55208','200000','186','450','0'),
('60159','55211','200000','186','450','0'),
('60159','70524','10000','186','250','0'),
('60160','8615','10','0','0','0'),
('60160','8619','500','393','50','0'),
('60160','8620','5000','393','125','10'),
('60160','10769','50000','393','200','25'),
('60160','32679','100000','393','275','50'),
('60160','50307','350000','393','350','55'),
('60161','12055','5500','197','215','0'),
('60161','12071','6000','197','225','0'),
('60161','12076','6500','197','235','0'),
('60161','12082','7000','197','240','0'),
('60161','26797','20000','197','350','60'),
('60161','26798','20000','197','350','60'),
('60161','26801','20000','197','350','60'),
('60161','3915','25','197','1','0'),
('60161','2385','50','197','10','0'),
('60161','2386','200','197','65','0'),
('60161','2392','50','197','40','0'),
('60161','2393','25','197','1','0'),
('60161','2394','50','197','40','0'),
('60161','2395','300','197','70','0'),
('60161','2396','200','197','70','0'),
('60161','2397','200','197','60','0'),
('60161','2399','300','197','85','0'),
('60161','2401','300','197','95','0'),
('60161','2402','250','197','75','0'),
('60161','2406','200','197','100','0'),
('60161','2964','100','197','75','0'),
('60161','3755','100','197','45','0'),
('60161','3757','200','197','80','0'),
('60161','3813','800','197','150','0'),
('60161','3839','500','197','125','0'),
('60161','3840','100','197','35','0'),
('60161','3841','200','197','60','0'),
('60161','3842','300','197','70','0'),
('60161','3843','400','197','85','0'),
('60161','3845','300','197','80','0'),
('60161','3848','500','197','110','0'),
('60161','3850','500','197','110','0'),
('60161','3852','750','197','130','0'),
('60161','3855','750','197','125','0'),
('60161','3859','750','197','150','0'),
('60161','3861','1000','197','185','0'),
('60161','3865','1000','197','175','0'),
('60161','3866','250','197','110','0'),
('60161','3871','500','197','170','0'),
('60161','3911','10','0','0','5'),
('60161','3912','500','197','50','10'),
('60161','3913','5000','197','125','20'),
('60161','3914','50','197','30','0'),
('60161','6521','400','197','90','0'),
('60161','6690','1000','197','135','0'),
('60161','7623','50','197','30','0'),
('60161','7624','50','197','30','0'),
('60161','8465','50','197','40','0'),
('60161','8467','250','197','110','0'),
('60161','8483','500','197','160','0'),
('60161','8489','750','197','175','0'),
('60161','8758','600','197','140','0'),
('60161','8760','600','197','145','0'),
('60161','8762','750','197','160','0'),
('60161','8764','900','197','170','0'),
('60161','8766','1000','197','175','0'),
('60161','8770','1000','197','190','0'),
('60161','8772','1000','197','175','0'),
('60161','8774','1000','197','180','0'),
('60161','8776','50','197','15','0'),
('60161','8791','2500','197','185','0'),
('60161','8799','3000','197','195','0'),
('60161','8804','5000','197','210','0'),
('60161','12045','50','197','20','0'),
('60161','12046','300','197','75','0'),
('60161','12048','4000','197','205','0'),
('60161','12049','4000','197','205','0'),
('60161','12050','4000','197','210','0'),
('60161','12053','5000','197','215','0'),
('60161','12061','2500','197','215','0'),
('60161','12065','5000','197','225','0'),
('60161','12067','5000','197','225','0'),
('60161','12069','5000','197','225','0'),
('60161','12070','5000','197','225','0'),
('60161','12072','6000','197','230','0'),
('60161','12073','6000','197','230','0'),
('60161','12074','6000','197','230','0'),
('60161','12077','5000','197','235','0'),
('60161','12079','6500','197','235','0'),
('60161','12088','7500','197','245','0'),
('60161','12092','7500','197','250','0'),
('60161','12181','50000','197','200','35'),
('60161','18401','10000','197','250','0'),
('60161','18402','10000','197','255','0'),
('60161','18403','10000','197','255','0'),
('60161','18406','10000','197','260','0'),
('60161','18407','10000','197','260','0'),
('60161','18409','10000','197','265','0'),
('60161','18410','10000','197','265','0'),
('60161','18411','10000','197','265','0'),
('60161','18413','10000','197','270','0'),
('60161','18414','10000','197','270','0'),
('60161','18415','10000','197','270','0'),
('60161','18416','12500','197','275','0'),
('60161','18417','12500','197','275','0'),
('60161','18420','12500','197','275','0'),
('60161','18421','12500','197','275','0'),
('60161','18423','15000','197','280','0'),
('60161','18424','15000','197','280','0'),
('60161','18437','15000','197','285','0'),
('60161','18438','15000','197','285','0'),
('60161','18441','15000','197','290','0'),
('60161','18442','15000','197','290','0'),
('60161','18444','15000','197','295','0'),
('60161','18446','15000','197','300','0'),
('60161','18449','15000','197','300','0'),
('60161','18450','15000','197','300','0'),
('60161','18451','15000','197','300','0'),
('60161','18453','15000','197','300','0'),
('60161','26745','20000','197','300','0'),
('60161','26746','15000','197','315','0'),
('60161','26764','15000','197','310','0'),
('60161','26765','15000','197','310','0'),
('60161','26770','20000','197','320','0'),
('60161','26771','20000','197','325','0'),
('60161','26772','20000','197','335','0'),
('60161','26791','100000','197','275','50'),
('60161','31460','20000','197','300','0'),
('60161','51308','350000','197','350','65'),
('60161','55642','125000','197','420','0'),
('60161','55769','125000','197','420','0'),
('60161','55777','125000','197','420','0'),
('60161','55898','50000','197','360','0'),
('60161','55899','50000','197','350','0'),
('60161','55900','125000','197','400','0'),
('60161','55901','50000','197','395','0'),
('60161','55902','50000','197','350','0'),
('60161','55903','50000','197','360','0'),
('60161','55904','50000','197','360','0'),
('60161','55906','50000','197','375','0'),
('60161','55907','50000','197','380','0'),
('60161','55908','50000','197','370','0'),
('60161','55910','80000','197','385','0'),
('60161','55911','80000','197','390','0'),
('60161','55913','80000','197','385','0'),
('60161','55914','50000','197','395','0'),
('60161','55919','100000','197','395','0'),
('60161','55920','50000','197','400','0'),
('60161','55921','100000','197','405','0'),
('60161','55922','100000','197','405','0'),
('60161','55923','100000','197','410','0'),
('60161','55924','125000','197','410','0'),
('60161','55925','125000','197','415','0'),
('60161','55941','125000','197','420','0'),
('60161','55943','125000','197','415','0'),
('60161','55995','50000','197','400','0'),
('60161','56000','50000','197','400','0'),
('60161','56001','100000','197','415','0'),
('60161','56002','100000','197','415','0'),
('60161','56003','100000','197','415','0'),
('60161','56007','80000','197','410','0'),
('60161','56008','100000','197','400','0'),
('60161','56010','100000','197','400','0'),
('60161','56014','100000','197','390','0'),
('60161','56015','100000','197','395','0'),
('60161','56018','100000','197','425','0'),
('60161','56019','100000','197','420','0'),
('60161','56020','100000','197','420','0'),
('60161','56021','100000','197','425','0'),
('60161','56022','100000','197','420','0'),
('60161','56023','100000','197','420','0'),
('60161','56024','200000','197','440','0'),
('60161','56025','200000','197','435','0'),
('60161','56026','200000','197','440','0'),
('60161','56027','200000','197','435','0'),
('60161','56028','200000','197','440','0'),
('60161','56029','200000','197','435','0'),
('60161','56030','50000','197','380','0'),
('60161','56031','50000','197','350','0'),
('60161','56034','100000','197','405','0'),
('60161','56039','100000','197','405','0'),
('60161','56048','125000','197','410','0'),
('60161','59582','100000','197','415','0'),
('60161','59583','100000','197','415','0'),
('60161','59584','100000','197','420','0'),
('60161','59585','100000','197','420','0'),
('60161','59586','100000','197','420','0'),
('60161','59587','100000','197','420','0'),
('60161','59588','120000','197','420','0'),
('60161','59589','120000','197','420','0'),
('60161','60969','105000','197','300','0'),
('60161','60971','150000','197','425','0'),
('60161','60990','180000','197','420','0'),
('60161','60993','180000','197','425','0'),
('60161','60994','180000','197','420','0'),
('60161','63742','750','197','125','0'),
('60161','64729','100000','197','400','0'),
('60161','64730','100000','197','405','0'),
('60162','21175','4000','185','200','0'),
('60162','6500','300','185','125','0'),
('60162','2546','150','185','80','0'),
('60162','2544','200','185','75','0'),
('60162','6499','100','185','50','0'),
('60162','2541','100','185','50','0'),
('60162','2539','50','185','10','0'),
('60162','37836','10','185','1','0'),
('60162','18261','25000','185','200','0'),
('60162','54257','1000','185','125','0'),
('60162','3412','500','185','50','0'),
('60162','2551','100','0','0','0'),
('60162','54256','100000','185','275','0'),
('60162','64358','50000','185','400','0'),
('60162','45554','50000','185','375','0'),
('60162','45569','20000','185','350','0'),
('60162','45566','20000','185','350','0'),
('60162','45565','20000','185','350','0'),
('60162','45564','20000','185','350','0'),
('60162','45563','20000','185','350','0'),
('60162','45562','10000','185','350','0'),
('60162','45561','10000','185','350','0'),
('60162','45560','10000','185','350','0'),
('60162','45553','20000','185','350','0'),
('60162','45552','20000','185','350','0'),
('60162','45551','20000','185','350','0'),
('60162','45550','20000','185','350','0'),
('60162','45549','20000','185','350','0'),
('60162','51295','350000','185','350','0'),
('60162','58065','20000','185','350','0'),
('60163','18630','20000','129','290','0'),
('60163','10841','10000','129','240','0'),
('60163','18629','20000','129','260','0'),
('60163','7934','250','129','80','0'),
('60163','10840','10000','129','210','0'),
('60163','7929','5000','129','180','0'),
('60163','7928','5000','129','150','0'),
('60163','3278','1000','129','115','0'),
('60163','3277','250','129','80','0'),
('60163','54254','1000','129','125','0'),
('60163','3276','100','129','40','0'),
('60163','10847','25000','129','200','35'),
('60163','3280','500','129','50','0'),
('60163','3279','100','0','0','0'),
('60163','27033','20000','129','360','0'),
('60163','27032','20000','129','330','0'),
('60163','54255','20000','129','275','50'),
('60163','45545','40000','129','350','0'),
('60163','50299','350000','129','350','65'),
('60164','18249','25000','356','200','10'),
('60164','54083','10000','356','125','10'),
('60164','7733','100','0','0','5'),
('60164','7734','500','356','50','10'),
('60164','54084','100000','356','275','10'),
('60164','51293','350000','356','350','10');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@DeathknightEntry,'3714','61000','0','0','61'),
(@DeathknightEntry,'42650','360000','0','0','80'),
(@DeathknightEntry,'43265','6000','0','0','60'),
(@DeathknightEntry,'45463','63000','0','0','70'),
(@DeathknightEntry,'45524','5800','0','0','58'),
(@DeathknightEntry,'45529','64000','0','0','64'),
(@DeathknightEntry,'46584','5600','0','0','56'),
(@DeathknightEntry,'47476','5900','0','0','59'),
(@DeathknightEntry,'47528','5700','0','0','57'),
(@DeathknightEntry,'47568','360000','0','0','75'),
(@DeathknightEntry,'48263','5700','0','0','57'),
(@DeathknightEntry,'48265','360000','0','0','70'),
(@DeathknightEntry,'48707','68000','0','0','68'),
(@DeathknightEntry,'48721','5800','0','0','58'),
(@DeathknightEntry,'48743','66000','0','0','66'),
(@DeathknightEntry,'48778','200000','0','0','72'),
(@DeathknightEntry,'48792','62000','0','0','62'),
(@DeathknightEntry,'49020','61000','0','0','61'),
(@DeathknightEntry,'49892','59000','0','0','62'),
(@DeathknightEntry,'49893','68000','0','0','68'),
(@DeathknightEntry,'49894','360000','0','0','76'),
(@DeathknightEntry,'49895','360000','0','0','80'),
(@DeathknightEntry,'49896','61000','0','0','61'),
(@DeathknightEntry,'49903','67000','0','0','67'),
(@DeathknightEntry,'49904','360000','0','0','73'),
(@DeathknightEntry,'49909','360000','0','0','78'),
(@DeathknightEntry,'49913','65000','0','0','65'),
(@DeathknightEntry,'49914','69000','0','0','69'),
(@DeathknightEntry,'49915','360000','0','0','74'),
(@DeathknightEntry,'49916','360000','0','0','79'),
(@DeathknightEntry,'49917','5800','0','0','60'),
(@DeathknightEntry,'49918','65000','0','0','65'),
(@DeathknightEntry,'49919','360000','0','0','70'),
(@DeathknightEntry,'49920','360000','0','0','75'),
(@DeathknightEntry,'49921','360000','0','0','80'),
(@DeathknightEntry,'49923','360000','0','0','75'),
(@DeathknightEntry,'49924','360000','0','0','80'),
(@DeathknightEntry,'49926','5900','0','0','59'),
(@DeathknightEntry,'49927','64000','0','0','64'),
(@DeathknightEntry,'49928','69000','0','0','69'),
(@DeathknightEntry,'49929','360000','0','0','74'),
(@DeathknightEntry,'49930','360000','0','0','80'),
(@DeathknightEntry,'49936','68000','0','0','67'),
(@DeathknightEntry,'49937','360000','0','0','73'),
(@DeathknightEntry,'49938','360000','0','0','80'),
(@DeathknightEntry,'49939','66000','0','0','66'),
(@DeathknightEntry,'49940','360000','0','0','72'),
(@DeathknightEntry,'49941','360000','0','0','78'),
(@DeathknightEntry,'49998','5600','0','0','56'),
(@DeathknightEntry,'49999','65000','0','0','63'),
(@DeathknightEntry,'50842','5600','0','0','56'),
(@DeathknightEntry,'51325','6000','0','0','60'),
(@DeathknightEntry,'51326','18000','0','0','70'),
(@DeathknightEntry,'51327','18000','0','0','75'),
(@DeathknightEntry,'51328','18000','0','0','80'),
(@DeathknightEntry,'51409','6500','0','0','70'),
(@DeathknightEntry,'51410','10000','0','0','75'),
(@DeathknightEntry,'51411','10000','0','0','80'),
(@DeathknightEntry,'51416','6200','0','0','60'),
(@DeathknightEntry,'51417','3250','0','0','65'),
(@DeathknightEntry,'51418','18000','0','0','70'),
(@DeathknightEntry,'51419','18000','0','0','75'),
(@DeathknightEntry,'51423','67000','0','0','67'),
(@DeathknightEntry,'51424','360000','0','0','73'),
(@DeathknightEntry,'51425','360000','0','0','79'),
(@DeathknightEntry,'51426','62000','0','0','62'),
(@DeathknightEntry,'51427','68000','0','0','68'),
(@DeathknightEntry,'51428','360000','0','0','74'),
(@DeathknightEntry,'51429','360000','0','0','79'),
(@DeathknightEntry,'53323','63000','0','0','40'),
(@DeathknightEntry,'53331','6000','0','0','40'),
(@DeathknightEntry,'53341','55000','0','0','40'),
(@DeathknightEntry,'53342','5700','0','0','40'),
(@DeathknightEntry,'53343','55000','0','0','40'),
(@DeathknightEntry,'53344','360000','0','0','40'),
(@DeathknightEntry,'54446','63000','0','0','40'),
(@DeathknightEntry,'54447','5700','0','0','40'),
(@DeathknightEntry,'55258','5900','0','0','59'),
(@DeathknightEntry,'55259','3200','0','0','64'),
(@DeathknightEntry,'55260','3450','0','0','69'),
(@DeathknightEntry,'55261','18000','0','0','74'),
(@DeathknightEntry,'55262','18000','0','0','80'),
(@DeathknightEntry,'55265','18000','0','0','67'),
(@DeathknightEntry,'55268','18000','0','0','80'),
(@DeathknightEntry,'55270','18000','0','0','73'),
(@DeathknightEntry,'55271','18000','0','0','79'),
(@DeathknightEntry,'56222','65000','0','0','65'),
(@DeathknightEntry,'56815','67000','0','0','67'),
(@DeathknightEntry,'57330','65000','0','0','65'),
(@DeathknightEntry,'57623','360000','0','0','75'),
(@DeathknightEntry,'61999','360000','0','0','72'),
(@DeathknightEntry,'62158','360000','0','0','72'),
(@DeathknightEntry,'70164','360000','0','0','72');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@DruidEntry,'99','300','0','0','10'),
(@DruidEntry,'339','200','0','0','8'),
(@DruidEntry,'467','100','0','0','6'),
(@DruidEntry,'740','6000','0','0','30'),
(@DruidEntry,'768','2000','0','0','20'),
(@DruidEntry,'769','10000','0','0','34'),
(@DruidEntry,'770','1900','0','0','18'),
(@DruidEntry,'774','100','0','0','4'),
(@DruidEntry,'779','1800','0','0','16'),
(@DruidEntry,'780','4000','0','0','24'),
(@DruidEntry,'782','900','0','0','14'),
(@DruidEntry,'783','6000','0','0','16'),
(@DruidEntry,'1058','300','0','0','10'),
(@DruidEntry,'1062','1900','0','0','18'),
(@DruidEntry,'1066','1600','0','0','16'),
(@DruidEntry,'1075','4000','0','0','24'),
(@DruidEntry,'1079','2000','0','0','20'),
(@DruidEntry,'1082','2000','0','0','20'),
(@DruidEntry,'1126','10','0','0','0'),
(@DruidEntry,'1430','1800','0','0','16'),
(@DruidEntry,'1735','2000','0','0','20'),
(@DruidEntry,'1822','4000','0','0','24'),
(@DruidEntry,'1823','10000','0','0','34'),
(@DruidEntry,'1824','18000','0','0','44'),
(@DruidEntry,'1850','4500','0','0','26'),
(@DruidEntry,'2090','3000','0','0','22'),
(@DruidEntry,'2091','5000','0','0','28'),
(@DruidEntry,'2637','1900','0','0','18'),
(@DruidEntry,'2782','4000','0','0','24'),
(@DruidEntry,'2893','4500','0','0','26'),
(@DruidEntry,'2908','3000','0','0','22'),
(@DruidEntry,'2912','2000','0','0','20'),
(@DruidEntry,'3029','5000','0','0','28'),
(@DruidEntry,'3627','10000','0','0','34'),
(@DruidEntry,'5177','100','0','0','6'),
(@DruidEntry,'5178','900','0','0','14'),
(@DruidEntry,'5179','3000','0','0','22'),
(@DruidEntry,'5180','6000','0','0','30'),
(@DruidEntry,'5186','200','0','0','8'),
(@DruidEntry,'5187','900','0','0','14'),
(@DruidEntry,'5188','2000','0','0','20'),
(@DruidEntry,'5189','4500','0','0','26'),
(@DruidEntry,'5195','5000','0','0','28'),
(@DruidEntry,'5196','12000','0','0','38'),
(@DruidEntry,'5201','12000','0','0','38'),
(@DruidEntry,'5209','5000','0','0','28'),
(@DruidEntry,'5211','900','0','0','14'),
(@DruidEntry,'5215','2000','0','0','20'),
(@DruidEntry,'5217','4000','0','0','24'),
(@DruidEntry,'5221','3000','0','0','22'),
(@DruidEntry,'5225','8000','0','0','32'),
(@DruidEntry,'5229','800','0','0','12'),
(@DruidEntry,'5232','300','0','0','10'),
(@DruidEntry,'5234','6000','0','0','30'),
(@DruidEntry,'5487','1700','0','0','10'),
(@DruidEntry,'6756','2000','0','0','20'),
(@DruidEntry,'6778','8000','0','0','32'),
(@DruidEntry,'6780','12000','0','0','38'),
(@DruidEntry,'6783','14000','0','0','40'),
(@DruidEntry,'6785','8000','0','0','32'),
(@DruidEntry,'6787','16000','0','0','42'),
(@DruidEntry,'6793','11000','0','0','36'),
(@DruidEntry,'6795','1000','0','0','10'),
(@DruidEntry,'6798','6000','0','0','30'),
(@DruidEntry,'6800','6000','0','0','30'),
(@DruidEntry,'6807','1000','0','0','10'),
(@DruidEntry,'6808','1900','0','0','18'),
(@DruidEntry,'6809','4500','0','0','26'),
(@DruidEntry,'8903','12000','0','0','38'),
(@DruidEntry,'8905','20000','0','0','46'),
(@DruidEntry,'8907','14000','0','0','40'),
(@DruidEntry,'8910','14000','0','0','40'),
(@DruidEntry,'8914','10000','0','0','34'),
(@DruidEntry,'8918','14000','0','0','40'),
(@DruidEntry,'8921','100','0','0','4'),
(@DruidEntry,'8924','300','0','0','10'),
(@DruidEntry,'8925','1800','0','0','16'),
(@DruidEntry,'8926','3000','0','0','22'),
(@DruidEntry,'8927','5000','0','0','28'),
(@DruidEntry,'8928','10000','0','0','34'),
(@DruidEntry,'8929','14000','0','0','40'),
(@DruidEntry,'8936','800','0','0','12'),
(@DruidEntry,'8938','1900','0','0','18'),
(@DruidEntry,'8939','4000','0','0','24'),
(@DruidEntry,'8940','6000','0','0','30'),
(@DruidEntry,'8941','11000','0','0','36'),
(@DruidEntry,'8949','4500','0','0','26'),
(@DruidEntry,'8950','10000','0','0','34'),
(@DruidEntry,'8951','16000','0','0','42'),
(@DruidEntry,'8955','12000','0','0','38'),
(@DruidEntry,'8972','10000','0','0','34'),
(@DruidEntry,'8983','20000','0','0','46'),
(@DruidEntry,'8992','12000','0','0','38'),
(@DruidEntry,'8998','5000','0','0','28'),
(@DruidEntry,'9000','14000','0','0','40'),
(@DruidEntry,'9005','11000','0','0','36'),
(@DruidEntry,'9490','8000','0','0','32'),
(@DruidEntry,'9492','5000','0','0','28'),
(@DruidEntry,'9493','11000','0','0','36'),
(@DruidEntry,'9634','14000','0','0','40'),
(@DruidEntry,'9745','16000','0','0','42'),
(@DruidEntry,'9747','16000','0','0','42'),
(@DruidEntry,'9750','16000','0','0','42'),
(@DruidEntry,'9752','18000','0','0','44'),
(@DruidEntry,'9754','18000','0','0','44'),
(@DruidEntry,'9756','18000','0','0','44'),
(@DruidEntry,'9758','18000','0','0','44'),
(@DruidEntry,'9821','20000','0','0','46'),
(@DruidEntry,'9823','20000','0','0','46'),
(@DruidEntry,'9827','30000','0','0','56'),
(@DruidEntry,'9829','20000','0','0','46'),
(@DruidEntry,'9830','28000','0','0','54'),
(@DruidEntry,'9833','20000','0','0','46'),
(@DruidEntry,'9834','26000','0','0','52'),
(@DruidEntry,'9835','32000','0','0','58'),
(@DruidEntry,'9839','20000','0','0','46'),
(@DruidEntry,'9840','26000','0','0','52'),
(@DruidEntry,'9841','32000','0','0','58'),
(@DruidEntry,'9845','22000','0','0','48'),
(@DruidEntry,'9846','34000','0','0','60'),
(@DruidEntry,'9849','22000','0','0','48'),
(@DruidEntry,'9850','32000','0','0','58'),
(@DruidEntry,'9852','22000','0','0','48'),
(@DruidEntry,'9853','32000','0','0','58'),
(@DruidEntry,'9856','22000','0','0','48'),
(@DruidEntry,'9857','28000','0','0','54'),
(@DruidEntry,'9858','34000','0','0','60'),
(@DruidEntry,'9862','23000','0','0','50'),
(@DruidEntry,'9863','34000','0','0','60'),
(@DruidEntry,'9866','23000','0','0','50'),
(@DruidEntry,'9867','32000','0','0','58'),
(@DruidEntry,'9875','23000','0','0','50'),
(@DruidEntry,'9876','32000','0','0','58'),
(@DruidEntry,'9880','23000','0','0','50'),
(@DruidEntry,'9881','32000','0','0','58'),
(@DruidEntry,'9884','23000','0','0','50'),
(@DruidEntry,'9885','34000','0','0','60'),
(@DruidEntry,'9888','23000','0','0','50'),
(@DruidEntry,'9889','30000','0','0','56'),
(@DruidEntry,'9892','26000','0','0','52'),
(@DruidEntry,'9894','26000','0','0','52'),
(@DruidEntry,'9896','34000','0','0','60'),
(@DruidEntry,'9898','26000','0','0','52'),
(@DruidEntry,'9901','28000','0','0','54'),
(@DruidEntry,'9904','28000','0','0','54'),
(@DruidEntry,'9908','28000','0','0','54'),
(@DruidEntry,'9910','28000','0','0','54'),
(@DruidEntry,'9912','28000','0','0','54'),
(@DruidEntry,'9913','34000','0','0','60'),
(@DruidEntry,'16689','300','0','0','10'),
(@DruidEntry,'16810','1900','0','0','18'),
(@DruidEntry,'16811','5000','0','0','28'),
(@DruidEntry,'16812','12000','0','0','38'),
(@DruidEntry,'16813','22000','0','0','48'),
(@DruidEntry,'16857','1900','0','0','18'),
(@DruidEntry,'16914','14000','0','0','40'),
(@DruidEntry,'17329','32000','0','0','58'),
(@DruidEntry,'17401','23000','0','0','50'),
(@DruidEntry,'17402','34000','0','0','60'),
(@DruidEntry,'18657','12000','0','0','38'),
(@DruidEntry,'18658','32000','0','0','58'),
(@DruidEntry,'20484','2000','0','0','20'),
(@DruidEntry,'20719','14000','0','0','40'),
(@DruidEntry,'20739','6000','0','0','30'),
(@DruidEntry,'20742','14000','0','0','40'),
(@DruidEntry,'20747','23000','0','0','50'),
(@DruidEntry,'20748','34000','0','0','60'),
(@DruidEntry,'21849','23000','0','0','50'),
(@DruidEntry,'21850','34000','0','0','60'),
(@DruidEntry,'22568','8000','0','0','32'),
(@DruidEntry,'22570','43000','0','0','62'),
(@DruidEntry,'22812','18000','0','0','44'),
(@DruidEntry,'22827','14000','0','0','40'),
(@DruidEntry,'22828','22000','0','0','48'),
(@DruidEntry,'22829','30000','0','0','56'),
(@DruidEntry,'22842','11000','0','0','36'),
(@DruidEntry,'24248','48000','0','0','63'),
(@DruidEntry,'24974','6000','0','0','30'),
(@DruidEntry,'24975','14000','0','0','40'),
(@DruidEntry,'24976','12000','0','0','50'),
(@DruidEntry,'24977','34000','0','0','60'),
(@DruidEntry,'25297','34000','0','0','60'),
(@DruidEntry,'25298','34000','0','0','60'),
(@DruidEntry,'25299','34000','0','0','60'),
(@DruidEntry,'26978','43000','0','0','62'),
(@DruidEntry,'26979','90000','0','0','69'),
(@DruidEntry,'26980','59000','0','0','65'),
(@DruidEntry,'26981','48000','0','0','63'),
(@DruidEntry,'26982','90000','0','0','69'),
(@DruidEntry,'26983','100000','0','0','70'),
(@DruidEntry,'26984','39000','0','0','61'),
(@DruidEntry,'26985','90000','0','0','69'),
(@DruidEntry,'26986','73000','0','0','67'),
(@DruidEntry,'26987','48000','0','0','63'),
(@DruidEntry,'26988','100000','0','0','70'),
(@DruidEntry,'26989','81000','0','0','68'),
(@DruidEntry,'26990','100000','0','0','70'),
(@DruidEntry,'26991','100000','0','0','70'),
(@DruidEntry,'26992','53000','0','0','64'),
(@DruidEntry,'26994','90000','0','0','69'),
(@DruidEntry,'26995','100000','0','0','70'),
(@DruidEntry,'26996','73000','0','0','67'),
(@DruidEntry,'26997','53000','0','0','64'),
(@DruidEntry,'26998','43000','0','0','62'),
(@DruidEntry,'27000','73000','0','0','67'),
(@DruidEntry,'27001','39000','0','0','61'),
(@DruidEntry,'27002','100000','0','0','70'),
(@DruidEntry,'27003','53000','0','0','64'),
(@DruidEntry,'27004','90000','0','0','69'),
(@DruidEntry,'27005','66000','0','0','66'),
(@DruidEntry,'27006','66000','0','0','66'),
(@DruidEntry,'27008','73000','0','0','67'),
(@DruidEntry,'27009','81000','0','0','68'),
(@DruidEntry,'27012','100000','0','0','70'),
(@DruidEntry,'27013','200000','0','0','70'),
(@DruidEntry,'29166','14000','0','0','40'),
(@DruidEntry,'31018','30000','0','0','60'),
(@DruidEntry,'31709','34000','0','0','60'),
(@DruidEntry,'33357','59000','0','0','65'),
(@DruidEntry,'33745','66000','0','0','66'),
(@DruidEntry,'33763','53000','0','0','64'),
(@DruidEntry,'33786','100000','0','0','70'),
(@DruidEntry,'33943','100000','762','150','60'),
(@DruidEntry,'33982','1700','0','0','58'),
(@DruidEntry,'33983','1700','0','0','68'),
(@DruidEntry,'33986','1700','0','0','58'),
(@DruidEntry,'33987','1900','0','0','68'),
(@DruidEntry,'40120','200000','762','300','71'),
(@DruidEntry,'48377','200000','0','0','74'),
(@DruidEntry,'48378','200000','0','0','79'),
(@DruidEntry,'48440','200000','0','0','75'),
(@DruidEntry,'48441','200000','0','0','80'),
(@DruidEntry,'48442','200000','0','0','71'),
(@DruidEntry,'48443','200000','0','0','77'),
(@DruidEntry,'48446','200000','0','0','75'),
(@DruidEntry,'48447','200000','0','0','80'),
(@DruidEntry,'48450','200000','0','0','72'),
(@DruidEntry,'48451','200000','0','0','80'),
(@DruidEntry,'48459','200000','0','0','74'),
(@DruidEntry,'48461','200000','0','0','79'),
(@DruidEntry,'48462','200000','0','0','75'),
(@DruidEntry,'48463','200000','0','0','80'),
(@DruidEntry,'48464','200000','0','0','72'),
(@DruidEntry,'48465','200000','0','0','78'),
(@DruidEntry,'48467','200000','0','0','80'),
(@DruidEntry,'48468','200000','0','0','80'),
(@DruidEntry,'48469','200000','0','0','80'),
(@DruidEntry,'48470','200000','0','0','80'),
(@DruidEntry,'48477','200000','0','0','79'),
(@DruidEntry,'48479','200000','0','0','73'),
(@DruidEntry,'48480','200000','0','0','79'),
(@DruidEntry,'48559','200000','0','0','71'),
(@DruidEntry,'48560','200000','0','0','77'),
(@DruidEntry,'48561','200000','0','0','72'),
(@DruidEntry,'48562','200000','0','0','77'),
(@DruidEntry,'48563','10000','0','0','75'),
(@DruidEntry,'48564','10000','0','0','80'),
(@DruidEntry,'48565','10000','0','0','75'),
(@DruidEntry,'48566','10000','0','0','80'),
(@DruidEntry,'48567','200000','0','0','73'),
(@DruidEntry,'48568','200000','0','0','80'),
(@DruidEntry,'48569','200000','0','0','73'),
(@DruidEntry,'48570','200000','0','0','79'),
(@DruidEntry,'48571','200000','0','0','75'),
(@DruidEntry,'48572','200000','0','0','80'),
(@DruidEntry,'48573','200000','0','0','72'),
(@DruidEntry,'48574','200000','0','0','78'),
(@DruidEntry,'48575','200000','0','0','76'),
(@DruidEntry,'48576','200000','0','0','72'),
(@DruidEntry,'48577','200000','0','0','78'),
(@DruidEntry,'48578','200000','0','0','73'),
(@DruidEntry,'48579','200000','0','0','79'),
(@DruidEntry,'49799','200000','0','0','71'),
(@DruidEntry,'49800','200000','0','0','80'),
(@DruidEntry,'49802','200000','0','0','74'),
(@DruidEntry,'49803','200000','0','0','77'),
(@DruidEntry,'50212','200000','0','0','71'),
(@DruidEntry,'50213','200000','0','0','79'),
(@DruidEntry,'50464','200000','0','0','80'),
(@DruidEntry,'50763','200000','0','0','80'),
(@DruidEntry,'50764','90000','0','0','69'),
(@DruidEntry,'50765','34000','0','0','60'),
(@DruidEntry,'50766','22000','0','0','48'),
(@DruidEntry,'50767','11000','0','0','36'),
(@DruidEntry,'50768','4000','0','0','24'),
(@DruidEntry,'50769','800','0','0','12'),
(@DruidEntry,'52610','200000','0','0','75'),
(@DruidEntry,'53199','10000','0','0','70'),
(@DruidEntry,'53200','10000','0','0','75'),
(@DruidEntry,'53201','10000','0','0','80'),
(@DruidEntry,'53223','600','0','0','60'),
(@DruidEntry,'53225','1700','0','0','70'),
(@DruidEntry,'53226','10000','0','0','75'),
(@DruidEntry,'53248','1700','0','0','70'),
(@DruidEntry,'53249','10000','0','0','75'),
(@DruidEntry,'53251','10000','0','0','80'),
(@DruidEntry,'53307','200000','0','0','74'),
(@DruidEntry,'53308','200000','0','0','78'),
(@DruidEntry,'53312','200000','0','0','78'),
(@DruidEntry,'61384','10000','0','0','80'),
(@DruidEntry,'62078','200000','0','0','71'),
(@DruidEntry,'62600','4500','0','0','40');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@HunterEntry,'136','600','0','0','12'),
(@HunterEntry,'674','2200','0','0','20'),
(@HunterEntry,'781','2200','0','0','20'),
(@HunterEntry,'883','2000','0','0','10'),
(@HunterEntry,'982','2000','0','0','10'),
(@HunterEntry,'1002','1200','0','0','14'),
(@HunterEntry,'1130','100','0','0','6'),
(@HunterEntry,'1462','7000','0','0','24'),
(@HunterEntry,'1494','10','0','0','0'),
(@HunterEntry,'1495','1800','0','0','16'),
(@HunterEntry,'1499','2200','0','0','20'),
(@HunterEntry,'1510','18000','0','0','40'),
(@HunterEntry,'1513','1200','0','0','14'),
(@HunterEntry,'1515','2000','0','0','10'),
(@HunterEntry,'1543','10000','0','0','32'),
(@HunterEntry,'1978','100','0','0','4'),
(@HunterEntry,'2641','2000','0','0','10'),
(@HunterEntry,'2643','2000','0','0','18'),
(@HunterEntry,'2974','600','0','0','12'),
(@HunterEntry,'3034','14000','0','0','36'),
(@HunterEntry,'3043','6000','0','0','22'),
(@HunterEntry,'3044','100','0','0','6'),
(@HunterEntry,'3045','7000','0','0','26'),
(@HunterEntry,'3111','2200','0','0','20'),
(@HunterEntry,'3127','200','0','0','8'),
(@HunterEntry,'3661','8000','0','0','28'),
(@HunterEntry,'3662','14000','0','0','36'),
(@HunterEntry,'5116','200','0','0','8'),
(@HunterEntry,'5118','2200','0','0','16'),
(@HunterEntry,'5384','8000','0','0','30'),
(@HunterEntry,'6197','1200','0','0','14'),
(@HunterEntry,'6991','2000','0','0','10'),
(@HunterEntry,'8737','18000','0','0','40'),
(@HunterEntry,'13159','18000','0','0','40'),
(@HunterEntry,'13161','8000','0','0','30'),
(@HunterEntry,'13163','100','0','0','4'),
(@HunterEntry,'13165','400','0','0','10'),
(@HunterEntry,'13542','26000','0','0','44'),
(@HunterEntry,'13543','40000','0','0','52'),
(@HunterEntry,'13544','50000','0','0','60'),
(@HunterEntry,'13549','400','0','0','10'),
(@HunterEntry,'13550','2000','0','0','18'),
(@HunterEntry,'13551','7000','0','0','26'),
(@HunterEntry,'13552','12000','0','0','34'),
(@HunterEntry,'13553','24000','0','0','42'),
(@HunterEntry,'13554','36000','0','0','50'),
(@HunterEntry,'13555','48000','0','0','58'),
(@HunterEntry,'13795','1800','0','0','16'),
(@HunterEntry,'13809','8000','0','0','28'),
(@HunterEntry,'13813','12000','0','0','34'),
(@HunterEntry,'14260','200','0','0','8'),
(@HunterEntry,'14261','1800','0','0','16'),
(@HunterEntry,'14262','7000','0','0','24'),
(@HunterEntry,'14263','10000','0','0','32'),
(@HunterEntry,'14264','18000','0','0','40'),
(@HunterEntry,'14265','32000','0','0','48'),
(@HunterEntry,'14266','46000','0','0','56'),
(@HunterEntry,'14267','16000','0','0','38'),
(@HunterEntry,'14268','50000','0','0','60'),
(@HunterEntry,'14269','8000','0','0','30'),
(@HunterEntry,'14270','26000','0','0','44'),
(@HunterEntry,'14271','48000','0','0','58'),
(@HunterEntry,'14281','600','0','0','12'),
(@HunterEntry,'14282','2200','0','0','20'),
(@HunterEntry,'14283','8000','0','0','28'),
(@HunterEntry,'14284','14000','0','0','36'),
(@HunterEntry,'14285','26000','0','0','44'),
(@HunterEntry,'14286','40000','0','0','52'),
(@HunterEntry,'14287','50000','0','0','60'),
(@HunterEntry,'14288','8000','0','0','30'),
(@HunterEntry,'14289','24000','0','0','42'),
(@HunterEntry,'14290','42000','0','0','54'),
(@HunterEntry,'14294','36000','0','0','50'),
(@HunterEntry,'14295','48000','0','0','58'),
(@HunterEntry,'14302','7000','0','0','26'),
(@HunterEntry,'14303','14000','0','0','36'),
(@HunterEntry,'14304','28000','0','0','46'),
(@HunterEntry,'14305','46000','0','0','56'),
(@HunterEntry,'14310','18000','0','0','40'),
(@HunterEntry,'14311','50000','0','0','60'),
(@HunterEntry,'14316','26000','0','0','44'),
(@HunterEntry,'14317','42000','0','0','54'),
(@HunterEntry,'14318','2000','0','0','18'),
(@HunterEntry,'14319','8000','0','0','28'),
(@HunterEntry,'14320','16000','0','0','38'),
(@HunterEntry,'14321','32000','0','0','48'),
(@HunterEntry,'14322','48000','0','0','58'),
(@HunterEntry,'14323','6000','0','0','22'),
(@HunterEntry,'14324','18000','0','0','40'),
(@HunterEntry,'14325','48000','0','0','58'),
(@HunterEntry,'14326','8000','0','0','30'),
(@HunterEntry,'14327','28000','0','0','46'),
(@HunterEntry,'19263','2200','0','0','60'),
(@HunterEntry,'19801','50000','0','0','60'),
(@HunterEntry,'19878','10000','0','0','32'),
(@HunterEntry,'19879','36000','0','0','50'),
(@HunterEntry,'19880','7000','0','0','26'),
(@HunterEntry,'19882','18000','0','0','40'),
(@HunterEntry,'19883','400','0','0','10'),
(@HunterEntry,'19884','2000','0','0','18'),
(@HunterEntry,'19885','7000','0','0','24'),
(@HunterEntry,'20043','28000','0','0','46'),
(@HunterEntry,'20190','46000','0','0','56'),
(@HunterEntry,'20736','600','0','0','12'),
(@HunterEntry,'20900','400','0','0','28'),
(@HunterEntry,'20901','700','0','0','36'),
(@HunterEntry,'20902','1300','0','0','44'),
(@HunterEntry,'20903','2000','0','0','52'),
(@HunterEntry,'20904','2500','0','0','60'),
(@HunterEntry,'20909','1200','0','0','42'),
(@HunterEntry,'20910','2100','0','0','54'),
(@HunterEntry,'24132','1800','0','0','50'),
(@HunterEntry,'24133','2500','0','0','60'),
(@HunterEntry,'25294','50000','0','0','60'),
(@HunterEntry,'25295','50000','0','0','60'),
(@HunterEntry,'25296','50000','0','0','60'),
(@HunterEntry,'27014','87000','0','0','63'),
(@HunterEntry,'27016','140000','0','0','67'),
(@HunterEntry,'27019','170000','0','0','69'),
(@HunterEntry,'27021','140000','0','0','67'),
(@HunterEntry,'27022','140000','0','0','67'),
(@HunterEntry,'27023','110000','0','0','65'),
(@HunterEntry,'27025','68000','0','0','61'),
(@HunterEntry,'27044','150000','0','0','68'),
(@HunterEntry,'27045','150000','0','0','68'),
(@HunterEntry,'27046','150000','0','0','68'),
(@HunterEntry,'27065','10000','0','0','70'),
(@HunterEntry,'27067','2500','0','0','66'),
(@HunterEntry,'27068','5000','0','0','70'),
(@HunterEntry,'34026','120000','0','0','66'),
(@HunterEntry,'34074','2200','0','0','20'),
(@HunterEntry,'34120','70000','0','0','62'),
(@HunterEntry,'34477','190000','0','0','70'),
(@HunterEntry,'34600','150000','0','0','68'),
(@HunterEntry,'36916','300000','0','0','70'),
(@HunterEntry,'48989','300000','0','0','74'),
(@HunterEntry,'48990','300000','0','0','80'),
(@HunterEntry,'48995','300000','0','0','71'),
(@HunterEntry,'48996','300000','0','0','77'),
(@HunterEntry,'48998','15000','0','0','72'),
(@HunterEntry,'48999','15000','0','0','78'),
(@HunterEntry,'49000','300000','0','0','73'),
(@HunterEntry,'49001','300000','0','0','79'),
(@HunterEntry,'49011','100000','0','0','75'),
(@HunterEntry,'49012','100000','0','0','80'),
(@HunterEntry,'49044','300000','0','0','73'),
(@HunterEntry,'49045','300000','0','0','79'),
(@HunterEntry,'49047','300000','0','0','74'),
(@HunterEntry,'49048','300000','0','0','80'),
(@HunterEntry,'49049','10000','0','0','75'),
(@HunterEntry,'49050','10000','0','0','80'),
(@HunterEntry,'49051','300000','0','0','71'),
(@HunterEntry,'49052','300000','0','0','77'),
(@HunterEntry,'49055','300000','0','0','72'),
(@HunterEntry,'49056','300000','0','0','78'),
(@HunterEntry,'49066','300000','0','0','71'),
(@HunterEntry,'49067','300000','0','0','77'),
(@HunterEntry,'49071','300000','0','0','76'),
(@HunterEntry,'53271','10000','0','0','75'),
(@HunterEntry,'53338','10000','0','0','76'),
(@HunterEntry,'53339','300000','0','0','80'),
(@HunterEntry,'53351','300000','0','0','71'),
(@HunterEntry,'56641','36000','0','0','50'),
(@HunterEntry,'58431','300000','0','0','74'),
(@HunterEntry,'58434','300000','0','0','80'),
(@HunterEntry,'60051','400','0','0','70'),
(@HunterEntry,'60052','400','0','0','75'),
(@HunterEntry,'60053','100000','0','0','80'),
(@HunterEntry,'60192','100000','0','0','80'),
(@HunterEntry,'61005','300000','0','0','75'),
(@HunterEntry,'61006','300000','0','0','80'),
(@HunterEntry,'61846','300000','0','0','74'),
(@HunterEntry,'61847','300000','0','0','80'),
(@HunterEntry,'62757','300000','0','0','80'),
(@HunterEntry,'63668','1800','0','0','57'),
(@HunterEntry,'63669','7000','0','0','63'),
(@HunterEntry,'63670','10000','0','0','69'),
(@HunterEntry,'63671','10000','0','0','75'),
(@HunterEntry,'63672','10000','0','0','80');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@MageEntry,'10','2000','0','0','20'),
(@MageEntry,'66','96000','0','0','68'),
(@MageEntry,'116','100','0','0','4'),
(@MageEntry,'118','200','0','0','8'),
(@MageEntry,'120','5000','0','0','26'),
(@MageEntry,'122','400','0','0','10'),
(@MageEntry,'130','600','0','0','12'),
(@MageEntry,'143','100','0','0','6'),
(@MageEntry,'145','600','0','0','12'),
(@MageEntry,'205','200','0','0','8'),
(@MageEntry,'475','1800','0','0','18'),
(@MageEntry,'543','2000','0','0','20'),
(@MageEntry,'587','100','0','0','6'),
(@MageEntry,'597','600','0','0','12'),
(@MageEntry,'604','600','0','0','12'),
(@MageEntry,'759','7000','0','0','28'),
(@MageEntry,'837','900','0','0','14'),
(@MageEntry,'865','5000','0','0','26'),
(@MageEntry,'990','3000','0','0','22'),
(@MageEntry,'1008','1800','0','0','18'),
(@MageEntry,'1449','900','0','0','14'),
(@MageEntry,'1459','10','0','0','0'),
(@MageEntry,'1460','900','0','0','14'),
(@MageEntry,'1461','7000','0','0','28'),
(@MageEntry,'1463','2000','0','0','20'),
(@MageEntry,'1953','2000','0','0','20'),
(@MageEntry,'2120','1500','0','0','16'),
(@MageEntry,'2121','4000','0','0','24'),
(@MageEntry,'2136','100','0','0','6'),
(@MageEntry,'2137','900','0','0','14'),
(@MageEntry,'2138','3000','0','0','22'),
(@MageEntry,'2139','4000','0','0','24'),
(@MageEntry,'2948','3000','0','0','22'),
(@MageEntry,'3140','1800','0','0','18'),
(@MageEntry,'3552','14000','0','0','38'),
(@MageEntry,'3561','2000','0','0','20'),
(@MageEntry,'3562','2000','0','0','20'),
(@MageEntry,'3563','2000','0','0','20'),
(@MageEntry,'3565','2000','0','0','30'),
(@MageEntry,'3566','2000','0','0','30'),
(@MageEntry,'3567','2000','0','0','20'),
(@MageEntry,'5143','200','0','0','8'),
(@MageEntry,'5144','1500','0','0','16'),
(@MageEntry,'5145','4000','0','0','24'),
(@MageEntry,'5504','100','0','0','4'),
(@MageEntry,'5505','400','0','0','10'),
(@MageEntry,'5506','2000','0','0','20'),
(@MageEntry,'6117','13000','0','0','34'),
(@MageEntry,'6127','8000','0','0','30'),
(@MageEntry,'6129','10000','0','0','32'),
(@MageEntry,'6131','15000','0','0','40'),
(@MageEntry,'6141','7000','0','0','28'),
(@MageEntry,'6143','3000','0','0','22'),
(@MageEntry,'7300','400','0','0','10'),
(@MageEntry,'7301','2000','0','0','20'),
(@MageEntry,'7302','8000','0','0','30'),
(@MageEntry,'7320','15000','0','0','40'),
(@MageEntry,'7322','2000','0','0','20'),
(@MageEntry,'8400','4000','0','0','24'),
(@MageEntry,'8401','8000','0','0','30'),
(@MageEntry,'8402','13000','0','0','36'),
(@MageEntry,'8406','5000','0','0','26'),
(@MageEntry,'8407','10000','0','0','32'),
(@MageEntry,'8408','14000','0','0','38'),
(@MageEntry,'8412','8000','0','0','30'),
(@MageEntry,'8413','14000','0','0','38'),
(@MageEntry,'8416','10000','0','0','32'),
(@MageEntry,'8417','15000','0','0','40'),
(@MageEntry,'8422','10000','0','0','32'),
(@MageEntry,'8423','15000','0','0','40'),
(@MageEntry,'8427','13000','0','0','36'),
(@MageEntry,'8437','3000','0','0','22'),
(@MageEntry,'8438','8000','0','0','30'),
(@MageEntry,'8439','14000','0','0','38'),
(@MageEntry,'8444','7000','0','0','28'),
(@MageEntry,'8445','12000','0','0','34'),
(@MageEntry,'8446','15000','0','0','40'),
(@MageEntry,'8450','4000','0','0','24'),
(@MageEntry,'8451','13000','0','0','36'),
(@MageEntry,'8455','8000','0','0','30'),
(@MageEntry,'8457','8000','0','0','30'),
(@MageEntry,'8458','15000','0','0','40'),
(@MageEntry,'8461','10000','0','0','32'),
(@MageEntry,'8462','18000','0','0','42'),
(@MageEntry,'8492','12000','0','0','34'),
(@MageEntry,'8494','7000','0','0','28'),
(@MageEntry,'8495','13000','0','0','36'),
(@MageEntry,'10053','28000','0','0','48'),
(@MageEntry,'10054','40000','0','0','58'),
(@MageEntry,'10059','15000','0','0','40'),
(@MageEntry,'10138','15000','0','0','40'),
(@MageEntry,'10139','32000','0','0','50'),
(@MageEntry,'10140','42000','0','0','60'),
(@MageEntry,'10144','18000','0','0','42'),
(@MageEntry,'10145','35000','0','0','52'),
(@MageEntry,'10148','18000','0','0','42'),
(@MageEntry,'10149','28000','0','0','48'),
(@MageEntry,'10150','36000','0','0','54'),
(@MageEntry,'10151','42000','0','0','60'),
(@MageEntry,'10156','18000','0','0','42'),
(@MageEntry,'10157','38000','0','0','56'),
(@MageEntry,'10159','18000','0','0','42'),
(@MageEntry,'10160','32000','0','0','50'),
(@MageEntry,'10161','40000','0','0','58'),
(@MageEntry,'10169','18000','0','0','42'),
(@MageEntry,'10170','36000','0','0','54'),
(@MageEntry,'10173','28000','0','0','48'),
(@MageEntry,'10174','42000','0','0','60'),
(@MageEntry,'10177','35000','0','0','52'),
(@MageEntry,'10179','23000','0','0','44'),
(@MageEntry,'10180','32000','0','0','50'),
(@MageEntry,'10181','38000','0','0','56'),
(@MageEntry,'10185','23000','0','0','44'),
(@MageEntry,'10186','35000','0','0','52'),
(@MageEntry,'10187','42000','0','0','60'),
(@MageEntry,'10191','23000','0','0','44'),
(@MageEntry,'10192','35000','0','0','52'),
(@MageEntry,'10193','42000','0','0','60'),
(@MageEntry,'10197','26000','0','0','46'),
(@MageEntry,'10199','36000','0','0','54'),
(@MageEntry,'10201','26000','0','0','46'),
(@MageEntry,'10202','36000','0','0','54'),
(@MageEntry,'10205','26000','0','0','46'),
(@MageEntry,'10206','35000','0','0','52'),
(@MageEntry,'10207','40000','0','0','58'),
(@MageEntry,'10211','28000','0','0','48'),
(@MageEntry,'10212','38000','0','0','56'),
(@MageEntry,'10215','28000','0','0','48'),
(@MageEntry,'10216','38000','0','0','56'),
(@MageEntry,'10219','32000','0','0','50'),
(@MageEntry,'10220','42000','0','0','60'),
(@MageEntry,'10223','32000','0','0','50'),
(@MageEntry,'10225','42000','0','0','60'),
(@MageEntry,'10230','36000','0','0','54'),
(@MageEntry,'11416','15000','0','0','40'),
(@MageEntry,'11417','15000','0','0','40'),
(@MageEntry,'11418','15000','0','0','40'),
(@MageEntry,'11419','15000','0','0','50'),
(@MageEntry,'11420','15000','0','0','50'),
(@MageEntry,'12051','2000','0','0','20'),
(@MageEntry,'12505','100','0','0','24'),
(@MageEntry,'12522','400','0','0','30'),
(@MageEntry,'12523','650','0','0','36'),
(@MageEntry,'12524','900','0','0','42'),
(@MageEntry,'12525','1400','0','0','48'),
(@MageEntry,'12526','1800','0','0','54'),
(@MageEntry,'12824','2000','0','0','20'),
(@MageEntry,'12825','15000','0','0','40'),
(@MageEntry,'12826','42000','0','0','60'),
(@MageEntry,'13018','400','0','0','36'),
(@MageEntry,'13019','1150','0','0','44'),
(@MageEntry,'13020','1750','0','0','52'),
(@MageEntry,'13021','2100','0','0','60'),
(@MageEntry,'13031','1700','0','0','46'),
(@MageEntry,'13032','1900','0','0','52'),
(@MageEntry,'13033','2100','0','0','58'),
(@MageEntry,'18809','2100','0','0','60'),
(@MageEntry,'22782','28000','0','0','46'),
(@MageEntry,'22783','40000','0','0','58'),
(@MageEntry,'23028','38000','0','0','56'),
(@MageEntry,'25304','42000','0','0','60'),
(@MageEntry,'25306','42000','0','0','62'),
(@MageEntry,'25345','42000','0','0','60'),
(@MageEntry,'27070','78000','0','0','66'),
(@MageEntry,'27071','57000','0','0','63'),
(@MageEntry,'27072','110000','0','0','69'),
(@MageEntry,'27073','70000','0','0','65'),
(@MageEntry,'27074','120000','0','0','70'),
(@MageEntry,'27075','57000','0','0','63'),
(@MageEntry,'27078','46000','0','0','61'),
(@MageEntry,'27079','120000','0','0','70'),
(@MageEntry,'27080','51000','0','0','62'),
(@MageEntry,'27082','120000','0','0','70'),
(@MageEntry,'27085','96000','0','0','68'),
(@MageEntry,'27086','63000','0','0','64'),
(@MageEntry,'27087','70000','0','0','65'),
(@MageEntry,'27088','87000','0','0','67'),
(@MageEntry,'27090','150000','0','0','70'),
(@MageEntry,'27101','96000','0','0','68'),
(@MageEntry,'27124','110000','0','0','69'),
(@MageEntry,'27125','110000','0','0','69'),
(@MageEntry,'27126','120000','0','0','70'),
(@MageEntry,'27127','100000','0','0','70'),
(@MageEntry,'27128','110000','0','0','69'),
(@MageEntry,'27130','57000','0','0','63'),
(@MageEntry,'27131','96000','0','0','68'),
(@MageEntry,'27132','3900','0','0','66'),
(@MageEntry,'27133','3500','0','0','65'),
(@MageEntry,'27134','2500','0','0','64'),
(@MageEntry,'28272','3000','0','0','30'),
(@MageEntry,'28609','42000','0','0','60'),
(@MageEntry,'28612','42000','0','0','60'),
(@MageEntry,'30449','120000','0','0','70'),
(@MageEntry,'30451','63000','0','0','64'),
(@MageEntry,'30455','78000','0','0','66'),
(@MageEntry,'30482','51000','0','0','62'),
(@MageEntry,'32266','15000','0','0','40'),
(@MageEntry,'32267','15000','0','0','40'),
(@MageEntry,'32271','2000','0','0','20'),
(@MageEntry,'32272','2000','0','0','20'),
(@MageEntry,'32796','120000','0','0','70'),
(@MageEntry,'33041','1900','0','0','56'),
(@MageEntry,'33042','2200','0','0','64'),
(@MageEntry,'33043','2500','0','0','70'),
(@MageEntry,'33405','6000','0','0','70'),
(@MageEntry,'33690','20000','0','0','60'),
(@MageEntry,'33691','150000','0','0','65'),
(@MageEntry,'33717','150000','0','0','70'),
(@MageEntry,'33933','6000','0','0','70'),
(@MageEntry,'33938','7500','0','0','70'),
(@MageEntry,'33944','100000','0','0','67'),
(@MageEntry,'33946','110000','0','0','69'),
(@MageEntry,'35715','20000','0','0','60'),
(@MageEntry,'35717','150000','0','0','65'),
(@MageEntry,'37420','70000','0','0','65'),
(@MageEntry,'38692','150000','0','0','70'),
(@MageEntry,'38697','150000','0','0','70'),
(@MageEntry,'38699','87000','0','0','69'),
(@MageEntry,'38704','100000','0','0','70'),
(@MageEntry,'42832','150000','0','0','74'),
(@MageEntry,'42833','150000','0','0','78'),
(@MageEntry,'42841','150000','0','0','75'),
(@MageEntry,'42842','150000','0','0','79'),
(@MageEntry,'42843','150000','0','0','75'),
(@MageEntry,'42846','150000','0','0','79'),
(@MageEntry,'42858','150000','0','0','73'),
(@MageEntry,'42859','150000','0','0','78'),
(@MageEntry,'42872','150000','0','0','74'),
(@MageEntry,'42873','150000','0','0','80'),
(@MageEntry,'42890','7500','0','0','73'),
(@MageEntry,'42891','7500','0','0','77'),
(@MageEntry,'42894','150000','0','0','71'),
(@MageEntry,'42896','150000','0','0','76'),
(@MageEntry,'42897','150000','0','0','80'),
(@MageEntry,'42913','150000','0','0','72'),
(@MageEntry,'42914','150000','0','0','78'),
(@MageEntry,'42917','150000','0','0','75'),
(@MageEntry,'42920','150000','0','0','76'),
(@MageEntry,'42921','150000','0','0','80'),
(@MageEntry,'42925','150000','0','0','72'),
(@MageEntry,'42926','150000','0','0','79'),
(@MageEntry,'42930','150000','0','0','72'),
(@MageEntry,'42931','150000','0','0','79'),
(@MageEntry,'42939','150000','0','0','74'),
(@MageEntry,'42940','150000','0','0','80'),
(@MageEntry,'42944','7500','0','0','75'),
(@MageEntry,'42945','7500','0','0','80'),
(@MageEntry,'42949','7500','0','0','75'),
(@MageEntry,'42950','7500','0','0','80'),
(@MageEntry,'42955','150000','0','0','75'),
(@MageEntry,'42956','150000','0','0','80'),
(@MageEntry,'42985','150000','0','0','77'),
(@MageEntry,'42995','150000','0','0','80'),
(@MageEntry,'43002','150000','0','0','80'),
(@MageEntry,'43008','150000','0','0','79'),
(@MageEntry,'43010','150000','0','0','78'),
(@MageEntry,'43012','150000','0','0','79'),
(@MageEntry,'43015','150000','0','0','76'),
(@MageEntry,'43017','150000','0','0','77'),
(@MageEntry,'43019','150000','0','0','73'),
(@MageEntry,'43020','150000','0','0','79'),
(@MageEntry,'43023','150000','0','0','71'),
(@MageEntry,'43024','150000','0','0','79'),
(@MageEntry,'43038','7500','0','0','75'),
(@MageEntry,'43039','7500','0','0','80'),
(@MageEntry,'43045','150000','0','0','71'),
(@MageEntry,'43046','150000','0','0','79'),
(@MageEntry,'43987','120000','0','0','70'),
(@MageEntry,'44614','150000','0','0','75'),
(@MageEntry,'44780','10000','0','0','70'),
(@MageEntry,'44781','15000','0','0','80'),
(@MageEntry,'45438','8000','0','0','30'),
(@MageEntry,'47610','150000','0','0','80'),
(@MageEntry,'49358','2000','0','0','35'),
(@MageEntry,'49359','2000','0','0','35'),
(@MageEntry,'49360','15000','0','0','35'),
(@MageEntry,'49361','15000','0','0','35'),
(@MageEntry,'53140','100000','0','0','71'),
(@MageEntry,'53142','100000','0','0','74'),
(@MageEntry,'55342','150000','0','0','80'),
(@MageEntry,'55359','5000','0','0','70'),
(@MageEntry,'55360','7500','0','0','80'),
(@MageEntry,'58659','150000','0','0','80');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@PaladinEntry,'465','10','0','0','0'),
(@PaladinEntry,'498','100','0','0','6'),
(@PaladinEntry,'633','300','0','0','10'),
(@PaladinEntry,'639','100','0','0','6'),
(@PaladinEntry,'642','13000','0','0','34'),
(@PaladinEntry,'643','4000','0','0','20'),
(@PaladinEntry,'647','2000','0','0','14'),
(@PaladinEntry,'750','20000','0','0','40'),
(@PaladinEntry,'853','100','0','0','8'),
(@PaladinEntry,'879','4000','0','0','20'),
(@PaladinEntry,'1022','300','0','0','10'),
(@PaladinEntry,'1026','4000','0','0','22'),
(@PaladinEntry,'1032','20000','0','0','40'),
(@PaladinEntry,'1038','6000','0','0','26'),
(@PaladinEntry,'1042','11000','0','0','30'),
(@PaladinEntry,'1044','3500','0','0','18'),
(@PaladinEntry,'1152','100','0','0','8'),
(@PaladinEntry,'2800','11000','0','0','30'),
(@PaladinEntry,'2812','28000','0','0','50'),
(@PaladinEntry,'3127','100','0','0','8'),
(@PaladinEntry,'3472','16000','0','0','38'),
(@PaladinEntry,'4987','21000','0','0','42'),
(@PaladinEntry,'5502','4000','0','0','20'),
(@PaladinEntry,'5588','5000','0','0','24'),
(@PaladinEntry,'5589','20000','0','0','40'),
(@PaladinEntry,'5599','5000','0','0','24'),
(@PaladinEntry,'5614','9000','0','0','28'),
(@PaladinEntry,'5615','14000','0','0','36'),
(@PaladinEntry,'6940','24000','0','0','46'),
(@PaladinEntry,'7294','3000','0','0','16'),
(@PaladinEntry,'7328','1200','0','0','12'),
(@PaladinEntry,'10278','16000','0','0','38'),
(@PaladinEntry,'10290','300','0','0','10'),
(@PaladinEntry,'10291','11000','0','0','30'),
(@PaladinEntry,'10292','28000','0','0','50'),
(@PaladinEntry,'10293','46000','0','0','60'),
(@PaladinEntry,'10298','6000','0','0','26'),
(@PaladinEntry,'10299','14000','0','0','36'),
(@PaladinEntry,'10300','24000','0','0','46'),
(@PaladinEntry,'10301','42000','0','0','56'),
(@PaladinEntry,'10308','40000','0','0','54'),
(@PaladinEntry,'10310','28000','0','0','50'),
(@PaladinEntry,'10312','22000','0','0','44'),
(@PaladinEntry,'10313','34000','0','0','52'),
(@PaladinEntry,'10314','46000','0','0','60'),
(@PaladinEntry,'10318','46000','0','0','60'),
(@PaladinEntry,'10322','5000','0','0','24'),
(@PaladinEntry,'10324','14000','0','0','36'),
(@PaladinEntry,'10326','5000','0','0','24'),
(@PaladinEntry,'10328','24000','0','0','46'),
(@PaladinEntry,'10329','40000','0','0','54'),
(@PaladinEntry,'13820','10000','0','0','20'),
(@PaladinEntry,'19740','100','0','0','4'),
(@PaladinEntry,'19742','2000','0','0','14'),
(@PaladinEntry,'19746','4000','0','0','22'),
(@PaladinEntry,'19750','4000','0','0','20'),
(@PaladinEntry,'19752','11000','0','0','30'),
(@PaladinEntry,'19834','1000','0','0','12'),
(@PaladinEntry,'19835','4000','0','0','22'),
(@PaladinEntry,'19836','12000','0','0','32'),
(@PaladinEntry,'19837','21000','0','0','42'),
(@PaladinEntry,'19838','34000','0','0','52'),
(@PaladinEntry,'19850','5000','0','0','24'),
(@PaladinEntry,'19852','13000','0','0','34'),
(@PaladinEntry,'19853','22000','0','0','44'),
(@PaladinEntry,'19854','40000','0','0','54'),
(@PaladinEntry,'19876','9000','0','0','28'),
(@PaladinEntry,'19888','12000','0','0','32'),
(@PaladinEntry,'19891','14000','0','0','36'),
(@PaladinEntry,'19895','20000','0','0','40'),
(@PaladinEntry,'19896','34000','0','0','52'),
(@PaladinEntry,'19897','22000','0','0','44'),
(@PaladinEntry,'19898','42000','0','0','56'),
(@PaladinEntry,'19899','26000','0','0','48'),
(@PaladinEntry,'19900','46000','0','0','60'),
(@PaladinEntry,'19939','6000','0','0','26'),
(@PaladinEntry,'19940','13000','0','0','34'),
(@PaladinEntry,'19941','21000','0','0','42'),
(@PaladinEntry,'19942','28000','0','0','50'),
(@PaladinEntry,'19943','44000','0','0','58'),
(@PaladinEntry,'20116','11000','0','0','30'),
(@PaladinEntry,'20164','4000','0','0','22'),
(@PaladinEntry,'20165','11000','0','0','30'),
(@PaladinEntry,'20166','16000','0','0','38'),
(@PaladinEntry,'20217','1000','0','0','20'),
(@PaladinEntry,'20271','100','0','0','4'),
(@PaladinEntry,'20772','26000','0','0','48'),
(@PaladinEntry,'20773','46000','0','0','60'),
(@PaladinEntry,'20922','20000','0','0','40'),
(@PaladinEntry,'20923','28000','0','0','50'),
(@PaladinEntry,'20924','46000','0','0','60'),
(@PaladinEntry,'20927','1400','0','0','50'),
(@PaladinEntry,'20928','2300','0','0','60'),
(@PaladinEntry,'20929','1300','0','0','48'),
(@PaladinEntry,'20930','2100','0','0','56'),
(@PaladinEntry,'23215','200000','0','0','40'),
(@PaladinEntry,'24239','46000','0','0','60'),
(@PaladinEntry,'24274','34000','0','0','52'),
(@PaladinEntry,'24275','22000','0','0','44'),
(@PaladinEntry,'25290','50000','0','0','60'),
(@PaladinEntry,'25291','50000','0','0','60'),
(@PaladinEntry,'25292','46000','0','0','60'),
(@PaladinEntry,'25780','3000','0','0','16'),
(@PaladinEntry,'25782','46000','0','0','52'),
(@PaladinEntry,'25894','46000','0','0','54'),
(@PaladinEntry,'25898','2300','0','0','60'),
(@PaladinEntry,'25899','2300','0','0','60'),
(@PaladinEntry,'25916','46000','0','0','60'),
(@PaladinEntry,'25918','46000','0','0','60'),
(@PaladinEntry,'26573','4000','0','0','20'),
(@PaladinEntry,'27135','55000','0','0','62'),
(@PaladinEntry,'27136','130000','0','0','70'),
(@PaladinEntry,'27137','83000','0','0','66'),
(@PaladinEntry,'27138','100000','0','0','68'),
(@PaladinEntry,'27139','110000','0','0','69'),
(@PaladinEntry,'27140','200000','0','0','70'),
(@PaladinEntry,'27141','100000','0','0','70'),
(@PaladinEntry,'27142','75000','0','0','65'),
(@PaladinEntry,'27143','75000','0','0','65'),
(@PaladinEntry,'27149','130000','0','0','70'),
(@PaladinEntry,'27150','83000','0','0','66'),
(@PaladinEntry,'27151','61000','0','0','63'),
(@PaladinEntry,'27152','100000','0','0','68'),
(@PaladinEntry,'27153','130000','0','0','70'),
(@PaladinEntry,'27154','110000','0','0','69'),
(@PaladinEntry,'27173','130000','0','0','70'),
(@PaladinEntry,'27174','3350','0','0','64'),
(@PaladinEntry,'27179','6500','0','0','70'),
(@PaladinEntry,'27180','100000','0','0','68'),
(@PaladinEntry,'31789','4000','0','0','14'),
(@PaladinEntry,'31801','67000','0','0','64'),
(@PaladinEntry,'31884','130000','0','0','70'),
(@PaladinEntry,'32223','55000','0','0','62'),
(@PaladinEntry,'32699','2300','0','0','60'),
(@PaladinEntry,'32700','5000','0','0','70'),
(@PaladinEntry,'33072','6500','0','0','70'),
(@PaladinEntry,'34767','200000','0','0','40'),
(@PaladinEntry,'34769','100000','0','0','30'),
(@PaladinEntry,'48781','200000','0','0','75'),
(@PaladinEntry,'48782','200000','0','0','80'),
(@PaladinEntry,'48784','200000','0','0','74'),
(@PaladinEntry,'48785','200000','0','0','79'),
(@PaladinEntry,'48788','200000','0','0','78'),
(@PaladinEntry,'48800','200000','0','0','73'),
(@PaladinEntry,'48801','200000','0','0','79'),
(@PaladinEntry,'48805','200000','0','0','74'),
(@PaladinEntry,'48806','200000','0','0','80'),
(@PaladinEntry,'48816','200000','0','0','72'),
(@PaladinEntry,'48817','200000','0','0','78'),
(@PaladinEntry,'48818','200000','0','0','75'),
(@PaladinEntry,'48819','200000','0','0','80'),
(@PaladinEntry,'48824','10000','0','0','75'),
(@PaladinEntry,'48825','10000','0','0','80'),
(@PaladinEntry,'48826','10000','0','0','75'),
(@PaladinEntry,'48827','10000','0','0','80'),
(@PaladinEntry,'48931','200000','0','0','73'),
(@PaladinEntry,'48932','200000','0','0','79'),
(@PaladinEntry,'48933','200000','0','0','73'),
(@PaladinEntry,'48934','200000','0','0','79'),
(@PaladinEntry,'48935','200000','0','0','71'),
(@PaladinEntry,'48936','200000','0','0','77'),
(@PaladinEntry,'48937','200000','0','0','71'),
(@PaladinEntry,'48938','200000','0','0','77'),
(@PaladinEntry,'48941','200000','0','0','74'),
(@PaladinEntry,'48942','200000','0','0','79'),
(@PaladinEntry,'48943','200000','0','0','76'),
(@PaladinEntry,'48945','200000','0','0','77'),
(@PaladinEntry,'48947','200000','0','0','78'),
(@PaladinEntry,'48949','200000','0','0','72'),
(@PaladinEntry,'48950','200000','0','0','79'),
(@PaladinEntry,'48951','10000','0','0','75'),
(@PaladinEntry,'48952','10000','0','0','80'),
(@PaladinEntry,'53407','9000','0','0','28'),
(@PaladinEntry,'53408','1000','0','0','12'),
(@PaladinEntry,'53600','200000','0','0','75'),
(@PaladinEntry,'53601','100000','0','0','80'),
(@PaladinEntry,'53736','100000','0','0','66'),
(@PaladinEntry,'54043','200000','0','0','76'),
(@PaladinEntry,'54428','100000','0','0','71'),
(@PaladinEntry,'56525','3600','0','0','20'),
(@PaladinEntry,'61411','200000','0','0','80'),
(@PaladinEntry,'62124','3000','0','0','16');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@PriestEntry,'17','100','0','0','6'),
(@PriestEntry,'139','200','0','0','8'),
(@PriestEntry,'453','3000','0','0','20'),
(@PriestEntry,'527','2000','0','0','18'),
(@PriestEntry,'528','1200','0','0','14'),
(@PriestEntry,'552','11000','0','0','32'),
(@PriestEntry,'586','200','0','0','8'),
(@PriestEntry,'588','800','0','0','12'),
(@PriestEntry,'589','100','0','0','4'),
(@PriestEntry,'591','100','0','0','6'),
(@PriestEntry,'592','800','0','0','12'),
(@PriestEntry,'594','300','0','0','10'),
(@PriestEntry,'596','10000','0','0','30'),
(@PriestEntry,'598','1200','0','0','14'),
(@PriestEntry,'600','2000','0','0','18'),
(@PriestEntry,'602','10000','0','0','30'),
(@PriestEntry,'605','10000','0','0','30'),
(@PriestEntry,'970','2000','0','0','18'),
(@PriestEntry,'976','10000','0','0','30'),
(@PriestEntry,'984','4000','0','0','22'),
(@PriestEntry,'988','14000','0','0','36'),
(@PriestEntry,'992','6000','0','0','26'),
(@PriestEntry,'996','18000','0','0','40'),
(@PriestEntry,'1004','10000','0','0','30'),
(@PriestEntry,'1006','18000','0','0','40'),
(@PriestEntry,'1243','10','0','0','0'),
(@PriestEntry,'1244','800','0','0','12'),
(@PriestEntry,'1245','5000','0','0','24'),
(@PriestEntry,'1706','12000','0','0','34'),
(@PriestEntry,'2006','300','0','0','10'),
(@PriestEntry,'2010','4000','0','0','22'),
(@PriestEntry,'2052','100','0','0','4'),
(@PriestEntry,'2053','300','0','0','10'),
(@PriestEntry,'2054','1600','0','0','16'),
(@PriestEntry,'2055','4000','0','0','22'),
(@PriestEntry,'2060','18000','0','0','40'),
(@PriestEntry,'2061','3000','0','0','20'),
(@PriestEntry,'2096','4000','0','0','22'),
(@PriestEntry,'2767','12000','0','0','34'),
(@PriestEntry,'2791','14000','0','0','36'),
(@PriestEntry,'2944','3000','0','0','20'),
(@PriestEntry,'3747','5000','0','0','24'),
(@PriestEntry,'6060','16000','0','0','38'),
(@PriestEntry,'6063','8000','0','0','28'),
(@PriestEntry,'6064','12000','0','0','34'),
(@PriestEntry,'6065','10000','0','0','30'),
(@PriestEntry,'6066','14000','0','0','36'),
(@PriestEntry,'6074','1200','0','0','14'),
(@PriestEntry,'6075','3000','0','0','20'),
(@PriestEntry,'6076','6000','0','0','26'),
(@PriestEntry,'6077','11000','0','0','32'),
(@PriestEntry,'6078','16000','0','0','38'),
(@PriestEntry,'6346','800','0','0','20'),
(@PriestEntry,'7128','3000','0','0','20'),
(@PriestEntry,'8092','300','0','0','10'),
(@PriestEntry,'8102','1600','0','0','16'),
(@PriestEntry,'8103','4000','0','0','22'),
(@PriestEntry,'8104','8000','0','0','28'),
(@PriestEntry,'8105','12000','0','0','34'),
(@PriestEntry,'8106','18000','0','0','40'),
(@PriestEntry,'8122','1200','0','0','14'),
(@PriestEntry,'8124','8000','0','0','28'),
(@PriestEntry,'8129','5000','0','0','24'),
(@PriestEntry,'9472','6000','0','0','26'),
(@PriestEntry,'9473','11000','0','0','32'),
(@PriestEntry,'9474','16000','0','0','38'),
(@PriestEntry,'9484','3000','0','0','20'),
(@PriestEntry,'9485','18000','0','0','40'),
(@PriestEntry,'10880','12000','0','0','34'),
(@PriestEntry,'10881','26000','0','0','46'),
(@PriestEntry,'10888','22000','0','0','42'),
(@PriestEntry,'10890','42000','0','0','56'),
(@PriestEntry,'10892','22000','0','0','42'),
(@PriestEntry,'10893','30000','0','0','50'),
(@PriestEntry,'10894','44000','0','0','58'),
(@PriestEntry,'10898','22000','0','0','42'),
(@PriestEntry,'10899','28000','0','0','48'),
(@PriestEntry,'10900','40000','0','0','54'),
(@PriestEntry,'10901','46000','0','0','60'),
(@PriestEntry,'10909','24000','0','0','44'),
(@PriestEntry,'10915','24000','0','0','44'),
(@PriestEntry,'10916','30000','0','0','50'),
(@PriestEntry,'10917','42000','0','0','56'),
(@PriestEntry,'10927','24000','0','0','44'),
(@PriestEntry,'10928','30000','0','0','50'),
(@PriestEntry,'10929','42000','0','0','56'),
(@PriestEntry,'10933','26000','0','0','46'),
(@PriestEntry,'10934','40000','0','0','54'),
(@PriestEntry,'10937','28000','0','0','48'),
(@PriestEntry,'10938','46000','0','0','60'),
(@PriestEntry,'10945','26000','0','0','46'),
(@PriestEntry,'10946','38000','0','0','52'),
(@PriestEntry,'10947','44000','0','0','58'),
(@PriestEntry,'10951','30000','0','0','50'),
(@PriestEntry,'10952','46000','0','0','60'),
(@PriestEntry,'10955','46000','0','0','60'),
(@PriestEntry,'10957','22000','0','0','42'),
(@PriestEntry,'10958','42000','0','0','56'),
(@PriestEntry,'10960','30000','0','0','50'),
(@PriestEntry,'10961','46000','0','0','60'),
(@PriestEntry,'10963','26000','0','0','46'),
(@PriestEntry,'10964','38000','0','0','52'),
(@PriestEntry,'10965','44000','0','0','58'),
(@PriestEntry,'14752','600','0','0','30'),
(@PriestEntry,'14818','900','0','0','40'),
(@PriestEntry,'14819','1500','0','0','50'),
(@PriestEntry,'14914','3000','0','0','20'),
(@PriestEntry,'15237','3000','0','0','20'),
(@PriestEntry,'15261','46000','0','0','60'),
(@PriestEntry,'15262','5000','0','0','24'),
(@PriestEntry,'15263','10000','0','0','30'),
(@PriestEntry,'15264','14000','0','0','36'),
(@PriestEntry,'15265','22000','0','0','42'),
(@PriestEntry,'15266','28000','0','0','48'),
(@PriestEntry,'15267','40000','0','0','54'),
(@PriestEntry,'15430','8000','0','0','28'),
(@PriestEntry,'15431','14000','0','0','36'),
(@PriestEntry,'17311','400','0','0','28'),
(@PriestEntry,'17312','700','0','0','36'),
(@PriestEntry,'17313','1200','0','0','44'),
(@PriestEntry,'17314','1900','0','0','52'),
(@PriestEntry,'18807','2300','0','0','60'),
(@PriestEntry,'19238','60','0','0','26'),
(@PriestEntry,'19240','300','0','0','34'),
(@PriestEntry,'19241','600','0','0','42'),
(@PriestEntry,'19242','1100','0','0','50'),
(@PriestEntry,'19243','1500','0','0','58'),
(@PriestEntry,'19276','8000','0','0','28'),
(@PriestEntry,'19277','14000','0','0','36'),
(@PriestEntry,'19278','24000','0','0','44'),
(@PriestEntry,'19279','38000','0','0','52'),
(@PriestEntry,'19280','46000','0','0','60'),
(@PriestEntry,'20770','44000','0','0','58'),
(@PriestEntry,'21562','28000','0','0','48'),
(@PriestEntry,'21564','46000','0','0','60'),
(@PriestEntry,'25210','65000','0','0','63'),
(@PriestEntry,'25213','110000','0','0','68'),
(@PriestEntry,'25217','80000','0','0','65'),
(@PriestEntry,'25218','140000','0','0','70'),
(@PriestEntry,'25221','80000','0','0','65'),
(@PriestEntry,'25222','140000','0','0','70'),
(@PriestEntry,'25233','53000','0','0','61'),
(@PriestEntry,'25235','99000','0','0','67'),
(@PriestEntry,'25308','110000','0','0','68'),
(@PriestEntry,'25312','2300','0','0','70'),
(@PriestEntry,'25314','65000','0','0','60'),
(@PriestEntry,'25315','6500','0','0','60'),
(@PriestEntry,'25316','6500','0','0','60'),
(@PriestEntry,'25331','110000','0','0','68'),
(@PriestEntry,'25363','53000','0','0','61'),
(@PriestEntry,'25364','65000','0','0','69'),
(@PriestEntry,'25367','80000','0','0','65'),
(@PriestEntry,'25368','140000','0','0','70'),
(@PriestEntry,'25372','65000','0','0','63'),
(@PriestEntry,'25375','65000','0','0','69'),
(@PriestEntry,'25384','65000','0','0','66'),
(@PriestEntry,'25387','6500','0','0','68'),
(@PriestEntry,'25389','65000','0','0','70'),
(@PriestEntry,'25392','100000','0','0','70'),
(@PriestEntry,'25431','65000','0','0','69'),
(@PriestEntry,'25433','110000','0','0','68'),
(@PriestEntry,'25435','110000','0','0','68'),
(@PriestEntry,'25437','2200','0','0','66'),
(@PriestEntry,'25467','110000','0','0','68'),
(@PriestEntry,'27681','2300','0','0','60'),
(@PriestEntry,'27683','42000','0','0','56'),
(@PriestEntry,'27799','24000','0','0','44'),
(@PriestEntry,'27800','38000','0','0','52'),
(@PriestEntry,'27801','46000','0','0','60'),
(@PriestEntry,'27841','2300','0','0','60'),
(@PriestEntry,'27870','1200','0','0','50'),
(@PriestEntry,'27871','1500','0','0','60'),
(@PriestEntry,'28275','1500','0','0','70'),
(@PriestEntry,'32375','110000','0','0','70'),
(@PriestEntry,'32379','59000','0','0','62'),
(@PriestEntry,'32546','72000','0','0','64'),
(@PriestEntry,'32996','110000','0','0','70'),
(@PriestEntry,'32999','3400','0','0','70'),
(@PriestEntry,'33076','110000','0','0','68'),
(@PriestEntry,'34433','89000','0','0','66'),
(@PriestEntry,'34863','2100','0','0','56'),
(@PriestEntry,'34864','2300','0','0','60'),
(@PriestEntry,'34865','4000','0','0','65'),
(@PriestEntry,'34866','7000','0','0','70'),
(@PriestEntry,'34916','2300','0','0','60'),
(@PriestEntry,'34917','2300','0','0','70'),
(@PriestEntry,'39374','100000','0','0','70'),
(@PriestEntry,'48040','180000','0','0','71'),
(@PriestEntry,'48045','10000','0','0','75'),
(@PriestEntry,'48062','180000','0','0','73'),
(@PriestEntry,'48063','180000','0','0','78'),
(@PriestEntry,'48065','180000','0','0','75'),
(@PriestEntry,'48066','180000','0','0','80'),
(@PriestEntry,'48067','180000','0','0','75'),
(@PriestEntry,'48068','180000','0','0','80'),
(@PriestEntry,'48070','180000','0','0','73'),
(@PriestEntry,'48071','180000','0','0','79'),
(@PriestEntry,'48072','180000','0','0','76'),
(@PriestEntry,'48073','9000','0','0','80'),
(@PriestEntry,'48074','9000','0','0','80'),
(@PriestEntry,'48077','180000','0','0','75'),
(@PriestEntry,'48078','180000','0','0','80'),
(@PriestEntry,'48086','9000','0','0','75'),
(@PriestEntry,'48087','9000','0','0','80'),
(@PriestEntry,'48088','9000','0','0','75'),
(@PriestEntry,'48089','9000','0','0','80'),
(@PriestEntry,'48112','100000','0','0','74'),
(@PriestEntry,'48113','180000','0','0','79'),
(@PriestEntry,'48119','180000','0','0','72'),
(@PriestEntry,'48120','180000','0','0','78'),
(@PriestEntry,'48122','180000','0','0','74'),
(@PriestEntry,'48123','180000','0','0','79'),
(@PriestEntry,'48124','180000','0','0','75'),
(@PriestEntry,'48125','180000','0','0','80'),
(@PriestEntry,'48126','180000','0','0','74'),
(@PriestEntry,'48127','180000','0','0','79'),
(@PriestEntry,'48134','180000','0','0','72'),
(@PriestEntry,'48135','180000','0','0','78'),
(@PriestEntry,'48155','9000','0','0','74'),
(@PriestEntry,'48156','9000','0','0','80'),
(@PriestEntry,'48157','180000','0','0','75'),
(@PriestEntry,'48158','180000','0','0','80'),
(@PriestEntry,'48159','9000','0','0','75'),
(@PriestEntry,'48160','9000','0','0','80'),
(@PriestEntry,'48161','180000','0','0','80'),
(@PriestEntry,'48162','180000','0','0','80'),
(@PriestEntry,'48168','180000','0','0','77'),
(@PriestEntry,'48169','180000','0','0','76'),
(@PriestEntry,'48170','180000','0','0','77'),
(@PriestEntry,'48171','180000','0','0','78'),
(@PriestEntry,'48172','3250','0','0','73'),
(@PriestEntry,'48173','9000','0','0','80'),
(@PriestEntry,'48299','180000','0','0','73'),
(@PriestEntry,'48300','180000','0','0','79'),
(@PriestEntry,'53005','5000','0','0','70'),
(@PriestEntry,'53006','9000','0','0','75'),
(@PriestEntry,'53007','9000','0','0','80'),
(@PriestEntry,'53023','100000','0','0','80'),
(@PriestEntry,'64843','180000','0','0','80'),
(@PriestEntry,'64901','65000','0','0','60');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@RogueEntry,'53','100','0','0','4'),
(@RogueEntry,'408','10000','0','0','30'),
(@RogueEntry,'674','300','0','0','10'),
(@RogueEntry,'703','1200','0','0','14'),
(@RogueEntry,'921','100','0','0','4'),
(@RogueEntry,'1725','4000','0','0','22'),
(@RogueEntry,'1757','100','0','0','6'),
(@RogueEntry,'1758','1200','0','0','14'),
(@RogueEntry,'1759','4000','0','0','22'),
(@RogueEntry,'1760','10000','0','0','30'),
(@RogueEntry,'1766','800','0','0','12'),
(@RogueEntry,'1776','100','0','0','6'),
(@RogueEntry,'1784','10','0','0','0'),
(@RogueEntry,'1785','3000','0','0','20'),
(@RogueEntry,'1786','20000','0','0','40'),
(@RogueEntry,'1787','54000','0','0','60'),
(@RogueEntry,'1804','1800','0','0','16'),
(@RogueEntry,'1833','6000','0','0','26'),
(@RogueEntry,'1842','10000','0','0','30'),
(@RogueEntry,'1856','4000','0','0','22'),
(@RogueEntry,'1857','27000','0','0','42'),
(@RogueEntry,'1860','20000','0','0','40'),
(@RogueEntry,'1943','3000','0','0','20'),
(@RogueEntry,'1966','1800','0','0','16'),
(@RogueEntry,'2070','8000','0','0','28'),
(@RogueEntry,'2094','14000','0','0','34'),
(@RogueEntry,'2589','800','0','0','12'),
(@RogueEntry,'2590','3000','0','0','20'),
(@RogueEntry,'2591','8000','0','0','28'),
(@RogueEntry,'2836','5000','0','0','24'),
(@RogueEntry,'2983','300','0','0','10'),
(@RogueEntry,'3127','800','0','0','12'),
(@RogueEntry,'5171','300','0','0','10'),
(@RogueEntry,'5277','200','0','0','8'),
(@RogueEntry,'5938','100000','0','0','70'),
(@RogueEntry,'6760','200','0','0','8'),
(@RogueEntry,'6761','1800','0','0','16'),
(@RogueEntry,'6762','5000','0','0','24'),
(@RogueEntry,'6768','8000','0','0','28'),
(@RogueEntry,'6770','300','0','0','10'),
(@RogueEntry,'6774','27000','0','0','42'),
(@RogueEntry,'8621','18000','0','0','38'),
(@RogueEntry,'8623','12000','0','0','32'),
(@RogueEntry,'8624','20000','0','0','40'),
(@RogueEntry,'8631','4000','0','0','22'),
(@RogueEntry,'8632','10000','0','0','30'),
(@RogueEntry,'8633','18000','0','0','38'),
(@RogueEntry,'8637','20000','0','0','40'),
(@RogueEntry,'8639','8000','0','0','28'),
(@RogueEntry,'8640','16000','0','0','36'),
(@RogueEntry,'8643','35000','0','0','50'),
(@RogueEntry,'8647','1200','0','0','14'),
(@RogueEntry,'8676','2900','0','0','18'),
(@RogueEntry,'8696','14000','0','0','34'),
(@RogueEntry,'8721','16000','0','0','36'),
(@RogueEntry,'8724','6000','0','0','26'),
(@RogueEntry,'8725','14000','0','0','34'),
(@RogueEntry,'11267','27000','0','0','42'),
(@RogueEntry,'11268','35000','0','0','50'),
(@RogueEntry,'11269','52000','0','0','58'),
(@RogueEntry,'11273','29000','0','0','44'),
(@RogueEntry,'11274','46000','0','0','52'),
(@RogueEntry,'11275','54000','0','0','60'),
(@RogueEntry,'11279','29000','0','0','44'),
(@RogueEntry,'11280','46000','0','0','52'),
(@RogueEntry,'11281','54000','0','0','60'),
(@RogueEntry,'11289','31000','0','0','46'),
(@RogueEntry,'11290','48000','0','0','54'),
(@RogueEntry,'11293','31000','0','0','46'),
(@RogueEntry,'11294','48000','0','0','54'),
(@RogueEntry,'11297','33000','0','0','48'),
(@RogueEntry,'11299','33000','0','0','48'),
(@RogueEntry,'11300','50000','0','0','56'),
(@RogueEntry,'11303','46000','0','0','52'),
(@RogueEntry,'11305','52000','0','0','58'),
(@RogueEntry,'17347','385','0','0','46'),
(@RogueEntry,'17348','650','0','0','58'),
(@RogueEntry,'25300','72000','0','0','60'),
(@RogueEntry,'25302','50000','0','0','60'),
(@RogueEntry,'26669','35000','0','0','50'),
(@RogueEntry,'26679','72000','0','0','64'),
(@RogueEntry,'26839','50000','0','0','61'),
(@RogueEntry,'26861','50000','0','0','62'),
(@RogueEntry,'26862','100000','0','0','70'),
(@RogueEntry,'26863','110000','0','0','68'),
(@RogueEntry,'26864','2700','0','0','70'),
(@RogueEntry,'26865','140000','0','0','64'),
(@RogueEntry,'26867','120000','0','0','68'),
(@RogueEntry,'26884','100000','0','0','70'),
(@RogueEntry,'26889','59000','0','0','62'),
(@RogueEntry,'27441','80000','0','0','66'),
(@RogueEntry,'27448','72000','0','0','64'),
(@RogueEntry,'31016','65000','0','0','60'),
(@RogueEntry,'31224','89000','0','0','66'),
(@RogueEntry,'32645','59000','0','0','62'),
(@RogueEntry,'32684','100000','0','0','69'),
(@RogueEntry,'34411','5500','0','0','50'),
(@RogueEntry,'34412','6500','0','0','60'),
(@RogueEntry,'34413','7500','0','0','70'),
(@RogueEntry,'48637','300000','0','0','76'),
(@RogueEntry,'48638','300000','0','0','80'),
(@RogueEntry,'48656','300000','0','0','74'),
(@RogueEntry,'48657','300000','0','0','80'),
(@RogueEntry,'48658','300000','0','0','72'),
(@RogueEntry,'48659','300000','0','0','78'),
(@RogueEntry,'48660','15000','0','0','80'),
(@RogueEntry,'48663','15000','0','0','75'),
(@RogueEntry,'48666','15000','0','0','80'),
(@RogueEntry,'48667','300000','0','0','73'),
(@RogueEntry,'48668','300000','0','0','79'),
(@RogueEntry,'48671','300000','0','0','74'),
(@RogueEntry,'48672','300000','0','0','79'),
(@RogueEntry,'48673','100000','0','0','70'),
(@RogueEntry,'48674','300000','0','0','76'),
(@RogueEntry,'48675','300000','0','0','75'),
(@RogueEntry,'48676','300000','0','0','80'),
(@RogueEntry,'48689','140000','0','0','70'),
(@RogueEntry,'48690','300000','0','0','75'),
(@RogueEntry,'48691','300000','0','0','80'),
(@RogueEntry,'51722','3000','0','0','20'),
(@RogueEntry,'51723','300000','0','0','80'),
(@RogueEntry,'51724','300000','0','0','71'),
(@RogueEntry,'57934','300000','0','0','75'),
(@RogueEntry,'57992','300000','0','0','74'),
(@RogueEntry,'57993','300000','0','0','80');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@ShamanEntry,'131','3000','0','0','22'),
(@ShamanEntry,'324','100','0','0','8'),
(@ShamanEntry,'325','1800','0','0','16'),
(@ShamanEntry,'332','100','0','0','6'),
(@ShamanEntry,'370','800','0','0','12'),
(@ShamanEntry,'421','8000','0','0','32'),
(@ShamanEntry,'526','1800','0','0','16'),
(@ShamanEntry,'529','100','0','0','8'),
(@ShamanEntry,'546','6000','0','0','28'),
(@ShamanEntry,'547','800','0','0','12'),
(@ShamanEntry,'548','900','0','0','14'),
(@ShamanEntry,'556','7000','0','0','30'),
(@ShamanEntry,'905','3500','0','0','24'),
(@ShamanEntry,'913','2000','0','0','18'),
(@ShamanEntry,'915','2200','0','0','20'),
(@ShamanEntry,'930','12000','0','0','40'),
(@ShamanEntry,'939','3500','0','0','24'),
(@ShamanEntry,'943','4000','0','0','26'),
(@ShamanEntry,'945','8000','0','0','32'),
(@ShamanEntry,'959','8000','0','0','32'),
(@ShamanEntry,'1064','12000','0','0','40'),
(@ShamanEntry,'1535','800','0','0','12'),
(@ShamanEntry,'2008','800','0','0','12'),
(@ShamanEntry,'2062','58000','0','0','66'),
(@ShamanEntry,'2484','100','0','0','6'),
(@ShamanEntry,'2645','2200','0','0','16'),
(@ShamanEntry,'2825','88000','0','0','70'),
(@ShamanEntry,'2860','22000','0','0','48'),
(@ShamanEntry,'2894','71000','0','0','68'),
(@ShamanEntry,'3599','1000','0','0','10'),
(@ShamanEntry,'3738','47000','0','0','64'),
(@ShamanEntry,'5394','2000','0','0','20'),
(@ShamanEntry,'5675','4000','0','0','26'),
(@ShamanEntry,'5730','100','0','0','8'),
(@ShamanEntry,'6041','8000','0','0','32'),
(@ShamanEntry,'6196','4000','0','0','26'),
(@ShamanEntry,'6363','2200','0','0','20'),
(@ShamanEntry,'6364','7000','0','0','30'),
(@ShamanEntry,'6365','12000','0','0','40'),
(@ShamanEntry,'6375','7000','0','0','30'),
(@ShamanEntry,'6377','12000','0','0','40'),
(@ShamanEntry,'6390','2000','0','0','18'),
(@ShamanEntry,'6391','6000','0','0','28'),
(@ShamanEntry,'6392','11000','0','0','38'),
(@ShamanEntry,'6495','9000','0','0','34'),
(@ShamanEntry,'8004','2200','0','0','20'),
(@ShamanEntry,'8005','12000','0','0','40'),
(@ShamanEntry,'8008','6000','0','0','28'),
(@ShamanEntry,'8010','10000','0','0','36'),
(@ShamanEntry,'8012','8000','0','0','32'),
(@ShamanEntry,'8017','10','0','0','0'),
(@ShamanEntry,'8018','100','0','0','8'),
(@ShamanEntry,'8019','1800','0','0','16'),
(@ShamanEntry,'8024','400','0','0','10'),
(@ShamanEntry,'8027','2000','0','0','18'),
(@ShamanEntry,'8030','4000','0','0','26'),
(@ShamanEntry,'8033','2200','0','0','20'),
(@ShamanEntry,'8038','6000','0','0','28'),
(@ShamanEntry,'8042','100','0','0','4'),
(@ShamanEntry,'8044','100','0','0','8'),
(@ShamanEntry,'8045','900','0','0','14'),
(@ShamanEntry,'8046','3500','0','0','24'),
(@ShamanEntry,'8050','400','0','0','10'),
(@ShamanEntry,'8052','2000','0','0','18'),
(@ShamanEntry,'8053','6000','0','0','28'),
(@ShamanEntry,'8056','2200','0','0','20'),
(@ShamanEntry,'8058','9000','0','0','34'),
(@ShamanEntry,'8071','100','0','0','4'),
(@ShamanEntry,'8075','400','0','0','10'),
(@ShamanEntry,'8134','12000','0','0','40'),
(@ShamanEntry,'8143','2000','0','0','18'),
(@ShamanEntry,'8154','900','0','0','14'),
(@ShamanEntry,'8155','3500','0','0','24'),
(@ShamanEntry,'8160','3500','0','0','24'),
(@ShamanEntry,'8161','11000','0','0','38'),
(@ShamanEntry,'8170','11000','0','0','38'),
(@ShamanEntry,'8177','7000','0','0','30'),
(@ShamanEntry,'8181','3500','0','0','24'),
(@ShamanEntry,'8184','6000','0','0','28'),
(@ShamanEntry,'8190','4000','0','0','26'),
(@ShamanEntry,'8227','6000','0','0','28'),
(@ShamanEntry,'8232','7000','0','0','30'),
(@ShamanEntry,'8235','12000','0','0','40'),
(@ShamanEntry,'8249','11000','0','0','38'),
(@ShamanEntry,'8498','3000','0','0','22'),
(@ShamanEntry,'8499','8000','0','0','32'),
(@ShamanEntry,'8512','8000','0','0','32'),
(@ShamanEntry,'8737','12000','0','0','40'),
(@ShamanEntry,'10391','11000','0','0','38'),
(@ShamanEntry,'10392','18000','0','0','44'),
(@ShamanEntry,'10395','22000','0','0','48'),
(@ShamanEntry,'10396','30000','0','0','56'),
(@ShamanEntry,'10399','3500','0','0','24'),
(@ShamanEntry,'10406','9000','0','0','34'),
(@ShamanEntry,'10407','18000','0','0','44'),
(@ShamanEntry,'10408','29000','0','0','54'),
(@ShamanEntry,'10412','10000','0','0','36'),
(@ShamanEntry,'10413','22000','0','0','48'),
(@ShamanEntry,'10414','34000','0','0','60'),
(@ShamanEntry,'10427','22000','0','0','48'),
(@ShamanEntry,'10428','32000','0','0','58'),
(@ShamanEntry,'10431','22000','0','0','48'),
(@ShamanEntry,'10432','30000','0','0','56'),
(@ShamanEntry,'10437','24000','0','0','50'),
(@ShamanEntry,'10438','34000','0','0','60'),
(@ShamanEntry,'10442','27000','0','0','52'),
(@ShamanEntry,'10447','12000','0','0','40'),
(@ShamanEntry,'10448','27000','0','0','52'),
(@ShamanEntry,'10456','11000','0','0','38'),
(@ShamanEntry,'10462','24000','0','0','50'),
(@ShamanEntry,'10463','34000','0','0','60'),
(@ShamanEntry,'10466','18000','0','0','44'),
(@ShamanEntry,'10467','27000','0','0','52'),
(@ShamanEntry,'10468','34000','0','0','60'),
(@ShamanEntry,'10472','20000','0','0','46'),
(@ShamanEntry,'10473','32000','0','0','58'),
(@ShamanEntry,'10478','11000','0','0','38'),
(@ShamanEntry,'10479','29000','0','0','54'),
(@ShamanEntry,'10486','24000','0','0','50'),
(@ShamanEntry,'10495','10000','0','0','36'),
(@ShamanEntry,'10496','20000','0','0','46'),
(@ShamanEntry,'10497','30000','0','0','56'),
(@ShamanEntry,'10526','22000','0','0','48'),
(@ShamanEntry,'10537','16000','0','0','42'),
(@ShamanEntry,'10538','32000','0','0','58'),
(@ShamanEntry,'10585','10000','0','0','36'),
(@ShamanEntry,'10586','20000','0','0','46'),
(@ShamanEntry,'10587','30000','0','0','56'),
(@ShamanEntry,'10595','7000','0','0','30'),
(@ShamanEntry,'10600','18000','0','0','44'),
(@ShamanEntry,'10601','34000','0','0','60'),
(@ShamanEntry,'10605','30000','0','0','56'),
(@ShamanEntry,'10622','20000','0','0','46'),
(@ShamanEntry,'10623','29000','0','0','54'),
(@ShamanEntry,'11314','16000','0','0','42'),
(@ShamanEntry,'11315','27000','0','0','52'),
(@ShamanEntry,'15207','24000','0','0','50'),
(@ShamanEntry,'15208','30000','0','0','56'),
(@ShamanEntry,'16339','10000','0','0','36'),
(@ShamanEntry,'16341','20000','0','0','46'),
(@ShamanEntry,'16342','30000','0','0','56'),
(@ShamanEntry,'16355','22000','0','0','48'),
(@ShamanEntry,'16356','32000','0','0','58'),
(@ShamanEntry,'16362','34000','0','0','60'),
(@ShamanEntry,'16387','32000','0','0','58'),
(@ShamanEntry,'20608','7000','0','0','30'),
(@ShamanEntry,'20609','3500','0','0','24'),
(@ShamanEntry,'20610','10000','0','0','36'),
(@ShamanEntry,'20776','22000','0','0','48'),
(@ShamanEntry,'20777','34000','0','0','60'),
(@ShamanEntry,'24398','38000','0','0','62'),
(@ShamanEntry,'25357','6500','0','0','60'),
(@ShamanEntry,'25361','34000','0','0','60'),
(@ShamanEntry,'25391','42000','0','0','63'),
(@ShamanEntry,'25396','88000','0','0','70'),
(@ShamanEntry,'25420','58000','0','0','66'),
(@ShamanEntry,'25422','34000','0','0','61'),
(@ShamanEntry,'25423','71000','0','0','68'),
(@ShamanEntry,'25439','42000','0','0','63'),
(@ShamanEntry,'25442','88000','0','0','70'),
(@ShamanEntry,'25448','38000','0','0','62'),
(@ShamanEntry,'25449','64000','0','0','67'),
(@ShamanEntry,'25454','79000','0','0','69'),
(@ShamanEntry,'25457','88000','0','0','70'),
(@ShamanEntry,'25464','71000','0','0','68'),
(@ShamanEntry,'25469','42000','0','0','63'),
(@ShamanEntry,'25472','88000','0','0','70'),
(@ShamanEntry,'25489','47000','0','0','64'),
(@ShamanEntry,'25500','58000','0','0','66'),
(@ShamanEntry,'25505','71000','0','0','68'),
(@ShamanEntry,'25508','42000','0','0','63'),
(@ShamanEntry,'25509','88000','0','0','70'),
(@ShamanEntry,'25525','64000','0','0','67'),
(@ShamanEntry,'25528','52000','0','0','65'),
(@ShamanEntry,'25533','79000','0','0','69'),
(@ShamanEntry,'25546','34000','0','0','61'),
(@ShamanEntry,'25547','88000','0','0','70'),
(@ShamanEntry,'25552','52000','0','0','65'),
(@ShamanEntry,'25557','64000','0','0','67'),
(@ShamanEntry,'25560','64000','0','0','67'),
(@ShamanEntry,'25563','71000','0','0','68'),
(@ShamanEntry,'25567','79000','0','0','69'),
(@ShamanEntry,'25570','52000','0','0','65'),
(@ShamanEntry,'25574','79000','0','0','69'),
(@ShamanEntry,'25590','79000','0','0','69'),
(@ShamanEntry,'29228','65000','0','0','60'),
(@ShamanEntry,'32182','88000','0','0','70'),
(@ShamanEntry,'32593','1700','0','0','60'),
(@ShamanEntry,'32594','5000','0','0','70'),
(@ShamanEntry,'33736','79000','0','0','69'),
(@ShamanEntry,'36936','7000','0','0','30'),
(@ShamanEntry,'49230','180000','0','0','74'),
(@ShamanEntry,'49231','180000','0','0','79'),
(@ShamanEntry,'49232','180000','0','0','75'),
(@ShamanEntry,'49233','180000','0','0','80'),
(@ShamanEntry,'49235','180000','0','0','73'),
(@ShamanEntry,'49236','180000','0','0','78'),
(@ShamanEntry,'49237','180000','0','0','73'),
(@ShamanEntry,'49238','180000','0','0','79'),
(@ShamanEntry,'49270','180000','0','0','74'),
(@ShamanEntry,'49271','180000','0','0','80'),
(@ShamanEntry,'49272','180000','0','0','75'),
(@ShamanEntry,'49273','180000','0','0','80'),
(@ShamanEntry,'49275','180000','0','0','72'),
(@ShamanEntry,'49276','180000','0','0','77'),
(@ShamanEntry,'49277','180000','0','0','80'),
(@ShamanEntry,'49280','180000','0','0','75'),
(@ShamanEntry,'49281','180000','0','0','80'),
(@ShamanEntry,'49283','9000','0','0','75'),
(@ShamanEntry,'49284','9000','0','0','80'),
(@ShamanEntry,'51505','180000','0','0','75'),
(@ShamanEntry,'51514','180000','0','0','80'),
(@ShamanEntry,'51730','7000','0','0','30'),
(@ShamanEntry,'51988','12000','0','0','40'),
(@ShamanEntry,'51991','24000','0','0','50'),
(@ShamanEntry,'51992','34000','0','0','60'),
(@ShamanEntry,'51993','71000','0','0','70'),
(@ShamanEntry,'51994','180000','0','0','80'),
(@ShamanEntry,'52127','2200','0','0','20'),
(@ShamanEntry,'52129','6000','0','0','28'),
(@ShamanEntry,'52131','9000','0','0','34'),
(@ShamanEntry,'52134','12000','0','0','41'),
(@ShamanEntry,'52136','22000','0','0','48'),
(@ShamanEntry,'52138','29000','0','0','55'),
(@ShamanEntry,'55458','180000','0','0','74'),
(@ShamanEntry,'55459','180000','0','0','80'),
(@ShamanEntry,'57622','180000','0','0','75'),
(@ShamanEntry,'57720','3400','0','0','60'),
(@ShamanEntry,'57721','5200','0','0','70'),
(@ShamanEntry,'57722','10000','0','0','80'),
(@ShamanEntry,'57960','180000','0','0','76'),
(@ShamanEntry,'57994','2500','0','0','16'),
(@ShamanEntry,'58580','180000','0','0','71'),
(@ShamanEntry,'58581','180000','0','0','75'),
(@ShamanEntry,'58582','180000','0','0','78'),
(@ShamanEntry,'58643','180000','0','0','80'),
(@ShamanEntry,'58649','180000','0','0','71'),
(@ShamanEntry,'58652','180000','0','0','75'),
(@ShamanEntry,'58656','180000','0','0','80'),
(@ShamanEntry,'58699','180000','0','0','71'),
(@ShamanEntry,'58703','180000','0','0','75'),
(@ShamanEntry,'58704','180000','0','0','80'),
(@ShamanEntry,'58731','180000','0','0','73'),
(@ShamanEntry,'58734','180000','0','0','78'),
(@ShamanEntry,'58737','180000','0','0','75'),
(@ShamanEntry,'58739','180000','0','0','80'),
(@ShamanEntry,'58741','180000','0','0','75'),
(@ShamanEntry,'58745','180000','0','0','80'),
(@ShamanEntry,'58746','180000','0','0','75'),
(@ShamanEntry,'58749','180000','0','0','80'),
(@ShamanEntry,'58751','180000','0','0','73'),
(@ShamanEntry,'58753','180000','0','0','78'),
(@ShamanEntry,'58755','180000','0','0','71'),
(@ShamanEntry,'58756','180000','0','0','76'),
(@ShamanEntry,'58757','180000','0','0','80'),
(@ShamanEntry,'58771','180000','0','0','71'),
(@ShamanEntry,'58773','180000','0','0','76'),
(@ShamanEntry,'58774','180000','0','0','80'),
(@ShamanEntry,'58785','180000','0','0','71'),
(@ShamanEntry,'58789','180000','0','0','76'),
(@ShamanEntry,'58790','180000','0','0','80'),
(@ShamanEntry,'58794','180000','0','0','71'),
(@ShamanEntry,'58795','180000','0','0','76'),
(@ShamanEntry,'58796','180000','0','0','80'),
(@ShamanEntry,'58801','180000','0','0','71'),
(@ShamanEntry,'58803','180000','0','0','76'),
(@ShamanEntry,'58804','180000','0','0','80'),
(@ShamanEntry,'59156','88000','0','0','70'),
(@ShamanEntry,'59158','180000','0','0','75'),
(@ShamanEntry,'59159','180000','0','0','80'),
(@ShamanEntry,'60043','180000','0','0','80'),
(@ShamanEntry,'61299','9000','0','0','70'),
(@ShamanEntry,'61300','9000','0','0','75'),
(@ShamanEntry,'61301','9000','0','0','80'),
(@ShamanEntry,'61649','180000','0','0','75'),
(@ShamanEntry,'61657','180000','0','0','80'),
(@ShamanEntry,'66842','7000','0','0','30'),
(@ShamanEntry,'66843','7000','0','0','40'),
(@ShamanEntry,'66844','7000','0','0','50');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@WarlockEntry,'126','2500','0','0','22'),
(@WarlockEntry,'132','4000','0','0','26'),
(@WarlockEntry,'172','100','0','0','4'),
(@WarlockEntry,'348','10','0','0','0'),
(@WarlockEntry,'603','26000','0','0','60'),
(@WarlockEntry,'688','100','0','0','4'),
(@WarlockEntry,'689','900','0','0','14'),
(@WarlockEntry,'691','3000','0','0','30'),
(@WarlockEntry,'693','1500','0','0','18'),
(@WarlockEntry,'695','100','0','0','6'),
(@WarlockEntry,'696','300','0','0','10'),
(@WarlockEntry,'697','1000','0','0','10'),
(@WarlockEntry,'698','2000','0','0','20'),
(@WarlockEntry,'699','2500','0','0','22'),
(@WarlockEntry,'702','100','0','0','4'),
(@WarlockEntry,'705','600','0','0','12'),
(@WarlockEntry,'706','2000','0','0','20'),
(@WarlockEntry,'707','300','0','0','10'),
(@WarlockEntry,'709','6000','0','0','30'),
(@WarlockEntry,'710','5000','0','0','28'),
(@WarlockEntry,'712','2000','0','0','20'),
(@WarlockEntry,'755','600','0','0','12'),
(@WarlockEntry,'980','200','0','0','8'),
(@WarlockEntry,'1014','1500','0','0','18'),
(@WarlockEntry,'1086','6000','0','0','30'),
(@WarlockEntry,'1088','2000','0','0','20'),
(@WarlockEntry,'1094','2000','0','0','20'),
(@WarlockEntry,'1098','6000','0','0','30'),
(@WarlockEntry,'1106','5000','0','0','28'),
(@WarlockEntry,'1108','600','0','0','12'),
(@WarlockEntry,'1120','300','0','0','10'),
(@WarlockEntry,'1122','5000','0','0','50'),
(@WarlockEntry,'1454','100','0','0','6'),
(@WarlockEntry,'1455','1200','0','0','16'),
(@WarlockEntry,'1456','4000','0','0','26'),
(@WarlockEntry,'1490','7000','0','0','32'),
(@WarlockEntry,'1710','3500','0','0','20'),
(@WarlockEntry,'1714','4000','0','0','26'),
(@WarlockEntry,'1949','6000','0','0','30'),
(@WarlockEntry,'2362','9000','0','0','36'),
(@WarlockEntry,'2941','6000','0','0','30'),
(@WarlockEntry,'3698','2000','0','0','20'),
(@WarlockEntry,'3699','5000','0','0','28'),
(@WarlockEntry,'3700','9000','0','0','36'),
(@WarlockEntry,'5138','3000','0','0','24'),
(@WarlockEntry,'5484','11000','0','0','40'),
(@WarlockEntry,'5500','3000','0','0','24'),
(@WarlockEntry,'5676','1500','0','0','18'),
(@WarlockEntry,'5697','1200','0','0','16'),
(@WarlockEntry,'5699','8000','0','0','34'),
(@WarlockEntry,'5740','2000','0','0','20'),
(@WarlockEntry,'5782','200','0','0','8'),
(@WarlockEntry,'6201','300','0','0','10'),
(@WarlockEntry,'6202','2500','0','0','22'),
(@WarlockEntry,'6205','2500','0','0','22'),
(@WarlockEntry,'6213','7000','0','0','32'),
(@WarlockEntry,'6215','22000','0','0','56'),
(@WarlockEntry,'6217','5000','0','0','28'),
(@WarlockEntry,'6219','8000','0','0','34'),
(@WarlockEntry,'6222','900','0','0','14'),
(@WarlockEntry,'6223','3000','0','0','24'),
(@WarlockEntry,'6229','7000','0','0','32'),
(@WarlockEntry,'6353','14000','0','0','48'),
(@WarlockEntry,'6366','5000','0','0','28'),
(@WarlockEntry,'6789','11000','0','0','42'),
(@WarlockEntry,'7641','9000','0','0','36'),
(@WarlockEntry,'7646','7000','0','0','32'),
(@WarlockEntry,'7648','8000','0','0','34'),
(@WarlockEntry,'7651','10000','0','0','38'),
(@WarlockEntry,'8288','3000','0','0','24'),
(@WarlockEntry,'8289','10000','0','0','38'),
(@WarlockEntry,'11659','12000','0','0','44'),
(@WarlockEntry,'11660','18000','0','0','52'),
(@WarlockEntry,'11661','26000','0','0','60'),
(@WarlockEntry,'11665','11000','0','0','40'),
(@WarlockEntry,'11667','15000','0','0','50'),
(@WarlockEntry,'11668','26000','0','0','60'),
(@WarlockEntry,'11671','12000','0','0','44'),
(@WarlockEntry,'11672','20000','0','0','54'),
(@WarlockEntry,'11675','18000','0','0','52'),
(@WarlockEntry,'11677','13000','0','0','46'),
(@WarlockEntry,'11678','24000','0','0','58'),
(@WarlockEntry,'11683','11000','0','0','42'),
(@WarlockEntry,'11684','20000','0','0','54'),
(@WarlockEntry,'11687','8100','0','0','36'),
(@WarlockEntry,'11688','11700','0','0','46'),
(@WarlockEntry,'11689','19800','0','0','56'),
(@WarlockEntry,'11693','12000','0','0','44'),
(@WarlockEntry,'11694','18000','0','0','52'),
(@WarlockEntry,'11695','26000','0','0','60'),
(@WarlockEntry,'11699','13000','0','0','46'),
(@WarlockEntry,'11700','20000','0','0','54'),
(@WarlockEntry,'11707','11000','0','0','42'),
(@WarlockEntry,'11708','18000','0','0','52'),
(@WarlockEntry,'11711','10000','0','0','38'),
(@WarlockEntry,'11712','14000','0','0','48'),
(@WarlockEntry,'11713','24000','0','0','58'),
(@WarlockEntry,'11719','15000','0','0','50'),
(@WarlockEntry,'11721','13000','0','0','46'),
(@WarlockEntry,'11722','26000','0','0','60'),
(@WarlockEntry,'11725','12000','0','0','44'),
(@WarlockEntry,'11726','24000','0','0','58'),
(@WarlockEntry,'11729','13000','0','0','46'),
(@WarlockEntry,'11730','24000','0','0','58'),
(@WarlockEntry,'11733','11000','0','0','40'),
(@WarlockEntry,'11734','15000','0','0','50'),
(@WarlockEntry,'11735','26000','0','0','60'),
(@WarlockEntry,'11739','11000','0','0','42'),
(@WarlockEntry,'11740','18000','0','0','52'),
(@WarlockEntry,'17727','14000','0','0','48'),
(@WarlockEntry,'17728','26000','0','0','60'),
(@WarlockEntry,'17919','4000','0','0','26'),
(@WarlockEntry,'17920','8000','0','0','34'),
(@WarlockEntry,'17921','11000','0','0','42'),
(@WarlockEntry,'17922','15000','0','0','50'),
(@WarlockEntry,'17923','24000','0','0','58'),
(@WarlockEntry,'17924','22000','0','0','56'),
(@WarlockEntry,'17925','15000','0','0','50'),
(@WarlockEntry,'17926','24000','0','0','58'),
(@WarlockEntry,'17928','20000','0','0','54'),
(@WarlockEntry,'17951','9000','0','0','36'),
(@WarlockEntry,'17952','13000','0','0','46'),
(@WarlockEntry,'17953','22000','0','0','56'),
(@WarlockEntry,'18540','5000','0','0','50'),
(@WarlockEntry,'18647','14000','0','0','48'),
(@WarlockEntry,'18867','150','0','0','24'),
(@WarlockEntry,'18868','350','0','0','32'),
(@WarlockEntry,'18869','550','0','0','40'),
(@WarlockEntry,'18870','700','0','0','48'),
(@WarlockEntry,'18871','1100','0','0','56'),
(@WarlockEntry,'18937','750','0','0','50'),
(@WarlockEntry,'18938','1300','0','0','60'),
(@WarlockEntry,'20752','6000','0','0','30'),
(@WarlockEntry,'20755','11000','0','0','40'),
(@WarlockEntry,'20756','15000','0','0','50'),
(@WarlockEntry,'20757','26000','0','0','60'),
(@WarlockEntry,'23161','200000','0','150','40'),
(@WarlockEntry,'25307','26000','0','0','62'),
(@WarlockEntry,'25309','26000','0','0','60'),
(@WarlockEntry,'25311','26000','0','0','60'),
(@WarlockEntry,'27209','70000','0','0','69'),
(@WarlockEntry,'27210','46000','0','0','65'),
(@WarlockEntry,'27211','42000','0','0','64'),
(@WarlockEntry,'27212','70000','0','0','69'),
(@WarlockEntry,'27213','63000','0','0','68'),
(@WarlockEntry,'27215','70000','0','0','69'),
(@WarlockEntry,'27216','46000','0','0','65'),
(@WarlockEntry,'27217','57000','0','0','67'),
(@WarlockEntry,'27218','57000','0','0','67'),
(@WarlockEntry,'27219','30000','0','0','62'),
(@WarlockEntry,'27220','70000','0','0','69'),
(@WarlockEntry,'27222','56700','0','0','68'),
(@WarlockEntry,'27223','63000','0','0','68'),
(@WarlockEntry,'27224','30000','0','0','61'),
(@WarlockEntry,'27228','70000','0','0','69'),
(@WarlockEntry,'27230','63000','0','0','68'),
(@WarlockEntry,'27238','78000','0','0','70'),
(@WarlockEntry,'27243','78000','0','0','70'),
(@WarlockEntry,'27250','51000','0','0','66'),
(@WarlockEntry,'27259','57000','0','0','67'),
(@WarlockEntry,'27260','78000','0','0','70'),
(@WarlockEntry,'27263','1300','0','0','63'),
(@WarlockEntry,'27265','1300','0','0','70'),
(@WarlockEntry,'28172','51000','0','0','66'),
(@WarlockEntry,'28176','34000','0','0','62'),
(@WarlockEntry,'28189','70000','0','0','69'),
(@WarlockEntry,'28610','34000','0','0','60'),
(@WarlockEntry,'29722','42000','0','0','64'),
(@WarlockEntry,'29858','51000','0','0','66'),
(@WarlockEntry,'29893','63000','0','0','68'),
(@WarlockEntry,'30404','2500','0','0','60'),
(@WarlockEntry,'30405','2500','0','0','70'),
(@WarlockEntry,'30413','2500','0','0','60'),
(@WarlockEntry,'30414','2500','0','0','70'),
(@WarlockEntry,'30459','78000','0','0','70'),
(@WarlockEntry,'30545','78000','0','0','70'),
(@WarlockEntry,'30546','3900','0','0','70'),
(@WarlockEntry,'30909','70000','0','0','69'),
(@WarlockEntry,'30910','78000','0','0','70'),
(@WarlockEntry,'32231','78000','0','0','70'),
(@WarlockEntry,'47793','160000','0','0','76'),
(@WarlockEntry,'47808','160000','0','0','74'),
(@WarlockEntry,'47809','160000','0','0','79'),
(@WarlockEntry,'47810','160000','0','0','75'),
(@WarlockEntry,'47811','160000','0','0','80'),
(@WarlockEntry,'47812','160000','0','0','71'),
(@WarlockEntry,'47813','160000','0','0','77'),
(@WarlockEntry,'47814','160000','0','0','74'),
(@WarlockEntry,'47815','160000','0','0','79'),
(@WarlockEntry,'47819','160000','0','0','72'),
(@WarlockEntry,'47820','160000','0','0','79'),
(@WarlockEntry,'47823','160000','0','0','78'),
(@WarlockEntry,'47824','160000','0','0','75'),
(@WarlockEntry,'47825','160000','0','0','80'),
(@WarlockEntry,'47826','8000','0','0','75'),
(@WarlockEntry,'47827','8000','0','0','80'),
(@WarlockEntry,'47835','160000','0','0','75'),
(@WarlockEntry,'47836','160000','0','0','80'),
(@WarlockEntry,'47837','100000','0','0','74'),
(@WarlockEntry,'47838','100000','0','0','80'),
(@WarlockEntry,'47841','8000','0','0','75'),
(@WarlockEntry,'47843','8000','0','0','80'),
(@WarlockEntry,'47846','8000','0','0','75'),
(@WarlockEntry,'47847','8000','0','0','80'),
(@WarlockEntry,'47855','160000','0','0','77'),
(@WarlockEntry,'47856','160000','0','0','76'),
(@WarlockEntry,'47857','160000','0','0','78'),
(@WarlockEntry,'47859','160000','0','0','73'),
(@WarlockEntry,'47860','160000','0','0','78'),
(@WarlockEntry,'47863','160000','0','0','73'),
(@WarlockEntry,'47864','160000','0','0','79'),
(@WarlockEntry,'47865','160000','0','0','78'),
(@WarlockEntry,'47867','160000','0','0','80'),
(@WarlockEntry,'47871','160000','0','0','73'),
(@WarlockEntry,'47878','160000','0','0','79'),
(@WarlockEntry,'47884','160000','0','0','76'),
(@WarlockEntry,'47886','160000','0','0','72'),
(@WarlockEntry,'47888','160000','0','0','78'),
(@WarlockEntry,'47889','160000','0','0','80'),
(@WarlockEntry,'47890','160000','0','0','72'),
(@WarlockEntry,'47891','160000','0','0','78'),
(@WarlockEntry,'47892','160000','0','0','74'),
(@WarlockEntry,'47893','160000','0','0','79'),
(@WarlockEntry,'47897','10000','0','0','75'),
(@WarlockEntry,'48018','160000','0','0','80'),
(@WarlockEntry,'48020','160000','0','0','80'),
(@WarlockEntry,'50511','160000','0','0','71'),
(@WarlockEntry,'50589','5000','0','0','50'),
(@WarlockEntry,'54785','5000','0','0','50'),
(@WarlockEntry,'57946','160000','0','0','80'),
(@WarlockEntry,'58887','160000','0','0','80'),
(@WarlockEntry,'59092','160000','0','0','80'),
(@WarlockEntry,'59161','2500','0','0','70'),
(@WarlockEntry,'59163','8000','0','0','75'),
(@WarlockEntry,'59164','8000','0','0','80'),
(@WarlockEntry,'59170','2500','0','0','70'),
(@WarlockEntry,'59171','8000','0','0','75'),
(@WarlockEntry,'59172','8000','0','0','80'),
(@WarlockEntry,'59671','5000','0','0','50'),
(@WarlockEntry,'60219','160000','0','0','74'),
(@WarlockEntry,'60220','160000','0','0','80'),
(@WarlockEntry,'61191','70000','0','0','72'),
(@WarlockEntry,'61290','10000','0','0','80'),
(@WarriorEntry,'71','6015','0','0','10'),
(@WarriorEntry,'72','6015','0','0','12'),
(@WarriorEntry,'100','100','0','0','4'),
(@WarriorEntry,'284','200','0','0','8'),
(@WarriorEntry,'285','1900','0','0','16'),
(@WarriorEntry,'355','2600','0','0','30'),
(@WarriorEntry,'469','65000','0','0','68'),
(@WarriorEntry,'674','3800','0','0','20'),
(@WarriorEntry,'676','3000','0','0','18'),
(@WarriorEntry,'694','1900','0','0','16'),
(@WarriorEntry,'750','22000','0','0','40'),
(@WarriorEntry,'772','100','0','0','4'),
(@WarriorEntry,'845','3800','0','0','20'),
(@WarriorEntry,'871','11000','0','0','28'),
(@WarriorEntry,'1160','1500','0','0','14'),
(@WarriorEntry,'1161','60165','0','0','26'),
(@WarriorEntry,'1464','12000','0','0','30'),
(@WarriorEntry,'1608','7600','0','0','24'),
(@WarriorEntry,'1680','18000','0','0','36'),
(@WarriorEntry,'1715','200','0','0','8'),
(@WarriorEntry,'1719','42000','0','0','50'),
(@WarriorEntry,'2048','67450','0','0','69'),
(@WarriorEntry,'2458','2600','0','0','30'),
(@WarriorEntry,'2565','1900','0','0','16'),
(@WarriorEntry,'2687','600','0','0','10'),
(@WarriorEntry,'3127','100','0','0','6'),
(@WarriorEntry,'3411','65000','0','0','70'),
(@WarriorEntry,'5242','6015','0','0','12'),
(@WarriorEntry,'5246','5700','0','0','22'),
(@WarriorEntry,'5308','7600','0','0','24'),
(@WarriorEntry,'6178','60165','0','0','26'),
(@WarriorEntry,'6190','7600','0','0','24'),
(@WarriorEntry,'6192','5700','0','0','22'),
(@WarriorEntry,'6343','100','0','0','6'),
(@WarriorEntry,'6546','600','0','0','10'),
(@WarriorEntry,'6547','3800','0','0','20'),
(@WarriorEntry,'6548','12000','0','0','30'),
(@WarriorEntry,'6552','19000','0','0','38'),
(@WarriorEntry,'6572','1500','0','0','14'),
(@WarriorEntry,'6574','7600','0','0','24'),
(@WarriorEntry,'6673','10','0','0','1'),
(@WarriorEntry,'7369','12000','0','0','30'),
(@WarriorEntry,'7379','16000','0','0','34'),
(@WarriorEntry,'7384','6015','0','0','12'),
(@WarriorEntry,'7386','2600','0','0','30'),
(@WarriorEntry,'8198','3000','0','0','18'),
(@WarriorEntry,'8204','11000','0','0','28'),
(@WarriorEntry,'8205','19000','0','0','38'),
(@WarriorEntry,'8820','19000','0','0','38'),
(@WarriorEntry,'11549','14000','0','0','32'),
(@WarriorEntry,'11550','32000','0','0','42'),
(@WarriorEntry,'11551','51300','0','0','52'),
(@WarriorEntry,'11554','16000','0','0','34'),
(@WarriorEntry,'11555','34000','0','0','44'),
(@WarriorEntry,'11556','53200','0','0','54'),
(@WarriorEntry,'11564','14000','0','0','32'),
(@WarriorEntry,'11565','22000','0','0','40'),
(@WarriorEntry,'11566','38000','0','0','48'),
(@WarriorEntry,'11567','55100','0','0','56'),
(@WarriorEntry,'11572','22000','0','0','40'),
(@WarriorEntry,'11573','42000','0','0','50'),
(@WarriorEntry,'11574','62000','0','0','60'),
(@WarriorEntry,'11578','36000','0','0','46'),
(@WarriorEntry,'11580','38000','0','0','48'),
(@WarriorEntry,'11581','57000','0','0','58'),
(@WarriorEntry,'11600','34000','0','0','44'),
(@WarriorEntry,'11601','53200','0','0','54'),
(@WarriorEntry,'11604','36000','0','0','46'),
(@WarriorEntry,'11605','53200','0','0','54'),
(@WarriorEntry,'11608','22000','0','0','40'),
(@WarriorEntry,'11609','42000','0','0','50'),
(@WarriorEntry,'12678','3800','0','0','20'),
(@WarriorEntry,'18499','14000','0','0','32'),
(@WarriorEntry,'20230','3800','0','0','20'),
(@WarriorEntry,'20252','12000','0','0','30'),
(@WarriorEntry,'20569','62000','0','0','60'),
(@WarriorEntry,'20658','14000','0','0','32'),
(@WarriorEntry,'20660','22000','0','0','40'),
(@WarriorEntry,'20661','38000','0','0','48'),
(@WarriorEntry,'20662','55100','0','0','56'),
(@WarriorEntry,'21551','1900','0','0','48'),
(@WarriorEntry,'21552','2800','0','0','54'),
(@WarriorEntry,'21553','3100','0','0','60'),
(@WarriorEntry,'23920','65000','0','0','64'),
(@WarriorEntry,'23922','22000','0','0','40'),
(@WarriorEntry,'23923','38000','0','0','48'),
(@WarriorEntry,'23924','53200','0','0','54'),
(@WarriorEntry,'23925','62000','0','0','60'),
(@WarriorEntry,'25202','65000','0','0','62'),
(@WarriorEntry,'25203','67450','0','0','70'),
(@WarriorEntry,'25208','65000','0','0','68'),
(@WarriorEntry,'25231','65000','0','0','68'),
(@WarriorEntry,'25234','65000','0','0','65'),
(@WarriorEntry,'25236','67450','0','0','70'),
(@WarriorEntry,'25241','65000','0','0','61'),
(@WarriorEntry,'25242','67450','0','0','69'),
(@WarriorEntry,'25248','3250','0','0','66'),
(@WarriorEntry,'25258','65000','0','0','66'),
(@WarriorEntry,'25264','65000','0','0','67'),
(@WarriorEntry,'25269','65000','0','0','63'),
(@WarriorEntry,'25286','57000','0','0','60'),
(@WarriorEntry,'25288','57000','0','0','60'),
(@WarriorEntry,'25289','65000','0','0','60'),
(@WarriorEntry,'29707','65000','0','0','66'),
(@WarriorEntry,'30016','3100','0','0','60'),
(@WarriorEntry,'30022','3250','0','0','70'),
(@WarriorEntry,'30324','100000','0','0','70'),
(@WarriorEntry,'30330','3500','0','0','70'),
(@WarriorEntry,'30356','67450','0','0','70'),
(@WarriorEntry,'30357','260000','0','0','70'),
(@WarriorEntry,'34428','100','0','0','6'),
(@WarriorEntry,'46845','260000','0','0','71'),
(@WarriorEntry,'47436','260000','0','0','78'),
(@WarriorEntry,'47437','260000','0','0','79'),
(@WarriorEntry,'47439','100000','0','0','74'),
(@WarriorEntry,'47440','260000','0','0','80'),
(@WarriorEntry,'47449','260000','0','0','72'),
(@WarriorEntry,'47450','260000','0','0','76'),
(@WarriorEntry,'47465','260000','0','0','76'),
(@WarriorEntry,'47470','260000','0','0','73'),
(@WarriorEntry,'47471','260000','0','0','80'),
(@WarriorEntry,'47474','260000','0','0','74'),
(@WarriorEntry,'47475','260000','0','0','79'),
(@WarriorEntry,'47485','13000','0','0','75'),
(@WarriorEntry,'47486','13000','0','0','80'),
(@WarriorEntry,'47487','260000','0','0','75'),
(@WarriorEntry,'47488','260000','0','0','80'),
(@WarriorEntry,'47497','5000','0','0','75'),
(@WarriorEntry,'47498','5000','0','0','80'),
(@WarriorEntry,'47501','260000','0','0','73'),
(@WarriorEntry,'47502','260000','0','0','78'),
(@WarriorEntry,'47519','260000','0','0','72'),
(@WarriorEntry,'47520','260000','0','0','77'),
(@WarriorEntry,'55694','100000','0','0','75'),
(@WarriorEntry,'57755','100000','0','0','80'),
(@WarriorEntry,'57823','260000','0','0','80'),
(@WarriorEntry,'64382','260000','0','0','71');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@WeaponMasterEntry,'196','1000','0','0','0'),
(@WeaponMasterEntry,'197','1000','0','0','0'),
(@WeaponMasterEntry,'198','1000','0','0','0'),
(@WeaponMasterEntry,'199','1000','0','0','0'),
(@WeaponMasterEntry,'200','1000','0','0','20'),
(@WeaponMasterEntry,'201','1000','0','0','0'),
(@WeaponMasterEntry,'202','1000','0','0','0'),
(@WeaponMasterEntry,'227','1000','0','0','0'),
(@WeaponMasterEntry,'264','1000','0','0','0'),
(@WeaponMasterEntry,'266','1000','0','0','0'),
(@WeaponMasterEntry,'1180','1000','0','0','0'),
(@WeaponMasterEntry,'2567','1000','0','0','0'),
(@WeaponMasterEntry,'5011','1000','0','0','0'),
(@WeaponMasterEntry,'15590','1000','0','0','0');
INSERT INTO `npc_trainer` (`ID`,`SpellID`,`MoneyCost`,`ReqSkillLine`,`ReqSkillRank`,`ReqLevel`) VALUES
(@FlightEntry,'33389','40000','0','0','20'),
(@FlightEntry,'33392','500000','762','75','40'),
(@FlightEntry,'34092','2500000','762','150','60'),
(@FlightEntry,'34093','50000000','762','225','70'),
(@FlightEntry,'54197','10000000','762','225','77');
-- ######################################################--
-- TRAINER GOSSIP TEXT
-- ######################################################--
INSERT INTO `npc_text` (`ID`,`text0_0`,`text0_1`,`lang0`,`Probability0`,`VerifiedBuild`) VALUES
(65000,'Greetings $N, ready for some training?','Greetings $N, ready for some training?',1,1,12340),
(65001,'I cannot train you, $c. You need to talk to your class trainer.','I cannot train you, $c. You need to talk to your class trainer.',1,1,12340);
-- ######################################################--
-- TRAINER GOSSIP MENU
-- ######################################################--
INSERT INTO `gossip_menu` (`MenuID`,`TextID`) VALUES
('65015','65000'),
('65015','65001'),
('65016','65000'),
('65016','65001'),
('65017','65000'),
('65017','65001'),
('65018','65000'),
('65018','65001'),
('65019','65000'),
('65019','65001'),
('65020','65000'),
('65020','65001'),
('65021','65000'),
('65021','65001'),
('65022','65000'),
('65022','65001'),
('65023','65000'),
('65023','65001'),
('65024','65000'),
('65024','65001');
-- ######################################################--
-- TRAINER GOSSIP MENU OPTION
-- ######################################################--
INSERT INTO `gossip_menu_option` (`MenuID`,`OptionID`,`OptionIcon`,`OptionText`, `OptionBroadcastTextID`, `OptionType`,`OptionNpcFlag`,`ActionMenuID`,`ActionPoiID`,`BoxCoded`,`BoxMoney`,`BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
('65015','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65015','1','0','I wish to unlearn my talents.','0', '16','49','9791','0','0','0','', '0', '0'),
('65015','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65016','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65016','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65016','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65017','0','3','I would like to train.','0', '5','4194353','0','0','0','0','', '0', '0'),
('65017','1','0','I wish to unlearn my talents.','0', '16','4194353','4461','0','0','0','', '0', '0'),
('65017','2','0','I wish to know about Dual Talent Specialization.','0', '1','4194353','10371','0','0','0','', '0', '0'),
('65017','3','0','I would like to stable my pet here.','0', '14','4194353','10371','0','0','0','', '0', '0'),
('65018','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65018','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65018','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65019','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65019','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65019','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65020','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65020','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65020','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65021','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65021','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65021','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65022','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65022','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65022','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65023','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65023','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65023','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0'),
('65024','0','3','I would like to train.','0', '5','49','0','0','0','0','', '0', '0'),
('65024','1','0','I wish to unlearn my talents.','0', '16','49','4461','0','0','0','', '0', '0'),
('65024','2','0','I wish to know about Dual Talent Specialization.','0', '1','49','10371','0','0','0','', '0', '0');
-- ######################################################--
-- TRAINER GOSSIP CONDITIONS
-- ######################################################--
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
('14','65015','65000','0','0','15','0','32','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Deathknight'),
('14','65015','65001','0','0','15','0','1503','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Deathknight'),
('15','65015','0','0','0','15','0','32','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Deathknight'),
('15','65015','1','0','0','15','0','32','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Deathknight'),
('15','65015','2','0','0','15','0','32','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Deathknight'),
('14','65016','65000','0','0','15','0','1024','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Druid'),
('14','65016','65001','0','0','15','0','511','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Druid'),
('15','65016','0','0','0','15','0','1024','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Druid'),
('15','65016','1','0','0','15','0','1024','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Druid'),
('15','65016','2','0','0','15','0','1024','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Druid'),
('14','65017','65000','0','0','15','0','4','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Hunter'),
('14','65017','65001','0','0','15','0','1531','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Hunter'),
('15','65017','0','0','0','15','0','4','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Hunter'),
('15','65017','1','0','0','15','0','4','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Hunter'),
('15','65017','2','0','0','15','0','4','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Hunter'),
('15','65017','3','0','0','15','0','4','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Hunter'),
('14','65018','65000','0','0','15','0','128','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a mage'),
('14','65018','65001','0','0','15','0','1407','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a mage'),
('15','65018','0','0','0','15','0','128','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a mage'),
('15','65018','1','0','0','15','0','128','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a mage'),
('15','65018','2','0','0','15','0','128','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a mage'),
('14','65019','65000','0','0','15','0','2','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Paladin'),
('14','65019','65001','0','0','15','0','1533','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Paladin'),
('15','65019','0','0','0','15','0','2','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Paladin'),
('15','65019','1','0','0','15','0','2','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Paladin'),
('15','65019','2','0','0','15','0','2','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Paladin'),
('14','65020','65000','0','0','15','0','16','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Priest'),
('14','65020','65001','0','0','15','0','1519','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Priest'),
('15','65020','0','0','0','15','0','16','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Priest'),
('15','65020','1','0','0','15','0','16','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Priest'),
('15','65020','2','0','0','15','0','16','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Priest'),
('14','65021','65000','0','0','15','0','8','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Rogue'),
('14','65021','65001','0','0','15','0','1527','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Rogue'),
('15','65021','0','0','0','15','0','8','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Rogue'),
('15','65021','1','0','0','15','0','8','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Rogue'),
('15','65021','2','0','0','15','0','8','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Rogue'),
('14','65022','65000','0','0','15','0','64','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Shaman'),
('14','65022','65001','0','0','15','0','1471','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Shaman'),
('15','65022','0','0','0','15','0','64','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Shaman'),
('15','65022','1','0','0','15','0','64','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Shaman'),
('15','65022','2','0','0','15','0','64','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Shaman'),
('14','65023','65000','0','0','15','0','256','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Warlock'),
('14','65023','65001','0','0','15','0','1279','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Warlock'),
('15','65023','0','0','0','15','0','256','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Warlock'),
('15','65023','1','0','0','15','0','256','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Warlock'),
('15','65023','2','0','0','15','0','256','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Warlock'),
('14','65024','65000','0','0','15','0','1','0','0','0','0','0','',' SHOW gossip TEXT IF player IS a Warrior'),
('14','65024','65001','0','0','15','0','1534','0','0','0','0','0','',' SHOW gossip TEXT IF player IS NOT a Warrior'),
('15','65024','0','0','0','15','0','1','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Warrior'),
('15','65024','1','0','0','15','0','1','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Warrior'),
('15','65024','2','0','0','15','0','1','0','0','0','0','0','',' SHOW gossip OPTION IF player IS a Warrior');
-- ######################################################--
-- TOWN PORTALS (GM ISLAND)
-- ######################################################--
INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES
('500000','1685','1','1','1','16255.7','16292.8','13.1758','0.00167847','0','0','0.000839233','1','300','0','1'),
('500001','1744','1','1','1','16256.2','16298.6','13.177','6.19454','0','0','0.044306','-0.999018','300','0','1'),
('500002','176404','1','1','1','16220.1','16272.6','12.9663','4.42782','0','0','0.800231','-0.599691','300','0','1'),
('500010','183325','1','1','1','16196.3','16236.3','6.65738','0.28897','0','0','0.143983','0.98958','300','0','1'),
('500011','202079','1','1','1','16208.9','16221','1.48747','1.10966','0','0','0.526798','0.84999','300','0','1'),
('500012','183326','1','1','1','16217.6','16219','2.10598','1.19606','0','0','0.563014','0.826447','300','0','1'),
('500013','191014','1','1','1','16213.1','16219.7','1.68672','0.976145','0','0','0.468924','0.883238','300','0','1'),
('500014','183327','1','1','1','16222','16219.3','2.62002','1.32172','0','0','0.613796','0.789465','300','0','1'),
('500015','183324','1','1','1','16225.9','16221.1','4.08194','1.62803','0','0','0.727049','0.686586','300','0','1'),
('500016','183323','1','1','1','16229.1','16222.4','6.56062','1.86363','0','0','0.802703','0.596379','300','0','1'),
('500017','191013','1','1','1','16205.1','16223.3','1.7079','1.00361','0','0','0.481009','0.876716','300','0','1'),
('500018','183321','1','1','1','16201.5','16226.3','2.09269','0.815114','0','0','0.396368','0.918092','300','0','1'),
('500019','183322','1','1','1','16198.1','16229.1','2.40509','2.13858','0','0','0.87686','0.480746','300','0','1'),
('500020','183317','1','1','1','16197.1','16233','4.17257','0.249685','0','0','0.124519','0.992217','300','0','1');
-- XFaction Innkeeper
DELETE FROM creature WHERE guid = 601704;
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`)
VALUES (601704, 15174, 1, 1, 1, 0, 16220.3, 16284.8, 13.1769, 6.11505, 300, 0, 0, 5342, 0, 0, 0, 0, 0);
-- ######################################################--
-- TWINK VENDOR SETTINGS
-- ######################################################--
-- TWINK: Resets Mount Requirements
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29465;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29471;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29468;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29467;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=35906;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29466;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29469;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29470;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=29472;
UPDATE `item_template` SET `ItemLevel`=40, `RequiredLevel`=40, `RequiredSkill`=762, `RequiredSkillRank`=150 WHERE `entry`=34129;
-- TWINK: Resets Lucky Fishing Hat Requirements
UPDATE `item_template` SET `RequiredSkill`=356, `RequiredSkillRank`=1 WHERE `entry`=19972;
-- TWINK: Resets Buy and Sell Prices
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=6475;
UPDATE `item_template` SET `BuyPrice`=550, `SellPrice`=137 WHERE `entry`=6474;
UPDATE `item_template` SET `BuyPrice`=25, `SellPrice`=1 WHERE `entry`=159;
UPDATE `item_template` SET `BuyPrice`=40, `SellPrice`=10 WHERE `entry`=765;
UPDATE `item_template` SET `BuyPrice`=60, `SellPrice`=15 WHERE `entry`=774;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=783;
UPDATE `item_template` SET `BuyPrice`=80, `SellPrice`=20 WHERE `entry`=785;
UPDATE `item_template` SET `BuyPrice`=10101, `SellPrice`=2020 WHERE `entry`=790;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=804;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=805;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=814;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=818;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=828;
UPDATE `item_template` SET `BuyPrice`=3500, `SellPrice`=875 WHERE `entry`=856;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=857;
UPDATE `item_template` SET `BuyPrice`=12070, `SellPrice`=2414 WHERE `entry`=872;
UPDATE `item_template` SET `BuyPrice`=13460, `SellPrice`=2692 WHERE `entry`=880;
UPDATE `item_template` SET `BuyPrice`=11505, `SellPrice`=2301 WHERE `entry`=885;
UPDATE `item_template` SET `BuyPrice`=17589, `SellPrice`=3517 WHERE `entry`=890;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=918;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=929;
UPDATE `item_template` SET `BuyPrice`=2550, `SellPrice`=637 WHERE `entry`=932;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=933;
UPDATE `item_template` SET `BuyPrice`=5375, `SellPrice`=1075 WHERE `entry`=1121;
UPDATE `item_template` SET `BuyPrice`=1600, `SellPrice`=400 WHERE `entry`=1206;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=1210;
UPDATE `item_template` SET `BuyPrice`=740, `SellPrice`=185 WHERE `entry`=1288;
UPDATE `item_template` SET `BuyPrice`=1954, `SellPrice`=390 WHERE `entry`=1299;
UPDATE `item_template` SET `BuyPrice`=15332, `SellPrice`=3066 WHERE `entry`=1318;
UPDATE `item_template` SET `BuyPrice`=2028, `SellPrice`=405 WHERE `entry`=1448;
UPDATE `item_template` SET `BuyPrice`=14657, `SellPrice`=2931 WHERE `entry`=1455;
UPDATE `item_template` SET `BuyPrice`=13117, `SellPrice`=2623 WHERE `entry`=1458;
UPDATE `item_template` SET `BuyPrice`=11902, `SellPrice`=2380 WHERE `entry`=1459;
UPDATE `item_template` SET `BuyPrice`=3500, `SellPrice`=875 WHERE `entry`=1470;
UPDATE `item_template` SET `BuyPrice`=350, `SellPrice`=87 WHERE `entry`=1477;
UPDATE `item_template` SET `BuyPrice`=250, `SellPrice`=62 WHERE `entry`=1478;
UPDATE `item_template` SET `BuyPrice`=14822, `SellPrice`=2964 WHERE `entry`=1482;
UPDATE `item_template` SET `BuyPrice`=10129, `SellPrice`=2025 WHERE `entry`=1483;
UPDATE `item_template` SET `BuyPrice`=14613, `SellPrice`=2922 WHERE `entry`=1484;
UPDATE `item_template` SET `BuyPrice`=6013, `SellPrice`=1202 WHERE `entry`=1486;
UPDATE `item_template` SET `BuyPrice`=35640, `SellPrice`=8910 WHERE `entry`=1490;
UPDATE `item_template` SET `BuyPrice`=2800, `SellPrice`=700 WHERE `entry`=1529;
UPDATE `item_template` SET `BuyPrice`=250, `SellPrice`=62 WHERE `entry`=1537;
UPDATE `item_template` SET `BuyPrice`=2569, `SellPrice`=513 WHERE `entry`=1560;
UPDATE `item_template` SET `BuyPrice`=20000, `SellPrice`=5000 WHERE `entry`=1652;
UPDATE `item_template` SET `BuyPrice`=25000, `SellPrice`=6250 WHERE `entry`=1685;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=600 WHERE `entry`=1705;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=1711;
UPDATE `item_template` SET `BuyPrice`=250, `SellPrice`=62 WHERE `entry`=1712;
UPDATE `item_template` SET `BuyPrice`=20000, `SellPrice`=5000 WHERE `entry`=1725;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=1729;
UPDATE `item_template` SET `BuyPrice`=14874, `SellPrice`=2974 WHERE `entry`=1935;
UPDATE `item_template` SET `BuyPrice`=2320, `SellPrice`=464 WHERE `entry`=1974;
UPDATE `item_template` SET `BuyPrice`=4318, `SellPrice`=863 WHERE `entry`=2059;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=2082;
UPDATE `item_template` SET `BuyPrice`=9435, `SellPrice`=1887 WHERE `entry`=2169;
UPDATE `item_template` SET `BuyPrice`=13416, `SellPrice`=2683 WHERE `entry`=2175;
UPDATE `item_template` SET `BuyPrice`=14982, `SellPrice`=2996 WHERE `entry`=2256;
UPDATE `item_template` SET `BuyPrice`=16278, `SellPrice`=3255 WHERE `entry`=2271;
UPDATE `item_template` SET `BuyPrice`=350, `SellPrice`=87 WHERE `entry`=2289;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=2290;
UPDATE `item_template` SET `BuyPrice`=7435, `SellPrice`=1487 WHERE `entry`=2314;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=15 WHERE `entry`=2318;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=2319;
UPDATE `item_template` SET `BuyPrice`=10, `SellPrice`=2 WHERE `entry`=2320;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2321;
UPDATE `item_template` SET `BuyPrice`=25, `SellPrice`=6 WHERE `entry`=2324;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2406;
UPDATE `item_template` SET `BuyPrice`=650, `SellPrice`=162 WHERE `entry`=2407;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=2408;
UPDATE `item_template` SET `BuyPrice`=1400, `SellPrice`=350 WHERE `entry`=2409;
UPDATE `item_template` SET `BuyPrice`=40, `SellPrice`=10 WHERE `entry`=2447;
UPDATE `item_template` SET `BuyPrice`=80, `SellPrice`=20 WHERE `entry`=2449;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2450;
UPDATE `item_template` SET `BuyPrice`=60, `SellPrice`=15 WHERE `entry`=2452;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2453;
UPDATE `item_template` SET `BuyPrice`=60, `SellPrice`=15 WHERE `entry`=2456;
UPDATE `item_template` SET `BuyPrice`=60, `SellPrice`=15 WHERE `entry`=2457;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2459;
UPDATE `item_template` SET `BuyPrice`=50, `SellPrice`=0 WHERE `entry`=2515;
UPDATE `item_template` SET `BuyPrice`=50, `SellPrice`=0 WHERE `entry`=2519;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2553;
UPDATE `item_template` SET `BuyPrice`=160, `SellPrice`=40 WHERE `entry`=2555;
UPDATE `item_template` SET `BuyPrice`=12546, `SellPrice`=2509 WHERE `entry`=2567;
UPDATE `item_template` SET `BuyPrice`=55, `SellPrice`=13 WHERE `entry`=2589;
UPDATE `item_template` SET `BuyPrice`=135, `SellPrice`=33 WHERE `entry`=2592;
UPDATE `item_template` SET `BuyPrice`=120, `SellPrice`=30 WHERE `entry`=2598;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=2601;
UPDATE `item_template` SET `BuyPrice`=50, `SellPrice`=12 WHERE `entry`=2604;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2605;
UPDATE `item_template` SET `BuyPrice`=3500, `SellPrice`=875 WHERE `entry`=2657;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=2772;
UPDATE `item_template` SET `BuyPrice`=12264, `SellPrice`=2452 WHERE `entry`=2807;
UPDATE `item_template` SET `BuyPrice`=8, `SellPrice`=2 WHERE `entry`=2835;
UPDATE `item_template` SET `BuyPrice`=60, `SellPrice`=15 WHERE `entry`=2836;
UPDATE `item_template` SET `BuyPrice`=240, `SellPrice`=60 WHERE `entry`=2838;
UPDATE `item_template` SET `BuyPrice`=40, `SellPrice`=10 WHERE `entry`=2840;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=2841;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=2842;
UPDATE `item_template` SET `BuyPrice`=9326, `SellPrice`=1865 WHERE `entry`=2848;
UPDATE `item_template` SET `BuyPrice`=11996, `SellPrice`=2399 WHERE `entry`=2850;
UPDATE `item_template` SET `BuyPrice`=6275, `SellPrice`=1255 WHERE `entry`=2866;
UPDATE `item_template` SET `BuyPrice`=15605, `SellPrice`=3121 WHERE `entry`=2879;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=2880;
UPDATE `item_template` SET `BuyPrice`=2623, `SellPrice`=524 WHERE `entry`=2911;
UPDATE `item_template` SET `BuyPrice`=30, `SellPrice`=7 WHERE `entry`=2934;
UPDATE `item_template` SET `BuyPrice`=160, `SellPrice`=40 WHERE `entry`=2996;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=2997;
UPDATE `item_template` SET `BuyPrice`=5427, `SellPrice`=1085 WHERE `entry`=3022;
UPDATE `item_template` SET `BuyPrice`=8052, `SellPrice`=1610 WHERE `entry`=3039;
UPDATE `item_template` SET `BuyPrice`=4515, `SellPrice`=903 WHERE `entry`=3057;
UPDATE `item_template` SET `BuyPrice`=3290, `SellPrice`=658 WHERE `entry`=3065;
UPDATE `item_template` SET `BuyPrice`=2487, `SellPrice`=497 WHERE `entry`=3066;
UPDATE `item_template` SET `BuyPrice`=2381, `SellPrice`=476 WHERE `entry`=3074;
UPDATE `item_template` SET `BuyPrice`=3184, `SellPrice`=636 WHERE `entry`=3076;
UPDATE `item_template` SET `BuyPrice`=135, `SellPrice`=33 WHERE `entry`=3164;
UPDATE `item_template` SET `BuyPrice`=1550, `SellPrice`=387 WHERE `entry`=3182;
UPDATE `item_template` SET `BuyPrice`=12480, `SellPrice`=2496 WHERE `entry`=3194;
UPDATE `item_template` SET `BuyPrice`=13710, `SellPrice`=2742 WHERE `entry`=3198;
UPDATE `item_template` SET `BuyPrice`=11310, `SellPrice`=2262 WHERE `entry`=3199;
UPDATE `item_template` SET `BuyPrice`=2921, `SellPrice`=584 WHERE `entry`=3202;
UPDATE `item_template` SET `BuyPrice`=1150, `SellPrice`=230 WHERE `entry`=3205;
UPDATE `item_template` SET `BuyPrice`=2122, `SellPrice`=424 WHERE `entry`=3229;
UPDATE `item_template` SET `BuyPrice`=4611, `SellPrice`=922 WHERE `entry`=3230;
UPDATE `item_template` SET `BuyPrice`=850, `SellPrice`=212 WHERE `entry`=3233;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=3343;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=3352;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=3355;
UPDATE `item_template` SET `BuyPrice`=120, `SellPrice`=30 WHERE `entry`=3356;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=3369;
UPDATE `item_template` SET `BuyPrice`=20, `SellPrice`=1 WHERE `entry`=3371;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=10 WHERE `entry`=3372;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=3383;
UPDATE `item_template` SET `BuyPrice`=80, `SellPrice`=20 WHERE `entry`=3384;
UPDATE `item_template` SET `BuyPrice`=120, `SellPrice`=30 WHERE `entry`=3385;
UPDATE `item_template` SET `BuyPrice`=140, `SellPrice`=35 WHERE `entry`=3386;
UPDATE `item_template` SET `BuyPrice`=160, `SellPrice`=40 WHERE `entry`=3389;
UPDATE `item_template` SET `BuyPrice`=140, `SellPrice`=35 WHERE `entry`=3390;
UPDATE `item_template` SET `BuyPrice`=160, `SellPrice`=40 WHERE `entry`=3391;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=3393;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=3394;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=3396;
UPDATE `item_template` SET `BuyPrice`=17994, `SellPrice`=3598 WHERE `entry`=3415;
UPDATE `item_template` SET `BuyPrice`=2932, `SellPrice`=586 WHERE `entry`=3429;
UPDATE `item_template` SET `BuyPrice`=4435, `SellPrice`=887 WHERE `entry`=3480;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=3575;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=600 WHERE `entry`=3577;
UPDATE `item_template` SET `BuyPrice`=2170, `SellPrice`=434 WHERE `entry`=3647;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=3820;
UPDATE `item_template` SET `BuyPrice`=480, `SellPrice`=120 WHERE `entry`=3827;
UPDATE `item_template` SET `BuyPrice`=3200, `SellPrice`=800 WHERE `entry`=3864;
UPDATE `item_template` SET `BuyPrice`=25000, `SellPrice`=6250 WHERE `entry`=3914;
UPDATE `item_template` SET `BuyPrice`=440, `SellPrice`=110 WHERE `entry`=4231;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=4232;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4233;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=4234;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4235;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4238;
UPDATE `item_template` SET `BuyPrice`=1200, `SellPrice`=300 WHERE `entry`=4240;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=4241;
UPDATE `item_template` SET `BuyPrice`=2309, `SellPrice`=461 WHERE `entry`=4243;
UPDATE `item_template` SET `BuyPrice`=8000, `SellPrice`=2000 WHERE `entry`=4245;
UPDATE `item_template` SET `BuyPrice`=50, `SellPrice`=12 WHERE `entry`=4289;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4292;
UPDATE `item_template` SET `BuyPrice`=650, `SellPrice`=162 WHERE `entry`=4293;
UPDATE `item_template` SET `BuyPrice`=1600, `SellPrice`=400 WHERE `entry`=4294;
UPDATE `item_template` SET `BuyPrice`=2100, `SellPrice`=525 WHERE `entry`=4296;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=4297;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=600 WHERE `entry`=4305;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=4306;
UPDATE `item_template` SET `BuyPrice`=2766, `SellPrice`=553 WHERE `entry`=4314;
UPDATE `item_template` SET `BuyPrice`=3545, `SellPrice`=709 WHERE `entry`=4315;
UPDATE `item_template` SET `BuyPrice`=3716, `SellPrice`=743 WHERE `entry`=4316;
UPDATE `item_template` SET `BuyPrice`=4334, `SellPrice`=866 WHERE `entry`=4320;
UPDATE `item_template` SET `BuyPrice`=350, `SellPrice`=87 WHERE `entry`=4340;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=4345;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=4346;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=4347;
UPDATE `item_template` SET `BuyPrice`=700, `SellPrice`=175 WHERE `entry`=4348;
UPDATE `item_template` SET `BuyPrice`=700, `SellPrice`=175 WHERE `entry`=4349;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4350;
UPDATE `item_template` SET `BuyPrice`=16, `SellPrice`=4 WHERE `entry`=4357;
UPDATE `item_template` SET `BuyPrice`=50, `SellPrice`=12 WHERE `entry`=4359;
UPDATE `item_template` SET `BuyPrice`=480, `SellPrice`=120 WHERE `entry`=4361;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=4363;
UPDATE `item_template` SET `BuyPrice`=48, `SellPrice`=12 WHERE `entry`=4364;
UPDATE `item_template` SET `BuyPrice`=2044, `SellPrice`=408 WHERE `entry`=4368;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4371;
UPDATE `item_template` SET `BuyPrice`=9000, `SellPrice`=1800 WHERE `entry`=4372;
UPDATE `item_template` SET `BuyPrice`=460, `SellPrice`=115 WHERE `entry`=4375;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=4377;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=600 WHERE `entry`=4382;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=4399;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=4401;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=4402;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=4404;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=600 WHERE `entry`=4406;
UPDATE `item_template` SET `BuyPrice`=650, `SellPrice`=162 WHERE `entry`=4408;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=4409;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=4410;
UPDATE `item_template` SET `BuyPrice`=1100, `SellPrice`=275 WHERE `entry`=4411;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=4412;
UPDATE `item_template` SET `BuyPrice`=7450, `SellPrice`=1490 WHERE `entry`=4444;
UPDATE `item_template` SET `BuyPrice`=10341, `SellPrice`=2068 WHERE `entry`=4445;
UPDATE `item_template` SET `BuyPrice`=38, `SellPrice`=9 WHERE `entry`=4470;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=4496;
UPDATE `item_template` SET `BuyPrice`=20000, `SellPrice`=5000 WHERE `entry`=4497;
UPDATE `item_template` SET `BuyPrice`=2500, `SellPrice`=625 WHERE `entry`=4498;
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=25000 WHERE `entry`=4499;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=4500;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=4597;
UPDATE `item_template` SET `BuyPrice`=3438, `SellPrice`=687 WHERE `entry`=4706;
UPDATE `item_template` SET `BuyPrice`=2310, `SellPrice`=462 WHERE `entry`=4708;
UPDATE `item_template` SET `BuyPrice`=2809, `SellPrice`=561 WHERE `entry`=4710;
UPDATE `item_template` SET `BuyPrice`=2345, `SellPrice`=469 WHERE `entry`=4785;
UPDATE `item_template` SET `BuyPrice`=3280, `SellPrice`=656 WHERE `entry`=4792;
UPDATE `item_template` SET `BuyPrice`=3720, `SellPrice`=744 WHERE `entry`=4793;
UPDATE `item_template` SET `BuyPrice`=6110, `SellPrice`=1222 WHERE `entry`=4800;
UPDATE `item_template` SET `BuyPrice`=7519, `SellPrice`=1503 WHERE `entry`=4816;
UPDATE `item_template` SET `BuyPrice`=12311, `SellPrice`=2462 WHERE `entry`=4817;
UPDATE `item_template` SET `BuyPrice`=14273, `SellPrice`=2854 WHERE `entry`=4818;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=4957;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=5081;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=5082;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=5083;
UPDATE `item_template` SET `BuyPrice`=6300, `SellPrice`=1575 WHERE `entry`=5183;
UPDATE `item_template` SET `BuyPrice`=14822, `SellPrice`=2964 WHERE `entry`=5191;
UPDATE `item_template` SET `BuyPrice`=10818, `SellPrice`=2163 WHERE `entry`=5192;
UPDATE `item_template` SET `BuyPrice`=15399, `SellPrice`=3079 WHERE `entry`=5194;
UPDATE `item_template` SET `BuyPrice`=2188, `SellPrice`=437 WHERE `entry`=5195;
UPDATE `item_template` SET `BuyPrice`=10984, `SellPrice`=2196 WHERE `entry`=5196;
UPDATE `item_template` SET `BuyPrice`=9588, `SellPrice`=1917 WHERE `entry`=5197;
UPDATE `item_template` SET `BuyPrice`=8301, `SellPrice`=1660 WHERE `entry`=5198;
UPDATE `item_template` SET `BuyPrice`=4830, `SellPrice`=966 WHERE `entry`=5199;
UPDATE `item_template` SET `BuyPrice`=15809, `SellPrice`=3161 WHERE `entry`=5201;
UPDATE `item_template` SET `BuyPrice`=5738, `SellPrice`=1147 WHERE `entry`=5202;
UPDATE `item_template` SET `BuyPrice`=6562, `SellPrice`=1312 WHERE `entry`=5243;
UPDATE `item_template` SET `BuyPrice`=3090, `SellPrice`=618 WHERE `entry`=5254;
UPDATE `item_template` SET `BuyPrice`=290, `SellPrice`=72 WHERE `entry`=5373;
UPDATE `item_template` SET `BuyPrice`=4690, `SellPrice`=938 WHERE `entry`=5404;
UPDATE `item_template` SET `BuyPrice`=2520, `SellPrice`=504 WHERE `entry`=5425;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=5498;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=5500;
UPDATE `item_template` SET `BuyPrice`=10539, `SellPrice`=2107 WHERE `entry`=5540;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=5571;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=5572;
UPDATE `item_template` SET `BuyPrice`=3500, `SellPrice`=875 WHERE `entry`=5573;
UPDATE `item_template` SET `BuyPrice`=3500, `SellPrice`=875 WHERE `entry`=5574;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=5575;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=5576;
UPDATE `item_template` SET `BuyPrice`=120, `SellPrice`=30 WHERE `entry`=5631;
UPDATE `item_template` SET `BuyPrice`=180, `SellPrice`=45 WHERE `entry`=5635;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=5637;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=5640;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=5642;
UPDATE `item_template` SET `BuyPrice`=13322, `SellPrice`=2664 WHERE `entry`=5749;
UPDATE `item_template` SET `BuyPrice`=3209, `SellPrice`=641 WHERE `entry`=5750;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=5762;
UPDATE `item_template` SET `BuyPrice`=2800, `SellPrice`=700 WHERE `entry`=5763;
UPDATE `item_template` SET `BuyPrice`=12000, `SellPrice`=3000 WHERE `entry`=5764;
UPDATE `item_template` SET `BuyPrice`=16000, `SellPrice`=4000 WHERE `entry`=5765;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=5771;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=5772;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=5773;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=5784;
UPDATE `item_template` SET `BuyPrice`=550, `SellPrice`=137 WHERE `entry`=5786;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=5787;
UPDATE `item_template` SET `BuyPrice`=5044, `SellPrice`=1008 WHERE `entry`=5943;
UPDATE `item_template` SET `BuyPrice`=2511, `SellPrice`=502 WHERE `entry`=5970;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=5972;
UPDATE `item_template` SET `BuyPrice`=2664, `SellPrice`=532 WHERE `entry`=5975;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=6048;
UPDATE `item_template` SET `BuyPrice`=250, `SellPrice`=62 WHERE `entry`=6051;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=6053;
UPDATE `item_template` SET `BuyPrice`=900, `SellPrice`=225 WHERE `entry`=6054;
UPDATE `item_template` SET `BuyPrice`=8640, `SellPrice`=1728 WHERE `entry`=6087;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=6211;
UPDATE `item_template` SET `BuyPrice`=124, `SellPrice`=24 WHERE `entry`=6217;
UPDATE `item_template` SET `BuyPrice`=5344, `SellPrice`=1068 WHERE `entry`=6226;
UPDATE `item_template` SET `BuyPrice`=50, `SellPrice`=12 WHERE `entry`=6260;
UPDATE `item_template` SET `BuyPrice`=4421, `SellPrice`=884 WHERE `entry`=6264;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=6270;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=6271;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=6272;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=6274;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=6275;
UPDATE `item_template` SET `BuyPrice`=4820, `SellPrice`=964 WHERE `entry`=6319;
UPDATE `item_template` SET `BuyPrice`=13556, `SellPrice`=2711 WHERE `entry`=6320;
UPDATE `item_template` SET `BuyPrice`=4615, `SellPrice`=1153 WHERE `entry`=6332;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=6338;
UPDATE `item_template` SET `BuyPrice`=2665, `SellPrice`=666 WHERE `entry`=6341;
UPDATE `item_template` SET `BuyPrice`=300, `SellPrice`=75 WHERE `entry`=6342;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=6344;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=6346;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=6347;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=6348;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=6349;
UPDATE `item_template` SET `BuyPrice`=16, `SellPrice`=4 WHERE `entry`=6358;
UPDATE `item_template` SET `BuyPrice`=20, `SellPrice`=5 WHERE `entry`=6359;
UPDATE `item_template` SET `BuyPrice`=40, `SellPrice`=10 WHERE `entry`=6370;
UPDATE `item_template` SET `BuyPrice`=48, `SellPrice`=12 WHERE `entry`=6371;
UPDATE `item_template` SET `BuyPrice`=140, `SellPrice`=35 WHERE `entry`=6372;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=6375;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=6377;
UPDATE `item_template` SET `BuyPrice`=2616, `SellPrice`=523 WHERE `entry`=6382;
UPDATE `item_template` SET `BuyPrice`=7596, `SellPrice`=1519 WHERE `entry`=6383;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=6390;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=6391;
UPDATE `item_template` SET `BuyPrice`=2130, `SellPrice`=532 WHERE `entry`=6446;
UPDATE `item_template` SET `BuyPrice`=11657, `SellPrice`=2331 WHERE `entry`=6448;
UPDATE `item_template` SET `BuyPrice`=3509, `SellPrice`=701 WHERE `entry`=6449;
UPDATE `item_template` SET `BuyPrice`=5610, `SellPrice`=1122 WHERE `entry`=6459;
UPDATE `item_template` SET `BuyPrice`=4223, `SellPrice`=844 WHERE `entry`=6460;
UPDATE `item_template` SET `BuyPrice`=4612, `SellPrice`=922 WHERE `entry`=6465;
UPDATE `item_template` SET `BuyPrice`=3292, `SellPrice`=658 WHERE `entry`=6468;
UPDATE `item_template` SET `BuyPrice`=11202, `SellPrice`=2240 WHERE `entry`=6469;
UPDATE `item_template` SET `BuyPrice`=80, `SellPrice`=20 WHERE `entry`=6470;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=6471;
UPDATE `item_template` SET `BuyPrice`=15094, `SellPrice`=3018 WHERE `entry`=6472;
UPDATE `item_template` SET `BuyPrice`=6064, `SellPrice`=1212 WHERE `entry`=6473;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=6476;
UPDATE `item_template` SET `BuyPrice`=16, `SellPrice`=4 WHERE `entry`=6522;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=6530;
UPDATE `item_template` SET `BuyPrice`=4604, `SellPrice`=920 WHERE `entry`=6568;
UPDATE `item_template` SET `BuyPrice`=1816, `SellPrice`=363 WHERE `entry`=6570;
UPDATE `item_template` SET `BuyPrice`=4692, `SellPrice`=938 WHERE `entry`=6573;
UPDATE `item_template` SET `BuyPrice`=2841, `SellPrice`=568 WHERE `entry`=6574;
UPDATE `item_template` SET `BuyPrice`=3245, `SellPrice`=649 WHERE `entry`=6577;
UPDATE `item_template` SET `BuyPrice`=6515, `SellPrice`=1303 WHERE `entry`=6578;
UPDATE `item_template` SET `BuyPrice`=6562, `SellPrice`=1312 WHERE `entry`=6580;
UPDATE `item_template` SET `BuyPrice`=3655, `SellPrice`=731 WHERE `entry`=6582;
UPDATE `item_template` SET `BuyPrice`=2526, `SellPrice`=505 WHERE `entry`=6586;
UPDATE `item_template` SET `BuyPrice`=5732, `SellPrice`=1146 WHERE `entry`=6587;
UPDATE `item_template` SET `BuyPrice`=3781, `SellPrice`=756 WHERE `entry`=6629;
UPDATE `item_template` SET `BuyPrice`=12791, `SellPrice`=2558 WHERE `entry`=6633;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=6663;
UPDATE `item_template` SET `BuyPrice`=550, `SellPrice`=137 WHERE `entry`=6710;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=6716;
UPDATE `item_template` SET `BuyPrice`=5500, `SellPrice`=1375 WHERE `entry`=6756;
UPDATE `item_template` SET `BuyPrice`=1600, `SellPrice`=400 WHERE `entry`=7067;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=7091;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=7092;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=7114;
UPDATE `item_template` SET `BuyPrice`=15516, `SellPrice`=3103 WHERE `entry`=7230;
UPDATE `item_template` SET `BuyPrice`=2934, `SellPrice`=586 WHERE `entry`=7284;
UPDATE `item_template` SET `BuyPrice`=2945, `SellPrice`=589 WHERE `entry`=7285;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=7286;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=7287;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=7288;
UPDATE `item_template` SET `BuyPrice`=650, `SellPrice`=162 WHERE `entry`=7289;
UPDATE `item_template` SET `BuyPrice`=1600, `SellPrice`=400 WHERE `entry`=7290;
UPDATE `item_template` SET `BuyPrice`=1600, `SellPrice`=400 WHERE `entry`=7360;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=7361;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=7362;
UPDATE `item_template` SET `BuyPrice`=2100, `SellPrice`=525 WHERE `entry`=7363;
UPDATE `item_template` SET `BuyPrice`=2200, `SellPrice`=550 WHERE `entry`=7364;
UPDATE `item_template` SET `BuyPrice`=1200, `SellPrice`=300 WHERE `entry`=7560;
UPDATE `item_template` SET `BuyPrice`=406, `SellPrice`=81 WHERE `entry`=7997;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8485;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8486;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8487;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8488;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=8489;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=8490;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=8491;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8492;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8494;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8495;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=8496;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=8497;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=8498;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=8499;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=8500;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=8501;
UPDATE `item_template` SET `BuyPrice`=25000, `SellPrice`=6250 WHERE `entry`=9587;
UPDATE `item_template` SET `BuyPrice`=1810, `SellPrice`=362 WHERE `entry`=9766;
UPDATE `item_template` SET `BuyPrice`=3080, `SellPrice`=616 WHERE `entry`=9767;
UPDATE `item_template` SET `BuyPrice`=5568, `SellPrice`=1113 WHERE `entry`=9782;
UPDATE `item_template` SET `BuyPrice`=3549, `SellPrice`=709 WHERE `entry`=9805;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=10050;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=10051;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=10316;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=10360;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=10361;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=10392;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=10393;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=10394;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=10398;
UPDATE `item_template` SET `BuyPrice`=7336, `SellPrice`=1467 WHERE `entry`=10399;
UPDATE `item_template` SET `BuyPrice`=2706, `SellPrice`=541 WHERE `entry`=10403;
UPDATE `item_template` SET `BuyPrice`=6280, `SellPrice`=1256 WHERE `entry`=10410;
UPDATE `item_template` SET `BuyPrice`=4728, `SellPrice`=945 WHERE `entry`=10411;
UPDATE `item_template` SET `BuyPrice`=1847, `SellPrice`=369 WHERE `entry`=10413;
UPDATE `item_template` SET `BuyPrice`=125, `SellPrice`=31 WHERE `entry`=10648;
UPDATE `item_template` SET `BuyPrice`=18650, `SellPrice`=4662 WHERE `entry`=10659;
UPDATE `item_template` SET `BuyPrice`=8000, `SellPrice`=2000 WHERE `entry`=10727;
UPDATE `item_template` SET `BuyPrice`=35230, `SellPrice`=8807 WHERE `entry`=10779;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=10822;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=0 WHERE `entry`=10938;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=0 WHERE `entry`=10939;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=0 WHERE `entry`=10940;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=10959;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=0 WHERE `entry`=10978;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=0 WHERE `entry`=10998;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=11023;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=11026;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=11027;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=11038;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=11039;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=11081;
UPDATE `item_template` SET `BuyPrice`=9000, `SellPrice`=0 WHERE `entry`=11082;
UPDATE `item_template` SET `BuyPrice`=2400, `SellPrice`=0 WHERE `entry`=11083;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=0 WHERE `entry`=11084;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=11098;
UPDATE `item_template` SET `BuyPrice`=2500, `SellPrice`=625 WHERE `entry`=11101;
UPDATE `item_template` SET `BuyPrice`=10, `SellPrice`=2 WHERE `entry`=11110;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=11128;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=11150;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=11151;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=11152;
UPDATE `item_template` SET `BuyPrice`=7675, `SellPrice`=1535 WHERE `entry`=11288;
UPDATE `item_template` SET `BuyPrice`=25000, `SellPrice`=6250 WHERE `entry`=11324;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=11742;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=11825;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=11826;
UPDATE `item_template` SET `BuyPrice`=250, `SellPrice`=62 WHERE `entry`=11845;
UPDATE `item_template` SET `BuyPrice`=3350, `SellPrice`=837 WHERE `entry`=12054;
UPDATE `item_template` SET `BuyPrice`=2674, `SellPrice`=534 WHERE `entry`=12978;
UPDATE `item_template` SET `BuyPrice`=4255, `SellPrice`=851 WHERE `entry`=12982;
UPDATE `item_template` SET `BuyPrice`=11813, `SellPrice`=2362 WHERE `entry`=12983;
UPDATE `item_template` SET `BuyPrice`=7115, `SellPrice`=1423 WHERE `entry`=12984;
UPDATE `item_template` SET `BuyPrice`=4615, `SellPrice`=1153 WHERE `entry`=12985;
UPDATE `item_template` SET `BuyPrice`=4533, `SellPrice`=906 WHERE `entry`=12987;
UPDATE `item_template` SET `BuyPrice`=12947, `SellPrice`=2589 WHERE `entry`=12990;
UPDATE `item_template` SET `BuyPrice`=16302, `SellPrice`=3260 WHERE `entry`=12992;
UPDATE `item_template` SET `BuyPrice`=3940, `SellPrice`=788 WHERE `entry`=12994;
UPDATE `item_template` SET `BuyPrice`=6110, `SellPrice`=1527 WHERE `entry`=12996;
UPDATE `item_template` SET `BuyPrice`=9600, `SellPrice`=1920 WHERE `entry`=12997;
UPDATE `item_template` SET `BuyPrice`=7281, `SellPrice`=1456 WHERE `entry`=13136;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=13309;
UPDATE `item_template` SET `BuyPrice`=20000, `SellPrice`=5000 WHERE `entry`=14046;
UPDATE `item_template` SET `BuyPrice`=1872, `SellPrice`=374 WHERE `entry`=14147;
UPDATE `item_template` SET `BuyPrice`=1253, `SellPrice`=250 WHERE `entry`=14148;
UPDATE `item_template` SET `BuyPrice`=2524, `SellPrice`=504 WHERE `entry`=14150;
UPDATE `item_template` SET `BuyPrice`=80000, `SellPrice`=20000 WHERE `entry`=14155;
UPDATE `item_template` SET `BuyPrice`=160000, `SellPrice`=40000 WHERE `entry`=14156;
UPDATE `item_template` SET `BuyPrice`=2853, `SellPrice`=570 WHERE `entry`=14159;
UPDATE `item_template` SET `BuyPrice`=2229, `SellPrice`=445 WHERE `entry`=14162;
UPDATE `item_template` SET `BuyPrice`=3693, `SellPrice`=738 WHERE `entry`=14171;
UPDATE `item_template` SET `BuyPrice`=4049, `SellPrice`=809 WHERE `entry`=14369;
UPDATE `item_template` SET `BuyPrice`=4080, `SellPrice`=816 WHERE `entry`=14371;
UPDATE `item_template` SET `BuyPrice`=3498, `SellPrice`=699 WHERE `entry`=14374;
UPDATE `item_template` SET `BuyPrice`=5199, `SellPrice`=1039 WHERE `entry`=14562;
UPDATE `item_template` SET `BuyPrice`=2648, `SellPrice`=529 WHERE `entry`=14567;
UPDATE `item_template` SET `BuyPrice`=3987, `SellPrice`=797 WHERE `entry`=14568;
UPDATE `item_template` SET `BuyPrice`=3048, `SellPrice`=609 WHERE `entry`=14572;
UPDATE `item_template` SET `BuyPrice`=800, `SellPrice`=200 WHERE `entry`=14627;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=14639;
UPDATE `item_template` SET `BuyPrice`=6119, `SellPrice`=1223 WHERE `entry`=14730;
UPDATE `item_template` SET `BuyPrice`=5592, `SellPrice`=1118 WHERE `entry`=14742;
UPDATE `item_template` SET `BuyPrice`=2917, `SellPrice`=583 WHERE `entry`=14743;
UPDATE `item_template` SET `BuyPrice`=2948, `SellPrice`=589 WHERE `entry`=14746;
UPDATE `item_template` SET `BuyPrice`=3343, `SellPrice`=668 WHERE `entry`=14747;
UPDATE `item_template` SET `BuyPrice`=6096, `SellPrice`=1219 WHERE `entry`=15117;
UPDATE `item_template` SET `BuyPrice`=11884, `SellPrice`=2376 WHERE `entry`=15223;
UPDATE `item_template` SET `BuyPrice`=15183, `SellPrice`=3036 WHERE `entry`=15269;
UPDATE `item_template` SET `BuyPrice`=2776, `SellPrice`=555 WHERE `entry`=15331;
UPDATE `item_template` SET `BuyPrice`=6890, `SellPrice`=1378 WHERE `entry`=15500;
UPDATE `item_template` SET `BuyPrice`=2427, `SellPrice`=485 WHERE `entry`=15509;
UPDATE `item_template` SET `BuyPrice`=7372, `SellPrice`=1474 WHERE `entry`=15511;
UPDATE `item_template` SET `BuyPrice`=4594, `SellPrice`=1148 WHERE `entry`=15912;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=15996;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=50 WHERE `entry`=17034;
UPDATE `item_template` SET `BuyPrice`=30, `SellPrice`=7 WHERE `entry`=17056;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=17966;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=18647;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=18648;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=18649;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=18731;
UPDATE `item_template` SET `BuyPrice`=40124, `SellPrice`=10031 WHERE `entry`=19024;
UPDATE `item_template` SET `BuyPrice`=65132, `SellPrice`=16283 WHERE `entry`=19120;
UPDATE `item_template` SET `BuyPrice`=66451, `SellPrice`=16612 WHERE `entry`=19141;
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=25000 WHERE `entry`=19291;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=19914;
UPDATE `item_template` SET `BuyPrice`=16983, `SellPrice`=3396 WHERE `entry`=19972;
UPDATE `item_template` SET `BuyPrice`=80000, `SellPrice`=20000 WHERE `entry`=20400;
UPDATE `item_template` SET `BuyPrice`=1400, `SellPrice`=350 WHERE `entry`=20576;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=20752;
UPDATE `item_template` SET `BuyPrice`=500, `SellPrice`=125 WHERE `entry`=20758;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=20769;
UPDATE `item_template` SET `BuyPrice`=80, `SellPrice`=20 WHERE `entry`=20816;
UPDATE `item_template` SET `BuyPrice`=400, `SellPrice`=100 WHERE `entry`=20817;
UPDATE `item_template` SET `BuyPrice`=1800, `SellPrice`=450 WHERE `entry`=20854;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=20855;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=20856;
UPDATE `item_template` SET `BuyPrice`=3600, `SellPrice`=900 WHERE `entry`=20963;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=20970;
UPDATE `item_template` SET `BuyPrice`=1500, `SellPrice`=375 WHERE `entry`=20971;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=20973;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=21277;
UPDATE `item_template` SET `BuyPrice`=20000, `SellPrice`=5000 WHERE `entry`=21340;
UPDATE `item_template` SET `BuyPrice`=80000, `SellPrice`=20000 WHERE `entry`=21341;
UPDATE `item_template` SET `BuyPrice`=320000, `SellPrice`=80000 WHERE `entry`=21342;
UPDATE `item_template` SET `BuyPrice`=700, `SellPrice`=175 WHERE `entry`=21724;
UPDATE `item_template` SET `BuyPrice`=700, `SellPrice`=175 WHERE `entry`=21725;
UPDATE `item_template` SET `BuyPrice`=700, `SellPrice`=175 WHERE `entry`=21726;
UPDATE `item_template` SET `BuyPrice`=40000, `SellPrice`=10000 WHERE `entry`=21841;
UPDATE `item_template` SET `BuyPrice`=40000, `SellPrice`=10000 WHERE `entry`=21843;
UPDATE `item_template` SET `BuyPrice`=80000, `SellPrice`=20000 WHERE `entry`=21858;
UPDATE `item_template` SET `BuyPrice`=160000, `SellPrice`=40000 WHERE `entry`=21872;
UPDATE `item_template` SET `BuyPrice`=200000, `SellPrice`=50000 WHERE `entry`=21876;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=21933;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=21934;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=22243;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=22244;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=22246;
UPDATE `item_template` SET `BuyPrice`=40000, `SellPrice`=10000 WHERE `entry`=22248;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=22249;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=22250;
UPDATE `item_template` SET `BuyPrice`=40000, `SellPrice`=10000 WHERE `entry`=22251;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=22252;
UPDATE `item_template` SET `BuyPrice`=250, `SellPrice`=62 WHERE `entry`=22571;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=22679;
UPDATE `item_template` SET `BuyPrice`=1000, `SellPrice`=250 WHERE `entry`=22976;
UPDATE `item_template` SET `BuyPrice`=60, `SellPrice`=15 WHERE `entry`=23389;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=23774;
UPDATE `item_template` SET `BuyPrice`=3500, `SellPrice`=875 WHERE `entry`=23852;
UPDATE `item_template` SET `BuyPrice`=36, `SellPrice`=7 WHERE `entry`=23909;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=24118;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=24119;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=24120;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=24270;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=25438;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=27445;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=29201;
UPDATE `item_template` SET `BuyPrice`=400000, `SellPrice`=100000 WHERE `entry`=29363;
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=25000 WHERE `entry`=29364;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=29540;
UPDATE `item_template` SET `BuyPrice`=600, `SellPrice`=150 WHERE `entry`=29584;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29901;
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=25000 WHERE `entry`=29902;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29903;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29904;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29953;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29956;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29957;
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=25000 WHERE `entry`=29958;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=29960;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=30744;
UPDATE `item_template` SET `BuyPrice`=140000, `SellPrice`=35000 WHERE `entry`=30745;
UPDATE `item_template` SET `BuyPrice`=100000, `SellPrice`=25000 WHERE `entry`=30746;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=30747;
UPDATE `item_template` SET `BuyPrice`=140000, `SellPrice`=35000 WHERE `entry`=30748;
UPDATE `item_template` SET `BuyPrice`=4258, `SellPrice`=1064 WHERE `entry`=30804;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=32233;
UPDATE `item_template` SET `BuyPrice`=80000, `SellPrice`=20000 WHERE `entry`=33117;
UPDATE `item_template` SET `BuyPrice`=200000, `SellPrice`=50000 WHERE `entry`=34067;
UPDATE `item_template` SET `BuyPrice`=160000, `SellPrice`=40000 WHERE `entry`=34490;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=34482;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=34535;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=34845;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=35504;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=35516;
UPDATE `item_template` SET `BuyPrice`=95000, `SellPrice`=23750 WHERE `entry`=38225;
UPDATE `item_template` SET `BuyPrice`=400000, `SellPrice`=100000 WHERE `entry`=38628;
UPDATE `item_template` SET `BuyPrice`=12000000, `SellPrice`=100000 WHERE `entry`=38082;
UPDATE `item_template` SET `BuyPrice`=3149, `SellPrice`=629 WHERE `entry`=2867;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=23775;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=12 WHERE `entry`=37101;
UPDATE `item_template` SET `BuyPrice`=7500, `SellPrice`=1875 WHERE `entry`=37460;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=1 WHERE `entry`=37606;
UPDATE `item_template` SET `BuyPrice`=220000, `SellPrice`=55000 WHERE `entry`=38347;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=100 WHERE `entry`=38351;
UPDATE `item_template` SET `BuyPrice`=160000, `SellPrice`=40000 WHERE `entry`=38399;
UPDATE `item_template` SET `BuyPrice`=400000, `SellPrice`=100000 WHERE `entry`=38658;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=39151;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=39334;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=39338;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=39339;
UPDATE `item_template` SET `BuyPrice`=15, `SellPrice`=3 WHERE `entry`=39354;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=500 WHERE `entry`=39469;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=39489;
UPDATE `item_template` SET `BuyPrice`=1250, `SellPrice`=312 WHERE `entry`=39501;
UPDATE `item_template` SET `BuyPrice`=5000, `SellPrice`=1250 WHERE `entry`=39502;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=500 WHERE `entry`=39774;
UPDATE `item_template` SET `BuyPrice`=3000, `SellPrice`=750 WHERE `entry`=39896;
UPDATE `item_template` SET `BuyPrice`=400000, `SellPrice`=100000 WHERE `entry`=39973;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=40653;
UPDATE `item_template` SET `BuyPrice`=250000, `SellPrice`=62500 WHERE `entry`=41597;
UPDATE `item_template` SET `BuyPrice`=180000, `SellPrice`=45000 WHERE `entry`=41598;
UPDATE `item_template` SET `BuyPrice`=50000, `SellPrice`=12500 WHERE `entry`=41599;
UPDATE `item_template` SET `BuyPrice`=80000, `SellPrice`=20000 WHERE `entry`=41600;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=43103;
UPDATE `item_template` SET `BuyPrice`=100, `SellPrice`=25 WHERE `entry`=43104;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=43115;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=500 WHERE `entry`=43116;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=43117;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=500 WHERE `entry`=43118;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=500 WHERE `entry`=43120;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=500 WHERE `entry`=43124;
UPDATE `item_template` SET `BuyPrice`=2000, `SellPrice`=500 WHERE `entry`=43126;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=43345;
UPDATE `item_template` SET `BuyPrice`=5600, `SellPrice`=1400 WHERE `entry`=43515;
UPDATE `item_template` SET `BuyPrice`=4000, `SellPrice`=1000 WHERE `entry`=43698;
UPDATE `item_template` SET `BuyPrice`=150000, `SellPrice`=37500 WHERE `entry`=44446;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=44721;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=44723;
UPDATE `item_template` SET `BuyPrice`=15000, `SellPrice`=3750 WHERE `entry`=44820;
UPDATE `item_template` SET `BuyPrice`=6000, `SellPrice`=1500 WHERE `entry`=44841;
UPDATE `item_template` SET `BuyPrice`=2500000, `SellPrice`=625000 WHERE `entry`=45057;
UPDATE `item_template` SET `BuyPrice`=4423, `SellPrice`=884 WHERE `entry`=45626;
UPDATE `item_template` SET `BuyPrice`=120000, `SellPrice`=30000 WHERE `entry`=45773;
UPDATE `item_template` SET `BuyPrice`=500000, `SellPrice`=125000 WHERE `entry`=48120;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48114;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48126;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48112;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48116;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48118;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48122;
UPDATE `item_template` SET `BuyPrice`=10000, `SellPrice`=2500 WHERE `entry`=48124;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=49295;
UPDATE `item_template` SET `BuyPrice`=500000, `SellPrice`=125000 WHERE `entry`=44822;
UPDATE `item_template` SET `BuyPrice`=500000, `SellPrice`=125000 WHERE `entry`=46398;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=50317;
UPDATE `item_template` SET `BuyPrice`=35000, `SellPrice`=8750 WHERE `entry`=50316;
UPDATE `item_template` SET `BuyPrice`=30000000, `SellPrice`=250000 WHERE `entry`=51809;
UPDATE `item_template` SET `BuyPrice`=500000, `SellPrice`=125000 WHERE `entry`=54436;
UPDATE `item_template` SET `BuyPrice`=200, `SellPrice`=85 WHERE `entry`=5632;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=1500 WHERE `entry`=21168;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=1000 WHERE `entry`=18964;
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=1500 WHERE `entry`=45942;
-- Removes Mount Requirements
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29465;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29471;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29468;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29467;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=35906;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29466;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29469;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29470;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=29472;
UPDATE `item_template` SET `ItemLevel`=19, `RequiredLevel`=19, `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=34129;
-- Removes Lucky Fishing Hat Requirement
UPDATE `item_template` SET `RequiredSkill`=0, `RequiredSkillRank`=0 WHERE `entry`=19972;
-- Sets Buy and Sell Prices to no cost
UPDATE `item_template` SET `BuyPrice`=0, `SellPrice`=0 WHERE `entry` IN (SELECT `item` FROM `npc_vendor` WHERE entry >= 601677 AND entry <= 601703);
-- ######################################################--
-- ITEM PRICING / CURRENCY CONVERSION
-- ######################################################--
SET @1C :=1; -- 1 Copper
SET @1S :=100; -- 1 Silver
SET @5S :=500; -- 5 Silver
SET @10S :=1000; -- 10 Silver
SET @25S :=2500; -- 25 Silver
SET @50S :=5000; -- 50 Silver
SET @75S :=7500; -- 75 Silver
SET @1G :=10000; -- 1 Gold
SET @2G :=20000; -- 2 Gold
SET @3G :=30000; -- 3 Gold
SET @4G :=40000; -- 4 Gold
SET @5G :=50000; -- 5 Gold
SET @10G :=100000; -- 10 Gold
SET @15G :=150000; -- 15 Gold
SET @18G :=180000; -- 18 Gold
SET @20G :=200000; -- 20 Gold
SET @25G :=250000; -- 25 Gold
SET @30G :=300000; -- 30 Gold
SET @40G :=400000; -- 40 Gold
SET @50G :=500000; -- 50 Gold
SET @75G :=750000; -- 75 Gold
SET @100G :=1000000; -- 100 Gold
SET @250G :=2500000; -- 250 Gold
SET @300G :=3000000; -- 300 Gold
SET @350G :=3500000; -- 350 Gold
SET @375G :=3750000; -- 375 Gold
SET @500G :=5000000; -- 500 Gold
SET @750G :=7500000; -- 750 Gold
SET @1000G :=10000000; -- 1000 Gold
SET @1500G :=15000000; -- 1500 Gold
SET @2500G :=25000000; -- 2500 Gold
SET @5000G :=50000000; -- 5000 Gold
SET @7500G :=75000000; -- 7500 Gold
SET @10000G :=100000000; -- 10000 Gold
SET @12500G :=125000000; -- 12500 Gold
SET @15000G :=150000000; -- 15000 Gold
SET @20000G :=200000000; -- 20000 Gold
SET @25000G :=250000000; -- 20000 Gold
SET @50000G :=500000000; -- 50000 Gold
SET @75000G :=750000000; -- 75000 Gold
-- ######################################################--
-- MISC. ITEMS
-- ######################################################--
UPDATE item_template SET sellprice=@25S, buyprice=@25S WHERE entry = 11754; -- Black Diamond
-- ######################################################--
-- LORE/ARTIFACT ITEMS
-- ######################################################--
-- Legendary
UPDATE item_template SET sellprice=@1C, buyprice=@1C WHERE entry = 13262; -- Ashbringer
UPDATE item_template SET sellprice=@1C, buyprice=@1C WHERE entry = 22630; -- Atiesh, Greatstaff of the Guardian
-- 10
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 21024; -- Chimaerok Tenderloin
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 5433; -- Rag Doll
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 40393; -- Green Sparkly
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 39356; -- Mind Soothing Bauble
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 5373; -- Lucky Charm
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 5060; -- Thieves Tools
-- 25
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 5429; -- A Pretty Rock
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 31945; -- Shadow Circuit
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 29572; -- Aboriginal Carvings
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 6297; -- Old Skull
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 29570; -- A Gnome Effigy
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 39355; -- Haute Club Membership Card
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 24231; -- Coarse Snuff
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 4471; -- Flint and Tinder
-- 50
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 12608; -- Butcher's Apron
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 9327; -- Security DELTA Data Access Card
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 39351; -- Richly Appointed Pipe
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 38264; -- A Very Pretty Rock
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 46359; -- Velociraptor Skull
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 11108; -- Faded Photograph
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 18228; -- Autographed Picture of Tigole and Furor
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 18229; -- Nat Pagel's Guide to Extreme Anglin'
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 20010; -- The Horde's Hellscream
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 19484; -- The Frostwolf Artichoke
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 19483; -- Peelin' The Onion
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 11482; -- Crystal Pilon User's Manual
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 2608; -- Threshadon Ambergris
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 9242; -- Ancient Tablet
-- 75
UPDATE item_template SET sellprice=@75G, buyprice=@75G WHERE entry = 18365; -- A Thoroughly Read Copy of Nat's Anglin'
UPDATE item_template SET sellprice=@75G, buyprice=@75G WHERE entry = 11420; -- Elegant Writing Tool
UPDATE item_template SET sellprice=@75G, buyprice=@75G WHERE entry = 39351; -- Richly Appointed Pipe
-- 100
-- UPDATE item_template SET sellprice=@100G WHERE entry = 9254; -- Cuergo's Treasure Map
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 18335; -- Pristine Black Diamond
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 34826; -- Gold Wedding Band
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 9360; -- Cuergo's Gold
-- 250
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 11382; -- Blood of the Mountain
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 44464; -- Crude Eating Utensils
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 45994; -- Lost Ring
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 45995; -- Lost Necklace
-- 350
-- 500
UPDATE item_template SET sellprice=@500G, buyprice=@500G WHERE entry = 18665; -- Eye of Shadow
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 44430; -- Titanium Seal of Dalaran
-- 750
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 8350; -- The 1 Ring
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 34837; -- The 2 Ring
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 45859; -- The 5 Ring
-- 1000
UPDATE item_template SET sellprice=@1000G, buyprice=@1000G WHERE entry = 9361; -- Cuergo's Gold with Worm
-- ######################################################--
-- HOLIDAY
-- ######################################################--
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20397; -- Hallowed Wand: Pirate
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20398; -- Hallowed Wand: Ninja
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20399; -- Hallowed Wand: Leper Gnome
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20409; -- Hallowed Wand: Ghost
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20410; -- Hallowed Wand: Bat
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20411; -- Hallowed Wand: Skeleton
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20413; -- Hallowed Wand: Random
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 20414; -- Hallowed Wand: Wisp
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 29575; -- A Jack-o'-Lantern
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34068; -- Weighted Jack-o'-Lantern
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 37895; -- Filled Green Brewfest Stein
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 33019; -- Filled Blue Brewfest Stein
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 44803; -- Spring Circlet
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 3419; -- Red Rose
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34480; -- Romantic Picnic Basket
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 21154; -- Festival Dress
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 17712; -- Winter Veil Disguise Kit
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 21213; -- Preserved Holly
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 35557; -- Huge Snowball
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 17202; -- Snowball
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 21524; -- Red Winter Hat
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 21542; -- Festival Suit
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34085; -- Red Winter Clothes
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34086; -- Winter Boots
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34087; -- Green Winter Clothes
UPDATE item_template SET sellprice=@25S, buyprice=@25S WHERE entry = 34850; -- Midsummer Ground Flower
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 23323; -- Crown of the Fire Festival
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 23324; -- Mantle of the Fire Festival
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34683; -- Sandals of Summer
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 34685; -- Vestment of Summer
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 35280; -- Tabard of Summer Flames
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 35279; -- Tabard of Summer Skies
UPDATE item_template SET sellprice=@500G, buyprice=@500G WHERE entry = 34686; -- Brazier of Dancing Flames
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 42438; -- Lovely Cake
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 42436; -- Chocolate Celebration Cake
-- ######################################################--
-- RARE DROPS
-- ######################################################--
-- 75
UPDATE item_template SET sellprice=@75G, buyprice=@75g WHERE entry = 12709; -- Finkle's Skinner
-- 250
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 4696; -- Lapidis Tankard of Tidesippe
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 13047; -- Twig of the World Tree
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 11840; -- Master Builder's Shirt
-- 500
UPDATE item_template SET sellprice=@500G, buyprice=@500G WHERE entry = 1973; -- Orb of Deception
-- 750
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 13397; -- Stoneskin Gargoyle Cape
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 4354; -- Plans: Rich Purple Silk Shirt
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 9423; -- The Jackhammer
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 9424; -- Ginn-su sword
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 9465; -- Digmaster 5000
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 9427; -- Stonevault Bonebreaker
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 38802; -- Enchant Gloves Fishing
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 19854; -- Zin'rokh, Destroyer of Worlds
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 35664; -- Unknown Archeologist's Hammer
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 8226; -- The Butcher
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 23540; -- Felsteel Longblade
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 1728; -- Teebu's Blazing Longsword
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 14551; -- Edgemaster Handguards
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 9491; -- Hotshot Pilot Gloves
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 9425; -- Pendulum of Doom
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 45861; -- Diamond-Tipped Cane
UPDATE item_template SET sellprice=@750G, buyprice=@750G WHERE entry = 12592; -- Black Blade of Shazram
-- 1000
UPDATE item_template SET sellprice=@1000G, buyprice=@1000G WHERE entry = 4446; -- Blackvenom Blade
UPDATE item_template SET sellprice=@1000G, buyprice=@1000G WHERE entry = 1604; -- Chromatic Sword
UPDATE item_template SET sellprice=@1000G, buyprice=@1000G WHERE entry = 8029; -- Plans: Wicked Mithril Blade
-- 2500
UPDATE item_template SET sellprice=@2500G, buyprice=@2500G WHERE entry = 21025; -- Recipe: Dirge's Kickin' Chimaerok Chops
UPDATE item_template SET sellprice=@2500G, buyprice=@2500G WHERE entry = 9429; -- Miner's Hat of the Deep
-- 5000
UPDATE item_template SET sellprice=@5000G, buyprice=@5000G WHERE entry = 18755; -- Xorthian Firestick
UPDATE item_template SET sellprice=@5000G, buyprice=@5000G WHERE entry = 18401; -- Foror's Compendium of Dragonslaying
UPDATE item_template SET sellprice=@5000G, buyprice=@5000G WHERE entry = 1168; -- Skullflame Shield
-- 15,000
UPDATE item_template SET sellprice=@15000G, buyprice=@15000G WHERE entry = 17782; -- Talisman of Binding Shard
-- ######################################################--
-- BAGS
-- ######################################################--
UPDATE item_template SET sellprice=@1G, buyprice=@50G WHERE entry = 38082; -- Gigantique Bag (22-Slot Bag)
UPDATE item_template SET sellprice=@1G, buyprice=@100G WHERE entry = 51809; -- Portable Hole (24-Slot Bag)
UPDATE item_template SET sellprice=@1G, buyprice=@250G WHERE entry = 23162; -- Foror's Crate of Endless Resist Gear Storage (36-Slot Bag)
-- ######################################################--
-- KEYS
-- ######################################################--
-- SKELETON KEYS
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 15869; -- Silver Skeleton Key
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 15870; -- Golden Skeleton Key
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 15871; -- TrueSilver Skeleton Key
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 15872; -- Arcanite Skeleton Key
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 43853; -- Titanium Skeleton Key
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 43854; -- Cobalt Skeleton Key
-- QUEST KEYS
UPDATE item_template SET sellprice=@50S, buyprice=@10G WHERE entry = 5396; -- Key to the Searing Gorge (Tunnel)
-- DUNGEON KEYS
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 6893; -- Gnomregan Workshop Key (Gnomeregan)
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 7146; -- The Scarlet Key (Scarlet Monestary)
UPDATE item_template SET sellprice=@50S, buyprice=@2G WHERE entry = 11078; -- Relic Coffer Key (Blackrock Depths)
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 11197; -- Dark Keeper Keu (Blackrock Depths)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 11000; -- Shadowforge Key (Blackrock Depths)
UPDATE item_template SET sellprice=@50S, buyprice=@2G WHERE entry = 18250; -- Gordok Shackle Key (Dire Maul)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 18266; -- Gordok Courtyard Key (Dire Maul)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 18268; -- Gordok Inner Door Key (Dire Maul)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 18249; -- Crescent Key (Dire Maul)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 12382; -- Key to the City (Stratholme)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 27991; -- Shadow Labrynth Key
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 28395; -- Shattered Halls Key
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 31704; -- The Tempest Key (Tempest Keep)
UPDATE item_template SET sellprice=@50S, buyprice=@25G WHERE entry = 32449; -- Essence Infused Moonstone (Sethekk Halls, Druid Flight Form)
UPDATE item_template SET sellprice=@50S, buyprice=@50G WHERE entry = 30622; -- Flamewrought Key (Alliance - Heroic Hellfire Citadel)
UPDATE item_template SET sellprice=@50S, buyprice=@50G WHERE entry = 30637; -- Flamewrought Key (Horde - Heroic Hellfire Citadel)
UPDATE item_template SET sellprice=@50S, buyprice=@50G WHERE entry = 30623; -- Reservior Key (Heroic Coilfang Reservoir)
UPDATE item_template SET sellprice=@50S, buyprice=@50G WHERE entry = 30633; -- Auchenai Key (Heroic Auchindoun)
UPDATE item_template SET sellprice=@50S, buyprice=@50G WHERE entry = 30634; -- Warpforged Key (Heroic Tempest Keep)
UPDATE item_template SET sellprice=@50S, buyprice=@50G WHERE entry = 30635; -- Key of Time (Heroic Caverns of Time)
-- RAID KEYS
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 21761; -- Scarab Coffer Key (Ahn Quiraj)
UPDATE item_template SET sellprice=@50S, buyprice=@5G WHERE entry = 21762; -- Greater Scarab Coffer Key (Ahn Quiraj)
UPDATE item_template SET sellprice=@50S, buyprice=@250G WHERE entry = 24490; -- The Master's Key (Karazhan)
UPDATE item_template SET sellprice=@50S, buyprice=@250G WHERE entry = 31084; -- Key to the Arcatraz
UPDATE item_template SET sellprice=@50S, buyprice=@250G WHERE entry = 42482; -- The Violet Hold Key
UPDATE item_template SET sellprice=@50S, buyprice=@250G WHERE entry = 44582; -- Key to the Focusing Iris (Eye of Eternity)
UPDATE item_template SET sellprice=@50S, buyprice=@500G WHERE entry = 44581; -- Heroic Key to the Focusing Iris (Eye of Eternity)
UPDATE item_template SET sellprice=@50S, buyprice=@1000G WHERE entry = 45796; -- Celestial Planetarium Key (Ulduar)
UPDATE item_template SET sellprice=@50S, buyprice=@2500G WHERE entry = 45798; -- Heroic Celestial Planetarium Key (Ulduar)
-- ######################################################--
-- SPECIALTY ITEMS
-- ######################################################--
UPDATE item_template SET buyprice=@25G WHERE entry = 32566; -- Picnic Basket
UPDATE item_template SET buyprice=@25G WHERE entry = 41367; -- Dark Jade Focusing Lens
UPDATE item_template SET buyprice=@25G WHERE entry = 42420; -- Shadow Crystal Focusing Lens
UPDATE item_template SET buyprice=@25G WHERE entry = 42421; -- Shadow Jade Focusing Lens
UPDATE item_template SET buyprice=@500G WHERE entry = 45861; -- Diamond-Tipped Cane
UPDATE item_template SET buyprice=@500G WHERE entry = 7340; -- Flawless Diamond Solitaire
UPDATE item_template SET buyprice=@500G WHERE entry = 38089; -- Ruby Shades
UPDATE item_template SET buyprice=@1000G WHERE entry = 7337; -- The Rock
UPDATE item_template SET buyprice=@50S WHERE entry = 18640; -- Happy Fun Rock
-- CHARACTER TRANSFORM
UPDATE item_template SET buyprice=@100G WHERE entry = 18258; -- Gordok Ogre Suit
UPDATE item_template SET buyprice=@25S WHERE entry = 44228; -- Baby Spice
UPDATE item_template SET buyprice=@25S WHERE entry = 44958; -- Ethereal Oil
UPDATE item_template SET buyprice=@25S WHERE entry = 13506; -- Potion of Petrification
UPDATE item_template SET buyprice=@1G WHERE entry = 43572; -- Magic Eater
UPDATE item_template SET buyprice=@25S WHERE entry = 40195; -- Pygmy Oil
UPDATE item_template SET buyprice=@100G WHERE entry = 31337; -- Orb of the Blackwhelp
UPDATE item_template SET buyprice=@100G WHERE entry = 35275; -- Orb of the Sindorei
UPDATE item_template SET buyprice=@100G WHERE entry = 45853; -- Rituals of the New Moon
UPDATE item_template SET buyprice=@100G WHERE entry = 32782; -- Time-Lost Figurine
UPDATE item_template SET buyprice=@100G WHERE entry = 19979; -- Hook of the Master Angler
UPDATE item_template SET buyprice=@100G WHERE entry = 5462; -- Dartol's Rod of Transformation
UPDATE item_template SET buyprice=@10G WHERE entry = 4388; -- Discombobulator Ray
UPDATE item_template SET buyprice=@100G WHERE entry = 52201; -- Muradin's Favor
UPDATE item_template SET buyprice=@500G WHERE entry = 37254; -- Super Simian Sphere
UPDATE item_template SET buyprice=@100G WHERE entry = 49704; -- Carved Ogre Idol
UPDATE item_template SET buyprice=@100G WHERE entry = 23835; -- Gnomish Poultryizer
UPDATE item_template SET buyprice=@100G WHERE entry = 10716; -- Gnomish Shrink Ray
UPDATE item_template SET buyprice=@10G WHERE entry = 44818; -- Noblegarden Egg
-- SUMMON GUARDIANS
UPDATE item_template SET buyprice=@100G WHERE entry = 5332; -- Glowing Cat Figurine
UPDATE item_template SET buyprice=@100G WHERE entry = 10725; -- Gnomish Battle Chicken
UPDATE item_template SET buyprice=@100G WHERE entry = 40110; -- Haunted Momento
UPDATE item_template SET buyprice=@100G WHERE entry = 12185; -- Bloodsail Admiral's Hat
UPDATE item_template SET buyprice=@100G WHERE entry = 40492; -- Argent War Horn
UPDATE item_template SET buyprice=@100G WHERE entry = 14022; -- Barov Peasent Caller (H)
UPDATE item_template SET buyprice=@100G WHERE entry = 14023; -- Barov Peasent Called (A)
UPDATE item_template SET buyprice=@100G WHERE entry = 32864; -- Commander's Badge
UPDATE item_template SET buyprice=@100G WHERE entry = 32695; -- Captain's Badge
UPDATE item_template SET buyprice=@100G WHERE entry = 32694; -- Overseer's Badge
UPDATE item_template SET buyprice=@25S WHERE entry = 3456; -- Dog Whistle
UPDATE item_template SET buyprice=@100G WHERE entry = 38506; -- Don Carlo's Favorite Hat
UPDATE item_template SET buyprice=@25G WHERE entry = 16022; -- Arcanite Dragonling
UPDATE item_template SET buyprice=@25G WHERE entry = 4396; -- Mechanical Dragonling
UPDATE item_template SET buyprice=@50G WHERE entry = 35694; -- Khorium Boar
UPDATE item_template SET buyprice=@50G WHERE entry = 42418; -- Emerald Boar
UPDATE item_template SET buyprice=@50G WHERE entry = 24124; -- Felsteel Boar
UPDATE item_template SET buyprice=@100G WHERE entry = 50471; -- The Heartbreaker
UPDATE item_template SET buyprice=@100G WHERE entry = 54212; -- Instant Statue Pedestal
UPDATE item_template SET buyprice=@500G WHERE entry = 50966; -- Abracadaver
UPDATE item_template SET buyprice=@100G WHERE entry = 5218; -- Cleansed Timberling Heart
UPDATE item_template SET buyprice=@100G WHERE entry = 49490; -- Antilinuvian Cornerstone Grimiore
UPDATE item_template SET buyprice=@100G WHERE entry = 49308; -- Ancient Cornerstone Grimiore
UPDATE item_template SET buyprice=@250G WHERE entry = 34029; -- Tiny Voodoo Mask
UPDATE item_template SET buyprice=@250G WHERE entry = 13353; -- Book of the Dead
-- PLACE OBJECT ON GROUND
UPDATE item_template SET buyprice=@25G WHERE entry = 54438; -- Tiny Blue Ragdoll
UPDATE item_template SET buyprice=@25G WHERE entry = 44849; -- Tiny Green Ragdoll
UPDATE item_template SET buyprice=@500G WHERE entry = 34686; -- Brazier of Dancing Flames
UPDATE item_template SET buyprice=@100G WHERE entry = 33927; -- Brewfest Pony Keg
UPDATE item_template SET buyprice=@100G WHERE entry = 38578; -- Flag of Ownership
UPDATE item_template SET buyprice=@25G WHERE entry = 44606; -- Tiny Train Set
UPDATE item_template SET buyprice=@100G WHERE entry = 34480; -- Romantic Picnic Basket
UPDATE item_template SET buyprice=@100G WHERE entry = 44481; -- Grindgear Toy Gorilla
UPDATE item_template SET buyprice=@25G WHERE entry = 45047; -- Sandbox Tiger
UPDATE item_template SET buyprice=@100G WHERE entry = 46780; -- Ogre Pinata
UPDATE item_template SET buyprice=@100G WHERE entry = 45063; -- Foam Sword Rack
UPDATE item_template SET buyprice=@100G WHERE entry = 38301; -- D.I.S.C.O.
UPDATE item_template SET buyprice=@100G WHERE entry = 33223; -- Fishing Chair
UPDATE item_template SET buyprice=@100G WHERE entry = 33219; -- Goblin Gumbo Kettle
UPDATE item_template SET buyprice=@100G WHERE entry = 32542; -- Imp in a Ball
UPDATE item_template SET buyprice=@100G WHERE entry = 21326; -- Defender of the Timbermaw
-- MISC/MULTIPLE EFFECTS
UPDATE item_template SET buyprice=@1G WHERE entry = 38518; -- Cro's Apple
UPDATE item_template SET buyprice=@1G WHERE entry = 43491; -- Bad Clams
UPDATE item_template SET buyprice=@100G WHERE entry = 25679; -- Comfortable Insoles
UPDATE item_template SET buyprice=@1G WHERE entry = 43004; -- Critter Bites
UPDATE item_template SET buyprice=@100G WHERE entry = 36863; -- Decahedral Dwarven Dice
UPDATE item_template SET buyprice=@1G WHERE entry = 12217; -- Dragonbreath Chili
UPDATE item_template SET buyprice=@100G WHERE entry = 43492; -- Haunted Herring
UPDATE item_template SET buyprice=@25G WHERE entry = 44601; -- Heavy Copper Racer
UPDATE item_template SET buyprice=@25G WHERE entry = 18662; -- Heavy Leather Ball
UPDATE item_template SET buyprice=@1G WHERE entry = 43488; -- Last Week's Mammoth
UPDATE item_template SET buyprice=@2G WHERE entry = 35720; -- Lord of Frost's Private Label
UPDATE item_template SET buyprice=@100G WHERE entry = 37934; -- Noble' Elementium Signet
UPDATE item_template SET buyprice=@100G WHERE entry = 44792; -- Blossoming Branch
UPDATE item_template SET buyprice=@100G WHERE entry = 38266; -- Rotund Relic
UPDATE item_template SET buyprice=@1G WHERE entry = 17202; -- Snowball
UPDATE item_template SET buyprice=@1G WHERE entry = 43490; -- Tasty Cupcake
UPDATE item_template SET buyprice=@100G WHERE entry = 33081; -- Voodoo Skull
UPDATE item_template SET buyprice=@100G WHERE entry = 36862; -- Worn Troll Dice
-- UPDATE item_template SET buyprice=@100G WHERE entry = 52490; -- Stardust
UPDATE item_template SET buyprice=@1G WHERE entry = 37604; -- Toothpick
UPDATE item_template SET buyprice=@25G WHERE entry = 44731; -- Bouquet of Ebon Roses
UPDATE item_template SET buyprice=@25G WHERE entry = 22206; -- Bouquet of Red Roses
UPDATE item_template SET buyprice=@100G WHERE entry = 18660; -- World Enlarger
UPDATE item_template SET buyprice=@100G WHERE entry = 18951; -- Evonice's Landin' Pilla
UPDATE item_template SET buyprice=@100G WHERE entry = 9492; -- Electromagnetic Gigaflux Reactivator
UPDATE item_template SET buyprice=@50G WHERE entry = 37313; -- Riding Crop
UPDATE item_template SET buyprice=@25G WHERE entry = 11122; -- Carrot on a Stick
UPDATE item_template SET buyprice=@100G WHERE entry = 43660; -- Fire Eater's Guide
UPDATE item_template SET buyprice=@100G WHERE entry = 13379; -- Piccolo of the Flaming Fire
UPDATE item_template SET buyprice=@5G WHERE entry = 44482; -- Trusty Copper Racer
UPDATE item_template SET buyprice=@100G WHERE entry = 50741; -- Vile Fumigator's Mask
UPDATE item_template SET buyprice=@5G WHERE entry = 44599; -- Zippy Copper Racer
UPDATE item_template SET buyprice=@100G WHERE entry = 54452; -- Etheral Portal
UPDATE item_template SET buyprice=@1000G WHERE entry = 46349; -- Chef's Hat
UPDATE item_template SET buyprice=@100G WHERE entry = 38577; -- Party Grenade
UPDATE item_template SET buyprice=@100G WHERE entry = 54455; -- Paint Bomb
UPDATE item_template SET buyprice=@100G WHERE entry = 46779; -- Path of Cenarius
UPDATE item_template SET buyprice=@100G WHERE entry = 38233; -- Path of Illidan
UPDATE item_template SET buyprice=@5G WHERE entry = 34499; -- Paper Flying Machine
UPDATE item_template SET buyprice=@100G WHERE entry = 54806; -- Frostscyth of Lord Ahune
-- UPDATE item_template SET buyprice=@100G WHERE entry = 64482; -- Puzzle Box of Yogg Saron
UPDATE item_template SET buyprice=@100G WHERE entry = 52252; -- Tabard of the Lightbringer
UPDATE item_template SET buyprice=@100G WHERE entry = 40727; -- Gnomish Gravity Well
-- ######################################################--
-- FISHING
-- ######################################################--
-- BOOKS
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 27532; -- Book: Master Fishing
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 16082; -- Book: Artisan Fishing
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 16083; -- Book: Expert Fishing
-- ENCHANTS
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 50816; -- Scroll Enchant Gloves: Angler
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 50406; -- Formula Enchant Gloves: Angler
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 38802; -- Enchant Gloves Fishing
-- POTIONS
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 6372; -- Swim Speed Potion
UPDATE item_template SET sellprice=@25S, buyprice=@25S WHERE entry = 5996; -- Elixer of Water Breathing
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 18294; -- Elixer of Greater Water Breathing
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 8827; -- Elixer of Water Walking
-- SPECIAL
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 19979; -- Hook of the Master Angler
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 33223; -- Fishing Chair
-- VANITY
-- UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 1827; - Meat Cleaver
-- UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 2763; -- Fisherman's Knife
-- CLOTHING
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 7996; -- Worn Fishing Hat
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 19972; -- Lucky Fishing Hat
-- UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 3563; -- Seafarer's Pantaloons
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 7052; -- Azure Silk Belt
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 50287; -- Boots of the Bay
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 19969; -- Nat Pagle's Extreme Anglin' Boots
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 6263; -- Blue Overalls
-- UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 3342; -- Captain Sander's Shirt
-- UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 4509; -- Seawolf Gloves
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 792; -- Knitted Sandals
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 33820; -- Weather Beaten Fishing Hat
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 7348; -- Fletcher's Gloves
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 36019; -- Aerie Belt of Nature Protection
-- POLES
UPDATE item_template SET sellprice=@15000G, buyprice=@15000G WHERE entry = 19970; -- Arcanite Fishing Pole
UPDATE item_template SET sellprice=@15000G, buyprice=@15000G WHERE entry = 44050; -- Mastercraft Kaluak Fishing Pole
UPDATE item_template SET sellprice=@5000G, buyprice=@5000G WHERE entry = 45992; -- Jeweled Fishing Pole
UPDATE item_template SET sellprice=@1000G, buyprice=@1000G WHERE entry = 25978; -- Seth's Graphite Fishing Pole
UPDATE item_template SET sellprice=@500G, buyprice=@500G WHERE entry = 19022; -- Nat Pagle's Extreme Angler FC-5000
UPDATE item_template SET sellprice=@2500G, buyprice=@2500G WHERE entry = 45991; -- Bone Fishing Pole
UPDATE item_template SET sellprice=@50G, buyprice=@1500G WHERE entry = 45858; -- Nat's Lucky Fishing Pole
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 12225; -- Blump Family Fishing Pole
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 6367; -- Big Iron Fishing Pole
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 6365; -- Strong Fishing Pole
UPDATE item_template SET sellprice=@50G, buyprice=@100G WHERE entry = 6366; -- Darkwood Fishing Pole
UPDATE item_template SET sellprice=@50G, buyprice=@25S WHERE entry = 6256; -- Fishing Pole
-- UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 45120; -- Basic Fishing Pole
-- FISHING LINE
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 34836; -- Trusilver Spun Fishing Line
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 19971; -- High Test Eternium Fishing Line
-- LURES
UPDATE item_template SET sellprice=@3G, buyprice=@3G WHERE entry = 7307; -- Flesh Eating Worm
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 46006; -- Glow Worm
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 34861; -- Sharpened Fishing Hook
UPDATE item_template SET sellprice=@75S, buyprice=@75S WHERE entry = 6811; -- Aquadynamic Fish Lens
UPDATE item_template SET sellprice=@25S, buyprice=@25S WHERE entry = 6533; -- Aquadynamic Fish Attractor
UPDATE item_template SET sellprice=@5S, buyprice=@5S WHERE entry = 6532; -- Bright Baubles
UPDATE item_template SET sellprice=@1S, buyprice=@1S WHERE entry = 6530; -- Nightcrawlers
UPDATE item_template SET sellprice=@1S, buyprice=@1S WHERE entry = 6529; -- Shiny Bauble
-- ANGLIN'
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 34832; -- Captain Rumsey's Lager
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 18229; -- Nat Pagle's Guide to Extreme Anglin'
-- ######################################################--
-- BOOKS
-- ######################################################--
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 18364; -- The Emerald Dream
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 1108; -- Faded Photograph
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 18229; -- Nat Pagel's Guide to Extreme Anglin'
UPDATE item_template SET sellprice=@75G, buyprice=@75G WHERE entry = 18365; -- A Thoroughly Read Copy of Nat's Anglin'
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 18228; -- Autographed Picture of Tigole and Furor
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 20010; -- The Horde's Hellscream
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 19484; -- The Frostwolf Artichoke
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 19483; -- Peelin' The Onion
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 11482; -- Crystal Pilon User's Manual
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 19851; -- Grom's Tribute
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 39317; -- News from the North
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 29571; -- A Steamy Romance Novel
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 37467; -- A Steamy Romance Novel
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 46023; -- A Steamy Romance Novel
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 54291; -- A Steamy Romance Novel
-- ######################################################--
-- ENGINEERING
-- ######################################################--
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 46709; -- Mini-Zep Controller
UPDATE item_template SET sellprice=@5G, buyprice=@100G WHERE entry = 35227; -- Gnomish Weather Generator
UPDATE item_template SET sellprice=@5G, buyprice=@750G WHERE entry = 30542; -- Dimensional Ripper Area-52
UPDATE item_template SET sellprice=@5G, buyprice=@750G WHERE entry = 18984; -- Dimensional Ripper Everlook
UPDATE item_template SET sellprice=@5G, buyprice=@750G WHERE entry = 37863; -- Direbrew's Remote
UPDATE item_template SET sellprice=@5G, buyprice=@750G WHERE entry = 40768; -- MOLL-E
UPDATE item_template SET sellprice=@5G, buyprice=@1000G WHERE entry = 48933; -- Wormhole Generator: Northrend
UPDATE item_template SET sellprice=@5G, buyprice=@2500G WHERE entry = 49040; -- Jeeves
UPDATE item_template SET sellprice=@5G, buyprice=@25G WHERE entry = 40772; -- Gnomish Army Knife
-- ######################################################--
-- FOOD
-- ######################################################--
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 21024; -- Chimaerok Tenderloin
-- ######################################################--
-- POTION/ELIXER/FLASK
-- ######################################################--
UPDATE item_template SET sellprice=@50S, buyprice=@25S WHERE entry = 3386; -- Potion of Curing
UPDATE item_template SET sellprice=@50S, buyprice=@75S WHERE entry = 13462; -- Purification Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 6372; -- Swim Speed Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 5634; -- Free Action Potion
UPDATE item_template SET sellprice=@50S, buyprice=@25S WHERE entry = 12820; -- Winterfall Firewater
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 2459; -- Swiftness Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 34130; -- Diver's Recovery Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 37449; -- Breath of Murloc
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 23871; -- Potion of Water Breathing 30m
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 25539; -- Potion of Water Breathing 1h
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 8411; -- Lung Juice Cocktail
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 8412; -- Ground Scorpok Assay
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 8410; -- ROIDS
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 20079; -- Spirit of Zanza
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 20080; -- Sheen of Zanza
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 20081; -- Swiftness of Zanza
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 8423; -- Cerebral Cortex Compound
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 8424; -- Gizzard Gum
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 47499; -- Flask of the North
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32840; -- Major Arcane Protection
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32844; -- Major Nature Protection
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32847; -- Major Frost Protection
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32846; -- Major Fire Protection
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32845; -- Major Shadow Protection
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 23578; -- McWeakSauce
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 23579; -- McWeakSauce
UPDATE item_template SET sellprice=@5000G, buyprice=@15000G WHERE entry = 43569 ; -- Endless Healing Potion
UPDATE item_template SET sellprice=@5000G, buyprice=@15000G WHERE entry = 43570 ; -- Endless Mana Potion
UPDATE item_template SET sellprice=@5000G, buyprice=@15000G WHERE entry = 44728 ; -- Endless Rejuvination Potion
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 39327; -- Noth's Special Brew
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32947; -- Auchenai Healing Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 32948; -- Auchenai Mana Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 38351; -- Murliver Oil
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 33935; -- Crystal Mana Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 33934; -- Crystal Healing Potion
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 45008; -- Jilians Tonic of Stoneblood
UPDATE item_template SET sellprice=@50S, buyprice=@50S WHERE entry = 31838; -- Major Combat Healing Potion
-- ######################################################--
-- CLOTHING
-- ######################################################--
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 6833; -- White Tuxedo Shirt
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 6835; -- Black Tuxedo Pants
UPDATE item_template SET sellprice=@15000G, buyprice=@15000G WHERE entry = 45280; -- Shirt of Uber
UPDATE item_template SET sellprice=@15000G, buyprice=@15000G WHERE entry = 46104; -- Shirt of the Yogg Slayer
UPDATE item_template SET sellprice=@1000G, buyprice=@1000G WHERE entry = 52019; -- Precious's Ribbon
-- ######################################################--
-- GOODS VENDORS
-- ######################################################--
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 36914; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 36915; --
UPDATE item_template SET sellprice=@30G, buyprice=@30G WHERE entry = 37706; --
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 18562; --
UPDATE item_template SET sellprice=@100G, buyprice=@100G WHERE entry = 17203; --
UPDATE item_template SET sellprice=@250G, buyprice=@250G WHERE entry = 17771; --
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 12655; --
UPDATE item_template SET sellprice=@40G, buyprice=@40G WHERE entry = 30183; --
UPDATE item_template SET sellprice=@40G, buyprice=@40G WHERE entry = 23572; --
-- ######################################################--
-- GEMS
-- ######################################################--
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 38456; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44066; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28120; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 27679; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28119; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 38545; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 38546; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 38547; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 38548; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 38549; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28360; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28362; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28118; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 27777; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32636; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32634; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 34256; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32635; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32639; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 27786; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 27785; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32638; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32637; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28363; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28123; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28556; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 28557; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32641; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 32640; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44089; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44088; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44087; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44084; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44082; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44081; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44076; --
UPDATE item_template SET sellprice=@18G, buyprice=@18G WHERE entry = 44078; --
-- ######################################################--
-- TABARDS
-- ######################################################--
-- UPDATE item_template SET buyprice=@10G, buyprice=@10G WHERE entry = 35280; -- Tabard of Summer Flames
-- UPDATE item_template SET buyprice=@10G, buyprice=@10G WHERE entry = 35279; -- Tabard of Summer Skies
-- UPDATE item_template SET buyprice=@10G, buyprice=@10G WHERE entry = 45584; -- Thunder Bluff Tabard
-- UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = 46874; -- Argent Crusader's Tabard
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '5976';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '11364';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '15196';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '15197';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '15198';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '15199';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '19031';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '19032';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '19160';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '19505';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '19506';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '20131';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '20132';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '22999';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '23192';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '23999';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '24004';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '24344';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '25549';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '28788';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31279';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31404';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31405';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31773';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31774';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31775';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31776';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31777';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31778';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31779';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31780';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31781';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '31804';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '32445';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '32828';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '35221';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '35279';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '35280';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '36941';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '40643';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43154';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43155';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43156';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43157';
-- UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43300';
-- UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43348';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '43349';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45574';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45577';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45578';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45579';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45580';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45581';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45582';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45583';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45584';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45585';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '45983';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '46817';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '46818';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '46874';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '49052';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '49054';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '49086';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '51534';
UPDATE item_template SET buyprice=@50G, buyprice=@50G WHERE entry = '52252';
-- ######################################################--
-- FIREWORKS
-- ######################################################--
UPDATE item_template SET buyprice=@1G WHERE entry = 21745; -- Elder's Moonstone
UPDATE item_template SET buyprice=@1G WHERE entry = 21744; -- Lucky Rocket Cluster
UPDATE item_template SET buyprice=@5G WHERE entry = 21570; -- Cluster Launcher
UPDATE item_template SET buyprice=@50S WHERE entry = 34599; -- Juggling Torch
-- ######################################################--
-- ETHEREAL SOUL TRADER PRICES
-- ######################################################--
UPDATE item_template SET buyprice=@75S WHERE entry = 38291; -- Etheral Mutagen
UPDATE item_template SET buyprice=@50S WHERE entry = 38294; -- Ethereal Liquour
UPDATE item_template SET buyprice=@25S WHERE entry = 38300; -- Diluted Etheraum Essence
UPDATE item_template SET buyprice=@50S WHERE entry = 38308; -- Ethereal Essence Sphere
UPDATE item_template SET sellprice=@10S WHERE entry = 38291; -- Etheral Mutagen
UPDATE item_template SET sellprice=@5S WHERE entry = 39294; -- Ethereal Liquour
UPDATE item_template SET sellprice=@1S WHERE entry = 38300; -- Diluted Etheraum Essence
UPDATE item_template SET sellprice=@5S WHERE entry = 38308; -- Ethereal Essence Sphere
-- ######################################################--
-- FISHING PRICES
-- ######################################################--
-- Items
UPDATE item_template SET sellprice=@100G WHERE entry = 27442; -- Goldenscale Vendorfish
UPDATE item_template SET sellprice=@500G WHERE entry = 6360; -- Steelscale Crushfish
UPDATE item_template SET sellprice=@500G WHERE entry = 19808; -- Rockhide Strongfish
UPDATE item_template SET sellprice=@500G WHERE entry = 44703; -- Dark Herring
UPDATE item_template SET sellprice=@750G WHERE entry = 44505; -- Dustbringer
UPDATE item_template SET sellprice=@750G WHERE entry = 6651; -- Broken Wine Bottle
UPDATE item_template SET sellprice=@1000G WHERE entry = 34486; -- Old Crafty
UPDATE item_template SET sellprice=@1000G WHERE entry = 34484; -- Old Ironjaw
-- Mud Snapper
UPDATE item_template SET sellprice=@25G WHERE entry = 6292; -- 10 Mud Snapper
UPDATE item_template SET sellprice=@50G WHERE entry = 6294; -- 12 Mud Snapper
UPDATE item_template SET sellprice=@75G WHERE entry = 6295; -- 15 Mud Snapper
-- Catfish
UPDATE item_template SET sellprice=@10G WHERE entry = 6309; -- 17 Catfish
UPDATE item_template SET sellprice=@25G WHERE entry = 6310; -- 19 Catfish
UPDATE item_template SET sellprice=@50G WHERE entry = 6311; -- 22 Catfish
UPDATE item_template SET sellprice=@75G WHERE entry = 6363; -- 26 Catfish
UPDATE item_template SET sellprice=@100G WHERE entry = 6364; -- 32 Catfish
-- Grouper
UPDATE item_template SET sellprice=@10G WHERE entry = 13876; -- 40 Grouper
UPDATE item_template SET sellprice=@25G WHERE entry = 13877; -- 47 Grouper
UPDATE item_template SET sellprice=@50G WHERE entry = 13878; -- 53 Grouper
UPDATE item_template SET sellprice=@75G WHERE entry = 13879; -- 59 Grouper
UPDATE item_template SET sellprice=@100G WHERE entry = 13880; -- 68 Grouper
-- Redgill
UPDATE item_template SET sellprice=@10G WHERE entry = 13885; -- 34 Redgill
UPDATE item_template SET sellprice=@15G WHERE entry = 13886; -- 37 Redgill
UPDATE item_template SET sellprice=@25G WHERE entry = 13882; -- 42 Redgill
UPDATE item_template SET sellprice=@50G WHERE entry = 13883; -- 45 Redgill
UPDATE item_template SET sellprice=@75G WHERE entry = 13884; -- 49 Redgill
UPDATE item_template SET sellprice=@100G WHERE entry = 13887; -- 52 Redgill
-- Salmon
UPDATE item_template SET sellprice=@5G WHERE entry = 13901; -- 15 Salmon
UPDATE item_template SET sellprice=@10G WHERE entry = 13902; -- 18 Salmon
UPDATE item_template SET sellprice=@25G WHERE entry = 13903; -- 22 Salmon
UPDATE item_template SET sellprice=@50G WHERE entry = 13904; -- 25 Salmon
UPDATE item_template SET sellprice=@75G WHERE entry = 13905; -- 29 Salmon
UPDATE item_template SET sellprice=@100G WHERE entry = 13906; -- 32 Salmon
-- Lobster
UPDATE item_template SET sellprice=@1G WHERE entry = 13907; -- 7 Lobster
UPDATE item_template SET sellprice=@5G WHERE entry = 13908; -- 9 Lobster
UPDATE item_template SET sellprice=@10G WHERE entry = 13909; -- 12 Lobster
UPDATE item_template SET sellprice=@25G WHERE entry = 13910; -- 15 Lobster
UPDATE item_template SET sellprice=@50G WHERE entry = 13911; -- 19 Lobster
UPDATE item_template SET sellprice=@75G WHERE entry = 13912; -- 21 Lobster
UPDATE item_template SET sellprice=@100G WHERE entry = 13913; -- 22 Lobster
-- Mightfish
UPDATE item_template SET sellprice=@25G WHERE entry = 13914; -- 70 Mightfish
UPDATE item_template SET sellprice=@50G WHERE entry = 13915; -- 85 Mightfish
UPDATE item_template SET sellprice=@75G WHERE entry = 13916; -- 92 Mightfish
UPDATE item_template SET sellprice=@100G WHERE entry = 13917; -- 103 Mightfish
-- ######################################################--
-- CURRENCY PRICES
-- ######################################################--
-- HOLIDAY
UPDATE item_template SET sellprice=@3G, buyprice=@3G WHERE entry = 37829; -- Brewfest Prize Token
-- CRAFT
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 24245; -- Glowcap
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 28558; -- Spirit Shard
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 29736; -- Arcane Rune
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 29735; -- Holy Dust
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 41596; -- Dalaran Jewelcrafter's Token
UPDATE item_template SET sellprice=@25G, buyprice=@25G WHERE entry = 43016; -- Dalaran Cooking Award
-- BG/PVP
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 26044; -- Halaa Research Token
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 26045; -- Halaa Battle Token
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 20558; -- Warsong Gulch Mark of Honor
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 20559; -- Arathi Basin Mark of Honor
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 20560; -- Alterac Valley Mark of Honor
UPDATE item_template SET sellprice=@1G, buyprice=@1G WHERE entry = 29024; -- Eye of the Storm Mark of Honor
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 24579; -- Mark of Honor Hold
UPDATE item_template SET sellprice=@2G, buyprice=@2G WHERE entry = 24581; -- Mark of Thrallmar
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 47395; -- Isle of Conquest Mark of Honor
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 42425; -- Strand of the Ancients Mark of Honor
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 43589; -- Wintergrasp Mark of Honor
-- DUNGEON/RAID
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 43228; -- Stone Keeper's Shard
UPDATE item_template SET sellprice=@5G, buyprice=@5G WHERE entry = 40752; -- Emblem of Heroism (Heirloom)
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 29434; -- Badge of Justice (Legacy)
UPDATE item_template SET sellprice=@10G, buyprice=@10G WHERE entry = 44990; -- Champion's Seal (i200)
UPDATE item_template SET sellprice=@20G, buyprice=@20G WHERE entry = 40753; -- Emblem of Valor (i213)
UPDATE item_template SET sellprice=@20G, buyprice=@20G WHERE entry = 45624; -- Emblem of Conquest(i213)
UPDATE item_template SET sellprice=@30G, buyprice=@30G WHERE entry = 47241; -- Emblem of Triumph (i232)
UPDATE item_template SET sellprice=@40G, buyprice=@40G WHERE entry = 47557; -- Grand Regalia of the Grand Protector (i258)
UPDATE item_template SET sellprice=@40G, buyprice=@40G WHERE entry = 47558; -- Grand Regalia of the Grand Conquorer (i258)
UPDATE item_template SET sellprice=@40G, buyprice=@40G WHERE entry = 47559; -- Grand Regalia of the Grand Vanquisher (i258)
UPDATE item_template SET sellprice=@50G, buyprice=@50G WHERE entry = 49426; -- Emblem of Frost (i264)
-- ######################################################--
-- HEIRLOOM PRICES
-- ######################################################--
UPDATE item_template SET buyprice=@750G WHERE entry = 42943; -- Bloodied Arcanite Reaper
UPDATE item_template SET buyprice=@375G WHERE entry = 42944; -- Balanced Heartseeker
UPDATE item_template SET buyprice=@750G WHERE entry = 42945; -- Venerable Dal'Rend's Sacred Charge
UPDATE item_template SET buyprice=@750G WHERE entry = 42946; -- Charmed Ancient Bone Bow
UPDATE item_template SET buyprice=@750G WHERE entry = 42947; -- Dignified Headmaster's Charge
UPDATE item_template SET buyprice=@750G WHERE entry = 42948; -- Devout Aurastone Hammer
UPDATE item_template SET buyprice=@1000G WHERE entry = 42949; -- Polished Spaulders of Valor
UPDATE item_template SET buyprice=@1000G WHERE entry = 42950; -- Champion Herod's Shoulder
UPDATE item_template SET buyprice=@1000G WHERE entry = 42951; -- Mystical Pauldrons of Elements
UPDATE item_template SET buyprice=@1000G WHERE entry = 42952; -- Stained Shadowcraft Spaulders
UPDATE item_template SET buyprice=@1000G WHERE entry = 42984; -- Preened Ironfeather Shoulders
UPDATE item_template SET buyprice=@1000G WHERE entry = 42985; -- Tattered Dreadmist Mantle
UPDATE item_template SET buyprice=@375G WHERE entry = 42991; -- Swift Hand of Justice
UPDATE item_template SET buyprice=@375G WHERE entry = 42992; -- Discerning Eye of the Beast
UPDATE item_template SET buyprice=@375G WHERE entry = 44091; -- Sharpened Scarlet Kris
UPDATE item_template SET buyprice=@750G WHERE entry = 44092; -- Reforged Truesilver Champion
UPDATE item_template SET buyprice=@750G WHERE entry = 44093; -- Upgraded Dwarven Hand Cannon
UPDATE item_template SET buyprice=@750G WHERE entry = 44094; -- The Blessed Hammer of Grace
UPDATE item_template SET buyprice=@750G WHERE entry = 44095; -- Grand Staff of Jordan
UPDATE item_template SET buyprice=@375G WHERE entry = 44096; -- Battleworn Thrash Blade
UPDATE item_template SET buyprice=@375G WHERE entry = 44097; -- Inherited Insignia of the Horde
UPDATE item_template SET buyprice=@375G WHERE entry = 44098; -- Inherited Insignia of the Alliance
UPDATE item_template SET buyprice=@1000G WHERE entry = 44099; -- Strengthened Stockade Pauldrons
UPDATE item_template SET buyprice=@1000G WHERE entry = 44100; -- Pristine Lightforge Spaulders
UPDATE item_template SET buyprice=@1000G WHERE entry = 44101; -- Prized Beastmaster's Mantle
UPDATE item_template SET buyprice=@1000G WHERE entry = 44102; -- Aged Pauldrons of The Five Thunders
UPDATE item_template SET buyprice=@1000G WHERE entry = 44103; -- Exceptional Stormshroud Shoulders
UPDATE item_template SET buyprice=@1000G WHERE entry = 44105; -- Lasting Feralheart Spaulders
UPDATE item_template SET buyprice=@1000G WHERE entry = 44107; -- Exquisite Sunderseer Mantle
UPDATE item_template SET buyprice=@1000G WHERE entry = 48677; -- Champion's Deathdealer Breastplate
UPDATE item_template SET buyprice=@1000G WHERE entry = 48685; -- Polished Breastplate of Valor
UPDATE item_template SET buyprice=@1000G WHERE entry = 48687; -- Preened Ironfeather Breastplate
UPDATE item_template SET buyprice=@1000G WHERE entry = 48689; -- Stained Shadowcraft Tunic
UPDATE item_template SET buyprice=@1000G WHERE entry = 48683; -- Mystical Vest of Elements
UPDATE item_template SET buyprice=@1000G WHERE entry = 48691; -- Tattered Dreadmist Robe
UPDATE item_template SET buyprice=@750G WHERE entry = 48716; -- Venerable Mass of McGowan
UPDATE item_template SET buyprice=@750G WHERE entry = 48718; -- Repurposed Lava Dredger
UPDATE item_template SET buyprice=@500G WHERE entry = 50255; -- Dread Pirate Ring
-- ######################################################--
-- PET PRICES
-- ######################################################--
-- PET TOOLS
UPDATE item_template SET buyprice=@1G WHERE entry = 37460; -- Rope Pet Leash
UPDATE item_template SET buyprice=@1G WHERE entry = 44820; -- Red Ribbon Pet Leash
UPDATE item_template SET buyprice=@1G WHERE entry=43626; -- Happy Pet Snack
UPDATE item_template SET buyprice=@1G WHERE entry=35223; -- Papa Hummel's Old Fashioned Pet Buscuit
UPDATE item_template SET buyprice=@1G WHERE entry=37431; -- Fetch Ball
UPDATE item_template SET buyprice=@1G WHERE entry=43352; -- Pet Grooming Kit
UPDATE item_template SET buyprice=@1G WHERE entry=22200; -- Silver Shafted Arrow
UPDATE item_template SET buyprice=@1G WHERE entry=47541; -- Argent Pony Bridle
-- MECHANICAL
UPDATE item_template SET sellprice=@5G, buyprice=@25G WHERE entry=4401; -- Mechanical Squirrel Box
UPDATE item_template SET sellprice=@5G, buyprice=@25G WHERE entry=10398; -- Mechanical Chicken
UPDATE item_template SET sellprice=@5G, buyprice=@250G WHERE entry=11825; -- Pet Bombling
UPDATE item_template SET sellprice=@5G, buyprice=@250G WHERE entry=11826; -- Lil' Smoky
UPDATE item_template SET sellprice=@5G, buyprice=@25G WHERE entry=15996; -- Lifelike Mechanical Toad
UPDATE item_template SET sellprice=@5G, buyprice=@50G WHERE entry=21277; -- Tranquil Mechanical Yeti
UPDATE item_template SET buyprice=@500G WHERE entry=54847; -- Lil' XT
UPDATE item_template SET buyprice=@500G WHERE entry=56806; -- Mini Thor
UPDATE item_template SET buyprice=@250G WHERE entry=54436; -- Blue Clockwork Rocket Bot
UPDATE item_template SET buyprice=@250G WHERE entry=34425; -- Clockwork Rocket Bot
UPDATE item_template SET sellprice=@5G, buyprice=@50G WHERE entry=34492; -- Rocket Chicken
UPDATE item_template SET sellprice=@5G, buyprice=@500G WHERE entry=44972; -- Alarming Clockbot NOT IN USE
UPDATE item_template SET buyprice=@500G WHERE entry=45942; -- XS-001 Constructor Bot
UPDATE item_template SET buyprice=@500G WHERE entry=46767; -- Warbot Ignition Key
UPDATE item_template SET buyprice=@250G WHERE entry=45002; -- Mechanopeep
-- CATS
UPDATE item_template SET buyprice=@10G WHERE entry=8485; -- Cat Carrier Bombay
UPDATE item_template SET buyprice=@10G WHERE entry=8486; -- Cat Carrier Cornish Rex
UPDATE item_template SET buyprice=@10G WHERE entry=8487; -- Cat Carrier Orange Tabby
UPDATE item_template SET buyprice=@10G WHERE entry=8488; -- Cat Carrier Silver Tabby
UPDATE item_template SET buyprice=@10G WHERE entry=8489; -- Cat Carrier White Kitten
UPDATE item_template SET buyprice=@10G WHERE entry=8490; -- Cat Carrier Siamese
UPDATE item_template SET buyprice=@10G WHERE entry=8491; -- Cat Carrier Black Tabby
UPDATE item_template SET buyprice=@50G WHERE entry=46398; -- Cat Carrier Calico Cat
UPDATE item_template SET buyprice=@250G WHERE entry=11903; -- Cat Carrier Corrupted Kitten
-- BIRDS
UPDATE item_template SET buyprice=@100G WHERE entry=8492; -- Parrot Cage Green Wing Macaw
UPDATE item_template SET buyprice=@10G WHERE entry=8495; -- Parrot Cage Senegal
UPDATE item_template SET buyprice=@10G WHERE entry=8496; -- Parrot Cage Cockatiel
UPDATE item_template SET buyprice=@50G WHERE entry=8497; -- Rabbit Crate Snowshoe
UPDATE item_template SET buyprice=@5G WHERE entry=29364; -- Brown Rabbit Crate
UPDATE item_template SET buyprice=@50G WHERE entry=39896; -- Tickbird Hatchling
UPDATE item_template SET buyprice=@50G WHERE entry=39899; -- White Tickbird Hatchling
UPDATE item_template SET buyprice=@100G WHERE entry=8500; -- Great Horned Owl
UPDATE item_template SET buyprice=@100G WHERE entry=8501; -- Hawk Owl
-- SNAKES
UPDATE item_template SET buyprice=@5G WHERE entry=10360; -- Black Kingsnake
UPDATE item_template SET buyprice=@5G WHERE entry=10361; -- Brown Snake
UPDATE item_template SET buyprice=@5G WHERE entry=10392; -- Crimson Snake
UPDATE item_template SET buyprice=@5G WHERE entry=44822; -- Albino Snake
UPDATE item_template SET buyprice=@15G WHERE entry=39898; -- Cobra Hatchling
-- FROGS
UPDATE item_template SET buyprice=@5G WHERE entry=11026; -- Tree Frog Box
UPDATE item_template SET buyprice=@5G WHERE entry=11027; -- Wood Frog Box
UPDATE item_template SET buyprice=@500G WHERE entry=33993; -- Mojo
-- MOTHS
UPDATE item_template SET buyprice=@5G WHERE entry=29901; -- Blue Moth Egg
UPDATE item_template SET buyprice=@10G WHERE entry=29902; -- Red Moth Egg
UPDATE item_template SET buyprice=@10G WHERE entry=29903; -- Yellow Moth Egg
UPDATE item_template SET buyprice=@15G WHERE entry=29904; -- White Moth Egg
-- CRITTERS
UPDATE item_template SET buyprice=@1G WHERE entry=10393; -- Cockroach
UPDATE item_template SET buyprice=@100G WHERE entry=11110; -- Chicken Egg
UPDATE item_template SET buyprice=@100G WHERE entry=11023; -- Ancona Chicken
UPDATE item_template SET buyprice=@1G WHERE entry=10394; -- Prairie Dog Whistle
UPDATE item_template SET buyprice=@250G WHERE entry=44794; -- Spring Rabbit's Foot
UPDATE item_template SET buyprice=@500G WHERE entry=22781; -- Polar Bear Collar
UPDATE item_template SET buyprice=@750G WHERE entry=23007; -- Piglet's Collar
UPDATE item_template SET buyprice=@750G WHERE entry=23712; -- White Tiger Cub
UPDATE item_template SET buyprice=@350G WHERE entry=23713; -- Hippogryph Hatchling
UPDATE item_template SET buyprice=@100G WHERE entry=29363; -- Mana Wyrmling
UPDATE item_template SET buyprice=@250G WHERE entry=46820; -- Shimmering Wyrmling
UPDATE item_template SET buyprice=@100G WHERE entry=32588; -- Banana Charm
UPDATE item_template SET buyprice=@500G WHERE entry=32622; -- Elekk Training Collar
UPDATE item_template SET buyprice=@500G WHERE entry=38628; -- Nether Ray Fry
UPDATE item_template SET buyprice=@500G WHERE entry=38658; -- Vampiric Batling
UPDATE item_template SET buyprice=@500G WHERE entry=44723; -- Nurtured Penguin Egg
UPDATE item_template SET buyprice=@1000G WHERE entry=41133; -- Unhatched Mr. Chilly
UPDATE item_template SET buyprice=@500G WHERE entry=43517; -- Penguin Egg
UPDATE item_template SET buyprice=@100G WHERE entry=44810; -- Turkey Cage
UPDATE item_template SET buyprice=@750G WHERE entry=44819; -- Baby Blizzard Bear
UPDATE item_template SET buyprice=@2500G WHERE entry=44841; -- Little Fawn's Salt Lick
UPDATE item_template SET buyprice=@750G WHERE entry=46544; -- Curious Wolvar Pup
UPDATE item_template SET buyprice=@750G WHERE entry=46545; -- Curious Oracle Hatchling
UPDATE item_template SET buyprice=@250G WHERE entry=49662; -- Gryphon Hatchling
UPDATE item_template SET buyprice=@250G WHERE entry=49663; -- Wind Rider Cub
UPDATE item_template SET buyprice=@250G WHERE entry=49912; -- Perky Pug
UPDATE item_template SET buyprice=@500G WHERE entry=44983; -- Strand Crawler
UPDATE item_template SET buyprice=@750G WHERE entry=21168; -- Baby Shark
-- ZONE
UPDATE item_template SET buyprice=@350G WHERE entry=44984; -- Ammen Vale Lashling
UPDATE item_template SET buyprice=@500G WHERE entry=44970; -- Dun Morogh Cub
UPDATE item_template SET buyprice=@350G WHERE entry=44971; -- Tirisfal Batling
UPDATE item_template SET buyprice=@350G WHERE entry=44973; -- Durotar Scorpion
UPDATE item_template SET buyprice=@500G WHERE entry=44974; -- Elwynn Lamb
-- DRAGONS
UPDATE item_template SET buyprice=@500G WHERE entry=10822; -- Dark Whelpling
UPDATE item_template SET buyprice=@1000G WHERE entry=8498; -- Tiny Emerald Whelpling
UPDATE item_template SET buyprice=@750G WHERE entry=8499; -- Tiny Crimson Whelpling
UPDATE item_template SET buyprice=@100G WHERE entry=11474; -- Sprite Darter Egg
UPDATE item_template SET buyprice=@500G WHERE entry=19054; -- Red Dragon Orb
UPDATE item_template SET buyprice=@750G WHERE entry=19055; -- Green Dragon Orb
UPDATE item_template SET buyprice=@100G WHERE entry=29953; -- Golden Dragonhawk Hatchling
UPDATE item_template SET buyprice=@250G WHERE entry=29956; -- Red Dragonhawk Hatchling
UPDATE item_template SET buyprice=@350G WHERE entry=29957; -- Silver Dragonhawk Hatchling
UPDATE item_template SET buyprice=@500G WHERE entry=29958; -- Blue Dragonhawk Hatchling
UPDATE item_template SET buyprice=@750G WHERE entry=25535; -- Netherwhelp's Collar
UPDATE item_template SET buyprice=@1000G WHERE entry=34535; -- Azure Whelpling
UPDATE item_template SET buyprice=@750G WHERE entry=44721; -- Proto-Drake Whelp
UPDATE item_template SET buyprice=@1000G WHERE entry=54810; -- Celestial Dragon
UPDATE item_template SET buyprice=@750G WHERE entry=49362; -- Onyxian Whelpling
UPDATE item_template SET buyprice=@500G WHERE entry=39286; -- Frosty's Collar
-- MURLOC
UPDATE item_template SET buyprice=@1000G WHERE entry=20651; -- Orange Murloc Egg
UPDATE item_template SET buyprice=@1000G WHERE entry=20371; -- Blue Murloc Egg
UPDATE item_template SET buyprice=@1000G WHERE entry=22114; -- Pink Murloc Egg
UPDATE item_template SET buyprice=@1000G WHERE entry=22780; -- White Murloc Egg
UPDATE item_template SET buyprice=@1000G WHERE entry=30360; -- Lurky's Egg
UPDATE item_template SET buyprice=@500G WHERE entry=46802; -- Heavy Murloc Egg
UPDATE item_template SET buyprice=@750G WHERE entry=46892; -- Murkimus' Tiny Spear
-- TURTLES
UPDATE item_template SET buyprice=@500G WHERE entry=18964; -- Turtle Egg Loggerhead
UPDATE item_template SET buyprice=@350G WHERE entry=23002; -- Turtle Box
UPDATE item_template SET buyprice=@750G WHERE entry=39148; -- Baby Coralshell Turtle
-- HOLIDAY
UPDATE item_template SET buyprice=@500G WHERE entry=21308; -- Jingling Bell
UPDATE item_template SET buyprice=@250G WHERE entry=21309; -- Snowman Kit
UPDATE item_template SET buyprice=@250G WHERE entry=22235; -- Truesilver Shafted Arrow
UPDATE item_template SET buyprice=@350G WHERE entry=32233; -- Wolpertinger's Tankard
UPDATE item_template SET buyprice=@2500G WHERE entry=23083; -- Captured Flame
UPDATE item_template SET buyprice=@500G WHERE entry=33154; -- Sinister Squashling
-- SAURS
UPDATE item_template SET buyprice=@100G WHERE entry=48112; -- Darting Hatchling
UPDATE item_template SET buyprice=@250G WHERE entry=48114; -- Deviate Hatchling
UPDATE item_template SET buyprice=@250G WHERE entry=48116; -- Gundrak Hatchling
UPDATE item_template SET buyprice=@350G WHERE entry=48118; -- Leaping Hatchling
UPDATE item_template SET buyprice=@350G WHERE entry=48120; -- Obsidian Hatchling
UPDATE item_template SET buyprice=@500G WHERE entry=48122; -- Ravasaur Hatchling
UPDATE item_template SET buyprice=@500G WHERE entry=48124; -- Razormaw Hatchling
UPDATE item_template SET buyprice=@750G WHERE entry=48126; -- Razzashi Hatchling
-- HUMANOID
UPDATE item_template SET buyprice=@2500G WHERE entry=21301; -- Green Helper Box
UPDATE item_template SET buyprice=@2500G WHERE entry=21305; -- Red Helper Box
UPDATE item_template SET buyprice=@250G WHERE entry=45022; -- Argent Gruntling
UPDATE item_template SET buyprice=@250G WHERE entry=44998; -- Argent Squire
-- QUEST/ACHIEVEMENT
UPDATE item_template SET buyprice=@250G WHERE entry=40653; -- Reeking Pet Carrier
UPDATE item_template SET buyprice=@250G WHERE entry=32617; -- Sleepy Willy
UPDATE item_template SET buyprice=@500G WHERE entry=46707; -- Pint-Sized Pink Pachyderm
UPDATE item_template SET buyprice=@500G WHERE entry=31760; -- Miniwing
UPDATE item_template SET buyprice=@750G WHERE entry=32616; -- Egbert's Egg
UPDATE item_template SET buyprice=@750G WHERE entry=33816; -- Toothy's Bucket
UPDATE item_template SET buyprice=@750G WHERE entry=33818; -- Muckbreath's Bucket
UPDATE item_template SET buyprice=@750G WHERE entry=35349; -- Snarly's Bucket
UPDATE item_template SET buyprice=@750G WHERE entry=35350; -- Chuck's Bucket
UPDATE item_template SET buyprice=@500G WHERE entry=12264; -- Worg Carrier
UPDATE item_template SET buyprice=@500G WHERE entry=12529; -- Smolderweb Carrier
UPDATE item_template SET buyprice=@250G WHERE entry=46396; -- Wolvar Orphan Whistle
UPDATE item_template SET buyprice=@250G WHERE entry=46397; -- Oracle Orphan Whistle
-- RARE DROP
UPDATE item_template SET buyprice=@500G WHERE entry=53641; -- Ice Chip
UPDATE item_template SET buyprice=@10000G WHERE entry=8494; -- Parrot Cage Hyacinth Macaw
UPDATE item_template SET buyprice=@15000G WHERE entry=43698; -- Giant Sewer Rat
UPDATE item_template SET buyprice=@15000G WHERE entry=20769; -- Disgusting Oozeling
UPDATE item_template SET buyprice=@15000G WHERE entry=27445; -- Magical Crawdad Box
-- TRADING CARD
UPDATE item_template SET buyprice=@1G WHERE entry=38050; -- Soul-Trader Beacon
UPDATE item_template SET buyprice=@250G WHERE entry=13582; -- Zergling Leash
UPDATE item_template SET buyprice=@500G WHERE entry=13583; -- Panda Collar
UPDATE item_template SET buyprice=@350G WHERE entry=13584; -- Diablo Stone
UPDATE item_template SET buyprice=@50G WHERE entry=19462; -- Unhatched Jubling Egg
UPDATE item_template SET buyprice=@50G WHERE entry=49287; -- Tuskarr Kite
UPDATE item_template SET buyprice=@50G WHERE entry=34493; -- Dragon Kite
-- EXOTIC
UPDATE item_template SET buyprice=@350G WHERE entry=23015; -- Rat Cage
UPDATE item_template SET buyprice=@500G WHERE entry=44738; -- Kirin Tor Familiar
UPDATE item_template SET buyprice=@350G WHERE entry=49665; -- Pandaren Monk
UPDATE item_template SET buyprice=@750G WHERE entry=44980; -- Mulgore Hatchling
UPDATE item_template SET buyprice=@750G WHERE entry=44982; -- Enchanted Broom
UPDATE item_template SET buyprice=@500G WHERE entry=45606; -- Sen'jin Fetish
UPDATE item_template SET buyprice=@2500G WHERE entry=34955; -- Scorched Stone
UPDATE item_template SET buyprice=@1000G WHERE entry=44965; -- Teldrassil Sproutling
UPDATE item_template SET buyprice=@750G WHERE entry=34478; -- Tiny Sporebat
UPDATE item_template SET buyprice=@500G WHERE entry=29960; -- Captured Firefly
UPDATE item_template SET buyprice=@1000G WHERE entry=35504; -- Phoenix Hatchling
UPDATE item_template SET buyprice=@100G WHERE entry=39656; -- Tyrael's Hilt
UPDATE item_template SET buyprice=@250G WHERE entry=39973; -- Ghostly Skull
UPDATE item_template SET buyprice=@350G WHERE entry=49343; -- Spectral Tiger Cub
UPDATE item_template SET buyprice=@750G WHERE entry=49646; -- Core Hound Pup
UPDATE item_template SET buyprice=@500G WHERE entry=49693; -- Lil' Phylactery
UPDATE item_template SET buyprice=@500G WHERE entry=48527; -- Enchanted Onyx
UPDATE item_template SET buyprice=@2500G WHERE entry=50446; -- Toxic Wasteling
-- OTHER LOCALE
UPDATE item_template SET buyprice=@500G WHERE entry=32498; -- Fortune Coin
UPDATE item_template SET buyprice=@750G WHERE entry=37298; -- Competitor's Souvenir
UPDATE item_template SET buyprice=@750G WHERE entry=37297; -- Gold Medallion
UPDATE item_template SET buyprice=@500G WHERE entry=34518; -- Golden Pig Coin
UPDATE item_template SET buyprice=@500G WHERE entry=34519; -- Silver Pig Coin
-- END OF LINE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment