If you copy and paste this into a database query and run, it will put all the bot tables in your database. I use it myself on current dev and db version 9328
Code:
DROP TABLE IF EXISTS `bot_blocked_buffs`;
CREATE TABLE `bot_blocked_buffs` (
`bot_id` int(11) UNSIGNED NOT NULL,
`spell_id` int(11) UNSIGNED NOT NULL,
`blocked` tinyint(4) UNSIGNED NULL DEFAULT 0,
`blocked_pet` tinyint(4) UNSIGNED NULL DEFAULT 0,
PRIMARY KEY (`bot_id`, `spell_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_buffs`;
CREATE TABLE `bot_buffs` (
`buffs_index` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`bot_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`spell_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`caster_level` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`duration_formula` int(10) UNSIGNED NOT NULL DEFAULT 0,
`tics_remaining` int(11) UNSIGNED NOT NULL DEFAULT 0,
`poison_counters` int(11) UNSIGNED NOT NULL DEFAULT 0,
`disease_counters` int(11) UNSIGNED NOT NULL DEFAULT 0,
`curse_counters` int(11) UNSIGNED NOT NULL DEFAULT 0,
`corruption_counters` int(11) UNSIGNED NOT NULL DEFAULT 0,
`numhits` int(10) UNSIGNED NOT NULL DEFAULT 0,
`melee_rune` int(10) UNSIGNED NOT NULL DEFAULT 0,
`magic_rune` int(10) UNSIGNED NOT NULL DEFAULT 0,
`dot_rune` int(10) UNSIGNED NOT NULL DEFAULT 0,
`persistent` tinyint(1) NOT NULL DEFAULT 0,
`caston_x` int(10) NOT NULL DEFAULT 0,
`caston_y` int(10) NOT NULL DEFAULT 0,
`caston_z` int(10) NOT NULL DEFAULT 0,
`extra_di_chance` int(10) UNSIGNED NOT NULL DEFAULT 0,
`instrument_mod` int(10) NOT NULL DEFAULT 10,
PRIMARY KEY (`buffs_index`) USING BTREE,
INDEX `FK_bot_buffs_1`(`bot_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_command_settings`;
CREATE TABLE `bot_command_settings` (
`bot_command` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`access` int(11) NOT NULL DEFAULT 0,
`aliases` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
PRIMARY KEY (`bot_command`) USING BTREE,
UNIQUE INDEX `UK_bot_command_settings_1`(`bot_command`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
INSERT INTO `bot_command_settings` VALUES ('actionable', 0, '');
INSERT INTO `bot_command_settings` VALUES ('applypoison', 0, '');
INSERT INTO `bot_command_settings` VALUES ('attack', 0, 'atk');
INSERT INTO `bot_command_settings` VALUES ('behindmob', 0, '');
INSERT INTO `bot_command_settings` VALUES ('blockedbuffs', 0, '');
INSERT INTO `bot_command_settings` VALUES ('blockedpetbuffs', 0, '');
INSERT INTO `bot_command_settings` VALUES ('bot', 0, 'b');
INSERT INTO `bot_command_settings` VALUES ('botappearance', 0, 'app|appearance');
INSERT INTO `bot_command_settings` VALUES ('botbeardcolor', 0, 'bc|beardcolor');
INSERT INTO `bot_command_settings` VALUES ('botbeardstyle', 0, 'bs|beardstyle');
INSERT INTO `bot_command_settings` VALUES ('botcamp', 0, 'camp');
INSERT INTO `bot_command_settings` VALUES ('botclone', 200, 'clone');
INSERT INTO `bot_command_settings` VALUES ('botcreate', 0, 'create');
INSERT INTO `bot_command_settings` VALUES ('botdelete', 0, 'delete');
INSERT INTO `bot_command_settings` VALUES ('botdetails', 0, 'details');
INSERT INTO `bot_command_settings` VALUES ('botdyearmor', 0, 'dyearmor');
INSERT INTO `bot_command_settings` VALUES ('boteyes', 0, 'eyes');
INSERT INTO `bot_command_settings` VALUES ('botface', 0, 'face');
INSERT INTO `bot_command_settings` VALUES ('botfollowdistance', 0, 'followd|followdistance');
INSERT INTO `bot_command_settings` VALUES ('bothaircolor', 0, 'hc|haircolor');
INSERT INTO `bot_command_settings` VALUES ('bothairstyle', 0, 'hs|hairstyle');
INSERT INTO `bot_command_settings` VALUES ('botheritage', 0, 'her|heritage');
INSERT INTO `bot_command_settings` VALUES ('botinspectmessage', 0, 'inspect');
INSERT INTO `bot_command_settings` VALUES ('botlist', 0, 'list');
INSERT INTO `bot_command_settings` VALUES ('botreport', 0, 'report|health|mana');
INSERT INTO `bot_command_settings` VALUES ('botsettings', 0, '');
INSERT INTO `bot_command_settings` VALUES ('botspawn', 0, 'spawn');
INSERT INTO `bot_command_settings` VALUES ('botstance', 0, 'stance');
INSERT INTO `bot_command_settings` VALUES ('botstopmeleelevel', 0, 'sml');
INSERT INTO `bot_command_settings` VALUES ('botsuffix', 0, '');
INSERT INTO `bot_command_settings` VALUES ('botsummon', 0, 'summon');
INSERT INTO `bot_command_settings` VALUES ('botsurname', 0, '');
INSERT INTO `bot_command_settings` VALUES ('bottattoo', 0, 'tattoo');
INSERT INTO `bot_command_settings` VALUES ('bottitle', 0, '');
INSERT INTO `bot_command_settings` VALUES ('bottogglehelm', 0, 'helm|togglehelm');
INSERT INTO `bot_command_settings` VALUES ('bottoggleranged', 0, '');
INSERT INTO `bot_command_settings` VALUES ('botupdate', 0, 'update');
INSERT INTO `bot_command_settings` VALUES ('botwoad', 0, 'woad');
INSERT INTO `bot_command_settings` VALUES ('cast', 0, '');
INSERT INTO `bot_command_settings` VALUES ('classracelist', 0, '');
INSERT INTO `bot_command_settings` VALUES ('clickitem', 0, '');
INSERT INTO `bot_command_settings` VALUES ('copysettings', 0, '');
INSERT INTO `bot_command_settings` VALUES ('defaultsettings', 0, '');
INSERT INTO `bot_command_settings` VALUES ('depart', 0, 'dep');
INSERT INTO `bot_command_settings` VALUES ('discipline', 0, '');
INSERT INTO `bot_command_settings` VALUES ('distanceranged', 0, '');
INSERT INTO `bot_command_settings` VALUES ('enforcespellsettings', 0, '');
INSERT INTO `bot_command_settings` VALUES ('findaliases', 0, 'alias');
INSERT INTO `bot_command_settings` VALUES ('follow', 0, '');
INSERT INTO `bot_command_settings` VALUES ('guard', 0, '');
INSERT INTO `bot_command_settings` VALUES ('healrotation', 0, 'hr');
INSERT INTO `bot_command_settings` VALUES ('healrotationadaptivetargeting', 0, 'hradapt');
INSERT INTO `bot_command_settings` VALUES ('healrotationaddmember', 0, 'hraddm');
INSERT INTO `bot_command_settings` VALUES ('healrotationaddtarget', 0, 'hraddt');
INSERT INTO `bot_command_settings` VALUES ('healrotationadjustcritical', 0, 'hrcrit');
INSERT INTO `bot_command_settings` VALUES ('healrotationadjustsafe', 0, 'hrsafe');
INSERT INTO `bot_command_settings` VALUES ('healrotationcastingoverride', 0, 'hroverride');
INSERT INTO `bot_command_settings` VALUES ('healrotationchangeinterval', 0, 'hrinterval');
INSERT INTO `bot_command_settings` VALUES ('healrotationclearhot', 0, 'hrclearhot');
INSERT INTO `bot_command_settings` VALUES ('healrotationcleartargets', 0, 'hrclear');
INSERT INTO `bot_command_settings` VALUES ('healrotationcreate', 0, 'hrcreate');
INSERT INTO `bot_command_settings` VALUES ('healrotationdelete', 0, 'hrdelete');
INSERT INTO `bot_command_settings` VALUES ('healrotationfastheals', 0, 'hrfastheals');
INSERT INTO `bot_command_settings` VALUES ('healrotationlist', 0, 'hrlist');
INSERT INTO `bot_command_settings` VALUES ('healrotationremovemember', 0, 'hrremm');
INSERT INTO `bot_command_settings` VALUES ('healrotationremovetarget', 0, 'hrremt');
INSERT INTO `bot_command_settings` VALUES ('healrotationresetlimits', 0, 'hrreset');
INSERT INTO `bot_command_settings` VALUES ('healrotationsave', 0, 'hrsave');
INSERT INTO `bot_command_settings` VALUES ('healrotationsethot', 0, 'hrsethot');
INSERT INTO `bot_command_settings` VALUES ('healrotationstart', 0, 'hrstart');
INSERT INTO `bot_command_settings` VALUES ('healrotationstop', 0, 'hrstop');
INSERT INTO `bot_command_settings` VALUES ('help', 0, '?');
INSERT INTO `bot_command_settings` VALUES ('hold', 0, '');
INSERT INTO `bot_command_settings` VALUES ('illusionblock', 0, '');
INSERT INTO `bot_command_settings` VALUES ('inventory', 0, 'inv');
INSERT INTO `bot_command_settings` VALUES ('inventorygive', 0, 'invgive|ig');
INSERT INTO `bot_command_settings` VALUES ('inventorylist', 0, 'invlist|il');
INSERT INTO `bot_command_settings` VALUES ('inventoryremove', 0, 'invremove|ir');
INSERT INTO `bot_command_settings` VALUES ('inventorywindow', 0, 'invwindow|iw');
INSERT INTO `bot_command_settings` VALUES ('itemuse', 0, '');
INSERT INTO `bot_command_settings` VALUES ('maxmeleerange', 0, '');
INSERT INTO `bot_command_settings` VALUES ('owneroption', 0, 'oo');
INSERT INTO `bot_command_settings` VALUES ('pet', 0, 'p');
INSERT INTO `bot_command_settings` VALUES ('petgetlost', 0, 'pgl');
INSERT INTO `bot_command_settings` VALUES ('petremove', 0, 'prem');
INSERT INTO `bot_command_settings` VALUES ('petsettype', 0, 'pset|pst');
INSERT INTO `bot_command_settings` VALUES ('picklock', 0, 'pl');
INSERT INTO `bot_command_settings` VALUES ('pickpocket', 0, '');
INSERT INTO `bot_command_settings` VALUES ('precombat', 0, '');
INSERT INTO `bot_command_settings` VALUES ('pull', 0, '');
INSERT INTO `bot_command_settings` VALUES ('release', 0, '');
INSERT INTO `bot_command_settings` VALUES ('setassistee', 0, '');
INSERT INTO `bot_command_settings` VALUES ('sithppercent', 0, '');
INSERT INTO `bot_command_settings` VALUES ('sitincombat', 0, '');
INSERT INTO `bot_command_settings` VALUES ('sitmanapercent', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellaggrochecks', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellannouncecasts', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spelldelays', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellengagedpriority', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellholds', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellidlepriority', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellinfo', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellmaxhppct', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellmaxmanapct', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellmaxthresholds', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellminhppct', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellminmanapct', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellminthresholds', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellpursuepriority', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellresistlimits', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spells', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellsettings', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellsettingsadd', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellsettingsdelete', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellsettingstoggle', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spellsettingsupdate', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spelltargetcount', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spelltypeids', 0, '');
INSERT INTO `bot_command_settings` VALUES ('spelltypenames', 0, '');
INSERT INTO `bot_command_settings` VALUES ('suspend', 0, '');
INSERT INTO `bot_command_settings` VALUES ('taunt', 0, '');
INSERT INTO `bot_command_settings` VALUES ('timer', 200, '');
INSERT INTO `bot_command_settings` VALUES ('track', 0, '');
INSERT INTO `bot_command_settings` VALUES ('viewcombos', 0, '');
DROP TABLE IF EXISTS `bot_create_combinations`;
CREATE TABLE `bot_create_combinations` (
`race` int(10) UNSIGNED NOT NULL DEFAULT 0,
`classes` int(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`race`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
INSERT INTO `bot_create_combinations` VALUES (1, 15871);
INSERT INTO `bot_create_combinations` VALUES (2, 49921);
INSERT INTO `bot_create_combinations` VALUES (3, 15382);
INSERT INTO `bot_create_combinations` VALUES (4, 425);
INSERT INTO `bot_create_combinations` VALUES (5, 14342);
INSERT INTO `bot_create_combinations` VALUES (6, 15635);
INSERT INTO `bot_create_combinations` VALUES (7, 429);
INSERT INTO `bot_create_combinations` VALUES (8, 33031);
INSERT INTO `bot_create_combinations` VALUES (9, 49681);
INSERT INTO `bot_create_combinations` VALUES (10, 49681);
INSERT INTO `bot_create_combinations` VALUES (11, 303);
INSERT INTO `bot_create_combinations` VALUES (12, 15639);
INSERT INTO `bot_create_combinations` VALUES (128, 18001);
INSERT INTO `bot_create_combinations` VALUES (130, 50049);
INSERT INTO `bot_create_combinations` VALUES (330, 3863);
INSERT INTO `bot_create_combinations` VALUES (522, 15871);
DROP TABLE IF EXISTS `bot_data`;
CREATE TABLE `bot_data` (
`bot_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`owner_id` int(11) UNSIGNED NOT NULL,
`spells_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`name` varchar(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`last_name` varchar(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`title` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`suffix` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`zone_id` smallint(6) NOT NULL DEFAULT 0,
`gender` tinyint(2) NOT NULL DEFAULT 0,
`race` smallint(5) NOT NULL DEFAULT 0,
`class` tinyint(2) NOT NULL DEFAULT 0,
`level` tinyint(2) UNSIGNED NOT NULL DEFAULT 0,
`deity` int(11) UNSIGNED NOT NULL DEFAULT 0,
`creation_day` int(11) UNSIGNED NOT NULL DEFAULT 0,
`last_spawn` int(11) UNSIGNED NOT NULL DEFAULT 0,
`time_spawned` int(11) UNSIGNED NOT NULL DEFAULT 0,
`size` float NOT NULL DEFAULT 0,
`face` int(10) NOT NULL DEFAULT 1,
`hair_color` int(10) NOT NULL DEFAULT 1,
`hair_style` int(10) NOT NULL DEFAULT 1,
`beard` int(10) NOT NULL DEFAULT 0,
`beard_color` int(10) NOT NULL DEFAULT 1,
`eye_color_1` int(10) NOT NULL DEFAULT 1,
`eye_color_2` int(10) NOT NULL DEFAULT 1,
`drakkin_heritage` int(10) NOT NULL DEFAULT 0,
`drakkin_tattoo` int(10) NOT NULL DEFAULT 0,
`drakkin_details` int(10) NOT NULL DEFAULT 0,
`ac` smallint(5) NOT NULL DEFAULT 0,
`atk` mediumint(9) NOT NULL DEFAULT 0,
`hp` int(11) NOT NULL DEFAULT 0,
`mana` int(11) NOT NULL DEFAULT 0,
`str` mediumint(8) NOT NULL DEFAULT 75,
`sta` mediumint(8) NOT NULL DEFAULT 75,
`cha` mediumint(8) NOT NULL DEFAULT 75,
`dex` mediumint(8) NOT NULL DEFAULT 75,
`int` mediumint(8) NOT NULL DEFAULT 75,
`agi` mediumint(8) NOT NULL DEFAULT 75,
`wis` mediumint(8) NOT NULL DEFAULT 75,
`extra_haste` mediumint(8) NOT NULL DEFAULT 0,
`fire` smallint(5) NOT NULL DEFAULT 0,
`cold` smallint(5) NOT NULL DEFAULT 0,
`magic` smallint(5) NOT NULL DEFAULT 0,
`poison` smallint(5) NOT NULL DEFAULT 0,
`disease` smallint(5) NOT NULL DEFAULT 0,
`corruption` smallint(5) NOT NULL DEFAULT 0,
PRIMARY KEY (`bot_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_heal_rotation_members`;
CREATE TABLE `bot_heal_rotation_members` (
`member_index` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`heal_rotation_index` int(11) UNSIGNED NOT NULL DEFAULT 0,
`bot_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`member_index`) USING BTREE,
INDEX `FK_bot_heal_rotation_members_1`(`heal_rotation_index`) USING BTREE,
INDEX `FK_bot_heal_rotation_members_2`(`bot_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_heal_rotation_targets`;
CREATE TABLE `bot_heal_rotation_targets` (
`target_index` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`heal_rotation_index` int(11) UNSIGNED NOT NULL DEFAULT 0,
`target_name` varchar(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
PRIMARY KEY (`target_index`) USING BTREE,
INDEX `FK_bot_heal_rotation_targets`(`heal_rotation_index`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_heal_rotations`;
CREATE TABLE `bot_heal_rotations` (
`heal_rotation_index` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`bot_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`interval` int(11) UNSIGNED NOT NULL DEFAULT 0,
`fast_heals` int(3) UNSIGNED NOT NULL DEFAULT 0,
`adaptive_targeting` int(3) UNSIGNED NOT NULL DEFAULT 0,
`casting_override` int(3) UNSIGNED NOT NULL DEFAULT 0,
`safe_hp_base` float UNSIGNED NOT NULL DEFAULT 0,
`safe_hp_cloth` float UNSIGNED NOT NULL DEFAULT 0,
`safe_hp_leather` float UNSIGNED NOT NULL DEFAULT 0,
`safe_hp_chain` float UNSIGNED NOT NULL DEFAULT 0,
`safe_hp_plate` float UNSIGNED NOT NULL DEFAULT 0,
`critical_hp_base` float UNSIGNED NOT NULL DEFAULT 0,
`critical_hp_cloth` float UNSIGNED NOT NULL DEFAULT 0,
`critical_hp_leather` float UNSIGNED NOT NULL DEFAULT 0,
`critical_hp_chain` float UNSIGNED NOT NULL DEFAULT 0,
`critical_hp_plate` float UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`heal_rotation_index`) USING BTREE,
INDEX `FK_bot_heal_rotations`(`bot_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_inspect_messages`;
CREATE TABLE `bot_inspect_messages` (
`bot_id` int(11) UNSIGNED NOT NULL,
`inspect_message` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
PRIMARY KEY (`bot_id`) USING BTREE,
INDEX `bot_id`(`bot_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_inventories`;
CREATE TABLE `bot_inventories` (
`inventories_index` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`bot_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`slot_id` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
`item_id` int(11) UNSIGNED NULL DEFAULT 0,
`inst_charges` smallint(3) UNSIGNED NULL DEFAULT 0,
`inst_color` int(11) UNSIGNED NOT NULL DEFAULT 0,
`inst_no_drop` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
`inst_custom_data` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
`ornament_icon` int(11) UNSIGNED NOT NULL DEFAULT 0,
`ornament_id_file` int(11) UNSIGNED NOT NULL DEFAULT 0,
`ornament_hero_model` int(11) NOT NULL DEFAULT 0,
`augment_1` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
`augment_2` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
`augment_3` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
`augment_4` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
`augment_5` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
`augment_6` mediumint(7) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`inventories_index`) USING BTREE,
INDEX `FK_bot_inventories_1`(`bot_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_owner_options`;
CREATE TABLE `bot_owner_options` (
`owner_id` int(11) UNSIGNED NOT NULL,
`option_type` smallint(3) UNSIGNED NOT NULL,
`option_value` smallint(3) UNSIGNED NULL DEFAULT 0,
PRIMARY KEY (`owner_id`, `option_type`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_pet_buffs`;
CREATE TABLE `bot_pet_buffs` (
`pet_buffs_index` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`pets_index` int(10) UNSIGNED NOT NULL DEFAULT 0,
`spell_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`caster_level` int(10) UNSIGNED NOT NULL DEFAULT 0,
`duration` int(11) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`pet_buffs_index`) USING BTREE,
INDEX `FK_bot_pet_buffs_1`(`pets_index`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_pet_inventories`;
CREATE TABLE `bot_pet_inventories` (
`pet_inventories_index` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`pets_index` int(10) UNSIGNED NOT NULL DEFAULT 0,
`item_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`pet_inventories_index`) USING BTREE,
INDEX `FK_bot_pet_inventories_1`(`pets_index`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_pets`;
CREATE TABLE `bot_pets` (
`pets_index` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`spell_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`bot_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
`name` varchar(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
`mana` int(11) NOT NULL DEFAULT 0,
`hp` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`pets_index`) USING BTREE,
UNIQUE INDEX `U_bot_pets_1`(`bot_id`) USING BTREE,
INDEX `FK_bot_pets_1`(`bot_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_settings`;
CREATE TABLE `bot_settings` (
`character_id` int(10) UNSIGNED NOT NULL,
`bot_id` int(10) UNSIGNED NOT NULL,
`stance` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`setting_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0,
`setting_type` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`value` bigint(19) NOT NULL DEFAULT 0,
`category_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '',
`setting_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '',
PRIMARY KEY (`character_id`, `bot_id`, `stance`, `setting_id`, `setting_type`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_spell_casting_chances`;
CREATE TABLE `bot_spell_casting_chances` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`spell_type_index` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`class_id` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`stance_index` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`nHSND_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pH_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pS_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHS_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pN_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHN_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pSN_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHSN_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pD_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHD_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pSD_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHSD_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pND_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHND_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pSND_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`pHSND_value` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE,
INDEX `spelltype_class_stance`(`spell_type_index`, `class_id`, `stance_index`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2466 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
INSERT INTO `bot_spell_casting_chances` VALUES (1, 255, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (4, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (5, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (6, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (7, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (8, 0, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (10, 0, 2, 1, 25, 15, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (11, 0, 2, 2, 15, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (12, 0, 2, 3, 25, 15, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (13, 0, 2, 4, 50, 15, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (14, 0, 2, 6, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (15, 0, 2, 8, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (16, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (17, 0, 3, 1, 25, 15, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (18, 0, 3, 2, 15, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (19, 0, 3, 3, 25, 15, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (20, 0, 3, 4, 50, 15, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (21, 0, 3, 6, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (22, 0, 3, 8, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (23, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (24, 0, 4, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (25, 0, 4, 2, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (26, 0, 4, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (27, 0, 4, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (28, 0, 4, 6, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (29, 0, 4, 8, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (30, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (31, 0, 5, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (32, 0, 5, 2, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (33, 0, 5, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (34, 0, 5, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (35, 0, 5, 6, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (36, 0, 5, 8, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (37, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (38, 0, 6, 1, 25, 15, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (39, 0, 6, 2, 15, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (40, 0, 6, 3, 25, 15, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (41, 0, 6, 4, 50, 15, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (42, 0, 6, 6, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (43, 0, 6, 8, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (44, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (45, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (46, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (47, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (48, 0, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (49, 0, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (50, 0, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (51, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (52, 0, 8, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (53, 0, 8, 2, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (54, 0, 8, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (55, 0, 8, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (56, 0, 8, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (57, 0, 8, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (58, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (59, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (60, 0, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (61, 0, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (62, 0, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (63, 0, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (64, 0, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (65, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (66, 0, 10, 1, 15, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (67, 0, 10, 2, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (68, 0, 10, 3, 15, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (69, 0, 10, 4, 25, 15, 15, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (70, 0, 10, 6, 50, 25, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (71, 0, 10, 8, 50, 25, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (72, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (73, 0, 11, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (74, 0, 11, 2, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (75, 0, 11, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (76, 0, 11, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (77, 0, 11, 6, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (78, 0, 11, 8, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (79, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (80, 0, 12, 1, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (81, 0, 12, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (82, 0, 12, 3, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (83, 0, 12, 4, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (84, 0, 12, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (85, 0, 12, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (86, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (87, 0, 13, 1, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (88, 0, 13, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (89, 0, 13, 3, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (90, 0, 13, 4, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (91, 0, 13, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (92, 0, 13, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (93, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (94, 0, 14, 1, 25, 25, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (95, 0, 14, 2, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (96, 0, 14, 3, 25, 25, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (97, 0, 14, 4, 50, 50, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (98, 0, 14, 6, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (99, 0, 14, 8, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (100, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (101, 0, 15, 1, 15, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (102, 0, 15, 2, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (103, 0, 15, 3, 15, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (104, 0, 15, 4, 25, 15, 15, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (105, 0, 15, 6, 50, 25, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (106, 0, 15, 8, 50, 25, 25, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (107, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (108, 0, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (109, 0, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (110, 0, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (111, 0, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (112, 0, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (113, 0, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (114, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (115, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (116, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (117, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (118, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (119, 1, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (120, 1, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (121, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (122, 1, 2, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (123, 1, 2, 2, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (124, 1, 2, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (125, 1, 2, 4, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (126, 1, 2, 6, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (127, 1, 2, 8, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (128, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (129, 1, 3, 1, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (130, 1, 3, 2, 15, 75, 15, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (131, 1, 3, 3, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (132, 1, 3, 4, 15, 75, 15, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (133, 1, 3, 6, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (134, 1, 3, 8, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (135, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (136, 1, 4, 1, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (137, 1, 4, 2, 15, 75, 15, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (138, 1, 4, 3, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (139, 1, 4, 4, 15, 75, 15, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (140, 1, 4, 6, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (141, 1, 4, 8, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (142, 1, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (143, 1, 5, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (144, 1, 5, 2, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (145, 1, 5, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (146, 1, 5, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (147, 1, 5, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (148, 1, 5, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (149, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (150, 1, 6, 1, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (151, 1, 6, 2, 15, 100, 15, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (152, 1, 6, 3, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (153, 1, 6, 4, 25, 75, 25, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (154, 1, 6, 6, 10, 50, 10, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (155, 1, 6, 8, 10, 50, 10, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (156, 1, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (157, 1, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (158, 1, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (159, 1, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (160, 1, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (161, 1, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (162, 1, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (163, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (164, 1, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (165, 1, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (166, 1, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (167, 1, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (168, 1, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (169, 1, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (170, 1, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (171, 1, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (172, 1, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (173, 1, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (174, 1, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (175, 1, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (176, 1, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (177, 1, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (178, 1, 10, 1, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (179, 1, 10, 2, 15, 100, 15, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (180, 1, 10, 3, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (181, 1, 10, 4, 25, 75, 25, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (182, 1, 10, 6, 10, 50, 10, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (183, 1, 10, 8, 10, 50, 10, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (184, 1, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (185, 1, 11, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (186, 1, 11, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (187, 1, 11, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (188, 1, 11, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (189, 1, 11, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (190, 1, 11, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (191, 1, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (192, 1, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (193, 1, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (194, 1, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (195, 1, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (196, 1, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (197, 1, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (198, 1, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (199, 1, 13, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (200, 1, 13, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (201, 1, 13, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (202, 1, 13, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (203, 1, 13, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (204, 1, 13, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (205, 1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (206, 1, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (207, 1, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (208, 1, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (209, 1, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (210, 1, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (211, 1, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (212, 1, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (213, 1, 15, 1, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (214, 1, 15, 2, 15, 75, 15, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (215, 1, 15, 3, 25, 100, 25, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (216, 1, 15, 4, 15, 75, 15, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (217, 1, 15, 6, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (218, 1, 15, 8, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (219, 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (220, 1, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (221, 1, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (222, 1, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (223, 1, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (224, 1, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (225, 1, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (226, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (227, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (228, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (229, 2, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (230, 2, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (231, 2, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (232, 2, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (233, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (234, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (235, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (236, 2, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (237, 2, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (238, 2, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (239, 2, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (240, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (241, 2, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (242, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (243, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (244, 2, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (245, 2, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (246, 2, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (247, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (248, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (249, 2, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (250, 2, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (251, 2, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (252, 2, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (253, 2, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (254, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (255, 2, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (256, 2, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (257, 2, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (258, 2, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (259, 2, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (260, 2, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (261, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (262, 2, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (263, 2, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (264, 2, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (265, 2, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (266, 2, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (267, 2, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (268, 2, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (269, 2, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (270, 2, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (271, 2, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (272, 2, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (273, 2, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (274, 2, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (275, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (276, 2, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (277, 2, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (278, 2, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (279, 2, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (280, 2, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (281, 2, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (282, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (283, 2, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (284, 2, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (285, 2, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (286, 2, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (287, 2, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (288, 2, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (289, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (290, 2, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (291, 2, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (292, 2, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (293, 2, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (294, 2, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (295, 2, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (296, 2, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (297, 2, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (298, 2, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (299, 2, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (300, 2, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (301, 2, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (302, 2, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (303, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (304, 2, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (305, 2, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (306, 2, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (307, 2, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (308, 2, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (309, 2, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (310, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (311, 2, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (312, 2, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (313, 2, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (314, 2, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (315, 2, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (316, 2, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (317, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (318, 2, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (319, 2, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (320, 2, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (321, 2, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (322, 2, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (323, 2, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (324, 2, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (325, 2, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (326, 2, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (327, 2, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (328, 2, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (329, 2, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (330, 2, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (331, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (332, 2, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (333, 2, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (334, 2, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (335, 2, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (336, 2, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (337, 2, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (338, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (339, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (340, 3, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (341, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (342, 3, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (343, 3, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (344, 3, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (345, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (346, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (347, 3, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (348, 3, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (349, 3, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (350, 3, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (351, 3, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (352, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (353, 3, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (354, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (355, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (356, 3, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (357, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (358, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (359, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (360, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (361, 3, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (362, 3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (363, 3, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (364, 3, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (365, 3, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (366, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (367, 3, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (368, 3, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (369, 3, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (370, 3, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (371, 3, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (372, 3, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (373, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (374, 3, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (375, 3, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (376, 3, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (377, 3, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (378, 3, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (379, 3, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (380, 3, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (381, 3, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (382, 3, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (383, 3, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (384, 3, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (385, 3, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (386, 3, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (387, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (388, 3, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (389, 3, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (390, 3, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (391, 3, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (392, 3, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (393, 3, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (394, 3, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (395, 3, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (396, 3, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (397, 3, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (398, 3, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (399, 3, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (400, 3, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (401, 3, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (402, 3, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (403, 3, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (404, 3, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (405, 3, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (406, 3, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (407, 3, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (408, 3, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (409, 3, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (410, 3, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (411, 3, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (412, 3, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (413, 3, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (414, 3, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (415, 3, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (416, 3, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (417, 3, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (418, 3, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (419, 3, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (420, 3, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (421, 3, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (422, 3, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (423, 3, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (424, 3, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (425, 3, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (426, 3, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (427, 3, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (428, 3, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (429, 3, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (430, 3, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (431, 3, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (432, 3, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (433, 3, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (434, 3, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (435, 3, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (436, 3, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (437, 3, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (438, 3, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (439, 3, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (440, 3, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (441, 3, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (442, 3, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (443, 3, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (444, 3, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (445, 3, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (446, 3, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (447, 3, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (448, 3, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (449, 3, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (450, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (451, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (452, 4, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (453, 4, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (454, 4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (455, 4, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (456, 4, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (457, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (458, 4, 2, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (459, 4, 2, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (460, 4, 2, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (461, 4, 2, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (462, 4, 2, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (463, 4, 2, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (464, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (465, 4, 3, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (466, 4, 3, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (467, 4, 3, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (468, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (469, 4, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (470, 4, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (471, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (472, 4, 4, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (473, 4, 4, 2, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (474, 4, 4, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (475, 4, 4, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (476, 4, 4, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (477, 4, 4, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (478, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (479, 4, 5, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (480, 4, 5, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (481, 4, 5, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (482, 4, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (483, 4, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (484, 4, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (485, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (486, 4, 6, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (487, 4, 6, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (488, 4, 6, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (489, 4, 6, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (490, 4, 6, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (491, 4, 6, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (492, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (493, 4, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (494, 4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (495, 4, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (496, 4, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (497, 4, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (498, 4, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (499, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (500, 4, 8, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (501, 4, 8, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (502, 4, 8, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (503, 4, 8, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (504, 4, 8, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (505, 4, 8, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (506, 4, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (507, 4, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (508, 4, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (509, 4, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (510, 4, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (511, 4, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (512, 4, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (513, 4, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (514, 4, 10, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (515, 4, 10, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (516, 4, 10, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (517, 4, 10, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (518, 4, 10, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (519, 4, 10, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (520, 4, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (521, 4, 11, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (522, 4, 11, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (523, 4, 11, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (524, 4, 11, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (525, 4, 11, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (526, 4, 11, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (527, 4, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (528, 4, 12, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (529, 4, 12, 2, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (530, 4, 12, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (531, 4, 12, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (532, 4, 12, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (533, 4, 12, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (534, 4, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (535, 4, 13, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (536, 4, 13, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (537, 4, 13, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (538, 4, 13, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (539, 4, 13, 6, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (540, 4, 13, 8, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (541, 4, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (542, 4, 14, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (543, 4, 14, 2, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (544, 4, 14, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (545, 4, 14, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (546, 4, 14, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (547, 4, 14, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (548, 4, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (549, 4, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (550, 4, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (551, 4, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (552, 4, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (553, 4, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (554, 4, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (555, 4, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (556, 4, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (557, 4, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (558, 4, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (559, 4, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (560, 4, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (561, 4, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (562, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (563, 5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (564, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (565, 5, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (566, 5, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (567, 5, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (568, 5, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (569, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (570, 5, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (571, 5, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (572, 5, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (573, 5, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (574, 5, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (575, 5, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (576, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (577, 5, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (578, 5, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (579, 5, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (580, 5, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (581, 5, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (582, 5, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (583, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (584, 5, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (585, 5, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (586, 5, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (587, 5, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (588, 5, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (589, 5, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (590, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (591, 5, 5, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (592, 5, 5, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (593, 5, 5, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (594, 5, 5, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (595, 5, 5, 6, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (596, 5, 5, 8, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (597, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (598, 5, 6, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (599, 5, 6, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (600, 5, 6, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (601, 5, 6, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (602, 5, 6, 6, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (603, 5, 6, 8, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (604, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (605, 5, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (606, 5, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (607, 5, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (608, 5, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (609, 5, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (610, 5, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (611, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (612, 5, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (613, 5, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (614, 5, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (615, 5, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (616, 5, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (617, 5, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (618, 5, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (619, 5, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (620, 5, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (621, 5, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (622, 5, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (623, 5, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (624, 5, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (625, 5, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (626, 5, 10, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (627, 5, 10, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (628, 5, 10, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (629, 5, 10, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (630, 5, 10, 6, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (631, 5, 10, 8, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (632, 5, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (633, 5, 11, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (634, 5, 11, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (635, 5, 11, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (636, 5, 11, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (637, 5, 11, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (638, 5, 11, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (639, 5, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (640, 5, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (641, 5, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (642, 5, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (643, 5, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (644, 5, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (645, 5, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (646, 5, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (647, 5, 13, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (648, 5, 13, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (649, 5, 13, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (650, 5, 13, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (651, 5, 13, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (652, 5, 13, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (653, 5, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (654, 5, 14, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (655, 5, 14, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (656, 5, 14, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (657, 5, 14, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (658, 5, 14, 6, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (659, 5, 14, 8, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (660, 5, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (661, 5, 15, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (662, 5, 15, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (663, 5, 15, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (664, 5, 15, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (665, 5, 15, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (666, 5, 15, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (667, 5, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (668, 5, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (669, 5, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (670, 5, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (671, 5, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (672, 5, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (673, 5, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (674, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (675, 6, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (676, 6, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (677, 6, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (678, 6, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (679, 6, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (680, 6, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (681, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (682, 6, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (683, 6, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (684, 6, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (685, 6, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (686, 6, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (687, 6, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (688, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (689, 6, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (690, 6, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (691, 6, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (692, 6, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (693, 6, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (694, 6, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (695, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (696, 6, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (697, 6, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (698, 6, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (699, 6, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (700, 6, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (701, 6, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (702, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (703, 6, 5, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (704, 6, 5, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (705, 6, 5, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (706, 6, 5, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (707, 6, 5, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (708, 6, 5, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (709, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (710, 6, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (711, 6, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (712, 6, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (713, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (714, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (715, 6, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (716, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (717, 6, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (718, 6, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (719, 6, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (720, 6, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (721, 6, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (722, 6, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (723, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (724, 6, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (725, 6, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (726, 6, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (727, 6, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (728, 6, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (729, 6, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (730, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (731, 6, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (732, 6, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (733, 6, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (734, 6, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (735, 6, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (736, 6, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (737, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (738, 6, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (739, 6, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (740, 6, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (741, 6, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (742, 6, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (743, 6, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (744, 6, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (745, 6, 11, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (746, 6, 11, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (747, 6, 11, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (748, 6, 11, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (749, 6, 11, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (750, 6, 11, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (751, 6, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (752, 6, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (753, 6, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (754, 6, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (755, 6, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (756, 6, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (757, 6, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (758, 6, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (759, 6, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (760, 6, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (761, 6, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (762, 6, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (763, 6, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (764, 6, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (765, 6, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (766, 6, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (767, 6, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (768, 6, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (769, 6, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (770, 6, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (771, 6, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (772, 6, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (773, 6, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (774, 6, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (775, 6, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (776, 6, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (777, 6, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (778, 6, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (779, 6, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (780, 6, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (781, 6, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (782, 6, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (783, 6, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (784, 6, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (785, 6, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (786, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (787, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (788, 7, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (789, 7, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (790, 7, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (791, 7, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (792, 7, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (793, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (794, 7, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (795, 7, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (796, 7, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (797, 7, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (798, 7, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (799, 7, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (800, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (801, 7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (802, 7, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (803, 7, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (804, 7, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (805, 7, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (806, 7, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (807, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (808, 7, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (809, 7, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (810, 7, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (811, 7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (812, 7, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (813, 7, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (814, 7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (815, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (816, 7, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (817, 7, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (818, 7, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (819, 7, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (820, 7, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (821, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (822, 7, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (823, 7, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (824, 7, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (825, 7, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (826, 7, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (827, 7, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (828, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (829, 7, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (830, 7, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (831, 7, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (832, 7, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (833, 7, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (834, 7, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (835, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (836, 7, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (837, 7, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (838, 7, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (839, 7, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (840, 7, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (841, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (842, 7, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (843, 7, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (844, 7, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (845, 7, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (846, 7, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (847, 7, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (848, 7, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (849, 7, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (850, 7, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (851, 7, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (852, 7, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (853, 7, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (854, 7, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (855, 7, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (856, 7, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (857, 7, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (858, 7, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (859, 7, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (860, 7, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (861, 7, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (862, 7, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (863, 7, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (864, 7, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (865, 7, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (866, 7, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (867, 7, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (868, 7, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (869, 7, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (870, 7, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (871, 7, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (872, 7, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (873, 7, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (874, 7, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (875, 7, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (876, 7, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (877, 7, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (878, 7, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (879, 7, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (880, 7, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (881, 7, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (882, 7, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (883, 7, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (884, 7, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (885, 7, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (886, 7, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (887, 7, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (888, 7, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (889, 7, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (890, 7, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (891, 7, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (892, 7, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (893, 7, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (894, 7, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (895, 7, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (896, 7, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (897, 7, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (898, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (899, 8, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (900, 8, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (901, 8, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (902, 8, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (903, 8, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (904, 8, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (905, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (906, 8, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (907, 8, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (908, 8, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (909, 8, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (910, 8, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (911, 8, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (912, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (913, 8, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (914, 8, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (915, 8, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (916, 8, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (917, 8, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (918, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (919, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (920, 8, 4, 1, 15, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (921, 8, 4, 2, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (922, 8, 4, 3, 15, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (923, 8, 4, 4, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (924, 8, 4, 6, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (925, 8, 4, 8, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (926, 8, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (927, 8, 5, 1, 15, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (928, 8, 5, 2, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (929, 8, 5, 3, 15, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (930, 8, 5, 4, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (931, 8, 5, 6, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (932, 8, 5, 8, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (933, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (934, 8, 6, 1, 50, 15, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (935, 8, 6, 2, 25, 10, 25, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (936, 8, 6, 3, 50, 15, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (937, 8, 6, 4, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (938, 8, 6, 6, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (939, 8, 6, 8, 50, 25, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (940, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (941, 8, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (942, 8, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (943, 8, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (944, 8, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (945, 8, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (946, 8, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (947, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (948, 8, 8, 1, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (949, 8, 8, 2, 25, 25, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (950, 8, 8, 3, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (951, 8, 8, 4, 100, 100, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (952, 8, 8, 6, 100, 100, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (953, 8, 8, 8, 100, 100, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (954, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (955, 8, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (956, 8, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (957, 8, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (958, 8, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (959, 8, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (960, 8, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (961, 8, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (962, 8, 10, 1, 25, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (963, 8, 10, 2, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (964, 8, 10, 3, 25, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (965, 8, 10, 4, 50, 25, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (966, 8, 10, 6, 50, 25, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (967, 8, 10, 8, 50, 25, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (968, 8, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (969, 8, 11, 1, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (970, 8, 11, 2, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (971, 8, 11, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (972, 8, 11, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (973, 8, 11, 6, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (974, 8, 11, 8, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (975, 8, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (976, 8, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (977, 8, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (978, 8, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (979, 8, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (980, 8, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (981, 8, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (982, 8, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (983, 8, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (984, 8, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (985, 8, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (986, 8, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (987, 8, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (988, 8, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (989, 8, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (990, 8, 14, 1, 50, 50, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (991, 8, 14, 2, 25, 25, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (992, 8, 14, 3, 50, 50, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (993, 8, 14, 4, 15, 15, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (994, 8, 14, 6, 15, 15, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (995, 8, 14, 8, 15, 15, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (996, 8, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (997, 8, 15, 1, 15, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (998, 8, 15, 2, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (999, 8, 15, 3, 15, 15, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1000, 8, 15, 4, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1001, 8, 15, 6, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1002, 8, 15, 8, 50, 50, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1003, 8, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1004, 8, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1005, 8, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1006, 8, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1007, 8, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1008, 8, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1009, 8, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1010, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1011, 9, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1012, 9, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1013, 9, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1014, 9, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1015, 9, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1016, 9, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1017, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1018, 9, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1019, 9, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1020, 9, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1021, 9, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1022, 9, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1023, 9, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1024, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1025, 9, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1026, 9, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1027, 9, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1028, 9, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1029, 9, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1030, 9, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1031, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1032, 9, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1033, 9, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1034, 9, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1035, 9, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1036, 9, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1037, 9, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1038, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1039, 9, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1040, 9, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1041, 9, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1042, 9, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1043, 9, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1044, 9, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1045, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1046, 9, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1047, 9, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1048, 9, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1049, 9, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1050, 9, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1051, 9, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1052, 9, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1053, 9, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1054, 9, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1055, 9, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1056, 9, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1057, 9, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1058, 9, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1059, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1060, 9, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1061, 9, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1062, 9, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1063, 9, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1064, 9, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1065, 9, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1066, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1067, 9, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1068, 9, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1069, 9, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1070, 9, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1071, 9, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1072, 9, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1073, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1074, 9, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1075, 9, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1076, 9, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1077, 9, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1078, 9, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1079, 9, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1080, 9, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1081, 9, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1082, 9, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1083, 9, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1084, 9, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1085, 9, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1086, 9, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1087, 9, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1088, 9, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1089, 9, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1090, 9, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1091, 9, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1092, 9, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1093, 9, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1094, 9, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1095, 9, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1096, 9, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1097, 9, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1098, 9, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1099, 9, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1100, 9, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1101, 9, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1102, 9, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1103, 9, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1104, 9, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1105, 9, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1106, 9, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1107, 9, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1108, 9, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1109, 9, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1110, 9, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1111, 9, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1112, 9, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1113, 9, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1114, 9, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1115, 9, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1116, 9, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1117, 9, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1118, 9, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1119, 9, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1120, 9, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1121, 9, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1122, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1123, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1124, 10, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1125, 10, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1126, 10, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1127, 10, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1128, 10, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1129, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1130, 10, 2, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1131, 10, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1132, 10, 2, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1133, 10, 2, 4, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1134, 10, 2, 6, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1135, 10, 2, 8, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1136, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1137, 10, 3, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1138, 10, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1139, 10, 3, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1140, 10, 3, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1141, 10, 3, 6, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1142, 10, 3, 8, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1143, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1144, 10, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1145, 10, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1146, 10, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1147, 10, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1148, 10, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1149, 10, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1150, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1151, 10, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1152, 10, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1153, 10, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1154, 10, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1155, 10, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1156, 10, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1157, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1158, 10, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1159, 10, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1160, 10, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1161, 10, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1162, 10, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1163, 10, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1164, 10, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1165, 10, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1166, 10, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1167, 10, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1168, 10, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1169, 10, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1170, 10, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1171, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1172, 10, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1173, 10, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1174, 10, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1175, 10, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1176, 10, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1177, 10, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1178, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1179, 10, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1180, 10, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1181, 10, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1182, 10, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1183, 10, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1184, 10, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1185, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1186, 10, 10, 1, 50, 75, 50, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1187, 10, 10, 2, 25, 50, 25, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1188, 10, 10, 3, 50, 75, 50, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1189, 10, 10, 4, 75, 100, 75, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1190, 10, 10, 6, 75, 100, 75, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1191, 10, 10, 8, 75, 100, 75, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1192, 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1193, 10, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1194, 10, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1195, 10, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1196, 10, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1197, 10, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1198, 10, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1199, 10, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1200, 10, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1201, 10, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1202, 10, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1203, 10, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1204, 10, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1205, 10, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1206, 10, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1207, 10, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1208, 10, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1209, 10, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1210, 10, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1211, 10, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1212, 10, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1213, 10, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1214, 10, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1215, 10, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1216, 10, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1217, 10, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1218, 10, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1219, 10, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1220, 10, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1221, 10, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1222, 10, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1223, 10, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1224, 10, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1225, 10, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1226, 10, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1227, 10, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1228, 10, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1229, 10, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1230, 10, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1231, 10, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1232, 10, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1233, 10, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1234, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1235, 11, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1236, 11, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1237, 11, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1238, 11, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1239, 11, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1240, 11, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1241, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1242, 11, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1243, 11, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1244, 11, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1245, 11, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1246, 11, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1247, 11, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1248, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1249, 11, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1250, 11, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1251, 11, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1252, 11, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1253, 11, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1254, 11, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1255, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1256, 11, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1257, 11, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1258, 11, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1259, 11, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1260, 11, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1261, 11, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1262, 11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1263, 11, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1264, 11, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1265, 11, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1266, 11, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1267, 11, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1268, 11, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1269, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1270, 11, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1271, 11, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1272, 11, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1273, 11, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1274, 11, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1275, 11, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1276, 11, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1277, 11, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1278, 11, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1279, 11, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1280, 11, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1281, 11, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1282, 11, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1283, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1284, 11, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1285, 11, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1286, 11, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1287, 11, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1288, 11, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1289, 11, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1290, 11, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1291, 11, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1292, 11, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1293, 11, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1294, 11, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1295, 11, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1296, 11, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1297, 11, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1298, 11, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1299, 11, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1300, 11, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1301, 11, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1302, 11, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1303, 11, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1304, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1305, 11, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1306, 11, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1307, 11, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1308, 11, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1309, 11, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1310, 11, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1311, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1312, 11, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1313, 11, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1314, 11, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1315, 11, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1316, 11, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1317, 11, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1318, 11, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1319, 11, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1320, 11, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1321, 11, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1322, 11, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1323, 11, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1324, 11, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1325, 11, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1326, 11, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1327, 11, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1328, 11, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1329, 11, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1330, 11, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1331, 11, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1332, 11, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1333, 11, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1334, 11, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1335, 11, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1336, 11, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1337, 11, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1338, 11, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1339, 11, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1340, 11, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1341, 11, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1342, 11, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1343, 11, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1344, 11, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1345, 11, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1346, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1347, 12, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1348, 12, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1349, 12, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1350, 12, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1351, 12, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1352, 12, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1353, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1354, 12, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1355, 12, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1356, 12, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1357, 12, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1358, 12, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1359, 12, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1360, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1361, 12, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1362, 12, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1363, 12, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1364, 12, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1365, 12, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1366, 12, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1367, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1368, 12, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1369, 12, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1370, 12, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1371, 12, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1372, 12, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1373, 12, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1374, 12, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1375, 12, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1376, 12, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1377, 12, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1378, 12, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1379, 12, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1380, 12, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1381, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1382, 12, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1383, 12, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1384, 12, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1385, 12, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1386, 12, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1387, 12, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1388, 12, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1389, 12, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1390, 12, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1391, 12, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1392, 12, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1393, 12, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1394, 12, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1395, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1396, 12, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1397, 12, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1398, 12, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1399, 12, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1400, 12, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1401, 12, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1402, 12, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1403, 12, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1404, 12, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1405, 12, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1406, 12, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1407, 12, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1408, 12, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1409, 12, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1410, 12, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1411, 12, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1412, 12, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1413, 12, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1414, 12, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1415, 12, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1416, 12, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1417, 12, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1418, 12, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1419, 12, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1420, 12, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1421, 12, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1422, 12, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1423, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1424, 12, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1425, 12, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1426, 12, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1427, 12, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1428, 12, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1429, 12, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1430, 12, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1431, 12, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1432, 12, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1433, 12, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1434, 12, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1435, 12, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1436, 12, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1437, 12, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1438, 12, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1439, 12, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1440, 12, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1441, 12, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1442, 12, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1443, 12, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1444, 12, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1445, 12, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1446, 12, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1447, 12, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1448, 12, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1449, 12, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1450, 12, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1451, 12, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1452, 12, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1453, 12, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1454, 12, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1455, 12, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1456, 12, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1457, 12, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1458, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1459, 13, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1460, 13, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1461, 13, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1462, 13, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1463, 13, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1464, 13, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1465, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1466, 13, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1467, 13, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1468, 13, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1469, 13, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1470, 13, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1471, 13, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1472, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1473, 13, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1474, 13, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1475, 13, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1476, 13, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1477, 13, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1478, 13, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1479, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1480, 13, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1481, 13, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1482, 13, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1483, 13, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1484, 13, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1485, 13, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1486, 13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1487, 13, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1488, 13, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1489, 13, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1490, 13, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1491, 13, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1492, 13, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1493, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1494, 13, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1495, 13, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1496, 13, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1497, 13, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1498, 13, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1499, 13, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1500, 13, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1501, 13, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1502, 13, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1503, 13, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1504, 13, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1505, 13, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1506, 13, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1507, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1508, 13, 8, 1, 25, 25, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1509, 13, 8, 2, 15, 15, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1510, 13, 8, 3, 25, 25, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1511, 13, 8, 4, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1512, 13, 8, 6, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1513, 13, 8, 8, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1514, 13, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1515, 13, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1516, 13, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1517, 13, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1518, 13, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1519, 13, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1520, 13, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1521, 13, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1522, 13, 10, 1, 50, 50, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1523, 13, 10, 2, 25, 25, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1524, 13, 10, 3, 50, 50, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1525, 13, 10, 4, 15, 15, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1526, 13, 10, 6, 15, 15, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1527, 13, 10, 8, 15, 15, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1528, 13, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1529, 13, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1530, 13, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1531, 13, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1532, 13, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1533, 13, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1534, 13, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1535, 13, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1536, 13, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1537, 13, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1538, 13, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1539, 13, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1540, 13, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1541, 13, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1542, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1543, 13, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1544, 13, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1545, 13, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1546, 13, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1547, 13, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1548, 13, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1549, 13, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1550, 13, 14, 1, 50, 50, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1551, 13, 14, 2, 25, 25, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1552, 13, 14, 3, 50, 50, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1553, 13, 14, 4, 15, 15, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1554, 13, 14, 6, 15, 15, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1555, 13, 14, 8, 15, 15, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1556, 13, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1557, 13, 15, 1, 25, 25, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1558, 13, 15, 2, 15, 15, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1559, 13, 15, 3, 25, 25, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1560, 13, 15, 4, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1561, 13, 15, 6, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1562, 13, 15, 8, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1563, 13, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1564, 13, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1565, 13, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1566, 13, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1567, 13, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1568, 13, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1569, 13, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1570, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1571, 14, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1572, 14, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1573, 14, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1574, 14, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1575, 14, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1576, 14, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1577, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1578, 14, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1579, 14, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1580, 14, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1581, 14, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1582, 14, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1583, 14, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1584, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1585, 14, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1586, 14, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1587, 14, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1588, 14, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1589, 14, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1590, 14, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1591, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1592, 14, 4, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1593, 14, 4, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1594, 14, 4, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1595, 14, 4, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1596, 14, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1597, 14, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1598, 14, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1599, 14, 5, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1600, 14, 5, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1601, 14, 5, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1602, 14, 5, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1603, 14, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1604, 14, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1605, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1606, 14, 6, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1607, 14, 6, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1608, 14, 6, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1609, 14, 6, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1610, 14, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1611, 14, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1612, 14, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1613, 14, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1614, 14, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1615, 14, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1616, 14, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1617, 14, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1618, 14, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1619, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1620, 14, 8, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1621, 14, 8, 2, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1622, 14, 8, 3, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1623, 14, 8, 4, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1624, 14, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1625, 14, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1626, 14, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1627, 14, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1628, 14, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1629, 14, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1630, 14, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1631, 14, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1632, 14, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1633, 14, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1634, 14, 10, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1635, 14, 10, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1636, 14, 10, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1637, 14, 10, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1638, 14, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1639, 14, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1640, 14, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1641, 14, 11, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1642, 14, 11, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1643, 14, 11, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1644, 14, 11, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1645, 14, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1646, 14, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1647, 14, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1648, 14, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1649, 14, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1650, 14, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1651, 14, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1652, 14, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1653, 14, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1654, 14, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1655, 14, 13, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1656, 14, 13, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1657, 14, 13, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1658, 14, 13, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1659, 14, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1660, 14, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1661, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1662, 14, 14, 1, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1663, 14, 14, 2, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1664, 14, 14, 3, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1665, 14, 14, 4, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1666, 14, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1667, 14, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1668, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1669, 14, 15, 1, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1670, 14, 15, 2, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1671, 14, 15, 3, 15, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1672, 14, 15, 4, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1673, 14, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1674, 14, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1675, 14, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1676, 14, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1677, 14, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1678, 14, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1679, 14, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1680, 14, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1681, 14, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1682, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1683, 15, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1684, 15, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1685, 15, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1686, 15, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1687, 15, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1688, 15, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1689, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1690, 15, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1691, 15, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1692, 15, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1693, 15, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1694, 15, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1695, 15, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1696, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1697, 15, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1698, 15, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1699, 15, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1700, 15, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1701, 15, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1702, 15, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1703, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1704, 15, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1705, 15, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1706, 15, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1707, 15, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1708, 15, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1709, 15, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1710, 15, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1711, 15, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1712, 15, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1713, 15, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1714, 15, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1715, 15, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1716, 15, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1717, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1718, 15, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1719, 15, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1720, 15, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1721, 15, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1722, 15, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1723, 15, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1724, 15, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1725, 15, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1726, 15, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1727, 15, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1728, 15, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1729, 15, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1730, 15, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1731, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1732, 15, 8, 1, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1733, 15, 8, 2, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1734, 15, 8, 3, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1735, 15, 8, 4, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1736, 15, 8, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1737, 15, 8, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1738, 15, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1739, 15, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1740, 15, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1741, 15, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1742, 15, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1743, 15, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1744, 15, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1745, 15, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1746, 15, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1747, 15, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1748, 15, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1749, 15, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1750, 15, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1751, 15, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1752, 15, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1753, 15, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1754, 15, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1755, 15, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1756, 15, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1757, 15, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1758, 15, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1759, 15, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1760, 15, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1761, 15, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1762, 15, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1763, 15, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1764, 15, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1765, 15, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1766, 15, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1767, 15, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1768, 15, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1769, 15, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1770, 15, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1771, 15, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1772, 15, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1773, 15, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1774, 15, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1775, 15, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1776, 15, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1777, 15, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1778, 15, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1779, 15, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1780, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1781, 15, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1782, 15, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1783, 15, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1784, 15, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1785, 15, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1786, 15, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1787, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1788, 15, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1789, 15, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1790, 15, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1791, 15, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1792, 15, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1793, 15, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1794, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1795, 16, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1796, 16, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1797, 16, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1798, 16, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1799, 16, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1800, 16, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1801, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1802, 16, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1803, 16, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1804, 16, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1805, 16, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1806, 16, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1807, 16, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1808, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1809, 16, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1810, 16, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1811, 16, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1812, 16, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1813, 16, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1814, 16, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1815, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1816, 16, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1817, 16, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1818, 16, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1819, 16, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1820, 16, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1821, 16, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1822, 16, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1823, 16, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1824, 16, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1825, 16, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1826, 16, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1827, 16, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1828, 16, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1829, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1830, 16, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1831, 16, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1832, 16, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1833, 16, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1834, 16, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1835, 16, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1836, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1837, 16, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1838, 16, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1839, 16, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1840, 16, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1841, 16, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1842, 16, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1843, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1844, 16, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1845, 16, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1846, 16, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1847, 16, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1848, 16, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1849, 16, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1850, 16, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1851, 16, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1852, 16, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1853, 16, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1854, 16, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1855, 16, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1856, 16, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1857, 16, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1858, 16, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1859, 16, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1860, 16, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1861, 16, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1862, 16, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1863, 16, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1864, 16, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1865, 16, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1866, 16, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1867, 16, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1868, 16, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1869, 16, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1870, 16, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1871, 16, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1872, 16, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1873, 16, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1874, 16, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1875, 16, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1876, 16, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1877, 16, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1878, 16, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1879, 16, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1880, 16, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1881, 16, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1882, 16, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1883, 16, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1884, 16, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1885, 16, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1886, 16, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1887, 16, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1888, 16, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1889, 16, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1890, 16, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1891, 16, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1892, 16, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1893, 16, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1894, 16, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1895, 16, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1896, 16, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1897, 16, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1898, 16, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1899, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1900, 16, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1901, 16, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1902, 16, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1903, 16, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1904, 16, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1905, 16, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1906, 17, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1907, 17, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1908, 17, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1909, 17, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1910, 17, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1911, 17, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1912, 17, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1913, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1914, 17, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1915, 17, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1916, 17, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1917, 17, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1918, 17, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1919, 17, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1920, 17, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1921, 17, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1922, 17, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1923, 17, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1924, 17, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1925, 17, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1926, 17, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1927, 17, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1928, 17, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1929, 17, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1930, 17, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1931, 17, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1932, 17, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1933, 17, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1934, 17, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1935, 17, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1936, 17, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1937, 17, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1938, 17, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1939, 17, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1940, 17, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1941, 17, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1942, 17, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1943, 17, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1944, 17, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1945, 17, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1946, 17, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1947, 17, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1948, 17, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1949, 17, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1950, 17, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1951, 17, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1952, 17, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1953, 17, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1954, 17, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1955, 17, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1956, 17, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1957, 17, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1958, 17, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1959, 17, 8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1960, 17, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1961, 17, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1962, 17, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1963, 17, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1964, 17, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1965, 17, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1966, 17, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1967, 17, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1968, 17, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1969, 17, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1970, 17, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1971, 17, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1972, 17, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1973, 17, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1974, 17, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1975, 17, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1976, 17, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1977, 17, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1978, 17, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1979, 17, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1980, 17, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1981, 17, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1982, 17, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1983, 17, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1984, 17, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1985, 17, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1986, 17, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1987, 17, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1988, 17, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1989, 17, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1990, 17, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1991, 17, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1992, 17, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1993, 17, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1994, 17, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1995, 17, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1996, 17, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1997, 17, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1998, 17, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (1999, 17, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2000, 17, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2001, 17, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2002, 17, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2003, 17, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2004, 17, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2005, 17, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2006, 17, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2007, 17, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2008, 17, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2009, 17, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2010, 17, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2011, 17, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2012, 17, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2013, 17, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2014, 17, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2015, 17, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2016, 17, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2017, 17, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2018, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2019, 18, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2020, 18, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2021, 18, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2022, 18, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2023, 18, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2024, 18, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2025, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2026, 18, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2027, 18, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2028, 18, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2029, 18, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2030, 18, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2031, 18, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2032, 18, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2033, 18, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2034, 18, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2035, 18, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2036, 18, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2037, 18, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2038, 18, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2039, 18, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2040, 18, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2041, 18, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2042, 18, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2043, 18, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2044, 18, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2045, 18, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2046, 18, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2047, 18, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2048, 18, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2049, 18, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2050, 18, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2051, 18, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2052, 18, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2053, 18, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2054, 18, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2055, 18, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2056, 18, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2057, 18, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2058, 18, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2059, 18, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2060, 18, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2061, 18, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2062, 18, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2063, 18, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2064, 18, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2065, 18, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2066, 18, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2067, 18, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2068, 18, 8, 1, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2069, 18, 8, 2, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2070, 18, 8, 3, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2071, 18, 8, 4, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2072, 18, 8, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2073, 18, 8, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2074, 18, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2075, 18, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2076, 18, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2077, 18, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2078, 18, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2079, 18, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2080, 18, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2081, 18, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2082, 18, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2083, 18, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2084, 18, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2085, 18, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2086, 18, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2087, 18, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2088, 18, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2089, 18, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2090, 18, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2091, 18, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2092, 18, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2093, 18, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2094, 18, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2095, 18, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2096, 18, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2097, 18, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2098, 18, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2099, 18, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2100, 18, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2101, 18, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2102, 18, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2103, 18, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2104, 18, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2105, 18, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2106, 18, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2107, 18, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2108, 18, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2109, 18, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2110, 18, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2111, 18, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2112, 18, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2113, 18, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2114, 18, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2115, 18, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2116, 18, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2117, 18, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2118, 18, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2119, 18, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2120, 18, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2121, 18, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2122, 18, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2123, 18, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2124, 18, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2125, 18, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2126, 18, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2127, 18, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2128, 18, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2129, 18, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2130, 19, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2131, 19, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2132, 19, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2133, 19, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2134, 19, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2135, 19, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2136, 19, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2137, 19, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2138, 19, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2139, 19, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2140, 19, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2141, 19, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2142, 19, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2143, 19, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2144, 19, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2145, 19, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2146, 19, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2147, 19, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2148, 19, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2149, 19, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2150, 19, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2151, 19, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2152, 19, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2153, 19, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2154, 19, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2155, 19, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2156, 19, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2157, 19, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2158, 19, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2159, 19, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2160, 19, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2161, 19, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2162, 19, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2163, 19, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2164, 19, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2165, 19, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2166, 19, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2167, 19, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2168, 19, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2169, 19, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2170, 19, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2171, 19, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2172, 19, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2173, 19, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2174, 19, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2175, 19, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2176, 19, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2177, 19, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2178, 19, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2179, 19, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2180, 19, 8, 1, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2181, 19, 8, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2182, 19, 8, 3, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2183, 19, 8, 4, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2184, 19, 8, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2185, 19, 8, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2186, 19, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2187, 19, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2188, 19, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2189, 19, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2190, 19, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2191, 19, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2192, 19, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2193, 19, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2194, 19, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2195, 19, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2196, 19, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2197, 19, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2198, 19, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2199, 19, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2200, 19, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2201, 19, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2202, 19, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2203, 19, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2204, 19, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2205, 19, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2206, 19, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2207, 19, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2208, 19, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2209, 19, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2210, 19, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2211, 19, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2212, 19, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2213, 19, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2214, 19, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2215, 19, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2216, 19, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2217, 19, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2218, 19, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2219, 19, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2220, 19, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2221, 19, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2222, 19, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2223, 19, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2224, 19, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2225, 19, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2226, 19, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2227, 19, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2228, 19, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2229, 19, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2230, 19, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2231, 19, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2232, 19, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2233, 19, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2234, 19, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2235, 19, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2236, 19, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2237, 19, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2238, 19, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2239, 19, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2240, 19, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2241, 19, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2242, 20, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2243, 20, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2244, 20, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2245, 20, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2246, 20, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2247, 20, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2248, 20, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2249, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2250, 20, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2251, 20, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2252, 20, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2253, 20, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2254, 20, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2255, 20, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2256, 20, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2257, 20, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2258, 20, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2259, 20, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2260, 20, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2261, 20, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2262, 20, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2263, 20, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2264, 20, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2265, 20, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2266, 20, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2267, 20, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2268, 20, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2269, 20, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2270, 20, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2271, 20, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2272, 20, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2273, 20, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2274, 20, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2275, 20, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2276, 20, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2277, 20, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2278, 20, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2279, 20, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2280, 20, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2281, 20, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2282, 20, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2283, 20, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2284, 20, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2285, 20, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2286, 20, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2287, 20, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2288, 20, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2289, 20, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2290, 20, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2291, 20, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2292, 20, 8, 1, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2293, 20, 8, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2294, 20, 8, 3, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2295, 20, 8, 4, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2296, 20, 8, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2297, 20, 8, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2298, 20, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2299, 20, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2300, 20, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2301, 20, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2302, 20, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2303, 20, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2304, 20, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2305, 20, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2306, 20, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2307, 20, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2308, 20, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2309, 20, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2310, 20, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2311, 20, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2312, 20, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2313, 20, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2314, 20, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2315, 20, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2316, 20, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2317, 20, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2318, 20, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2319, 20, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2320, 20, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2321, 20, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2322, 20, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2323, 20, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2324, 20, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2325, 20, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2326, 20, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2327, 20, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2328, 20, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2329, 20, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2330, 20, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2331, 20, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2332, 20, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2333, 20, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2334, 20, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2335, 20, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2336, 20, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2337, 20, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2338, 20, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2339, 20, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2340, 20, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2341, 20, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2342, 20, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2343, 20, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2344, 20, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2345, 20, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2346, 20, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2347, 20, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2348, 20, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2349, 20, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2350, 20, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2351, 20, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2352, 20, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2353, 20, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2354, 21, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2355, 21, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2356, 21, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2357, 21, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2358, 21, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2359, 21, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2360, 21, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2361, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2362, 21, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2363, 21, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2364, 21, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2365, 21, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2366, 21, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2367, 21, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2368, 21, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2369, 21, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2370, 21, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2371, 21, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2372, 21, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2373, 21, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2374, 21, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2375, 21, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2376, 21, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2377, 21, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2378, 21, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2379, 21, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2380, 21, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2381, 21, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2382, 21, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2383, 21, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2384, 21, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2385, 21, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2386, 21, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2387, 21, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2388, 21, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2389, 21, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2390, 21, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2391, 21, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2392, 21, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2393, 21, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2394, 21, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2395, 21, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2396, 21, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2397, 21, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2398, 21, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2399, 21, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2400, 21, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2401, 21, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2402, 21, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2403, 21, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2404, 21, 8, 1, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2405, 21, 8, 2, 50, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2406, 21, 8, 3, 75, 75, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2407, 21, 8, 4, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2408, 21, 8, 6, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2409, 21, 8, 8, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2410, 21, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2411, 21, 9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2412, 21, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2413, 21, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2414, 21, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2415, 21, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2416, 21, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2417, 21, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2418, 21, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2419, 21, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2420, 21, 10, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2421, 21, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2422, 21, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2423, 21, 10, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2424, 21, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2425, 21, 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2426, 21, 11, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2427, 21, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2428, 21, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2429, 21, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2430, 21, 11, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2431, 21, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2432, 21, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2433, 21, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2434, 21, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2435, 21, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2436, 21, 12, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2437, 21, 12, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2438, 21, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2439, 21, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2440, 21, 13, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2441, 21, 13, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2442, 21, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2443, 21, 13, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2444, 21, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2445, 21, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2446, 21, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2447, 21, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2448, 21, 14, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2449, 21, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2450, 21, 14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2451, 21, 14, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2452, 21, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2453, 21, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2454, 21, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2455, 21, 15, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2456, 21, 15, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2457, 21, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2458, 21, 15, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2459, 21, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2460, 21, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2461, 21, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2462, 21, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2463, 21, 16, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2464, 21, 16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
INSERT INTO `bot_spell_casting_chances` VALUES (2465, 21, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
DROP TABLE IF EXISTS `bot_spell_settings`;
CREATE TABLE `bot_spell_settings` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`bot_id` int(11) NOT NULL DEFAULT 0,
`spell_id` smallint(5) NOT NULL DEFAULT 0,
`priority` smallint(5) NOT NULL DEFAULT 0,
`min_hp` smallint(5) NOT NULL DEFAULT 0,
`max_hp` smallint(5) NOT NULL DEFAULT 0,
`is_enabled` tinyint(1) UNSIGNED NOT NULL DEFAULT 1,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_spells_entries`;
CREATE TABLE `bot_spells_entries` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`npc_spells_id` int(11) NOT NULL DEFAULT 0,
`spell_id` smallint(5) UNSIGNED NOT NULL DEFAULT 0,
`type` int(10) UNSIGNED NOT NULL DEFAULT 0,
`minlevel` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`maxlevel` tinyint(3) UNSIGNED NOT NULL DEFAULT 255,
`manacost` smallint(5) NOT NULL DEFAULT -1,
`recast_delay` int(11) NOT NULL DEFAULT -1,
`priority` smallint(5) NOT NULL DEFAULT 0,
`resist_adjust` int(11) NOT NULL DEFAULT 0,
`min_hp` smallint(5) NOT NULL DEFAULT 0,
`max_hp` smallint(5) NOT NULL DEFAULT 0,
`bucket_name` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`bucket_value` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
`bucket_comparison` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 3679 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
INSERT INTO `bot_spells_entries` VALUES (1, 3002, 200, 1, 1, 3, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2, 3002, 14, 0, 1, 4, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3, 3002, 201, 14, 1, 1, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (4, 3002, 202, 3, 1, 6, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (5, 3002, 11, 3, 1, 14, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (6, 3002, 207, 4, 1, 28, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (7, 3002, 216, 0, 2, 15, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (8, 3002, 17, 1, 4, 9, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (9, 3002, 560, 0, 5, 13, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (10, 3002, 219, 3, 7, 16, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (11, 3002, 12, 1, 10, 19, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (12, 3002, 485, 3, 11, 16, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (13, 3002, 16, 0, 14, 28, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (14, 3002, 3575, 3, 15, 34, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (15, 3002, 368, 3, 15, 24, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (16, 3002, 123, 0, 16, 30, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (17, 3002, 89, 3, 17, 20, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (18, 3002, 2502, 1, 19, 28, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (19, 3002, 15, 1, 20, 29, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (20, 3002, 4088, 3, 20, 39, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (21, 3002, 486, 3, 21, 30, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (22, 3002, 18, 3, 25, 34, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (23, 3002, 130, 4, 29, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (24, 3002, 2175, 1, 29, 43, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (25, 3002, 329, 0, 29, 43, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (26, 3002, 9, 1, 30, 38, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (27, 3002, 124, 0, 31, 45, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (28, 3002, 487, 3, 31, 39, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (29, 3002, 3576, 3, 35, 61, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (30, 3002, 19, 3, 35, 39, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (31, 3002, 13, 1, 39, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (32, 3002, 3692, 3, 40, 44, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (33, 3002, 4089, 3, 40, 53, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (34, 3002, 1445, 3, 30, 48, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (35, 3002, 1444, 1, 44, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (36, 3002, 672, 0, 44, 53, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (37, 3002, 4053, 3, 45, 59, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (38, 3002, 125, 0, 46, 57, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (39, 3002, 2505, 3, 49, 57, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (40, 3002, 1547, 3, 51, 59, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (41, 3002, 1543, 0, 54, 55, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (42, 3002, 4090, 3, 54, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (43, 3002, 2508, 0, 56, 61, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (44, 3002, 1544, 0, 58, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (45, 3002, 2509, 3, 58, 59, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (46, 3002, 1522, 1, 59, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (47, 3002, 1546, 3, 60, 255, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (48, 3002, 2109, 3, 60, 64, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (49, 3002, 2122, 3, 60, 61, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (50, 3002, 2180, 1, 60, 61, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (51, 3002, 3481, 0, 61, 62, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (52, 3002, 3467, 3, 62, 64, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (53, 3002, 3472, 3, 62, 63, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (54, 3002, 3475, 1, 62, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (55, 3002, 3476, 0, 62, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (56, 3002, 4091, 3, 62, 66, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (57, 3002, 3482, 0, 63, 65, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (58, 3002, 4108, 3, 64, 66, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (59, 3002, 3474, 3, 65, 69, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (60, 3002, 3479, 3, 65, 66, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (61, 3002, 4882, 1, 65, 66, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (62, 3002, 4973, 0, 65, 66, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (63, 3002, 5254, 0, 66, 67, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (64, 3002, 5257, 3, 67, 69, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (65, 3002, 5258, 3, 67, 68, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (66, 3002, 5259, 1, 67, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (67, 3002, 5260, 0, 67, 68, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (68, 3002, 5261, 3, 67, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (69, 3002, 5266, 0, 68, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (70, 3002, 5272, 3, 69, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (71, 3002, 8006, 0, 69, 69, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (72, 3002, 5276, 3, 70, 255, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (73, 3002, 5278, 3, 70, 255, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (74, 3002, 5279, 0, 70, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (75, 3002, 6140, 1, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (76, 3012, 288, 3, 1, 5, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (77, 3012, 372, 0, 1, 7, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (78, 3012, 378, 3, 2, 9, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (79, 3012, 230, 2, 3, 16, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (80, 3012, 376, 0, 4, 4, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (81, 3012, 477, 0, 5, 14, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (82, 3012, 246, 3, 6, 14, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (83, 3012, 656, 0, 8, 23, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (84, 3012, 381, 3, 9, 60, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (85, 3012, 2551, 3, 10, 30, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (86, 3012, 383, 0, 10, 15, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (87, 3012, 48, 9, 11, 33, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (88, 3012, 236, 3, 13, 20, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (89, 3012, 309, 3, 15, 22, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (90, 3012, 657, 0, 15, 25, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (91, 3012, 38, 0, 16, 36, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (92, 3012, 131, 2, 17, 38, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (93, 3012, 22, 0, 17, 17, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (94, 3012, 2552, 0, 18, 27, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (95, 3012, 503, 0, 19, 46, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (96, 3012, 108, 3, 20, 41, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (97, 3012, 387, 3, 21, 29, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (98, 3012, 65, 3, 23, 32, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (99, 3012, 464, 0, 24, 33, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (100, 3012, 2553, 5, 25, 44, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (101, 3012, 465, 0, 26, 42, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (102, 3012, 470, 0, 28, 40, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (103, 3012, 393, 3, 30, 39, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (104, 3012, 1419, 3, 31, 48, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (105, 3012, 66, 3, 33, 43, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (106, 3012, 49, 9, 34, 52, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (107, 3012, 658, 0, 34, 48, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (108, 3012, 466, 0, 37, 57, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (109, 3012, 752, 17, 37, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (110, 3012, 132, 2, 39, 47, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (111, 3012, 3811, 3, 40, 57, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (112, 3012, 394, 3, 40, 51, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (113, 3012, 23, 0, 41, 46, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (114, 3012, 109, 3, 42, 53, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (115, 3012, 659, 0, 43, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (116, 3012, 67, 3, 44, 53, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (117, 3012, 2555, 5, 45, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (118, 3012, 612, 0, 47, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (119, 3012, 755, 0, 47, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (120, 3012, 133, 2, 48, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (121, 3012, 4067, 3, 49, 56, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (122, 3012, 732, 0, 49, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (123, 3012, 1631, 7, 51, 57, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (124, 3012, 1634, 0, 51, 55, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (125, 3012, 1609, 3, 52, 62, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (126, 3012, 1526, 9, 53, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (127, 3012, 1610, 3, 54, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (128, 3012, 2557, 5, 54, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (129, 3012, 3582, 3, 54, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (130, 3012, 1635, 0, 56, 63, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (131, 3012, 4068, 3, 57, 63, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (132, 3012, 1633, 2, 58, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (133, 3012, 1640, 0, 58, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (134, 3012, 2559, 3, 58, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (135, 3012, 2884, 0, 60, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (136, 3012, 2116, 0, 60, 63, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (137, 3012, 2117, 17, 60, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (138, 3012, 2560, 5, 60, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (139, 3012, 2883, 0, 60, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (140, 3012, 3194, 2, 61, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (141, 3012, 3300, 3, 61, 63, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (142, 3012, 3326, 3, 61, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (143, 3012, 3328, 0, 61, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (144, 3012, 3329, 3, 62, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (145, 3012, 3301, 3, 63, 67, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (146, 3012, 3335, 0, 63, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (147, 3012, 3302, 3, 64, 65, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (148, 3012, 4069, 3, 64, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (149, 3012, 4066, 0, 64, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (150, 3012, 3333, 0, 64, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (151, 3012, 4981, 0, 65, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (152, 3012, 3191, 0, 65, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (153, 3012, 5443, 3, 66, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (154, 3012, 5445, 0, 67, 67, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (155, 3012, 5448, 3, 68, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (156, 3012, 5450, 0, 68, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (157, 3012, 5458, 0, 69, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (158, 3012, 5459, 3, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (159, 3012, 8043, 0, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (160, 3012, 5456, 0, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (161, 3011, 288, 3, 1, 7, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (162, 3011, 340, 8, 1, 14, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (163, 3011, 341, 6, 1, 2, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (164, 3011, 338, 5, 1, 3, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (165, 3011, 346, 3, 3, 15, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (166, 3011, 502, 6, 3, 11, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (167, 3011, 344, 7, 4, 10, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (168, 3011, 229, 22, 35, 29, -1, 45, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (169, 3011, 348, 8, 4, 33, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (170, 3011, 491, 5, 4, 7, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (171, 3011, 641, 3, 6, 17, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (172, 3011, 359, 3, 7, 19, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (173, 3011, 246, 3, 8, 15, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (174, 3011, 351, 5, 8, 11, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (175, 3011, 1509, 8, 9, 28, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (176, 3011, 360, 8, 10, 27, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (177, 3011, 2541, 3, 11, 22, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (178, 3011, 355, 7, 11, 26, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (179, 3011, 362, 5, 12, 15, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (180, 3011, 445, 6, 12, 19, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (181, 3011, 367, 8, 13, 38, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (182, 3011, 236, 3, 14, 21, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (183, 3011, 365, 8, 15, 34, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (184, 3011, 309, 3, 16, 20, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (185, 3011, 492, 5, 16, 19, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (186, 3011, 2542, 13, 17, 37, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (187, 3011, 642, 3, 18, 30, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (188, 3011, 199, 4, 20, 57, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (189, 3011, 440, 5, 20, 23, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (190, 3011, 446, 6, 20, 25, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (191, 3011, 204, 0, 21, 31, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (192, 3011, 387, 3, 22, 31, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (193, 3011, 449, 3, 23, 34, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (194, 3011, 493, 5, 24, 28, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (195, 3011, 524, 6, 26, 38, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (196, 3011, 452, 7, 27, 46, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (197, 3011, 451, 8, 28, 46, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (198, 3011, 441, 5, 29, 32, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (199, 3011, 454, 8, 29, 44, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (200, 3011, 127, 22, 30, 55, -1, 45, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (201, 3011, 643, 3, 31, 47, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (202, 3011, 1415, 0, 32, 48, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (203, 3011, 393, 3, 32, 42, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (204, 3011, 494, 5, 33, 38, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (205, 3011, 435, 8, 34, 49, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (206, 3011, 31, 8, 35, 39, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (207, 3011, 661, 3, 35, 54, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (208, 3011, 2544, 13, 38, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (209, 3011, 442, 5, 39, 43, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (210, 3011, 525, 6, 39, 47, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (211, 3011, 4096, 8, 39, 53, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (212, 3011, 1508, 8, 40, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (213, 3011, 394, 3, 43, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (214, 3011, 495, 5, 44, 47, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (215, 3011, 3702, 8, 45, 48, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (216, 3011, 453, 7, 47, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (217, 3011, 6, 8, 47, 57, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (218, 3011, 443, 5, 48, 52, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (219, 3011, 447, 6, 48, 53, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (220, 3011, 644, 3, 48, 55, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (221, 3011, 3571, 0, 49, 53, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (222, 3011, 456, 8, 49, 56, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (223, 3011, 436, 8, 50, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (224, 3011, 1609, 3, 52, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (225, 3011, 32, 8, 52, 55, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (226, 3011, 1621, 5, 53, 55, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (227, 3011, 3572, 0, 54, 59, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (228, 3011, 1613, 6, 54, 58, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (229, 3011, 4097, 8, 54, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (230, 3011, 1414, 3, 55, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (231, 3011, 1527, 22, 56, 56, -1, 45, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (232, 3011, 1611, 3, 56, 59, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (233, 3011, 1615, 8, 56, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (234, 3011, 1622, 5, 56, 58, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (235, 3011, 1616, 8, 57, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (236, 3011, 6980, 22, 57, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (237, 3011, 1612, 4, 58, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (238, 3011, 1617, 8, 58, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (239, 3011, 1619, 7, 59, 62, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (240, 3011, 1623, 5, 59, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (241, 3011, 1618, 6, 59, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (242, 3011, 1393, 6, 60, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (243, 3011, 2114, 3, 60, 63, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (244, 3011, 2115, 6, 60, 60, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (245, 3011, 2550, 8, 60, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (246, 3011, 2885, 8, 60, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (247, 3011, 3032, 6, 61, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (248, 3011, 3035, 0, 61, 65, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (249, 3011, 3304, 5, 61, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (250, 3011, 3305, 3, 62, 66, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (251, 3011, 6981, 22, 62, 66, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (252, 3011, 3301, 3, 63, 68, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (253, 3011, 3309, 7, 63, 67, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (254, 3011, 3310, 5, 63, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (255, 3011, 4098, 8, 63, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (256, 3011, 3311, 3, 64, 64, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (257, 3011, 3303, 8, 65, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (258, 3011, 3314, 5, 65, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (259, 3011, 4889, 8, 65, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (260, 3011, 4890, 8, 65, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (261, 3011, 4978, 3, 65, 69, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (262, 3011, 5420, 0, 66, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (263, 3011, 5419, 6, 67, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (264, 3011, 5424, 8, 67, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (265, 3011, 5425, 3, 67, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (266, 3011, 5431, 5, 67, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (267, 3011, 5432, 8, 67, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (268, 3011, 6982, 22, 67, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (269, 3011, 5430, 7, 68, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (270, 3011, 5428, 3, 69, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (271, 3011, 5437, 8, 69, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (272, 3011, 7999, 8, 69, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (273, 3011, 5438, 5, 70, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (274, 3011, 5441, 8, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (275, 3011, 6143, 6, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (276, 3011, 7994, 8, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (277, 3011, 5434, 3, 70, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (278, 3013, 288, 3, 1, 4, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (279, 3013, 93, 0, 1, 3, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (280, 3013, 315, 5, 2, 5, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (281, 3013, 316, 5, 3, 6, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (282, 3013, 317, 5, 4, 7, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (283, 3013, 94, 0, 4, 4, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (284, 3013, 58, 5, 5, 8, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (285, 3013, 246, 3, 5, 15, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (286, 3013, 322, 0, 5, 14, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (287, 3013, 398, 5, 6, 9, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (288, 3013, 399, 5, 7, 10, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (289, 3013, 324, 0, 7, 22, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (290, 3013, 332, 3, 7, 18, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (291, 3013, 400, 5, 8, 11, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (292, 3013, 397, 5, 9, 12, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (293, 3013, 248, 0, 9, 17, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (294, 3013, 402, 5, 10, 13, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (295, 3013, 403, 5, 11, 14, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (296, 3013, 327, 3, 11, 28, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (297, 3013, 404, 5, 12, 15, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (298, 3013, 333, 3, 17, 24, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (299, 3013, 401, 5, 13, 16, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (300, 3013, 336, 5, 14, 17, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (301, 3013, 395, 5, 15, 18, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (302, 3013, 334, 0, 15, 17, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (303, 3013, 396, 5, 16, 19, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (304, 3013, 309, 3, 16, 23, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (305, 3013, 335, 5, 17, 20, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (306, 3013, 497, 5, 18, 21, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (307, 3013, 68, 0, 18, 30, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (308, 3013, 663, 0, 18, 24, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (309, 3013, 498, 5, 19, 22, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (310, 3013, 411, 3, 19, 27, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (311, 3013, 499, 5, 20, 23, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (312, 3013, 496, 5, 21, 24, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (313, 3013, 570, 5, 22, 25, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (314, 3013, 571, 5, 23, 26, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (315, 3013, 113, 0, 23, 40, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (316, 3013, 572, 5, 24, 27, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (317, 3013, 65, 3, 24, 31, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (318, 3013, 569, 5, 25, 28, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (319, 3013, 115, 0, 25, 27, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (320, 3013, 81, 3, 25, 40, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (321, 3013, 574, 5, 26, 30, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (322, 3013, 575, 5, 27, 31, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (323, 3013, 576, 5, 28, 32, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (324, 3013, 479, 3, 28, 37, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (325, 3013, 664, 0, 28, 47, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (326, 3013, 106, 3, 28, 46, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (327, 3013, 573, 5, 29, 33, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (328, 3013, 1400, 5, 30, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (329, 3013, 621, 5, 31, 35, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (330, 3013, 120, 0, 31, 32, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (331, 3013, 622, 5, 32, 36, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (332, 3013, 49, 9, 32, 52, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (333, 3013, 66, 3, 32, 42, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (334, 3013, 623, 5, 33, 37, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (335, 3013, 69, 0, 33, 46, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (336, 3013, 620, 5, 34, 38, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (337, 3013, 625, 5, 36, 40, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (338, 3013, 626, 5, 37, 41, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (339, 3013, 627, 5, 38, 42, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (340, 3013, 680, 3, 38, 44, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (341, 3013, 624, 5, 39, 43, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (342, 3013, 629, 5, 41, 48, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (343, 3013, 114, 0, 41, 56, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (344, 3013, 82, 3, 41, 51, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (345, 3013, 630, 5, 42, 46, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (346, 3013, 631, 5, 43, 47, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (347, 3013, 1403, 8, 43, 54, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (348, 3013, 67, 3, 43, 53, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (349, 3013, 628, 5, 44, 45, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (350, 3013, 412, 3, 45, 52, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (351, 3013, 632, 5, 46, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (352, 3013, 4079, 3, 46, 57, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (353, 3013, 634, 5, 47, 51, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (354, 3013, 107, 3, 47, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (355, 3013, 70, 0, 47, 51, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (356, 3013, 635, 5, 48, 52, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (357, 3013, 116, 0, 48, 55, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (358, 3013, 633, 5, 49, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (359, 3013, 1402, 5, 50, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (360, 3013, 1671, 5, 51, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (361, 3013, 1673, 5, 52, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (362, 3013, 1660, 0, 52, 58, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (363, 3013, 1666, 3, 52, 53, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (364, 3013, 3700, 3, 52, 54, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (365, 3013, 1674, 5, 53, 58, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (366, 3013, 1526, 9, 53, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (367, 3013, 1668, 3, 53, 55, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (368, 3013, 1672, 5, 54, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (369, 3013, 1610, 3, 54, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (370, 3013, 2879, 3, 54, 57, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (371, 3013, 1405, 8, 55, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (372, 3013, 1472, 3, 55, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (373, 3013, 1529, 0, 56, 63, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (374, 3013, 1667, 3, 56, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (375, 3013, 1675, 5, 57, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (376, 3013, 1663, 0, 57, 62, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (377, 3013, 1677, 5, 58, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (378, 3013, 2539, 3, 58, 61, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (379, 3013, 4080, 3, 58, 63, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (380, 3013, 1678, 5, 59, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (381, 3013, 1664, 0, 59, 60, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (382, 3013, 1404, 5, 60, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (383, 3013, 1676, 5, 60, 61, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (384, 3013, 1669, 3, 60, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (385, 3013, 2119, 3, 60, 61, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (386, 3013, 3317, 5, 61, 65, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (387, 3013, 3198, 3, 61, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (388, 3013, 3300, 3, 61, 63, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (389, 3013, 3318, 0, 61, 65, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (390, 3013, 3320, 5, 62, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (391, 3013, 3031, 3, 62, 67, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (392, 3013, 3237, 3, 62, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (393, 3013, 3322, 5, 63, 67, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (394, 3013, 3486, 3, 63, 65, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (395, 3013, 3321, 0, 63, 67, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (396, 3013, 3238, 0, 64, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (397, 3013, 3302, 3, 64, 65, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (398, 3013, 4081, 3, 64, 68, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (399, 3013, 4888, 5, 65, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (400, 3013, 3324, 5, 65, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (401, 3013, 5473, 5, 66, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (402, 3013, 5466, 3, 66, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (403, 3013, 5472, 3, 66, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (404, 3013, 5474, 0, 66, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (405, 3013, 5480, 5, 67, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (406, 3013, 5485, 5, 68, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (407, 3013, 5476, 3, 68, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (408, 3013, 5484, 0, 68, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (409, 3013, 5478, 3, 69, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (410, 3013, 5490, 0, 69, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (411, 3013, 5494, 3, 69, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (412, 3013, 5495, 5, 70, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (413, 3013, 5488, 3, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (414, 3014, 288, 3, 1, 5, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (415, 3014, 40, 3, 1, 18, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (416, 3014, 289, 9, 1, 6, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (417, 3014, 286, 0, 1, 3, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (418, 3014, 285, 5, 1, 1, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (419, 3014, 681, 5, 2, 6, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (420, 3014, 294, 8, 4, 10, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (421, 3014, 246, 3, 6, 15, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (422, 3014, 295, 5, 7, 8, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (423, 3014, 296, 0, 7, 15, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (424, 3014, 48, 9, 7, 21, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (425, 3014, 302, 13, 9, 22, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (426, 3014, 303, 0, 9, 27, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (427, 3014, 682, 5, 9, 13, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (428, 3014, 2561, 3, 11, 16, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (429, 3014, 521, 8, 11, 25, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (430, 3014, 683, 5, 14, 16, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (431, 3014, 697, 3, 14, 25, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (432, 3014, 39, 3, 15, 20, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (433, 3014, 309, 3, 16, 22, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (434, 3014, 306, 0, 16, 20, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (435, 3014, 2562, 3, 17, 29, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (436, 3014, 684, 5, 17, 21, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (437, 3014, 170, 3, 21, 38, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (438, 3014, 350, 0, 21, 31, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (439, 3014, 24, 9, 22, 27, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (440, 3014, 685, 5, 22, 28, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (441, 3014, 185, 13, 23, 40, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (442, 3014, 65, 3, 23, 30, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (443, 3014, 174, 3, 26, 41, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (444, 3014, 450, 8, 26, 46, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (445, 3014, 49, 9, 28, 41, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (446, 3014, 619, 0, 28, 60, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (447, 3014, 4073, 3, 29, 43, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (448, 3014, 686, 5, 29, 30, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (449, 3014, 74, 0, 30, 49, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (450, 3014, 66, 3, 31, 39, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (451, 3014, 687, 5, 31, 36, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (452, 3014, 71, 0, 32, 42, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (453, 3014, 1408, 3, 34, 54, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (454, 3014, 688, 5, 37, 40, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (455, 3014, 171, 3, 39, 46, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (456, 3014, 1474, 3, 40, 62, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (457, 3014, 186, 13, 41, 56, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (458, 3014, 689, 5, 41, 47, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (459, 3014, 1694, 3, 42, 51, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (460, 3014, 25, 9, 42, 52, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (461, 3014, 673, 0, 43, 53, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (462, 3014, 4074, 3, 44, 54, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (463, 3014, 172, 3, 47, 52, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (464, 3014, 195, 8, 47, 58, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (465, 3014, 690, 5, 48, 54, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (466, 3014, 1686, 0, 50, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (467, 3014, 1693, 3, 52, 55, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (468, 3014, 1697, 9, 53, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (469, 3014, 1708, 3, 53, 57, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (470, 3014, 1698, 0, 54, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (471, 3014, 1723, 5, 55, 61, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (472, 3014, 4075, 3, 55, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (473, 3014, 1409, 3, 55, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (474, 3014, 1695, 3, 56, 59, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (475, 3014, 1712, 13, 57, 68, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (476, 3014, 1709, 3, 58, 59, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (477, 3014, 1703, 8, 59, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (478, 3014, 1710, 3, 60, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (479, 3014, 2570, 3, 60, 62, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (480, 3014, 6739, 3, 61, 66, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (481, 3014, 3199, 3, 61, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (482, 3014, 3229, 17, 61, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (483, 3014, 3034, 5, 62, 65, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (484, 3014, 3240, 3, 62, 64, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (485, 3014, 3345, 8, 62, 68, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (486, 3014, 3350, 3, 63, 64, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (487, 3014, 4076, 3, 63, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (488, 3014, 3241, 3, 63, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (489, 3014, 3178, 3, 65, 66, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (490, 3014, 3360, 3, 65, 67, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (491, 3014, 5500, 3, 66, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (492, 3014, 5505, 5, 66, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (493, 3014, 5504, 3, 67, 68, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (494, 3014, 5507, 3, 67, 69, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (495, 3014, 5513, 3, 68, 69, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (496, 3014, 5515, 3, 68, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (497, 3014, 5509, 8, 69, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (498, 3014, 6671, 3, 69, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (499, 3014, 6826, 13, 69, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (500, 3014, 5517, 3, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (501, 3014, 5521, 3, 70, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (502, 3014, 5522, 3, 70, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (503, 3010, 266, 3, 1, 20, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (504, 3010, 40, 3, 1, 7, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (505, 3010, 267, 3, 1, 31, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (506, 3010, 93, 0, 1, 3, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (507, 3010, 200, 1, 1, 18, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (508, 3010, 274, 3, 3, 10, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (509, 3010, 269, 3, 3, 17, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (510, 3010, 275, 0, 4, 13, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (511, 3010, 75, 8, 4, 14, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (512, 3010, 270, 13, 5, 12, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (513, 3010, 279, 3, 6, 21, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (514, 3010, 2521, 3, 8, 17, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (515, 3010, 277, 8, 8, 23, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (516, 3010, 17, 1, 9, 18, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (517, 3010, 283, 3, 11, 19, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (518, 3010, 281, 14, 12, 28, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (519, 3010, 505, 13, 13, 26, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (520, 3010, 365, 8, 15, 18, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (521, 3010, 282, 0, 14, 22, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (522, 3010, 526, 14, 17, 37, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (523, 3010, 110, 14, 18, 31, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (524, 3010, 147, 3, 18, 27, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (525, 3010, 148, 3, 18, 30, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (526, 3010, 12, 1, 19, 28, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (527, 3010, 511, 8, 19, 30, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (528, 3010, 649, 3, 20, 25, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (529, 3010, 146, 3, 21, 24, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (530, 3010, 149, 3, 21, 29, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (531, 3010, 144, 3, 23, 38, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (532, 3010, 508, 0, 23, 32, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (533, 3010, 434, 8, 24, 36, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (534, 3010, 349, 3, 25, 38, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (535, 3010, 39, 3, 26, 41, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (536, 3010, 506, 13, 27, 37, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (537, 3010, 151, 3, 28, 34, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (538, 3010, 15, 1, 29, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (539, 3010, 162, 14, 29, 40, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (540, 3010, 161, 3, 30, 42, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (541, 3010, 160, 3, 31, 40, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (542, 3010, 31, 8, 31, 48, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (543, 3010, 111, 14, 32, 47, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (544, 3010, 164, 5, 32, 36, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (545, 3010, 1428, 3, 35, 38, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (546, 3010, 435, 8, 37, 48, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (547, 3010, 577, 5, 37, 40, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (548, 3010, 507, 13, 38, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (549, 3010, 527, 14, 38, 51, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (550, 3010, 145, 3, 39, 51, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (551, 3010, 152, 3, 39, 47, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (552, 3010, 153, 3, 39, 45, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (553, 3010, 154, 3, 41, 52, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (554, 3010, 163, 14, 41, 52, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (555, 3010, 165, 5, 41, 44, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (556, 3010, 170, 3, 42, 55, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (557, 3010, 158, 3, 43, 53, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (558, 3010, 3694, 10, 44, 59, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (559, 3010, 754, 10, 51, 53, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (560, 3010, 166, 5, 45, 54, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (561, 3010, 159, 3, 46, 56, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (562, 3010, 112, 14, 48, 56, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (563, 3010, 157, 3, 48, 57, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (564, 3010, 32, 8, 49, 58, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (565, 3010, 436, 8, 49, 55, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (566, 3010, 1588, 13, 51, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (567, 3010, 9, 1, 51, 54, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (568, 3010, 1568, 3, 52, 55, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (569, 3010, 1573, 14, 52, 62, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (570, 3010, 1592, 14, 53, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (571, 3010, 1594, 3, 53, 56, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (572, 3010, 1595, 3, 54, 56, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (573, 3010, 1572, 10, 54, 57, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (574, 3010, 1290, 1, 55, 57, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (575, 3010, 1574, 5, 55, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (576, 3010, 171, 3, 56, 62, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (577, 3010, 2528, 3, 56, 60, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (578, 3010, 1590, 8, 56, 59, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (579, 3010, 1580, 3, 57, 61, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (580, 3010, 1577, 14, 57, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (581, 3010, 1593, 3, 57, 57, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (582, 3010, 1579, 3, 57, 60, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (583, 3010, 1596, 3, 58, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (584, 3010, 1581, 3, 58, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (585, 3010, 1332, 10, 58, 64, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (586, 3010, 1583, 3, 59, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (587, 3010, 1591, 8, 59, 63, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (588, 3010, 2112, 3, 60, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (589, 3010, 2530, 3, 60, 61, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (590, 3010, 2113, 8, 60, 64, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (591, 3010, 1578, 14, 60, 62, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (592, 3010, 1576, 1, 60, 64, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (593, 3010, 3378, 3, 61, 61, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (594, 3010, 3433, 3, 61, 62, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (595, 3010, 3377, 5, 61, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (596, 3010, 3235, 3, 62, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (597, 3010, 3383, 3, 62, 67, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (598, 3010, 3382, 3, 62, 62, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (599, 3010, 3233, 1, 62, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (600, 3010, 172, 3, 63, 63, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (601, 3010, 3389, 3, 63, 67, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (602, 3010, 3441, 3, 63, 65, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (603, 3010, 3386, 14, 63, 65, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (604, 3010, 3387, 14, 63, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (605, 3010, 3391, 3, 64, 255, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (606, 3010, 3394, 8, 64, 66, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (607, 3010, 3397, 3, 65, 67, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (608, 3010, 3399, 3, 65, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (609, 3010, 3396, 8, 65, 69, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (610, 3010, 4900, 13, 65, 68, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (611, 3010, 3395, 14, 65, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (612, 3010, 4901, 1, 65, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (613, 3010, 4899, 10, 65, 69, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (614, 3010, 4979, 10, 65, 69, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (615, 3010, 5393, 3, 66, 68, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (616, 3010, 5394, 14, 66, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (617, 3010, 5392, 14, 66, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (618, 3010, 5411, 8, 67, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (619, 3010, 5389, 5, 67, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (620, 3010, 5396, 3, 68, 69, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (621, 3010, 5398, 3, 68, 68, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (622, 3010, 5395, 1, 68, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (623, 3010, 5399, 3, 68, 255, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (624, 3010, 5405, 3, 69, 255, -1, -1, 11, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (625, 3010, 5406, 3, 69, 255, -1, -1, 12, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (626, 3010, 6827, 13, 69, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (627, 3010, 5416, 1, 70, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (628, 3010, 5418, 10, 70, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (629, 3010, 5415, 3, 70, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (630, 3010, 5417, 3, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (631, 3010, 5414, 8, 70, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (632, 3010, 6142, 1, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (633, 3006, 239, 8, 1, 24, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (634, 3006, 242, 7, 1, 25, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (635, 3006, 93, 0, 1, 2, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (636, 3006, 200, 1, 1, 8, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (637, 3006, 248, 0, 2, 12, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (638, 3006, 253, 0, 3, 15, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (639, 3006, 92, 0, 3, 7, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (640, 3006, 256, 3, 7, 16, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (641, 3006, 515, 3, 7, 16, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (642, 3006, 91, 0, 8, 27, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (643, 3006, 17, 1, 9, 18, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (644, 3006, 264, 8, 10, 31, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (645, 3006, 663, 0, 13, 22, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (646, 3006, 520, 0, 16, 29, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (647, 3006, 273, 3, 17, 26, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (648, 3006, 516, 3, 17, 26, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (649, 3006, 12, 1, 19, 28, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (650, 3006, 115, 0, 23, 32, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (651, 3006, 99, 8, 24, 33, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (652, 3006, 78, 8, 25, 36, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (653, 3006, 512, 7, 26, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (654, 3006, 129, 3, 27, 36, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (655, 3006, 517, 3, 27, 36, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (656, 3006, 217, 0, 28, 37, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (657, 3006, 15, 1, 29, 43, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (658, 3006, 1439, 0, 30, 55, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (659, 3006, 259, 8, 32, 39, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (660, 3006, 664, 0, 33, 42, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (661, 3006, 144, 3, 34, 38, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (662, 3006, 1437, 14, 37, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (663, 3006, 432, 3, 37, 46, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (664, 3006, 518, 3, 37, 46, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (665, 3006, 57, 0, 38, 47, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (666, 3006, 137, 3, 39, 41, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (667, 3006, 665, 8, 40, 52, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (668, 3006, 427, 3, 40, 53, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (669, 3006, 1436, 14, 42, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (670, 3006, 145, 3, 42, 44, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (671, 3006, 116, 0, 43, 54, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (672, 3006, 3834, 1, 44, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (673, 3006, 138, 3, 45, 53, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (674, 3006, 29, 0, 47, 54, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (675, 3006, 356, 3, 47, 48, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (676, 3006, 519, 3, 47, 55, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (677, 3006, 671, 0, 48, 53, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (678, 3006, 1727, 3, 49, 57, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (679, 3006, 4104, 8, 49, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (680, 3006, 1562, 3, 54, 59, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (681, 3006, 9, 1, 51, 54, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (682, 3006, 1600, 8, 52, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (683, 3006, 1601, 8, 53, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (684, 3006, 1568, 3, 54, 57, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (685, 3006, 1603, 0, 54, 58, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (686, 3006, 1290, 1, 55, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (687, 3006, 1529, 0, 55, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (688, 3006, 1605, 0, 55, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (689, 3006, 4105, 8, 55, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (690, 3006, 1558, 3, 56, 63, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (691, 3006, 1604, 0, 56, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (692, 3006, 1560, 3, 58, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (693, 3006, 1569, 3, 58, 59, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (694, 3006, 1561, 3, 59, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (695, 3006, 1607, 0, 59, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (696, 3006, 1563, 3, 60, 255, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (697, 3006, 1291, 1, 60, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (698, 3006, 2125, 3, 60, 62, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (699, 3006, 2126, 0, 60, 63, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (700, 3006, 2520, 3, 60, 60, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (701, 3006, 2877, 0, 60, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (702, 3006, 3433, 3, 61, 62, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (703, 3006, 3434, 0, 61, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (704, 3006, 5572, 7, 61, 68, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (705, 3006, 3437, 8, 62, 63, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (706, 3006, 3440, 8, 62, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (707, 3006, 3441, 3, 63, 65, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (708, 3006, 3443, 1, 63, 65, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (709, 3006, 3446, 8, 63, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (710, 3006, 3448, 3, 63, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (711, 3006, 3444, 3, 64, 255, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (712, 3006, 3449, 0, 64, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (713, 3006, 4106, 8, 64, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (714, 3006, 3238, 0, 65, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (715, 3006, 3295, 3, 65, 66, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (716, 3006, 4974, 0, 65, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (717, 3006, 4883, 1, 65, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (718, 3006, 4884, 0, 65, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (719, 3006, 4885, 8, 65, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (720, 3006, 5342, 3, 66, 68, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (721, 3006, 5343, 0, 66, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (722, 3006, 5348, 8, 67, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (723, 3006, 5358, 3, 67, 69, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (724, 3006, 5355, 1, 68, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (725, 3006, 5357, 8, 68, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (726, 3006, 8008, 3, 68, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (727, 3006, 5353, 3, 69, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (728, 3006, 5361, 0, 69, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (729, 3006, 6665, 7, 69, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (730, 3006, 5365, 3, 70, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (731, 3006, 6141, 1, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (732, 3003, 5011, 1, 1, 5, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (733, 3003, 200, 1, 6, 11, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (734, 3003, 2581, 0, 7, 12, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (735, 3003, 202, 3, 8, 19, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (736, 3003, 17, 1, 12, 26, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (737, 3003, 2582, 0, 13, 27, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (738, 3003, 218, 0, 14, 29, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (739, 3003, 11, 3, 15, 29, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (740, 3003, 219, 3, 20, 36, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (741, 3003, 485, 3, 24, 32, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (742, 3003, 2583, 3, 26, 62, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (743, 3003, 12, 1, 27, 35, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (744, 3003, 216, 0, 28, 41, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (745, 3003, 233, 0, 30, 45, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (746, 3003, 368, 3, 30, 38, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (747, 3003, 486, 3, 33, 45, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (748, 3003, 2584, 3, 35, 48, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (749, 3003, 15, 1, 36, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (750, 3003, 89, 3, 37, 46, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (751, 3003, 18, 3, 39, 47, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (752, 3003, 123, 0, 42, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (753, 3003, 2585, 3, 44, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (754, 3003, 3683, 1, 44, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (755, 3003, 117, 0, 46, 53, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (756, 3003, 487, 3, 46, 57, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (757, 3003, 312, 3, 47, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (758, 3003, 19, 3, 48, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (759, 3003, 207, 4, 48, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (760, 3003, 3578, 3, 49, 52, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (761, 3003, 124, 0, 52, 52, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (762, 3003, 3684, 1, 52, 56, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (763, 3003, 1288, 3, 53, 59, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (764, 3003, 3975, 0, 53, 53, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (765, 3003, 2587, 0, 54, 61, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (766, 3003, 662, 0, 54, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (767, 3003, 1743, 3, 55, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (768, 3003, 9, 1, 57, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (769, 3003, 488, 3, 58, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (770, 3003, 1283, 1, 59, 63, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (771, 3003, 2590, 3, 60, 64, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (772, 3003, 314, 3, 60, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (773, 3003, 20, 3, 60, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (774, 3003, 1533, 3, 61, 63, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (775, 3003, 3429, 1, 61, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (776, 3003, 3245, 0, 62, 63, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (777, 3003, 3428, 0, 62, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (778, 3003, 3430, 1, 63, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (779, 3003, 1535, 3, 63, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (780, 3003, 3424, 3, 63, 64, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (781, 3003, 1538, 3, 64, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (782, 3003, 3426, 0, 64, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (783, 3003, 3247, 3, 64, 68, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (784, 3003, 2589, 1, 57, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (785, 3003, 4894, 1, 65, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (786, 3003, 3432, 3, 65, 69, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (787, 3003, 4109, 3, 65, 69, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (788, 3003, 4895, 3, 65, 67, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (789, 3003, 4977, 0, 65, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (790, 3003, 5284, 0, 66, 67, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (791, 3003, 5286, 0, 67, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (792, 3003, 5289, 1, 68, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (793, 3003, 8027, 0, 68, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (794, 3003, 5288, 3, 68, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (795, 3003, 5292, 0, 68, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (796, 3003, 5291, 3, 69, 255, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (797, 3003, 8029, 3, 69, 255, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (798, 3003, 5298, 3, 70, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (799, 3003, 5297, 3, 70, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (800, 3003, 5299, 0, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (801, 3005, 5012, 0, 1, 33, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (802, 3005, 340, 8, 5, 56, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (803, 3005, 491, 5, 7, 13, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (804, 3005, 341, 6, 8, 14, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (805, 3005, 2571, 14, 9, 49, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (806, 3005, 344, 7, 11, 19, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (807, 3005, 229, 22, 12, 42, -1, 45, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (808, 3005, 351, 5, 14, 21, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (809, 3005, 502, 6, 15, 28, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (810, 3005, 346, 3, 16, 57, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (811, 3005, 355, 7, 20, 43, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (812, 3005, 359, 3, 22, 36, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (813, 3005, 362, 5, 22, 29, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (814, 3005, 360, 8, 28, 40, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (815, 3005, 1289, 3, 29, 59, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (816, 3005, 445, 6, 29, 46, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (817, 3005, 492, 5, 30, 37, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (818, 3005, 236, 3, 31, 55, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (819, 3005, 3561, 0, 34, 47, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (820, 3005, 367, 8, 36, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (821, 3005, 2574, 3, 37, 54, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (822, 3005, 370, 14, 37, 49, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (823, 3005, 440, 5, 38, 45, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (824, 3005, 3686, 8, 41, 52, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (825, 3005, 127, 22, 43, 56, -1, 45, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (826, 3005, 452, 7, 44, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (827, 3005, 441, 5, 46, 51, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (828, 3005, 692, 6, 47, 56, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (829, 3005, 3560, 0, 48, 53, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (830, 3005, 199, 4, 50, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (831, 3005, 442, 5, 52, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (832, 3005, 451, 8, 53, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (833, 3005, 3562, 0, 54, 63, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (834, 3005, 1376, 3, 55, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (835, 3005, 393, 3, 56, 58, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (836, 3005, 454, 8, 57, 61, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (837, 3005, 525, 6, 57, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (838, 3005, 6986, 22, 57, 61, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (839, 3005, 495, 5, 58, 63, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (840, 3005, 394, 3, 59, 255, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (841, 3005, 453, 7, 59, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (842, 3005, 661, 3, 60, 63, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (843, 3005, 1508, 8, 60, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (844, 3005, 447, 6, 60, 61, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (845, 3005, 3400, 7, 61, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (846, 3005, 6, 8, 61, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (847, 3005, 456, 8, 62, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (848, 3005, 3401, 6, 62, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (849, 3005, 3227, 3, 63, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (850, 3005, 3489, 8, 63, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (851, 3005, 6987, 22, 62, 66, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (852, 3005, 1414, 3, 64, 68, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (853, 3005, 3491, 0, 64, 64, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (854, 3005, 443, 5, 64, 67, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (855, 3005, 3413, 6, 65, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (856, 3005, 4904, 0, 65, 68, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (857, 3005, 5323, 8, 66, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (858, 3005, 5320, 8, 66, 67, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (859, 3005, 5322, 8, 66, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (860, 3005, 5327, 3, 67, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (861, 3005, 5324, 6, 67, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (862, 3005, 6988, 22, 67, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (863, 3005, 5330, 8, 68, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (864, 3005, 5331, 5, 68, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (865, 3005, 5332, 3, 69, 255, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (866, 3005, 5334, 0, 69, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (867, 3005, 5338, 6, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (868, 3004, 5011, 1, 1, 7, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (869, 3004, 239, 8, 3, 43, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (870, 3004, 2591, 7, 5, 5, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (871, 3004, 242, 7, 6, 50, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (872, 3004, 26, 3, 7, 20, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (873, 3004, 200, 1, 8, 20, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (874, 3004, 2592, 3, 11, 51, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (875, 3004, 269, 3, 12, 54, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (876, 3004, 515, 3, 13, 29, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (877, 3004, 92, 0, 14, 18, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (878, 3004, 254, 3, 17, 36, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (879, 3004, 91, 0, 19, 28, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (880, 3004, 17, 1, 21, 37, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (881, 3004, 263, 3, 21, 37, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (882, 3004, 256, 3, 24, 42, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (883, 3004, 264, 8, 25, 39, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (884, 3004, 268, 3, 26, 52, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (885, 3004, 2593, 3, 29, 47, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (886, 3004, 3565, 0, 29, 38, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (887, 3004, 516, 3, 30, 33, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (888, 3004, 517, 3, 34, 41, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (889, 3004, 1461, 3, 36, 54, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (890, 3004, 2594, 3, 37, 50, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (891, 3004, 12, 1, 38, 56, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (892, 3004, 421, 3, 38, 53, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (893, 3004, 3564, 0, 39, 48, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (894, 3004, 3687, 8, 40, 53, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (895, 3004, 518, 3, 42, 59, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (896, 3004, 129, 3, 43, 57, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (897, 3004, 78, 8, 44, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (898, 3004, 2595, 3, 48, 49, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (899, 3004, 691, 0, 49, 51, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (900, 3004, 1462, 3, 50, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (901, 3004, 1741, 17, 50, 54, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (902, 3004, 1397, 3, 51, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (903, 3004, 512, 7, 51, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (904, 3004, 2596, 3, 52, 57, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (905, 3004, 57, 0, 52, 58, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (906, 3004, 430, 3, 53, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (907, 3004, 259, 8, 54, 61, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (908, 3004, 422, 3, 54, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (909, 3004, 1296, 17, 55, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (910, 3004, 145, 3, 55, 63, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (911, 3004, 1463, 3, 55, 57, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (912, 3004, 15, 1, 57, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (913, 3004, 432, 3, 58, 61, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (914, 3004, 4059, 3, 58, 63, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (915, 3004, 2599, 3, 58, 255, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (916, 3004, 423, 3, 59, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (917, 3004, 1740, 0, 59, 63, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (918, 3004, 519, 3, 60, 62, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (919, 3004, 6732, 7, 61, 68, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (920, 3004, 3419, 3, 62, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (921, 3004, 356, 3, 62, 65, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (922, 3004, 3487, 3, 62, 66, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (923, 3004, 665, 8, 62, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (924, 3004, 1290, 1, 62, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (925, 3004, 1558, 3, 63, 67, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (926, 3004, 1568, 3, 64, 67, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (927, 3004, 3415, 3, 64, 64, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (928, 3004, 3431, 0, 64, 64, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (929, 3004, 1559, 3, 65, 69, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (930, 3004, 4898, 3, 65, 68, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (931, 3004, 4980, 0, 65, 68, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (932, 3004, 4896, 1, 65, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (933, 3004, 5302, 3, 66, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (934, 3004, 5305, 3, 38, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (935, 3004, 5306, 3, 67, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (936, 3004, 5303, 8, 67, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (937, 3004, 5304, 1, 67, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (938, 3004, 5307, 3, 68, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (939, 3004, 5310, 3, 68, 255, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (940, 3004, 5311, 3, 69, 255, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (941, 3004, 6664, 7, 69, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (942, 3004, 5313, 0, 69, 69, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (943, 3004, 5315, 3, 70, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (944, 3004, 5319, 0, 70, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (992, 3015, 5011, 1, 1, 5, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (993, 3015, 200, 1, 6, 19, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (994, 3015, 267, 3, 7, 19, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (995, 3015, 2612, 5, 8, 14, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (996, 3015, 2611, 1, 9, 14, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (997, 3015, 274, 3, 10, 25, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (998, 3015, 2068, 0, 12, 25, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (999, 3015, 2635, 3, 13, 17, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1000, 3015, 40, 3, 14, 27, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1001, 3015, 75, 8, 14, 39, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1002, 3015, 2613, 1, 15, 26, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1003, 3015, 2633, 5, 15, 20, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1004, 3015, 279, 3, 17, 36, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1005, 3015, 2636, 3, 18, 27, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1006, 3015, 277, 8, 19, 34, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1007, 3015, 270, 13, 20, 49, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1008, 3015, 17, 1, 20, 35, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1009, 3015, 2614, 5, 21, 29, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1010, 3015, 282, 0, 26, 32, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1011, 3015, 283, 3, 26, 36, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1012, 3015, 2615, 1, 27, 35, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1013, 3015, 147, 3, 28, 40, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1014, 3015, 2637, 3, 28, 37, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1015, 3015, 2616, 5, 30, 38, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1016, 3015, 3568, 0, 33, 46, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1017, 3015, 434, 8, 35, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1018, 3015, 48, 9, 35, 57, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1019, 3015, 12, 1, 36, 56, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1020, 3015, 2617, 1, 36, 48, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1021, 3015, 2619, 3, 37, 51, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1022, 3015, 149, 3, 37, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1023, 3015, 2638, 3, 38, 45, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1024, 3015, 2618, 5, 39, 45, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1025, 3015, 3689, 8, 40, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1026, 3015, 151, 3, 41, 53, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1027, 3015, 2176, 3, 41, 51, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1028, 3015, 2178, 3, 42, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1029, 3015, 2621, 5, 46, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1030, 3015, 2639, 3, 46, 50, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1031, 3015, 308, 3, 47, 255, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1032, 3015, 3569, 0, 47, 53, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1033, 3015, 2620, 1, 49, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1034, 3015, 2634, 13, 50, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1035, 3015, 2640, 3, 51, 52, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1036, 3015, 161, 3, 52, 56, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1037, 3015, 2177, 3, 52, 58, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1038, 3015, 2622, 1, 52, 54, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1039, 3015, 3690, 3, 52, 54, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1040, 3015, 435, 8, 52, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1041, 3015, 167, 3, 53, 57, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1042, 3015, 153, 3, 54, 255, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1043, 3015, 2623, 5, 54, 55, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1044, 3015, 3570, 0, 54, 58, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1045, 3015, 2625, 3, 55, 58, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1046, 3015, 145, 3, 55, 63, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1047, 3015, 2626, 5, 56, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1048, 3015, 15, 1, 57, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1049, 3015, 158, 3, 57, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1050, 3015, 168, 3, 58, 61, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1051, 3015, 2627, 5, 58, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1052, 3015, 49, 9, 58, 59, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1053, 3015, 2628, 3, 59, 62, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1054, 3015, 2629, 3, 59, 63, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1055, 3015, 510, 0, 59, 62, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1056, 3015, 2941, 3, 60, 64, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1057, 3015, 2630, 3, 60, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1058, 3015, 2631, 5, 60, 61, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1059, 3015, 2942, 13, 60, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1060, 3015, 3492, 8, 61, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1061, 3015, 3456, 3, 62, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1062, 3015, 1585, 3, 62, 66, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1063, 3015, 1290, 1, 62, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1064, 3015, 3457, 5, 62, 63, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1065, 3015, 3458, 3, 63, 67, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1066, 3015, 3493, 0, 63, 64, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1067, 3015, 1568, 3, 64, 68, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1068, 3015, 3460, 3, 64, 68, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1069, 3015, 3461, 5, 64, 67, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1070, 3015, 3463, 3, 65, 69, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1071, 3015, 32, 8, 65, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1072, 3015, 3462, 13, 65, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1073, 3015, 4972, 0, 65, 68, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1074, 3015, 4875, 1, 65, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1075, 3015, 5527, 8, 66, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1076, 3015, 5530, 3, 67, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1077, 3015, 5529, 3, 67, 255, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1078, 3015, 5528, 1, 67, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1079, 3015, 5533, 3, 68, 255, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1080, 3015, 5531, 5, 68, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1081, 3015, 5536, 3, 69, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1082, 3015, 5537, 3, 69, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1083, 3015, 5535, 0, 69, 69, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1084, 3015, 5542, 3, 70, 255, -1, -1, 10, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1085, 3015, 5540, 8, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1086, 3015, 6828, 13, 70, 255, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1087, 3015, 5543, 0, 70, 255, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1088, 3015, 5538, 5, 70, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1089, 3006, 425, 3, 20, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1090, 3014, 190, 11, 47, 55, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1091, 3014, 292, 11, 2, 12, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1092, 3014, 187, 11, 13, 29, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1093, 3014, 188, 11, 30, 46, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1094, 3014, 1691, 11, 54, 58, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1095, 3014, 1692, 11, 59, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1096, 3014, 2120, 11, 60, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1097, 3014, 3341, 11, 61, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1098, 3014, 3354, 11, 63, 63, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1099, 3014, 3358, 11, 64, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1100, 3014, 5503, 11, 67, 67, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1101, 3014, 8035, 11, 68, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1102, 3014, 5520, 11, 69, 255, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1103, 3005, 343, 14, 6, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1104, 3005, 2572, 14, 15, 34, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1105, 3005, 2573, 14, 23, 49, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1106, 3005, 1457, 14, 35, 53, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1107, 3005, 1458, 14, 50, 55, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1108, 3005, 2575, 14, 52, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1109, 3005, 2577, 14, 54, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1110, 3005, 2578, 14, 56, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1111, 3005, 2579, 14, 58, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1112, 3005, 3406, 14, 61, 70, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1113, 3006, 3435, 14, 61, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1114, 3006, 5351, 14, 67, 73, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1115, 3006, 5354, 14, 67, 71, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1116, 3011, 343, 14, 1, 12, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1117, 3011, 1511, 14, 10, 20, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1118, 3011, 1512, 14, 21, 36, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1119, 3011, 1513, 14, 37, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1120, 3011, 1716, 14, 52, 67, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1121, 3011, 2546, 14, 52, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1122, 3011, 5427, 14, 68, 71, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1123, 3013, 110, 14, 22, 43, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1124, 3013, 111, 14, 44, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1125, 3013, 112, 14, 51, 57, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1126, 3013, 1577, 14, 58, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1127, 3013, 1772, 14, 60, 255, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1128, 3013, 3387, 14, 63, 70, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1129, 3014, 41, 14, 1, 3, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1130, 3014, 676, 14, 2, 17, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1131, 3014, 291, 14, 4, 8, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1132, 3014, 645, 14, 9, 18, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1133, 3014, 281, 14, 16, 24, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1134, 3014, 677, 14, 18, 40, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1135, 3014, 179, 14, 19, 33, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1136, 3014, 162, 14, 25, 39, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1137, 3014, 180, 14, 34, 41, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1138, 3014, 163, 14, 40, 52, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1139, 3014, 678, 14, 41, 56, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1140, 3014, 181, 14, 42, 52, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1141, 3014, 1592, 14, 53, 65, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1142, 3014, 1702, 14, 57, 60, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1143, 3014, 3342, 14, 61, 71, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1144, 3014, 5499, 14, 66, 70, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1145, 3015, 162, 14, 44, 55, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1146, 3015, 163, 14, 56, 65, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1147, 3002, 14312, 4, 30, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1148, 3002, 14313, 4, 30, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1149, 3002, 14314, 4, 30, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1151, 3006, 18392, 8, 81, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1152, 3006, 18393, 8, 81, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1153, 3006, 18394, 8, 81, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1154, 3011, 10516, 14, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1155, 3011, 10517, 14, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1156, 3011, 10518, 14, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1158, 3011, 18970, 14, 82, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1159, 3011, 18971, 14, 82, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1160, 3011, 18972, 14, 82, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1161, 3005, 15186, 10, 35, 80, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1162, 3005, 15187, 3, 35, 80, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1163, 3005, 15188, 3, 35, 80, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1164, 3013, 18726, 14, 81, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1165, 3013, 18727, 14, 81, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1166, 3013, 18728, 14, 81, 85, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1167, 3006, 14446, 1, 51, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1168, 3006, 14447, 1, 51, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1169, 3006, 14467, 3, 51, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1170, 3006, 14468, 3, 51, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1171, 3006, 14469, 3, 51, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1173, 3014, 18552, 14, 81, 85, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1174, 3014, 18553, 14, 81, 85, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1175, 3014, 18554, 14, 81, 85, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1176, 3014, 18573, 14, 82, 86, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1177, 3014, 18574, 14, 82, 86, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1178, 3014, 18575, 14, 82, 86, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1179, 3002, 203, 15, 1, 21, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1180, 3002, 213, 15, 4, 27, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1181, 3002, 4056, 15, 8, 22, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1182, 3002, 95, 15, 22, 47, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1183, 3002, 4057, 15, 23, 37, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1184, 3002, 96, 15, 28, 50, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1185, 3002, 2946, 15, 38, 53, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1186, 3002, 97, 15, 48, 57, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1187, 3002, 3693, 15, 51, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1188, 3002, 2880, 15, 54, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1189, 3002, 1525, 15, 58, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1190, 3003, 203, 15, 5, 33, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1191, 3003, 213, 15, 11, 55, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1192, 3003, 4056, 15, 19, 33, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1193, 3003, 95, 15, 34, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1194, 3003, 4057, 15, 34, 44, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1195, 3003, 2946, 15, 45, 59, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1196, 3003, 96, 15, 56, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1197, 3003, 2880, 15, 60, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1198, 3003, 3190, 15, 62, 66, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1199, 3003, 5283, 15, 67, 80, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1200, 3004, 203, 15, 13, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1201, 3004, 213, 15, 22, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1202, 3004, 95, 15, 61, 72, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1203, 3004, 96, 15, 61, 72, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1204, 3005, 213, 15, 19, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1205, 3006, 213, 15, 4, 27, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1206, 3006, 203, 15, 5, 27, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1207, 3006, 95, 15, 28, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1208, 3006, 96, 15, 28, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1209, 3006, 3693, 15, 52, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1212, 3010, 213, 15, 1, 21, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1213, 3010, 203, 15, 2, 25, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1214, 3010, 4056, 15, 9, 23, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1215, 3010, 96, 15, 22, 47, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1216, 3010, 4057, 15, 24, 37, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1217, 3010, 95, 15, 26, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1218, 3010, 2946, 15, 38, 53, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1219, 3010, 98, 15, 48, 51, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1220, 3010, 2526, 15, 52, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1221, 3010, 3842, 15, 52, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1222, 3010, 2880, 15, 54, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1223, 3015, 213, 15, 4, 44, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1224, 3015, 203, 15, 13, 60, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1225, 3015, 96, 15, 45, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1226, 3015, 95, 15, 61, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1227, 3015, 98, 15, 63, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1228, 3002, 14267, 0, 30, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1229, 3002, 14268, 0, 30, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1230, 3002, 14269, 0, 30, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1231, 3002, 18306, 15, 84, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1232, 3002, 18307, 15, 84, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1233, 3002, 18308, 15, 84, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1234, 3002, 18389, 15, 84, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1235, 3002, 18390, 15, 84, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1236, 3002, 18391, 15, 84, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1237, 3003, 19128, 15, 81, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1238, 3003, 19129, 15, 81, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1239, 3003, 19130, 15, 81, 255, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1240, 3003, 14955, 10, 57, 77, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1241, 3003, 14956, 10, 57, 77, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1243, 3004, 19146, 15, 83, 87, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1244, 3004, 19147, 15, 83, 87, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1245, 3004, 19148, 15, 83, 87, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1246, 3006, 9700, 15, 71, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1247, 3006, 9701, 15, 71, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1248, 3006, 9702, 15, 71, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1249, 3006, 18389, 15, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1250, 3006, 18390, 15, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1251, 3006, 18391, 15, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1258, 3010, 9700, 15, 72, 73, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1259, 3010, 9701, 15, 72, 73, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1260, 3010, 9702, 15, 72, 73, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1261, 3006, 14387, 14, 51, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1262, 3006, 14388, 3, 51, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1263, 3006, 14389, 3, 51, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1265, 3010, 18467, 15, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1266, 3010, 18468, 15, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1267, 3010, 18469, 15, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1268, 3010, 19513, 15, 85, 89, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1269, 3010, 19514, 15, 85, 89, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (1270, 3010, 19515, 15, 85, 89, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2049, 3008, 704, 0, 12, 54, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2050, 3008, 1747, 0, 55, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2051, 3008, 1749, 4, 60, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2052, 3008, 743, 8, 38, 64, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2053, 3008, 3367, 8, 65, 69, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2054, 3008, 5385, 8, 70, 79, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2055, 3008, 14074, 8, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2056, 3008, 18059, 8, 85, 89, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2057, 3008, 26084, 8, 90, 94, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2058, 3008, 29182, 8, 95, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2059, 3008, 3566, 8, 50, 62, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2060, 3008, 3370, 8, 63, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2061, 3008, 5378, 8, 68, 77, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2062, 3008, 14071, 8, 78, 82, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2063, 3008, 18056, 8, 83, 87, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2064, 3008, 26033, 8, 88, 92, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2065, 3008, 29128, 8, 93, 127, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2066, 3008, 744, 8, 46, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2067, 3008, 3373, 8, 63, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2068, 3008, 5379, 8, 67, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2069, 3008, 14068, 8, 77, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2070, 3008, 18053, 8, 82, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2071, 3008, 26003, 8, 87, 91, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2072, 3008, 29101, 8, 92, 127, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2073, 3008, 3567, 8, 42, 60, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2074, 3008, 3363, 8, 61, 65, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2075, 3008, 5371, 8, 66, 75, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2076, 3008, 14065, 8, 76, 80, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2077, 3008, 18050, 8, 81, 85, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2078, 3008, 25976, 8, 86, 90, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2079, 3008, 29077, 8, 91, 127, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2080, 3008, 707, 8, 30, 59, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2081, 3008, 4210, 8, 60, 127, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2082, 3008, 738, 13, 6, 50, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2083, 3008, 1751, 13, 6, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2084, 3008, 1748, 13, 60, 63, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2085, 3008, 3066, 13, 64, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2086, 3008, 738, 13, 6, 63, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2087, 3008, 1751, 13, 6, 127, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2088, 3008, 738, 13, 6, 127, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2089, 3008, 3682, 15, 45, 85, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2090, 3008, 25958, 15, 86, 90, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2091, 3008, 29059, 15, 91, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2092, 3008, 3681, 15, 52, 127, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2093, 3008, 10448, 15, 74, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2094, 3008, 14029, 15, 79, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2095, 3008, 18023, 15, 84, 127, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2096, 3008, 1754, 17, 53, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2097, 3008, 10436, 4, 73, 127, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2098, 3008, 2606, 18, 52, 59, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2099, 3008, 2610, 18, 60, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2100, 3008, 700, 18, 1, 9, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2101, 3008, 701, 18, 10, 35, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2102, 3008, 740, 18, 36, 41, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2103, 3008, 702, 18, 42, 49, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2104, 3008, 747, 18, 50, 61, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2105, 3008, 3374, 18, 62, 64, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2106, 3008, 4871, 18, 65, 67, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2107, 3008, 5376, 18, 68, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2108, 3008, 14080, 18, 79, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2109, 3008, 18065, 18, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2110, 3008, 26042, 18, 89, 93, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2111, 3008, 29143, 18, 94, 127, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2112, 3008, 7, 18, 6, 19, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2113, 3008, 1287, 18, 20, 31, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2114, 3008, 723, 18, 32, 33, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2115, 3008, 1448, 18, 34, 54, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2116, 3008, 1759, 18, 55, 61, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2117, 3008, 3651, 18, 62, 66, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2118, 3008, 5377, 18, 67, 70, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2119, 3008, 10421, 18, 71, 75, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2120, 3008, 14008, 18, 76, 80, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2121, 3008, 18008, 18, 81, 87, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2122, 3008, 26015, 18, 88, 92, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2123, 3008, 29107, 18, 93, 127, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2124, 3008, 734, 18, 6, 8, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2125, 3008, 710, 18, 9, 12, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2126, 3008, 711, 18, 13, 16, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2127, 3008, 709, 18, 17, 40, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2128, 3008, 714, 18, 41, 46, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2129, 3008, 748, 18, 47, 57, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2130, 3008, 1763, 18, 58, 72, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2131, 3008, 11881, 18, 73, 77, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2132, 3008, 14056, 18, 78, 82, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2133, 3008, 18041, 18, 83, 87, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2134, 3008, 26027, 18, 88, 92, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2135, 3008, 29122, 18, 93, 127, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2136, 3008, 734, 18, 6, 24, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2137, 3008, 712, 18, 25, 28, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2138, 3008, 715, 18, 29, 32, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2139, 3008, 713, 18, 33, 36, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2140, 3008, 716, 18, 37, 44, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2141, 3008, 4083, 18, 45, 52, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2142, 3008, 4084, 18, 53, 63, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2143, 3008, 3362, 18, 64, 64, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2144, 3008, 4872, 18, 65, 68, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2145, 3008, 5382, 18, 69, 75, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2146, 3008, 14062, 18, 76, 80, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2147, 3008, 18047, 18, 81, 85, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2148, 3008, 25961, 18, 86, 90, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2149, 3008, 29062, 18, 91, 127, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2150, 3008, 734, 18, 6, 43, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2151, 3008, 4085, 18, 44, 51, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2152, 3008, 4086, 18, 52, 62, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2153, 3008, 4087, 18, 63, 68, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2154, 3008, 5374, 18, 69, 71, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2155, 3008, 10439, 18, 72, 76, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2156, 3008, 14020, 18, 77, 81, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2157, 3008, 18014, 18, 82, 86, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2158, 3008, 25991, 18, 87, 127, -1, -1, 6, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2159, 3008, 734, 18, 6, 82, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2160, 3008, 18020, 18, 83, 127, -1, -1, 7, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2161, 3008, 734, 18, 6, 127, -1, -1, 8, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2162, 3008, 2603, 18, 30, 127, -1, -1, 9, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2163, 3008, 7, 19, 6, 19, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2164, 3008, 1287, 19, 20, 31, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2165, 3008, 723, 19, 32, 33, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2166, 3008, 1448, 19, 34, 54, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2167, 3008, 1759, 19, 55, 61, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2168, 3008, 3651, 19, 62, 66, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2169, 3008, 5377, 19, 67, 70, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2170, 3008, 10421, 19, 71, 75, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2171, 3008, 14008, 19, 76, 80, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2172, 3008, 18008, 19, 81, 87, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2173, 3008, 26015, 19, 88, 92, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2174, 3008, 29107, 19, 93, 127, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2175, 3008, 717, 19, 6, 29, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2176, 3008, 2603, 19, 30, 127, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2177, 3008, 717, 19, 6, 48, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2178, 3008, 2605, 19, 49, 127, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2179, 3008, 2602, 19, 15, 127, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2180, 3006, 9957, 100, 20, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2181, 3006, 9956, 100, 20, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2182, 3006, 552, 100, 25, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2183, 3006, 550, 100, 25, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2184, 3006, 553, 100, 25, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2185, 3006, 2432, 100, 26, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2186, 3006, 2020, 100, 26, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2187, 3006, 551, 100, 27, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2188, 3006, 3792, 100, 28, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2189, 3006, 2419, 100, 29, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2190, 3006, 554, 100, 30, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2191, 3006, 557, 100, 31, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2192, 3006, 1434, 100, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2193, 3006, 555, 100, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2194, 3006, 25898, 100, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2195, 3006, 25904, 100, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2196, 3006, 556, 100, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2197, 3006, 25698, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2198, 3006, 1517, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2199, 3006, 2424, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2200, 3006, 25689, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2201, 3006, 25899, 100, 34, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2202, 3006, 25690, 100, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2203, 3006, 25903, 100, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2204, 3006, 25900, 100, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2205, 3006, 558, 100, 36, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2206, 3006, 2429, 100, 37, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2207, 3006, 1438, 100, 38, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2208, 3006, 3184, 100, 38, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2209, 3006, 25697, 100, 38, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2210, 3006, 25902, 100, 39, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2211, 3006, 25695, 100, 39, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2212, 3006, 25901, 100, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2213, 3006, 25694, 100, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2214, 3006, 1398, 100, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2215, 3006, 25905, 100, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2216, 3006, 25696, 100, 42, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2217, 3006, 1440, 100, 42, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2218, 3006, 25906, 100, 43, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2219, 3006, 25693, 100, 44, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2220, 3006, 25699, 100, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2221, 3006, 24773, 100, 46, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2222, 3006, 8965, 100, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2223, 3006, 24771, 100, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2224, 3006, 8235, 100, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2225, 3006, 24775, 100, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2226, 3006, 4966, 100, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2227, 3006, 6184, 100, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2228, 3006, 5731, 100, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2229, 3006, 24776, 100, 56, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2230, 3006, 25700, 100, 56, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2231, 3006, 25691, 100, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2232, 3006, 24772, 100, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2233, 3006, 25692, 100, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2234, 3006, 11981, 100, 59, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2235, 3006, 9953, 100, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2236, 3006, 9954, 100, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2237, 3006, 11980, 100, 64, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2238, 3006, 6179, 100, 64, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2239, 3006, 24774, 100, 67, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2240, 3006, 9950, 100, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2241, 3006, 9951, 100, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2242, 3006, 15886, 100, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2243, 3006, 15887, 100, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2244, 3006, 21989, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2245, 3006, 20539, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2246, 3006, 21984, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2247, 3006, 20538, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2248, 3006, 17883, 100, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2249, 3006, 17884, 100, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2250, 3006, 28997, 100, 90, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2251, 3006, 28998, 100, 90, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2252, 3006, 29000, 100, 92, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2253, 3006, 29001, 100, 92, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2254, 3006, 34832, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2255, 3006, 40217, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2256, 3006, 34833, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2257, 3006, 40216, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2258, 3012, 10881, 100, 20, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2259, 3012, 10880, 100, 20, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2260, 3012, 562, 100, 25, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2261, 3012, 563, 100, 27, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2262, 3012, 3793, 100, 27, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2263, 3012, 561, 100, 28, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2264, 3012, 2420, 100, 29, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2265, 3012, 2944, 100, 29, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2266, 3012, 564, 100, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2267, 3012, 565, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2268, 3012, 1418, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2269, 3012, 2425, 100, 33, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2270, 3012, 1516, 100, 34, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2271, 3012, 1338, 100, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2272, 3012, 3833, 100, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2273, 3012, 566, 100, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2274, 3012, 1336, 100, 36, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2275, 3012, 2943, 100, 36, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2276, 3012, 1423, 100, 36, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2277, 3012, 567, 100, 36, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2278, 3012, 568, 100, 37, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2279, 3012, 1337, 100, 37, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2280, 3012, 3180, 100, 38, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2281, 3012, 1339, 100, 38, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2282, 3012, 2421, 100, 39, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2283, 3012, 2430, 100, 39, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2284, 3012, 1372, 100, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2285, 3012, 2426, 100, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2286, 3012, 1371, 100, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2287, 3012, 1399, 100, 42, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2288, 3012, 1374, 100, 42, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2289, 3012, 1373, 100, 43, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2290, 3012, 1425, 100, 43, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2291, 3012, 1375, 100, 44, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2292, 3012, 3181, 100, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2293, 3012, 2022, 100, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2294, 3012, 666, 100, 46, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2295, 3012, 3849, 100, 46, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2296, 3012, 674, 100, 46, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2297, 3012, 2023, 100, 46, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2298, 3012, 2024, 100, 47, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2299, 3012, 2025, 100, 48, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2300, 3012, 2431, 100, 49, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2301, 3012, 8966, 100, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2302, 3012, 8236, 100, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2303, 3012, 4965, 100, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2304, 3012, 8969, 100, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2305, 3012, 8239, 100, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2306, 3012, 6183, 100, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2307, 3012, 5732, 100, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2308, 3012, 4964, 100, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2309, 3012, 6182, 100, 58, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2310, 3012, 5735, 100, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2311, 3012, 10877, 100, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2312, 3012, 10878, 100, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2313, 3012, 6178, 100, 64, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2314, 3012, 6177, 100, 67, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2315, 3012, 11984, 100, 69, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2316, 3012, 10874, 100, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2317, 3012, 10875, 100, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2318, 3012, 11983, 100, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2319, 3012, 15889, 100, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2320, 3012, 15890, 100, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2321, 3012, 21988, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2322, 3012, 20542, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2323, 3012, 21985, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2324, 3012, 20541, 100, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2325, 3012, 17886, 100, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2326, 3012, 17887, 100, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2327, 3012, 29840, 100, 90, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2328, 3012, 29841, 100, 90, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2329, 3012, 29843, 100, 92, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2330, 3012, 29844, 100, 92, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2331, 3012, 40443, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2332, 3012, 35715, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2333, 3012, 40442, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2334, 3012, 35714, 100, 95, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2335, 3002, 208, 101, 1, 4, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2336, 3002, 501, 101, 5, 14, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2337, 3002, 47, 101, 15, 35, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2338, 3002, 45, 101, 36, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2339, 3002, 1541, 101, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2340, 3002, 3197, 101, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2341, 3002, 5274, 101, 70, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2342, 3002, 9798, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2343, 3002, 9799, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2344, 3002, 9797, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2345, 3002, 14288, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2346, 3002, 14289, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2347, 3002, 14290, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2348, 3002, 18309, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2349, 3002, 18310, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2350, 3002, 18311, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2351, 3002, 25103, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2352, 3002, 25101, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2353, 3002, 25102, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2354, 3002, 28102, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2355, 3002, 28100, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2356, 3002, 28101, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2357, 3002, 34096, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2358, 3002, 34094, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2359, 3002, 34095, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2360, 3003, 208, 101, 10, 24, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2361, 3003, 501, 101, 25, 42, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2362, 3003, 47, 101, 43, 48, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2363, 3003, 45, 101, 49, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2364, 3003, 25294, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2365, 3003, 25295, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2366, 3003, 25296, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2367, 3003, 28340, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2368, 3003, 28338, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2369, 3003, 28339, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2370, 3003, 34346, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2371, 3003, 34344, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2372, 3003, 34345, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2373, 3004, 240, 101, 4, 30, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2374, 3004, 250, 101, 22, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2375, 3004, 513, 101, 31, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2376, 3004, 3601, 101, 39, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2377, 3004, 5316, 101, 68, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2378, 3004, 10112, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2379, 3004, 10110, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2380, 3004, 10111, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2381, 3004, 15037, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2382, 3004, 15035, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2383, 3004, 15036, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2384, 3004, 19168, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2385, 3004, 19169, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2386, 3004, 19167, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2387, 3004, 25417, 101, 86, 87, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2388, 3004, 25418, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2389, 3004, 25419, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2390, 3004, 25466, 101, 88, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2391, 3004, 25467, 101, 88, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2392, 3004, 25465, 101, 88, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2393, 3004, 28479, 101, 91, 92, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2394, 3004, 28480, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2395, 3004, 28481, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2396, 3004, 28542, 101, 93, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2397, 3004, 28543, 101, 93, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2398, 3004, 28544, 101, 93, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2399, 3004, 34500, 101, 96, 97, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2400, 3004, 34502, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2401, 3004, 34501, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2402, 3004, 34565, 101, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2403, 3004, 34563, 101, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2404, 3004, 34564, 101, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2405, 3005, 347, 101, 9, 51, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2406, 3005, 448, 101, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2407, 3006, 240, 101, 1, 14, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2408, 3006, 250, 101, 5, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2409, 3006, 513, 101, 15, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2410, 3006, 3601, 101, 29, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2411, 3006, 5347, 101, 67, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2412, 3006, 9851, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2413, 3006, 9852, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2414, 3006, 9853, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2415, 3006, 14369, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2416, 3006, 14367, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2417, 3006, 14368, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2418, 3006, 18409, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2419, 3006, 18407, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2420, 3006, 18408, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2421, 3006, 25736, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2422, 3006, 25734, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2423, 3006, 25735, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2424, 3006, 28831, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2425, 3006, 28832, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2426, 3006, 28830, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2427, 3006, 34863, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2428, 3006, 34864, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2429, 3006, 34862, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2430, 3008, 728, 101, 8, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2431, 3008, 3361, 101, 61, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2432, 3008, 5370, 101, 66, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2433, 3008, 10403, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2434, 3008, 10401, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2435, 3008, 10402, 101, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2436, 3008, 14002, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2437, 3008, 14000, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2438, 3008, 14001, 101, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2439, 3008, 18001, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2440, 3008, 18002, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2441, 3008, 18000, 101, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2442, 3008, 25978, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2443, 3008, 25979, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2444, 3008, 25977, 101, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2445, 3008, 29079, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2446, 3008, 29080, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2447, 3008, 29078, 101, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2448, 3008, 35131, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2449, 3008, 35132, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2450, 3008, 35133, 101, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2451, 3011, 347, 101, 2, 22, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2452, 3011, 448, 101, 23, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2453, 3014, 208, 101, 1, 5, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2454, 3014, 501, 101, 6, 17, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2455, 3014, 47, 101, 18, 34, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2456, 3014, 45, 101, 35, 61, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2457, 3014, 1541, 101, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2458, 3014, 3197, 101, 62, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2459, 3014, 5506, 101, 67, 71, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2460, 3014, 10601, 101, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2461, 3014, 10599, 101, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2462, 3014, 10600, 101, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2463, 3014, 14510, 101, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2464, 3014, 14511, 101, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2465, 3014, 14509, 101, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2466, 3014, 18568, 101, 82, 86, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2467, 3014, 18569, 101, 82, 86, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2468, 3014, 18567, 101, 82, 86, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2469, 3014, 26921, 101, 87, 91, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2470, 3014, 26922, 101, 87, 91, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2471, 3014, 26920, 101, 87, 91, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2472, 3014, 30054, 101, 92, 96, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2473, 3014, 30055, 101, 92, 96, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2474, 3014, 30056, 101, 92, 96, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2475, 3014, 36116, 101, 97, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2476, 3014, 36117, 101, 97, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2477, 3014, 36118, 101, 97, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2478, 3006, 2183, 102, 18, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2479, 3006, 1567, 102, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2480, 3012, 2184, 102, 18, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2481, 3012, 2558, 102, 56, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2482, 3012, 1628, 102, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2483, 3012, 3244, 102, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2484, 3002, 35, 103, 10, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2485, 3006, 35, 103, 12, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2486, 3010, 35, 103, 14, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2487, 3011, 35, 103, 12, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2488, 3012, 35, 103, 12, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2489, 3013, 35, 103, 12, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2490, 3014, 35, 103, 12, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2491, 3008, 737, 104, 14, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2492, 3011, 305, 104, 17, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2493, 3012, 305, 104, 14, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2494, 3013, 305, 104, 13, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2495, 3014, 305, 104, 15, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2496, 3004, 261, 105, 35, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2497, 3004, 2517, 105, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2498, 3006, 261, 105, 14, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2499, 3006, 2894, 105, 50, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2500, 3006, 2517, 105, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2501, 3006, 3185, 105, 62, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2502, 3008, 718, 105, 31, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2503, 3008, 1750, 105, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2504, 3010, 261, 105, 10, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2505, 3010, 2894, 105, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2506, 3011, 457, 105, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2507, 3011, 1391, 105, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2508, 3012, 261, 105, 22, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2509, 3012, 2894, 105, 50, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2510, 3014, 261, 105, 15, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2511, 3014, 2894, 105, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2512, 3015, 261, 105, 32, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2513, 3003, 1743, 106, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2514, 3008, 714, 106, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2515, 3008, 748, 106, 47, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2516, 3008, 1450, 106, 49, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2517, 3008, 1752, 106, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2518, 3008, 1763, 106, 58, 72, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2519, 3008, 11881, 106, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2520, 3008, 11879, 106, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2521, 3008, 11880, 106, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2522, 3008, 14055, 106, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2523, 3008, 14056, 106, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2524, 3008, 14054, 106, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2525, 3008, 18040, 106, 83, 87, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2526, 3008, 18041, 106, 83, 87, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2527, 3008, 18039, 106, 83, 87, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2528, 3008, 26026, 106, 88, 92, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2529, 3008, 26027, 106, 88, 92, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2530, 3008, 26025, 106, 88, 92, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2531, 3008, 29120, 106, 93, 97, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2532, 3008, 29121, 106, 93, 97, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2533, 3008, 29122, 106, 93, 97, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2534, 3008, 35170, 106, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2535, 3008, 35171, 106, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2536, 3008, 35172, 106, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2537, 3012, 2559, 106, 58, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2538, 3014, 481, 106, 13, 21, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2539, 3014, 21, 106, 19, 21, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2540, 3014, 482, 106, 22, 32, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2541, 3014, 483, 106, 33, 39, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2542, 3014, 648, 106, 38, 39, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2543, 3014, 484, 106, 40, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2544, 3014, 176, 106, 47, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2545, 3014, 1689, 106, 52, 57, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2546, 3014, 1713, 106, 58, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2547, 3014, 3343, 106, 61, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2548, 3014, 6739, 106, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2549, 3014, 3351, 106, 63, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2550, 3014, 5504, 106, 67, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2551, 3014, 5514, 106, 69, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2552, 3014, 6671, 106, 69, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2553, 3014, 10598, 106, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2554, 3014, 10596, 106, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2555, 3014, 10597, 106, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2556, 3014, 10643, 106, 74, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2557, 3014, 10641, 106, 74, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2558, 3014, 10642, 106, 74, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2559, 3014, 11887, 106, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2560, 3014, 11885, 106, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2561, 3014, 11886, 106, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2562, 3014, 14507, 106, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2563, 3014, 14508, 106, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2564, 3014, 14506, 106, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2565, 3014, 14543, 106, 79, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2566, 3014, 14544, 106, 79, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2567, 3014, 14542, 106, 79, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2568, 3014, 14582, 106, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2569, 3014, 14583, 106, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2570, 3014, 14581, 106, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2571, 3014, 18564, 106, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2572, 3014, 18565, 106, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2573, 3014, 18566, 106, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2574, 3014, 18600, 106, 84, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2575, 3014, 18601, 106, 84, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2576, 3014, 18602, 106, 84, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2577, 3014, 18641, 106, 84, 88, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2578, 3014, 18639, 106, 84, 88, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2579, 3014, 18640, 106, 84, 88, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2580, 3014, 26901, 106, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2581, 3014, 26899, 106, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2582, 3014, 26900, 106, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2583, 3014, 26999, 106, 89, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2584, 3014, 26997, 106, 89, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2585, 3014, 26998, 106, 89, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2586, 3014, 27025, 106, 89, 93, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2587, 3014, 27026, 106, 89, 93, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2588, 3014, 27024, 106, 89, 93, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2589, 3014, 30028, 106, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2590, 3014, 30029, 106, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2591, 3014, 30027, 106, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2592, 3014, 30132, 106, 93, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2593, 3014, 30133, 106, 93, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2594, 3014, 30131, 106, 93, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2595, 3014, 30140, 106, 94, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2596, 3014, 30141, 106, 94, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2597, 3014, 30142, 106, 94, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2598, 3014, 30167, 106, 94, 98, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2599, 3014, 30168, 106, 94, 98, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2600, 3014, 30169, 106, 94, 98, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2601, 3014, 36091, 106, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2602, 3014, 36089, 106, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2603, 3014, 36090, 106, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2604, 3014, 36189, 106, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2605, 3014, 36187, 106, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2606, 3014, 36188, 106, 98, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2607, 3014, 36216, 106, 99, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2608, 3014, 36196, 106, 99, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2609, 3014, 36217, 106, 99, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2610, 3014, 36194, 106, 99, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2611, 3014, 36215, 106, 99, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2612, 3014, 36195, 106, 99, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2613, 3004, 86, 107, 20, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2614, 3006, 86, 107, 6, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2615, 3006, 2881, 107, 50, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2616, 3008, 729, 107, 16, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2617, 3010, 86, 107, 12, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2618, 3010, 2881, 107, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2619, 3011, 457, 107, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2620, 3011, 1391, 107, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2621, 3014, 86, 107, 12, 43, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2622, 3014, 3696, 107, 44, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2623, 3014, 2881, 107, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2624, 3015, 86, 107, 25, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2625, 3010, 345, 108, 15, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2626, 3010, 2522, 108, 16, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2627, 3015, 345, 108, 23, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2628, 3002, 235, 109, 11, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2629, 3002, 1726, 109, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2630, 3002, 6125, 109, 66, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2631, 3002, 14348, 109, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2632, 3002, 14346, 109, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2633, 3002, 14347, 109, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2634, 3002, 18369, 109, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2635, 3002, 18367, 109, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2636, 3002, 18368, 109, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2637, 3003, 235, 109, 17, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2638, 3004, 247, 109, 14, 46, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2639, 3004, 80, 109, 32, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2640, 3004, 34, 109, 47, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2641, 3004, 2517, 109, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2642, 3005, 235, 109, 4, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2643, 3006, 247, 109, 4, 17, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2644, 3006, 255, 109, 8, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2645, 3006, 80, 109, 13, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2646, 3006, 34, 109, 18, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2647, 3006, 2516, 109, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2648, 3006, 4058, 109, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2649, 3006, 2517, 109, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2650, 3006, 3185, 109, 62, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2651, 3006, 6123, 109, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2652, 3008, 719, 109, 19, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2653, 3008, 735, 109, 24, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2654, 3008, 1750, 109, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2655, 3010, 79, 109, 7, 55, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2656, 3010, 255, 109, 10, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2657, 3010, 42, 109, 27, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2658, 3010, 1575, 109, 56, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2659, 3010, 2886, 109, 58, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2660, 3011, 235, 109, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2661, 3011, 457, 109, 41, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2662, 3011, 1391, 109, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2663, 3011, 6124, 109, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2664, 3012, 80, 109, 4, 39, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2665, 3012, 42, 109, 16, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2666, 3012, 3811, 109, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2667, 3012, 6120, 109, 67, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2668, 3012, 15513, 109, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2669, 3012, 15511, 109, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2670, 3012, 15512, 109, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2671, 3012, 19701, 109, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2672, 3012, 19699, 109, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2673, 3012, 19700, 109, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2674, 3013, 42, 109, 8, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2675, 3013, 80, 109, 16, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2676, 3014, 42, 109, 4, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2677, 3014, 80, 109, 6, 43, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2678, 3014, 235, 109, 14, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2679, 3014, 3696, 109, 44, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2680, 3014, 6122, 109, 66, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2681, 3015, 79, 109, 29, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2682, 3015, 42, 109, 43, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2683, 3015, 1575, 109, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2684, 3004, 278, 110, 28, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2685, 3004, 4054, 110, 41, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2686, 3004, 4055, 110, 49, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2687, 3004, 2517, 110, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2688, 3006, 278, 110, 10, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2689, 3006, 424, 110, 26, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2690, 3006, 4054, 110, 30, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2691, 3006, 169, 110, 35, 61, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2692, 3006, 4055, 110, 35, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2693, 3006, 3579, 110, 45, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2694, 3006, 4058, 110, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2695, 3006, 1554, 110, 53, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2696, 3006, 2517, 110, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2697, 3006, 3185, 110, 62, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2698, 3008, 717, 110, 6, 48, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2699, 3008, 4395, 110, 25, 48, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2700, 3008, 2605, 110, 49, 50, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2701, 3008, 1750, 110, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2702, 3010, 278, 110, 9, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2703, 3010, 424, 110, 22, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2704, 3010, 4054, 110, 29, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2705, 3010, 4055, 110, 34, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2706, 3010, 2524, 110, 36, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2707, 3010, 1554, 110, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2708, 3015, 278, 110, 24, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2709, 3015, 4054, 110, 39, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2710, 3015, 4055, 110, 44, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2711, 3012, 1422, 111, 50, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2712, 3012, 1334, 111, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2713, 3005, 2213, 112, 12, 34, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2714, 3005, 3, 112, 35, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2715, 3005, 1773, 112, 57, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2716, 3005, 10042, 112, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2717, 3005, 14823, 112, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2718, 3005, 18928, 112, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2719, 3005, 25555, 112, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2720, 3005, 28632, 112, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2721, 3005, 34662, 112, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2722, 3011, 2213, 112, 12, 34, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2723, 3011, 3, 112, 35, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2724, 3011, 1773, 112, 57, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2725, 3011, 10042, 112, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2726, 3011, 14823, 112, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2727, 3011, 18928, 112, 81, 85, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2728, 3011, 25555, 112, 86, 90, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2729, 3011, 28632, 112, 91, 95, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2730, 3011, 34662, 112, 96, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2731, 3003, 10173, 24, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2732, 3003, 10174, 24, 72, 76, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2733, 3003, 10175, 24, 72, 76, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2734, 3003, 14954, 24, 77, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2735, 3003, 14955, 10, 57, 81, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2736, 3003, 14956, 10, 57, 81, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2737, 3003, 19068, 24, 82, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2738, 3003, 19069, 24, 82, 86, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2739, 3003, 19070, 24, 82, 86, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2740, 3003, 25297, 24, 87, 91, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2741, 3003, 25298, 24, 87, 91, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2742, 3003, 25299, 24, 87, 91, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2743, 3003, 28347, 24, 92, 96, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2744, 3003, 28348, 24, 92, 96, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2745, 3003, 28349, 24, 92, 96, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2746, 3003, 34350, 24, 97, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2747, 3003, 34351, 24, 97, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2748, 3003, 34352, 24, 97, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2749, 3003, 40078, 24, 98, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2750, 3003, 40079, 24, 98, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2751, 3003, 40080, 24, 98, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2752, 3005, 1221, 24, 33, 41, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2753, 3005, 1222, 24, 42, 52, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2754, 3005, 1223, 24, 53, 58, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2755, 3005, 1224, 24, 59, 62, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2756, 3005, 3405, 24, 63, 66, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2757, 3005, 5329, 24, 67, 70, -1, -1, 5, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2758, 3005, 5336, 24, 69, 73, -1, -1, 4, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2759, 3005, 10257, 24, 71, 71, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2760, 3005, 10258, 24, 71, 71, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2761, 3005, 10259, 24, 71, 71, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2762, 3005, 10260, 24, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2763, 3005, 10261, 24, 72, 76, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2764, 3005, 10262, 24, 72, 76, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2765, 3005, 10291, 24, 74, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2766, 3005, 10292, 24, 74, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2767, 3005, 10293, 24, 74, 78, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2768, 3005, 15160, 24, 76, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2769, 3005, 15161, 24, 76, 76, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2770, 3005, 15162, 24, 76, 76, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2771, 3005, 15163, 24, 77, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2772, 3005, 15164, 24, 77, 81, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2773, 3005, 15165, 24, 77, 81, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2774, 3005, 15184, 24, 79, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2775, 3005, 15185, 24, 79, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2776, 3005, 15186, 10, 35, 83, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2777, 3005, 19313, 24, 81, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2778, 3005, 19314, 24, 81, 81, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2779, 3005, 19315, 24, 81, 81, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2780, 3005, 19316, 24, 82, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2781, 3005, 19317, 24, 82, 86, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2782, 3005, 19318, 24, 82, 86, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2783, 3005, 19337, 24, 84, 88, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2784, 3005, 19338, 24, 84, 88, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2785, 3005, 19339, 24, 84, 88, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2786, 3005, 25580, 24, 86, 86, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2787, 3005, 25581, 24, 86, 86, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2788, 3005, 25582, 24, 86, 86, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2789, 3005, 25586, 24, 87, 91, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2790, 3005, 25587, 24, 87, 91, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2791, 3005, 25588, 24, 87, 91, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2792, 3005, 25641, 24, 89, 93, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2793, 3005, 25642, 24, 89, 93, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2794, 3005, 25643, 24, 89, 93, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2795, 3005, 28657, 24, 91, 91, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2796, 3005, 28658, 24, 91, 91, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2797, 3005, 28659, 24, 91, 91, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2798, 3005, 28663, 24, 92, 96, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2799, 3005, 28664, 24, 92, 96, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2800, 3005, 28665, 24, 92, 96, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2801, 3005, 28733, 24, 94, 98, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2802, 3005, 28734, 24, 94, 98, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2803, 3005, 28735, 24, 94, 98, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2804, 3005, 34687, 24, 96, 96, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2805, 3005, 34688, 24, 96, 96, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2806, 3005, 34689, 24, 96, 96, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2807, 3005, 34693, 24, 97, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2808, 3005, 34694, 24, 97, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2809, 3005, 34695, 24, 97, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2810, 3005, 34751, 24, 99, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2811, 3005, 34752, 24, 99, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2812, 3005, 34753, 24, 99, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2813, 3001, 5225, 200, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2814, 3001, 25060, 200, 5, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2815, 3001, 4721, 200, 10, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2816, 3001, 4608, 200, 20, 51, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2817, 3001, 4585, 200, 30, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2818, 3001, 4587, 200, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2819, 3001, 4681, 200, 52, 55, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2820, 3001, 4503, 200, 52, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2821, 3001, 4672, 200, 53, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2822, 3001, 4514, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2823, 3001, 4499, 200, 55, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2824, 3001, 8921, 200, 55, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2825, 3001, 4682, 200, 56, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2826, 3001, 4674, 200, 56, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2827, 3001, 4501, 200, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2828, 3001, 4675, 200, 58, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2829, 3001, 4670, 200, 59, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2830, 3001, 4498, 200, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2831, 3001, 6750, 200, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2832, 3001, 4689, 200, 61, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2833, 3001, 4697, 200, 63, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2834, 3001, 4687, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2835, 3001, 4688, 200, 65, 71, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2836, 3001, 5015, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2837, 3001, 5016, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2838, 3001, 6191, 200, 66, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2839, 3001, 6192, 200, 68, 73, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2840, 3001, 8000, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2841, 3001, 6725, 200, 69, 73, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2842, 3001, 6173, 200, 69, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2843, 3001, 8467, 200, 70, 74, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2844, 3001, 8468, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2845, 3001, 6190, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2846, 3001, 10959, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2847, 3001, 10960, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2848, 3001, 10961, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2849, 3001, 11913, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2850, 3001, 11914, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2851, 3001, 11915, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2852, 3001, 10965, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2853, 3001, 10966, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2854, 3001, 10967, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2855, 3001, 10970, 200, 73, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2856, 3001, 10968, 200, 73, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2857, 3001, 10969, 200, 73, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2858, 3001, 10971, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2859, 3001, 10972, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2860, 3001, 10973, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2861, 3001, 11917, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2862, 3001, 11918, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2863, 3001, 11916, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2864, 3001, 10974, 200, 75, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2865, 3001, 10975, 200, 75, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2866, 3001, 10976, 200, 75, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2867, 3001, 15345, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2868, 3001, 15346, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2869, 3001, 15347, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2870, 3001, 14192, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2871, 3001, 14193, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2872, 3001, 14194, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2873, 3001, 15369, 200, 77, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2874, 3001, 15370, 200, 77, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2875, 3001, 15371, 200, 77, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2876, 3001, 15375, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2877, 3001, 15376, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2878, 3001, 15377, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2879, 3001, 15359, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2880, 3001, 15357, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2881, 3001, 15358, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2882, 3001, 15379, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2883, 3001, 15360, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2884, 3001, 15380, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2885, 3001, 15361, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2886, 3001, 15362, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2887, 3001, 15378, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2888, 3001, 19537, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2889, 3001, 19538, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2890, 3001, 19516, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2891, 3001, 19539, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2892, 3001, 19517, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2893, 3001, 19518, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2894, 3001, 18213, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2895, 3001, 18214, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2896, 3001, 18215, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2897, 3001, 19555, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2898, 3001, 19556, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2899, 3001, 19557, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2900, 3001, 19914, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2901, 3001, 19915, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2902, 3001, 19916, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2903, 3001, 19553, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2904, 3001, 19554, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2905, 3001, 19528, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2906, 3001, 19529, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2907, 3001, 19552, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2908, 3001, 19530, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2909, 3001, 22556, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2910, 3001, 19531, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2911, 3001, 22557, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2912, 3001, 19532, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2913, 3001, 22558, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2914, 3001, 19533, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2915, 3001, 19549, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2916, 3001, 19550, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2917, 3001, 19917, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2918, 3001, 19551, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2919, 3001, 19918, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2920, 3001, 19919, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2921, 3002, 33000, 200, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2922, 3003, 4585, 200, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2923, 3003, 4587, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2924, 3003, 4500, 200, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2925, 3003, 7004, 200, 56, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2926, 3003, 4590, 200, 59, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2927, 3003, 4518, 200, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2928, 3003, 6731, 200, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2929, 3003, 6663, 200, 69, 72, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2930, 3003, 11854, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2931, 3003, 11855, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2932, 3003, 11856, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2933, 3003, 14987, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2934, 3003, 14988, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2935, 3003, 14989, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2936, 3003, 19103, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2937, 3003, 19131, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2938, 3003, 19132, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2939, 3003, 19133, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2940, 3003, 22665, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2941, 3003, 22666, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2942, 3003, 22667, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2943, 3003, 19101, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2944, 3003, 19102, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2945, 3004, 33000, 200, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2946, 3004, 4585, 200, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2947, 3004, 4587, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2948, 3004, 4506, 200, 55, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2949, 3004, 4519, 200, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2950, 3004, 8019, 200, 69, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2951, 3004, 10086, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2952, 3004, 10087, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2953, 3004, 10088, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2954, 3004, 15020, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2955, 3004, 15021, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2956, 3004, 15022, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2957, 3004, 15091, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2958, 3004, 15092, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2959, 3004, 15093, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2960, 3004, 19153, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2961, 3004, 19154, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2962, 3004, 19152, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2963, 3004, 19223, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2964, 3004, 19224, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2965, 3004, 19225, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2966, 3005, 4585, 200, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2967, 3005, 4587, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2968, 3005, 4520, 200, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2969, 3005, 7005, 200, 56, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2970, 3005, 4590, 200, 59, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2971, 3005, 4504, 200, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2972, 3005, 6741, 200, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2973, 3005, 6673, 200, 69, 72, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2974, 3005, 11866, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2975, 3005, 11867, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2976, 3005, 11868, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2977, 3005, 10306, 200, 75, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2978, 3005, 10307, 200, 75, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2979, 3005, 10308, 200, 75, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2980, 3005, 15223, 200, 78, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2981, 3005, 15224, 200, 78, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2982, 3005, 15225, 200, 78, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2983, 3005, 15211, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2984, 3005, 15212, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2985, 3005, 15213, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2986, 3005, 15191, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2987, 3005, 15192, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2988, 3005, 15190, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2989, 3005, 19364, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2990, 3005, 19365, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2991, 3005, 19366, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2992, 3005, 22662, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2993, 3005, 22663, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2994, 3005, 19131, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2995, 3005, 22664, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2996, 3005, 19132, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2997, 3005, 19133, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2998, 3005, 19343, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (2999, 3005, 19344, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3000, 3005, 19345, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3001, 3007, 5225, 200, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3002, 3007, 25060, 200, 5, 60, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3003, 3007, 4721, 200, 10, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3004, 3007, 4585, 200, 30, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3005, 3007, 4614, 200, 35, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3006, 3007, 4587, 200, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3007, 3007, 4683, 200, 50, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3008, 3007, 4510, 200, 51, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3009, 3007, 4511, 200, 52, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3010, 3007, 4509, 200, 53, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3011, 3007, 4502, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3012, 3007, 8923, 200, 55, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3013, 3007, 4512, 200, 56, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3014, 3007, 4684, 200, 57, 63, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3015, 3007, 4513, 200, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3016, 3007, 4507, 200, 59, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3017, 3007, 4508, 200, 60, 73, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3018, 3007, 4692, 200, 61, 65, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3019, 3007, 6752, 200, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3020, 3007, 4687, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3021, 3007, 4691, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3022, 3007, 4698, 200, 64, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3023, 3007, 4690, 200, 65, 71, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3024, 3007, 5019, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3025, 3007, 5020, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3026, 3007, 6193, 200, 66, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3027, 3007, 6195, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3028, 3007, 8002, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3029, 3007, 6175, 200, 69, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3030, 3007, 6727, 200, 69, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3031, 3007, 6194, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3032, 3007, 8473, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3033, 3007, 8474, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3034, 3007, 10947, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3035, 3007, 10948, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3036, 3007, 10949, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3037, 3007, 11913, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3038, 3007, 11914, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3039, 3007, 11915, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3040, 3007, 10938, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3041, 3007, 10939, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3042, 3007, 10940, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3043, 3007, 10933, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3044, 3007, 10934, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3045, 3007, 10932, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3046, 3007, 10944, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3047, 3007, 10945, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3048, 3007, 10946, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3049, 3007, 11922, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3050, 3007, 11923, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3051, 3007, 11924, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3052, 3007, 10950, 200, 75, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3053, 3007, 10951, 200, 75, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3054, 3007, 10952, 200, 75, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3055, 3007, 14799, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3056, 3007, 14800, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3057, 3007, 14801, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3058, 3007, 14194, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3059, 3007, 14811, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3060, 3007, 14812, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3061, 3007, 14813, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3062, 3007, 14192, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3063, 3007, 14193, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3064, 3007, 14784, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3065, 3007, 14785, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3066, 3007, 14786, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3067, 3007, 14796, 200, 79, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3068, 3007, 14797, 200, 79, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3069, 3007, 14798, 200, 79, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3070, 3007, 14822, 200, 79, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3071, 3007, 14820, 200, 79, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3072, 3007, 14821, 200, 79, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3073, 3007, 14814, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3074, 3007, 14815, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3075, 3007, 14816, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3076, 3007, 14802, 200, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3077, 3007, 14803, 200, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3078, 3007, 14804, 200, 80, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3079, 3007, 18895, 200, 81, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3080, 3007, 18896, 200, 81, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3081, 3007, 18897, 200, 81, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3082, 3007, 18904, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3083, 3007, 18905, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3084, 3007, 18906, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3085, 3007, 18918, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3086, 3007, 18213, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3087, 3007, 18214, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3088, 3007, 18215, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3089, 3007, 18916, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3090, 3007, 18917, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3091, 3007, 18889, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3092, 3007, 18890, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3093, 3007, 18891, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3094, 3007, 19826, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3095, 3007, 19827, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3096, 3007, 19828, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3097, 3007, 18902, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3098, 3007, 18903, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3099, 3007, 19552, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3100, 3007, 19553, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3101, 3007, 19554, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3102, 3007, 18901, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3103, 3007, 19830, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3104, 3007, 18919, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3105, 3007, 19831, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3106, 3007, 18920, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3107, 3007, 22525, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3108, 3007, 18921, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3109, 3007, 22526, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3110, 3007, 22527, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3111, 3007, 18907, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3112, 3007, 18908, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3113, 3007, 18909, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3114, 3007, 19829, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3115, 3008, 4585, 200, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3116, 3008, 4587, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3117, 3008, 4516, 200, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3118, 3008, 4586, 200, 60, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3119, 3008, 8030, 200, 69, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3120, 3009, 5225, 200, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3121, 3009, 25060, 200, 5, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3122, 3009, 4721, 200, 10, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3123, 3009, 4659, 200, 20, 51, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3124, 3009, 4585, 200, 30, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3125, 3009, 4587, 200, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3126, 3009, 4685, 200, 52, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3127, 3009, 4673, 200, 53, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3128, 3009, 4505, 200, 54, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3129, 3009, 8922, 200, 55, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3130, 3009, 4515, 200, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3131, 3009, 4517, 200, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3132, 3009, 4677, 200, 58, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3133, 3009, 4676, 200, 59, 74, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3134, 3009, 6751, 200, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3135, 3009, 4696, 200, 61, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3136, 3009, 4686, 200, 63, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3137, 3009, 4687, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3138, 3009, 4694, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3139, 3009, 5017, 200, 65, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3140, 3009, 5018, 200, 65, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3141, 3009, 4695, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3142, 3009, 6198, 200, 66, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3143, 3009, 8001, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3144, 3009, 6196, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3145, 3009, 6174, 200, 69, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3146, 3009, 6726, 200, 69, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3147, 3009, 8470, 200, 70, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3148, 3009, 6197, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3149, 3009, 8471, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3150, 3009, 10883, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3151, 3009, 10884, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3152, 3009, 10885, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3153, 3009, 11913, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3154, 3009, 11914, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3155, 3009, 11915, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3156, 3009, 10889, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3157, 3009, 10890, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3158, 3009, 10891, 200, 72, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3159, 3009, 10892, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3160, 3009, 10893, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3161, 3009, 10894, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3162, 3009, 11925, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3163, 3009, 11926, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3164, 3009, 11927, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3165, 3009, 10895, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3166, 3009, 10896, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3167, 3009, 10897, 200, 74, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3168, 3009, 10899, 200, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3169, 3009, 10900, 200, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3170, 3009, 10898, 200, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3171, 3009, 15097, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3172, 3009, 15120, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3173, 3009, 15098, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3174, 3009, 15099, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3175, 3009, 15118, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3176, 3009, 15119, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3177, 3009, 15121, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3178, 3009, 15122, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3179, 3009, 15123, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3180, 3009, 14192, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3181, 3009, 14193, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3182, 3009, 14194, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3183, 3009, 15103, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3184, 3009, 15104, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3185, 3009, 15105, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3186, 3009, 15115, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3187, 3009, 15116, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3188, 3009, 15117, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3189, 3009, 15127, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3190, 3009, 15128, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3191, 3009, 15129, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3192, 3009, 15133, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3193, 3009, 15134, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3194, 3009, 15135, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3195, 3009, 19244, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3196, 3009, 19245, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3197, 3009, 19265, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3198, 3009, 19246, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3199, 3009, 19266, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3200, 3009, 19267, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3201, 3009, 18213, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3202, 3009, 18214, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3203, 3009, 18215, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3204, 3009, 19268, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3205, 3009, 19269, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3206, 3009, 19270, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3207, 3009, 19873, 200, 83, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3208, 3009, 19871, 200, 83, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3209, 3009, 19872, 200, 83, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3210, 3009, 19252, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3211, 3009, 19247, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3212, 3009, 19248, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3213, 3009, 19249, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3214, 3009, 19250, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3215, 3009, 19251, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3216, 3009, 19262, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3217, 3009, 19263, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3218, 3009, 19264, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3219, 3009, 19283, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3220, 3009, 19284, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3221, 3009, 19285, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3222, 3009, 19275, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3223, 3009, 19874, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3224, 3009, 19276, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3225, 3009, 19875, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3226, 3009, 19280, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3227, 3009, 19876, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3228, 3009, 19281, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3229, 3009, 22540, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3230, 3009, 19282, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3231, 3009, 22541, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3232, 3009, 22542, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3233, 3009, 19274, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3234, 3015, 4585, 200, 51, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3235, 3015, 4587, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3236, 3015, 4671, 200, 55, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3237, 3015, 4678, 200, 60, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3238, 3015, 8233, 200, 69, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3239, 3015, 8782, 200, 70, 79, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3240, 3015, 14158, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3241, 3015, 14159, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3242, 3015, 14160, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3243, 3015, 18170, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3244, 3015, 18171, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3245, 3015, 18172, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3246, 3016, 5225, 200, 1, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3247, 3016, 4937, 200, 1, 4, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3248, 3016, 4938, 200, 5, 9, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3249, 3016, 25060, 200, 5, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3250, 3016, 4928, 200, 8, 31, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3251, 3016, 4939, 200, 10, 14, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3252, 3016, 4721, 200, 10, 62, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3253, 3016, 4940, 200, 15, 19, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3254, 3016, 4931, 200, 16, 39, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3255, 3016, 4941, 200, 20, 24, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3256, 3016, 4934, 200, 24, 47, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3257, 3016, 4942, 200, 25, 29, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3258, 3016, 4943, 200, 30, 34, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3259, 3016, 5027, 200, 30, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3260, 3016, 4585, 200, 30, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3261, 3016, 4929, 200, 32, 53, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3262, 3016, 4944, 200, 35, 39, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3263, 3016, 4945, 200, 40, 44, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3264, 3016, 4932, 200, 40, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3265, 3016, 4587, 200, 40, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3266, 3016, 4946, 200, 45, 49, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3267, 3016, 4935, 200, 48, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3268, 3016, 4947, 200, 50, 54, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3269, 3016, 5028, 200, 50, 56, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3270, 3016, 5039, 200, 53, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3271, 3016, 4930, 200, 54, 66, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3272, 3016, 5037, 200, 54, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3273, 3016, 4948, 200, 55, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3274, 3016, 8924, 200, 55, 69, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3275, 3016, 5040, 200, 56, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3276, 3016, 5029, 200, 57, 63, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3277, 3016, 5035, 200, 57, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3278, 3016, 5041, 200, 58, 59, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3279, 3016, 5038, 200, 59, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3280, 3016, 4949, 200, 60, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3281, 3016, 4933, 200, 60, 67, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3282, 3016, 5034, 200, 60, 74, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3283, 3016, 6754, 200, 61, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3284, 3016, 5044, 200, 61, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3285, 3016, 4687, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3286, 3016, 5042, 200, 63, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3287, 3016, 5030, 200, 64, 64, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3288, 3016, 4950, 200, 65, 65, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3289, 3016, 5107, 200, 65, 65, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3290, 3016, 4936, 200, 65, 68, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3291, 3016, 5043, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3292, 3016, 5031, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3293, 3016, 5032, 200, 65, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3294, 3016, 6172, 200, 66, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3295, 3016, 6200, 200, 66, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3296, 3016, 6169, 200, 67, 70, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3297, 3016, 6170, 200, 68, 72, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3298, 3016, 6201, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3299, 3016, 8003, 200, 68, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3300, 3016, 6171, 200, 69, 73, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3301, 3016, 6729, 200, 69, 73, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3302, 3016, 8476, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3303, 3016, 8477, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3304, 3016, 6199, 200, 70, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3305, 3016, 10907, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3306, 3016, 10908, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3307, 3016, 10909, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3308, 3016, 10910, 200, 71, 75, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3309, 3016, 11915, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3310, 3016, 10914, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3311, 3016, 10915, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3312, 3016, 11913, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3313, 3016, 10916, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3314, 3016, 11914, 200, 72, 76, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3315, 3016, 10918, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3316, 3016, 10919, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3317, 3016, 10917, 200, 73, 77, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3318, 3016, 11928, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3319, 3016, 11929, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3320, 3016, 10920, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3321, 3016, 11930, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3322, 3016, 10921, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3323, 3016, 10922, 200, 74, 78, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3324, 3016, 10923, 200, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3325, 3016, 10924, 200, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3326, 3016, 10925, 200, 75, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3327, 3016, 14176, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3328, 3016, 14177, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3329, 3016, 14178, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3330, 3016, 14179, 200, 76, 80, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3331, 3016, 14192, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3332, 3016, 14193, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3333, 3016, 14180, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3334, 3016, 14194, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3335, 3016, 14181, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3336, 3016, 14182, 200, 77, 81, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3337, 3016, 14183, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3338, 3016, 14184, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3339, 3016, 14185, 200, 78, 82, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3340, 3016, 14197, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3341, 3016, 14186, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3342, 3016, 14187, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3343, 3016, 14188, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3344, 3016, 14195, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3345, 3016, 14196, 200, 79, 83, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3346, 3016, 14198, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3347, 3016, 14199, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3348, 3016, 14200, 200, 80, 84, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3349, 3016, 18200, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3350, 3016, 16918, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3351, 3016, 16919, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3352, 3016, 16920, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3353, 3016, 18197, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3354, 3016, 18198, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3355, 3016, 18199, 200, 81, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3356, 3016, 18201, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3357, 3016, 18202, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3358, 3016, 18213, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3359, 3016, 18203, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3360, 3016, 18214, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3361, 3016, 18215, 200, 82, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3362, 3016, 18211, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3363, 3016, 18212, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3364, 3016, 19753, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3365, 3016, 18204, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3366, 3016, 19754, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3367, 3016, 18205, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3368, 3016, 19755, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3369, 3016, 18206, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3370, 3016, 18210, 200, 83, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3371, 3016, 18216, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3372, 3016, 18217, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3373, 3016, 18207, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3374, 3016, 18218, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3375, 3016, 18208, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3376, 3016, 18209, 200, 84, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3377, 3016, 19741, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3378, 3016, 19742, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3379, 3016, 19743, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3380, 3016, 22506, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3381, 3016, 22507, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3382, 3016, 18219, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3383, 3016, 22508, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3384, 3016, 18220, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3385, 3016, 18221, 200, 85, 254, -1, -1, 0, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3386, 3001, 4672, 201, 53, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3387, 3001, 4514, 201, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3388, 3001, 4501, 201, 57, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3389, 3001, 4675, 201, 58, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3390, 3001, 4498, 201, 60, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3391, 3001, 6750, 201, 61, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3392, 3001, 6192, 201, 68, 73, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3393, 3001, 6725, 201, 69, 73, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3394, 3001, 10970, 201, 73, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3395, 3001, 10968, 201, 73, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3396, 3001, 10969, 201, 73, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3397, 3001, 10971, 201, 74, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3398, 3001, 10972, 201, 74, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3399, 3001, 10973, 201, 74, 78, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3400, 3001, 11917, 201, 74, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3401, 3001, 11918, 201, 74, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3402, 3001, 11916, 201, 74, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3403, 3001, 15369, 201, 77, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3404, 3001, 15370, 201, 77, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3405, 3001, 15371, 201, 77, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3406, 3001, 15375, 201, 78, 82, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3407, 3001, 15376, 201, 78, 82, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3408, 3001, 15377, 201, 78, 82, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3409, 3001, 15359, 201, 79, 83, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3410, 3001, 15357, 201, 79, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3411, 3001, 15358, 201, 79, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3412, 3001, 15379, 201, 80, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3413, 3001, 15380, 201, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3414, 3001, 15378, 201, 80, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3415, 3001, 19555, 201, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3416, 3001, 19556, 201, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3417, 3001, 19557, 201, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3418, 3001, 19553, 201, 84, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3419, 3001, 19554, 201, 84, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3420, 3001, 19528, 201, 84, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3421, 3001, 19529, 201, 84, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3422, 3001, 19552, 201, 84, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3423, 3001, 19530, 201, 84, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3424, 3001, 19549, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3425, 3001, 19550, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3426, 3001, 19551, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3427, 3003, 4500, 201, 55, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3428, 3003, 4590, 201, 59, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3429, 3004, 4506, 201, 55, 79, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3430, 3004, 8019, 201, 69, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3431, 3004, 10086, 201, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3432, 3004, 10087, 201, 72, 76, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3433, 3004, 10088, 201, 72, 76, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3434, 3004, 15020, 201, 77, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3435, 3004, 15021, 201, 77, 81, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3436, 3004, 15022, 201, 77, 81, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3437, 3004, 15091, 201, 80, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3438, 3004, 15092, 201, 80, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3439, 3004, 15093, 201, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3440, 3004, 19153, 201, 82, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3441, 3004, 19154, 201, 82, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3442, 3004, 19152, 201, 82, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3443, 3004, 19223, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3444, 3004, 19224, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3445, 3004, 19225, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3446, 3005, 4520, 201, 55, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3447, 3005, 4590, 201, 59, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3448, 3007, 4511, 201, 52, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3449, 3007, 4512, 201, 56, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3450, 3007, 4513, 201, 57, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3451, 3007, 4507, 201, 59, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3452, 3007, 4508, 201, 60, 73, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3453, 3007, 4691, 201, 63, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3454, 3007, 6194, 201, 70, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3455, 3007, 8473, 201, 70, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3456, 3007, 10944, 201, 74, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3457, 3007, 10945, 201, 74, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3458, 3007, 10946, 201, 74, 78, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3459, 3007, 11922, 201, 74, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3460, 3007, 11923, 201, 74, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3461, 3007, 11924, 201, 74, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3462, 3007, 14796, 201, 79, 80, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3463, 3007, 14797, 201, 79, 80, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3464, 3007, 14798, 201, 79, 80, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3465, 3007, 14822, 201, 79, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3466, 3007, 14820, 201, 79, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3467, 3007, 14821, 201, 79, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3468, 3007, 14814, 201, 80, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3469, 3007, 14815, 201, 80, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3470, 3007, 14816, 201, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3471, 3007, 18895, 201, 81, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3472, 3007, 18896, 201, 81, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3473, 3007, 18897, 201, 81, 83, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3474, 3007, 18902, 201, 84, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3475, 3007, 18903, 201, 84, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3476, 3007, 19552, 201, 84, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3477, 3007, 19553, 201, 84, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3478, 3007, 19554, 201, 84, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3479, 3007, 18901, 201, 84, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3480, 3007, 18919, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3481, 3007, 18920, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3482, 3007, 22525, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3483, 3007, 18921, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3484, 3007, 22526, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3485, 3007, 22527, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3486, 3008, 4586, 201, 60, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3487, 3008, 8030, 201, 69, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3488, 3009, 4659, 201, 20, 51, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3489, 3009, 4685, 201, 52, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3490, 3009, 4505, 201, 54, 62, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3491, 3009, 4517, 201, 57, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3492, 3009, 4677, 201, 58, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3493, 3009, 4676, 201, 59, 74, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3494, 3009, 4696, 201, 61, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3495, 3009, 4686, 201, 63, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3496, 3009, 4694, 201, 63, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3497, 3009, 5017, 201, 65, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3498, 3009, 5018, 201, 65, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3499, 3009, 4695, 201, 65, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3500, 3009, 8001, 201, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3501, 3009, 6196, 201, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3502, 3009, 6174, 201, 69, 69, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3503, 3009, 8470, 201, 70, 79, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3504, 3009, 6197, 201, 70, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3505, 3009, 10892, 201, 73, 77, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3506, 3009, 10893, 201, 73, 77, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3507, 3009, 10894, 201, 73, 77, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3508, 3009, 11925, 201, 74, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3509, 3009, 11926, 201, 74, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3510, 3009, 11927, 201, 74, 78, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3511, 3009, 10899, 201, 75, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3512, 3009, 10900, 201, 75, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3513, 3009, 10898, 201, 75, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3514, 3009, 15103, 201, 78, 82, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3515, 3009, 15104, 201, 78, 82, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3516, 3009, 15105, 201, 78, 82, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3517, 3009, 15115, 201, 79, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3518, 3009, 15116, 201, 79, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3519, 3009, 15117, 201, 79, 83, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3520, 3009, 15133, 201, 80, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3521, 3009, 15134, 201, 80, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3522, 3009, 15135, 201, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3523, 3009, 19252, 201, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3524, 3009, 19250, 201, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3525, 3009, 19251, 201, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3526, 3009, 19262, 201, 84, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3527, 3009, 19263, 201, 84, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3528, 3009, 19264, 201, 84, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3529, 3009, 19280, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3530, 3009, 19281, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3531, 3009, 19282, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3532, 3015, 4678, 201, 60, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3533, 3015, 8233, 201, 69, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3534, 3015, 8782, 201, 70, 79, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3535, 3015, 14158, 201, 80, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3536, 3015, 14159, 201, 80, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3537, 3015, 14160, 201, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3538, 3015, 18170, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3539, 3015, 18171, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3540, 3015, 18172, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3541, 3016, 5027, 201, 30, 49, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3542, 3016, 5028, 201, 50, 56, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3543, 3016, 5039, 201, 53, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3544, 3016, 5037, 201, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3545, 3016, 5029, 201, 57, 63, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3546, 3016, 5035, 201, 57, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3547, 3016, 5041, 201, 58, 59, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3548, 3016, 5034, 201, 60, 74, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3549, 3016, 6754, 201, 61, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3550, 3016, 5030, 201, 64, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3551, 3016, 5043, 201, 65, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3552, 3016, 5031, 201, 65, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3553, 3016, 5032, 201, 65, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3554, 3016, 8003, 201, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3555, 3016, 6729, 201, 69, 73, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3556, 3016, 6199, 201, 70, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3557, 3016, 10914, 201, 72, 76, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3558, 3016, 10915, 201, 72, 76, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3559, 3016, 10916, 201, 72, 76, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3560, 3016, 11928, 201, 74, 78, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3561, 3016, 11929, 201, 74, 78, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3562, 3016, 11930, 201, 74, 78, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3563, 3016, 10923, 201, 75, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3564, 3016, 10924, 201, 75, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3565, 3016, 10925, 201, 75, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3566, 3016, 14180, 201, 77, 81, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3567, 3016, 14181, 201, 77, 81, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3568, 3016, 14182, 201, 77, 81, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3569, 3016, 14197, 201, 79, 83, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3570, 3016, 14195, 201, 79, 83, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3571, 3016, 14196, 201, 79, 83, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3572, 3016, 14198, 201, 80, 84, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3573, 3016, 14199, 201, 80, 84, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3574, 3016, 14200, 201, 80, 84, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3575, 3016, 16918, 201, 81, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3576, 3016, 16919, 201, 81, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3577, 3016, 16920, 201, 81, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3578, 3016, 18201, 201, 82, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3579, 3016, 18202, 201, 82, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3580, 3016, 18203, 201, 82, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3581, 3016, 18216, 201, 84, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3582, 3016, 18217, 201, 84, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3583, 3016, 18218, 201, 84, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3584, 3016, 19741, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3585, 3016, 19742, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3586, 3016, 19743, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3587, 3016, 22506, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3588, 3016, 22507, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3589, 3016, 18219, 201, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3590, 3016, 22508, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3591, 3016, 18220, 201, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3592, 3016, 18221, 201, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3593, 3001, 4587, 202, 40, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3594, 3001, 4503, 202, 52, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3595, 3001, 4499, 202, 55, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3596, 3001, 4674, 202, 56, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3597, 3001, 4670, 202, 59, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3598, 3001, 4688, 202, 65, 71, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3599, 3001, 8000, 202, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3600, 3001, 6190, 202, 70, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3601, 3001, 10965, 202, 72, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3602, 3001, 10966, 202, 72, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3603, 3001, 10967, 202, 72, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3604, 3003, 4587, 202, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3605, 3003, 7004, 202, 56, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3606, 3003, 4518, 202, 60, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3607, 3003, 6731, 202, 61, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3608, 3003, 6663, 202, 69, 72, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3609, 3003, 11854, 202, 73, 77, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3610, 3003, 11855, 202, 73, 77, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3611, 3003, 11856, 202, 73, 77, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3612, 3003, 14987, 202, 78, 82, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3613, 3003, 14988, 202, 78, 82, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3614, 3003, 14989, 202, 78, 82, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3615, 3003, 19103, 202, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3616, 3003, 19131, 202, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3617, 3003, 19132, 202, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3618, 3003, 19133, 202, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3619, 3003, 22665, 202, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3620, 3003, 22666, 202, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3621, 3003, 22667, 202, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3622, 3003, 19101, 202, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3623, 3003, 19102, 202, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3624, 3004, 4587, 202, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3625, 3004, 4519, 202, 60, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3626, 3005, 4587, 202, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3627, 3005, 7005, 202, 56, 60, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3628, 3005, 4504, 202, 60, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3629, 3005, 6741, 202, 61, 68, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3630, 3005, 6673, 202, 69, 72, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3631, 3005, 11866, 202, 73, 77, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3632, 3005, 11867, 202, 73, 77, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3633, 3005, 11868, 202, 73, 77, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3634, 3005, 15211, 202, 78, 82, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3635, 3005, 15212, 202, 78, 82, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3636, 3005, 15213, 202, 78, 82, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3637, 3005, 19364, 202, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3638, 3005, 19365, 202, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3639, 3005, 19366, 202, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3640, 3005, 22662, 202, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3641, 3005, 22663, 202, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3642, 3005, 19131, 202, 83, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3643, 3005, 22664, 202, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3644, 3005, 19132, 202, 83, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3645, 3005, 19133, 202, 83, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3646, 3007, 4587, 202, 40, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3647, 3007, 4510, 202, 51, 64, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3648, 3007, 4509, 202, 53, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3649, 3007, 4502, 202, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3650, 3007, 4690, 202, 65, 71, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3651, 3007, 6195, 202, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3652, 3007, 10938, 202, 72, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3653, 3007, 10939, 202, 72, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3654, 3007, 10940, 202, 72, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3655, 3007, 19830, 202, 85, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3656, 3007, 19831, 202, 85, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3657, 3007, 19829, 202, 85, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3658, 3008, 4587, 202, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3659, 3008, 4516, 202, 55, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3660, 3009, 4587, 202, 40, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3661, 3009, 4673, 202, 53, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3662, 3009, 4515, 202, 55, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3663, 3009, 10889, 202, 72, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3664, 3009, 10890, 202, 72, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3665, 3009, 10891, 202, 72, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3666, 3009, 10895, 202, 74, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3667, 3009, 10896, 202, 74, 254, -1, -1, 2, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3668, 3009, 10897, 202, 74, 254, -1, -1, 1, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3669, 3015, 4587, 202, 54, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3670, 3015, 4671, 202, 55, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3671, 3016, 4587, 202, 40, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3672, 3016, 5040, 202, 56, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3673, 3016, 5038, 202, 59, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3674, 3016, 5043, 202, 65, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3675, 3016, 6200, 202, 66, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3676, 3016, 6201, 202, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3677, 3016, 8003, 202, 68, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
INSERT INTO `bot_spells_entries` VALUES (3678, 3016, 8476, 202, 70, 254, -1, -1, 3, 0, 0, 0, '', '', 0);
DROP TABLE IF EXISTS `bot_stances`;
CREATE TABLE `bot_stances` (
`bot_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`stance_id` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`bot_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_starting_items`;
CREATE TABLE `bot_starting_items` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`races` int(11) UNSIGNED NOT NULL DEFAULT 0,
`classes` int(11) UNSIGNED NOT NULL DEFAULT 0,
`item_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`item_charges` tinyint(3) UNSIGNED NOT NULL DEFAULT 1,
`augment_one` int(11) UNSIGNED NOT NULL DEFAULT 0,
`augment_two` int(11) UNSIGNED NOT NULL DEFAULT 0,
`augment_three` int(11) UNSIGNED NOT NULL DEFAULT 0,
`augment_four` int(11) UNSIGNED NOT NULL DEFAULT 0,
`augment_five` int(11) UNSIGNED NOT NULL DEFAULT 0,
`augment_six` int(11) UNSIGNED NOT NULL DEFAULT 0,
`min_status` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
`slot_id` mediumint(9) NOT NULL DEFAULT -1,
`min_expansion` tinyint(4) NOT NULL DEFAULT -1,
`max_expansion` tinyint(4) NOT NULL DEFAULT -1,
`content_flags` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
`content_flags_disabled` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;
DROP TABLE IF EXISTS `bot_timers`;
CREATE TABLE `bot_timers` (
`bot_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`timer_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`timer_value` int(11) UNSIGNED NOT NULL DEFAULT 0,
`recast_time` int(11) UNSIGNED NOT NULL DEFAULT 0,
`is_spell` tinyint(2) UNSIGNED NOT NULL DEFAULT 0,
`is_disc` tinyint(2) UNSIGNED NOT NULL DEFAULT 0,
`spell_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
`is_item` tinyint(2) UNSIGNED NOT NULL DEFAULT 0,
`item_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`bot_id`, `timer_id`, `spell_id`, `item_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;