From 40c43baf2d82948d1b8f551fc3170d5515910008 Mon Sep 17 00:00:00 2001
From: Shadez
Date: Sat, 6 Feb 2010 19:25:15 +0800
Subject: [PATCH] [64] Show extended cost on item page
---
includes/armory_loader.php | 12 +-
includes/classes/class.items.php | 21 +-
includes/classes/class.mangos.php | 16 +-
includes/template/item_info.tpl | 7 +-
item-info.php | 10 +-
item-tooltip.php | 8 +-
.../armory_r64_armory_extended_cost.sql | 1000 +++++++++++++++++
sql/updates/armory_r64_armory_spell.7z | Bin 0 -> 2269519 bytes
8 files changed, 1049 insertions(+), 25 deletions(-)
create mode 100644 sql/updates/armory_r64_armory_extended_cost.sql
create mode 100644 sql/updates/armory_r64_armory_spell.7z
diff --git a/includes/armory_loader.php b/includes/armory_loader.php
index ab60c4ad4..f76a70a48 100644
--- a/includes/armory_loader.php
+++ b/includes/armory_loader.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 61
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -31,7 +31,7 @@
die('Error: can not load connector class!');
}
-define('DB_VERSION', 'armory_r61');
+define('DB_VERSION', 'armory_r64');
$armory = new Connector;
$armory->tpl->template_dir = 'includes/template/';
$armory->tpl->compile_dir = 'includes/cache/';
@@ -100,7 +100,13 @@
}
$_locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $armory->armoryconfig['defaultLocale'];
$armory->_locale = $_locale;
- header('Location: '.($_SERVER['HTTP_REFERER'] ? $_SERVER['HTTP_REFERER'] : '.'));
+ if(isset($_SERVER['HTTP_REFERER'])) {
+ $returnUrl = $_SERVER['HTTP_REFERER'];
+ }
+ else {
+ $returnUrl = '.';
+ }
+ header('Location: '.$returnUrl);
}
$_locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $armory->armoryconfig['defaultLocale'];
$armory->_locale = $_locale;
diff --git a/includes/classes/class.items.php b/includes/classes/class.items.php
index 235fe962e..ea0f35692 100644
--- a/includes/classes/class.items.php
+++ b/includes/classes/class.items.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 63
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -264,12 +264,6 @@ public function lootInfo($itemID) {
**/
public function BuildItemSetInfo($itemset) {
$locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $this->armoryconfig['defaultLocale'];
- if($locale == 'en_gb') {
- $spell_locale = '_1';
- }
- else {
- $spell_locale = false;
- }
$itemSetBonuses = '';
$itemsName='';
$query = $this->aDB->selectRow("
@@ -297,10 +291,10 @@ public function BuildItemSetInfo($itemset) {
$spell_tmp = $this->aDB->selectRow("SELECT * FROM `armory_spell` WHERE `id`=?", $query['bonus'.$i]);
$itemSetBonuses .= '('.$i.') ';
$itemSetBonuses .= ($locale == 'ru_ru') ? 'Комплект' : 'Set';
- if(!isset($spell_tmp['Description'.$spell_locale])) {
- $spell_tmp['Description'.$spell_locale] = '';
+ if(!isset($spell_tmp['Description_'.$locale])) {
+ $spell_tmp['Description_'.$locale] = '';
}
- $itemSetBonuses .= ': '.$this->spellReplace($spell_tmp, Utils::validateText($spell_tmp['Description'.$spell_locale])).'
';
+ $itemSetBonuses .= ': '.$this->spellReplace($spell_tmp, Utils::validateText($spell_tmp['Description_'.$locale])).'
';
}
}
$fullItemInfoString = sprintf('%s (0/%s)
%s
%s
', $itemSetName, $itemsCount, $itemsName, $itemSetBonuses);
@@ -319,7 +313,7 @@ public function BuildLootTable($item, $vendor, $data=false) {
switch($vendor) {
case 'vendor':
$VendorLoot = $this->wDB->select("
- SELECT `entry`
+ SELECT `entry`, `ExtendedCost`
FROM `npc_vendor`
WHERE `item`=?", $item);
if(!empty($VendorLoot)) {
@@ -328,7 +322,8 @@ public function BuildLootTable($item, $vendor, $data=false) {
$lootTable[$i] = array (
'name' => Mangos::GetNpcName($vItem['entry']),
'level'=> Mangos::GetNpcInfo($vItem['entry'], 'level'),
- 'map' => Mangos::GetNpcInfo($vItem['entry'], 'map')
+ 'map' => Mangos::GetNpcInfo($vItem['entry'], 'map'),
+ 'extended_cost' => Mangos::GetExtendedCost($vItem['ExtendedCost'])
);
$i++;
}
@@ -770,7 +765,7 @@ public function getSpellData($spell) {
public function my_replace($matches) {
$text = str_replace( array('[',']'), array('', ''), $matches[0]);
- eval("\$text = abs(".$text.");");
+ //eval("\$text = abs(".$text.");");
return intval($text);
}
diff --git a/includes/classes/class.mangos.php b/includes/classes/class.mangos.php
index dcb59005f..22df2c23d 100644
--- a/includes/classes/class.mangos.php
+++ b/includes/classes/class.mangos.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 63
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -276,5 +276,19 @@ public function getMoney($money) {
$getMoney['copper'] = floor($money);
return $getMoney;
}
+
+ public function GetExtendedCost($costId) {
+ $costInfo = $this->aDB->selectRow("SELECT * FROM `armory_extended_cost` WHERE `id`=? LIMIT 1", $costId);
+ if(!$costInfo) {
+ return false;
+ }
+ for($i=1;$i<6;$i++) {
+ if($costInfo['item'.$i] > 0) {
+ $costInfo['item'.$i.'icon'] = Items::getItemIcon($costInfo['item'.$i]);
+ $costInfo['item'.$i.'name'] = Items::getItemName($costInfo['item'.$i]);
+ }
+ }
+ return $costInfo;
+ }
}
?>
\ No newline at end of file
diff --git a/includes/template/item_info.tpl b/includes/template/item_info.tpl
index 6dfecc2ff..e384325ba 100644
--- a/includes/template/item_info.tpl
+++ b/includes/template/item_info.tpl
@@ -42,11 +42,16 @@
{{$item_level}}
-{{if $buyPrice.gold>0 or $buyPrice.silver>0 or $buyPrice.copper>0}}
+{{if $buyPrice.gold>0 or $buyPrice.silver>0 or $buyPrice.copper>0 or $price}}
{{#armory_item_info_cost#}}:
{{if $buyPrice.gold>0}}{{$buyPrice.gold}}{{/if}}{{if $buyPrice.silver>0}}{{$buyPrice.silver}}{{/if}}{{if $buyPrice.copper>0}}{{$buyPrice.copper}}{{/if}}
+{{if $price}}
+
+{{if $price.item1>0}}{{$price.item1count}}{{$price.item1count}}{{/if}}{{if $price.item2>0}}{{$price.item2count}}{{$price.item2count}}{{/if}}{{if $price.item3>0}}{{$price.item3count}}{{$price.item3count}}{{/if}}{{if $price.item4>0}}{{$price.item4count}}{{$price.item4count}}{{/if}}{{if $price.item5>0}}{{$price.item5count}}{{$price.item5count}}{{/if}}
+
+{{/if}}
{{/if}}
{{if $sellPrice.gold>0 or $sellPrice.silver>0 or $sellPrice.copper>0}}
diff --git a/item-info.php b/item-info.php
index 5fa15f9dc..e7d7e788e 100644
--- a/item-info.php
+++ b/item-info.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 63
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -166,10 +166,10 @@
for($i=1;$i<4;$i++) {
if($data['spellid_'.$i] > 0) {
$spell_tmp = $armory->aDB->selectRow("SELECT * FROM `armory_spell` WHERE `id`=?", $data['spellid_'.$i]);
- if(!isset($spell_tmp['Description'.$_spell_locale])) {
+ if(!isset($spell_tmp['Description_'.$_locale])) {
continue;
}
- $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description'.$_spell_locale]));
+ $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description_'.$_locale]));
if($spellInfo) {
$j .= '
'.$armory->tpl->get_config_vars('string_on_use').' '.$spellInfo.' ';
}
@@ -237,6 +237,10 @@
$armory->tpl->assign('craft_loot', $items->BuildLootTable($itemID, 'craft'));
$armory->tpl->assign('reagent_loot', $items->BuildLootTable($itemID, 'reagent'));
/** Loot tables **/
+$extended_cost = $armory->wDB->selectCell("SELECT `ExtendedCost` FROM `npc_vendor` WHERE `item`=? LIMIT 1", $itemID);
+if($extended_cost > 0) {
+ $armory->tpl->assign('price', $mangos->GetExtendedCost($extended_cost));
+}
$armory->tpl->assign('item_level', $data['ItemLevel']);
$armory->tpl->assign('tpl2include', 'item_info');
$armory->tpl->assign('addCssSheet', '@import "_css/int.css";
diff --git a/item-tooltip.php b/item-tooltip.php
index 84c312ca6..c1bbe8856 100644
--- a/item-tooltip.php
+++ b/item-tooltip.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 61
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -231,10 +231,10 @@
for($i=1;$i<4;$i++) {
if($data['spellid_'.$i] > 0) {
$spell_tmp = $armory->aDB->selectRow("SELECT * FROM `armory_spell` WHERE `id`=?", $data['spellid_'.$i]);
- if(!isset($spell_tmp['Description'.$_spell_locale])) {
- $spell_tmp['Description'.$_spell_locale] = '';
+ if(!isset($spell_tmp['Description_'.$_locale])) {
+ continue;
}
- $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description'.$_spell_locale]));
+ $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description_'.$_locale]));
if($spellInfo) {
$j .= '
'.$armory->tpl->get_config_vars('string_on_use').' '.$spellInfo.' ';
}
diff --git a/sql/updates/armory_r64_armory_extended_cost.sql b/sql/updates/armory_r64_armory_extended_cost.sql
new file mode 100644
index 000000000..f87c44f95
--- /dev/null
+++ b/sql/updates/armory_r64_armory_extended_cost.sql
@@ -0,0 +1,1000 @@
+/*
+SQLyog Enterprise - MySQL GUI v8.1
+MySQL - 5.0.45-community-nt : Database - armorynew
+*********************************************************************
+*/
+
+/*!40101 SET NAMES utf8 */;
+
+/*!40101 SET SQL_MODE=''*/;
+
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+
+/*Table structure for table `armory_extended_cost` */
+
+DROP TABLE IF EXISTS `armory_extended_cost`;
+
+CREATE TABLE `armory_extended_cost` (
+ `id` int(11) NOT NULL,
+ `arenaPoints` int(11) NOT NULL,
+ `honorPoints` int(11) NOT NULL,
+ `item1` int(11) NOT NULL,
+ `item2` int(11) NOT NULL,
+ `item3` int(11) NOT NULL,
+ `item4` int(11) NOT NULL,
+ `item5` int(11) NOT NULL,
+ `item1count` int(11) NOT NULL,
+ `item2count` int(11) NOT NULL,
+ `item3count` int(11) NOT NULL,
+ `item4count` int(11) NOT NULL,
+ `item5count` int(11) NOT NULL,
+ `personalRating` int(11) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+/*Data for the table `armory_extended_cost` */
+
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1,13,9,0,117,118,0,0,0,1,2,1,1,1);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2,0,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (5,0,0,0,26045,26044,0,0,0,40,2,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (6,0,0,0,26045,26044,0,0,0,20,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (7,0,0,0,26044,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (18,0,0,0,26045,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (21,0,978,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (22,0,1630,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (24,0,1304,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (26,0,3261,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (53,0,0,0,24579,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (54,0,0,0,24581,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (55,0,0,0,24581,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (56,0,0,0,24579,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (65,0,0,0,24581,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (66,1,1,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (69,0,0,0,24579,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (76,0,0,0,24581,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (77,0,0,0,24579,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (94,19125,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (95,6885,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (98,22950,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (99,8500,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (100,0,0,0,24245,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (102,0,0,0,24245,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (103,0,0,0,24245,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (104,0,0,0,24245,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (115,16983,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (125,22950,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (127,15300,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (129,11934,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (131,30600,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (133,0,2283,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (146,0,870,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (148,0,2739,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (165,9435,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (169,9435,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (170,9435,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (171,14280,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (172,14280,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (173,12750,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (194,0,0,0,28558,0,0,0,0,18,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (201,16524,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (202,10098,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (203,16065,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (204,16065,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (205,10098,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (293,0,0,0,28558,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (298,0,0,0,28558,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (348,15300,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (359,20400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (360,20400,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (386,15300,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (388,0,0,0,24245,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (423,0,0,0,20560,20559,20558,0,0,30,30,30,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (427,2805,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (428,2805,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (444,4335,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (460,1,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (463,13770,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (464,13005,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (465,8415,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (488,4590,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (489,4590,0,0,20560,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (490,10200,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (491,1530,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (492,1530,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (495,4590,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (496,2380,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (497,2720,0,0,20560,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (501,8415,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (520,2805,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (532,1530,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (533,1530,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (541,8415,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (542,13005,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (565,15300,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (567,15300,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (634,2805,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (652,4590,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (653,4335,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (701,10200,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (702,4760,0,0,20560,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (746,8160,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (747,5100,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (748,8925,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (774,1530,0,0,20559,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (821,428,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (822,65,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (823,65,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (826,214,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (837,632,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (838,95,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (839,95,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (841,175,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (855,175,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (871,316,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (883,938,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (884,141,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (885,141,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (887,258,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (901,258,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (917,469,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (929,1387,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (930,208,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (931,208,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (933,382,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (947,382,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (968,694,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (986,208,0,0,20559,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (989,422,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (990,624,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1000,0,0,0,20559,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1002,0,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1003,0,0,0,20560,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1005,0,0,0,20560,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1006,0,0,0,20560,20559,20558,0,0,20,20,20,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1007,0,0,0,20559,20558,0,0,0,3,3,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1009,0,0,0,20558,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1015,0,0,0,29434,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1027,0,0,0,29434,0,0,0,0,41,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1037,0,0,0,29434,0,0,0,0,33,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1040,0,0,0,29434,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1050,95,0,0,20559,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1054,258,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1055,118,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1061,0,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1062,0,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1076,0,0,0,24245,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1077,0,0,0,24245,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1110,0,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1111,0,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1184,0,0,0,29735,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1188,0,0,0,29735,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1192,0,0,0,29736,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1196,0,0,0,29736,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1200,0,0,0,29754,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1203,0,0,0,29757,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1206,0,0,0,29760,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1209,0,0,0,29766,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1212,0,0,0,29763,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1215,0,0,0,29755,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1216,0,0,0,29756,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1217,0,0,0,29759,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1218,0,0,0,29765,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1219,0,0,0,29762,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1235,0,0,0,29753,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1237,0,0,0,29758,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1239,0,0,0,29761,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1241,0,0,0,29767,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1243,0,0,0,29764,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1332,0,0,0,30237,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1333,0,0,0,30240,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1334,0,0,0,30243,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1335,0,0,0,30246,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1336,0,0,0,30249,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1342,0,0,0,30236,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1343,0,0,0,30239,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1344,0,0,0,30242,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1345,0,0,0,30245,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1346,0,0,0,30248,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1357,0,0,0,30238,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1358,0,0,0,30241,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1359,0,0,0,30244,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1360,0,0,0,30247,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1361,0,0,0,30250,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1431,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1432,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1435,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1442,7905,0,0,20558,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1452,0,0,0,29434,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1454,0,0,0,29434,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1468,8160,0,0,20560,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1474,0,0,0,31094,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1476,0,0,0,31095,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1478,0,0,0,31091,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1480,0,0,0,31100,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1482,0,0,0,31103,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1485,0,0,0,31092,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1488,0,0,0,31097,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1491,0,0,0,31089,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1494,0,0,0,31098,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1497,0,0,0,31101,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1520,0,0,0,31093,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1521,0,0,0,31096,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1522,0,0,0,31090,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1523,0,0,0,31099,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1524,0,0,0,31102,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1564,8,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1565,5,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1642,0,0,0,29434,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1645,0,0,0,0,4291,0,0,0,0,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1646,0,0,0,26045,26044,0,0,0,100,20,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1647,0,0,0,26045,26044,0,0,0,70,15,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1648,0,0,0,20559,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1649,0,0,0,20560,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1652,0,0,0,29024,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1653,0,0,0,20558,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1664,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1670,0,2625,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1757,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1758,0,1000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1765,0,0,0,26044,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1909,0,0,0,29434,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1910,0,0,0,32569,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1911,17850,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1923,17850,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1935,11794,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1948,0,0,0,32569,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1949,0,0,0,32569,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1950,0,0,0,32572,32569,0,0,0,4,100,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1952,0,0,0,32572,32569,0,0,0,1,50,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1958,0,0,0,32569,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1959,0,0,0,32897,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1963,0,0,0,24368,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1973,0,0,0,32569,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1979,0,0,0,32569,0,0,0,0,160,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1981,0,0,0,32572,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1985,0,0,0,32572,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1992,0,0,0,28558,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1994,0,0,0,24245,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2028,15300,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2049,0,0,0,29434,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2059,0,0,0,29434,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2060,0,0,0,29434,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2236,0,0,0,26044,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2237,27000,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2238,25200,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2239,18000,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2240,9000,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2241,8000,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2242,15000,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2248,11934,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2249,11424,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2250,11424,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2251,7548,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2252,9547,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2253,9547,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2254,19125,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2255,12240,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2256,38250,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2257,24480,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2258,20655,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2259,13219,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2260,12622,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2261,8078,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2262,20081,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2263,12852,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2264,20081,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2265,12852,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2266,12622,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2267,8078,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2268,11794,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2269,7548,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2270,25500,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2271,16320,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2272,0,0,0,32569,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2273,0,0,0,37829,0,0,0,0,600,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2274,0,0,0,37829,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2275,0,0,0,37829,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2276,0,0,0,37829,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2277,10500,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2278,11250,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2279,14500,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2280,14500,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2281,14500,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2282,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2283,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2284,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2285,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2286,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2287,0,2625,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2288,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2289,30000,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2290,19125,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2291,12240,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2292,0,0,0,34180,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2293,0,0,0,34167,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2294,0,0,0,34186,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2295,0,0,0,34169,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2296,0,0,0,34188,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2297,0,0,0,34170,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2298,0,0,0,34192,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2299,0,0,0,34193,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2300,0,0,0,34208,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2301,0,0,0,34209,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2302,0,0,0,34195,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2303,0,0,0,34202,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2304,0,0,0,34215,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2305,0,0,0,34216,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2306,0,0,0,34229,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2307,0,0,0,34211,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2308,0,0,0,34212,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2309,0,0,0,34233,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2310,0,0,0,34345,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2311,0,0,0,34243,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2312,0,0,0,34332,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2313,0,0,0,34245,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2314,0,0,0,34244,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2315,0,0,0,34339,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2316,0,0,0,34342,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2317,0,0,0,34351,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2318,0,0,0,34234,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2319,0,0,0,34350,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2320,0,0,0,34848,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2321,0,0,0,34852,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2322,0,0,0,34854,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2323,0,0,0,34851,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2324,0,0,0,34853,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2325,0,0,0,34855,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2326,0,0,0,34856,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2327,0,0,0,34858,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2328,0,0,0,34857,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2329,0,0,0,29434,0,0,0,0,150,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2330,0,0,0,29434,0,0,0,0,125,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2331,0,0,0,29434,0,0,0,0,105,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2332,0,0,0,29434,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2333,0,0,0,29434,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2334,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2335,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2336,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2337,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2338,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2339,0,1000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2340,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2341,0,1110,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2342,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2343,0,675,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2344,0,1575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2345,0,675,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2346,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2347,0,0,0,29434,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2348,0,0,0,23247,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2349,0,0,0,23247,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2350,0,0,0,23247,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2351,0,0,0,23247,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2352,0,0,0,23247,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2353,0,0,0,23247,0,0,0,0,350,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2354,1,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2355,0,0,0,33568,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2356,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2357,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2358,0,1304,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2359,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2360,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2361,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2362,0,2625,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2363,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2364,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2365,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2366,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2367,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2368,0,1110,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2369,0,1575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2370,0,1575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2371,0,675,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2372,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2373,0,1304,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2374,0,600,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2375,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2376,0,0,0,33568,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2377,0,3000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2378,0,2520,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2379,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2380,0,800,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2381,0,2100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2382,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2383,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2384,0,1150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2385,0,2520,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2386,0,3000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2387,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2388,0,800,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2389,0,2100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2390,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2391,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2392,0,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2393,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2394,0,0,0,37836,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2395,0,0,0,37836,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2396,0,0,0,37836,0,0,0,0,120,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2397,0,0,0,37829,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2398,0,0,0,37829,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2399,0,0,0,37829,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2400,17850,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2401,11794,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2402,15300,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2403,40000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2404,8000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2405,9199,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2406,13923,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2407,0,0,0,38186,0,0,0,0,500,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2408,0,0,0,38186,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2409,0,0,0,38186,0,0,0,0,250,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2410,0,0,0,38186,0,0,0,0,1000,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2411,0,0,0,38186,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2412,0,0,0,38186,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2413,0,0,0,34597,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2414,0,0,0,34597,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2415,0,0,0,34597,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2416,0,0,0,34597,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2417,0,0,0,34597,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2418,0,0,0,34597,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2419,0,0,0,34597,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2420,0,0,0,37836,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2421,0,0,0,37836,0,0,0,0,70,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2422,0,0,0,37836,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2423,0,800,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2424,0,0,0,37829,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2425,9500,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2426,1250,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2427,35000,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2428,20000,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2429,0,0,0,41596,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2430,0,0,0,41596,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2431,0,250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2432,0,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2433,0,0,0,41596,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2434,0,0,0,41596,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2435,0,0,0,20560,20559,29024,20558,42425,1,1,1,1,1);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2436,0,0,0,41596,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2437,0,0,0,25634,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2438,24000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2439,20000,575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2440,12000,350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2441,7200,200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2442,16800,475,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2443,7200,200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2444,6400,175,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2445,9600,275,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2446,24800,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2447,15800,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2448,19000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2449,24000,1400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2450,20000,1150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2451,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2452,7200,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2453,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2454,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2455,16800,950,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2456,7200,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2457,6400,350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2458,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2459,9600,550,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2460,0,4500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2461,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2462,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2463,0,1350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2464,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2465,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2466,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2467,0,1350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2468,0,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2469,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2470,0,1750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2471,31000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2472,31000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2473,19700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2474,23700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2475,23700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2476,23700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2477,31000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2478,0,0,0,43016,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2479,0,0,0,43016,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2480,0,0,0,43016,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2481,0,0,0,43228,0,0,0,0,12,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2482,0,0,0,43228,0,0,0,0,24,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2483,12,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2484,0,0,0,40752,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2485,0,0,0,40612,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2486,0,0,0,40615,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2487,0,0,0,40618,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2488,0,0,0,40621,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2489,0,0,0,40624,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2490,0,0,0,40616,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2491,0,0,0,40610,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2492,0,0,0,40619,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2493,0,0,0,40622,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2494,0,0,0,40613,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2495,0,0,0,40611,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2496,0,0,0,40614,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2497,0,0,0,40617,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2498,0,0,0,40620,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2499,0,0,0,40623,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2500,0,0,0,42780,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2501,0,0,0,42780,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2502,0,0,0,42780,0,0,0,0,250,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2503,0,0,0,40628,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2504,0,0,0,40625,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2505,0,0,0,40631,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2506,0,0,0,40634,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2507,0,0,0,40637,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2508,0,0,0,40626,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2509,0,0,0,40632,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2510,0,0,0,40629,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2511,0,0,0,40635,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2512,0,0,0,40638,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2513,0,0,0,40627,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2514,0,0,0,40633,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2515,0,0,0,40630,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2516,0,0,0,40636,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2517,0,0,0,40639,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2518,0,0,0,22484,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2519,0,0,0,22484,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2520,0,0,0,22484,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2521,0,0,0,22484,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2522,0,0,0,22484,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2523,0,0,0,40752,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2524,0,0,0,40752,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2525,0,0,0,40752,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2526,0,0,0,40752,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2527,0,0,0,40752,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2528,0,0,0,40752,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2529,0,0,0,40752,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2530,0,0,0,40752,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2531,0,0,0,40752,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2532,0,0,0,40752,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2533,0,0,0,40752,0,0,0,0,80,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2534,0,0,0,40753,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2535,0,0,0,40753,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2536,0,0,0,40753,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2537,0,0,0,40753,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2538,0,0,0,40753,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2539,0,0,0,40753,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2540,0,0,0,40753,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2541,0,0,0,43016,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2542,0,0,0,43228,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2543,0,0,0,43228,0,0,0,0,325,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2544,0,0,0,43228,0,0,0,0,250,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2545,0,0,0,43228,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2546,0,0,0,43228,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2547,0,0,0,43228,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2548,0,0,0,43228,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2549,0,0,0,43228,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2550,0,0,0,40752,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2551,0,0,0,40752,0,0,0,0,65,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2552,0,0,0,43228,0,0,0,0,300,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2553,0,0,0,34052,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2554,0,0,0,34052,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2555,0,0,0,38425,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2556,0,0,0,44128,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2557,2500,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2558,0,0,0,41596,0,0,0,0,6,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2559,49600,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2560,31600,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2561,38000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2562,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2563,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2564,39400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2565,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2566,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2567,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2568,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2569,60000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2570,50000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2571,0,0,0,44791,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2572,0,0,0,44791,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2573,0,0,0,44791,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2574,0,0,0,44791,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2575,0,0,0,44791,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2576,0,0,0,43589,0,0,0,0,9,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2577,0,0,0,43589,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2578,0,0,0,43589,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2579,0,0,0,43589,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2580,0,0,0,21100,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2581,0,0,0,21100,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2582,0,0,0,43126,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2583,0,0,0,43126,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2584,0,0,0,34057,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2585,0,0,0,34597,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2586,0,0,0,34597,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2587,0,0,0,34597,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2588,10000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2589,0,0,0,40753,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2590,100,200,0,40752,40753,43228,0,0,2,2,2,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2591,0,0,0,40586,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2592,0,0,0,40586,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2593,0,0,0,44934,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2594,0,0,0,44935,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2595,0,0,0,40585,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2596,0,100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2597,0,0,0,44990,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2598,0,0,0,44990,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2599,0,0,0,44990,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2600,0,0,0,44990,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2601,0,0,0,44990,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2602,0,0,0,44990,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2603,0,0,0,44990,0,0,0,0,150,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2604,0,0,0,45624,0,0,0,0,18,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2605,30400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2606,0,0,0,45624,0,0,0,0,19,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2607,0,0,0,45624,0,0,0,0,28,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2608,6400,350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2609,7200,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2610,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2611,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2612,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2613,9600,550,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2614,39400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2615,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2616,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2617,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2618,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2619,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2620,0,0,0,45624,0,0,0,0,58,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2621,0,1300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2622,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2623,50000,1400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2624,35000,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2625,35000,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2626,15000,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2627,0,1066,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2628,0,1950,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2629,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2630,0,0,0,45624,0,0,0,0,39,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2631,0,0,0,45624,0,0,0,0,46,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2632,0,4250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2633,0,3585,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2634,0,3000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2635,0,1245,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2636,0,500,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2637,0,0,0,45624,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2638,0,0,0,40753,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2639,0,0,0,46114,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2640,0,0,0,45644,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2641,0,0,0,45641,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2642,0,0,0,45659,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2643,0,0,0,45656,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2644,0,0,0,45650,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2645,0,0,0,45653,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2646,0,0,0,45635,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2647,0,0,0,45632,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2648,0,0,0,45647,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2649,0,0,0,45638,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2650,0,0,0,45645,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2651,0,0,0,45642,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2652,0,0,0,45660,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2653,0,0,0,45657,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2654,0,0,0,45651,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2655,0,0,0,45654,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2656,0,0,0,45636,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2657,0,0,0,45633,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2658,0,0,0,45648,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2659,0,0,0,45639,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2660,0,0,0,45646,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2661,0,0,0,45643,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2662,0,0,0,45661,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2663,0,0,0,45658,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2664,0,0,0,45652,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2665,0,0,0,45655,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2666,0,0,0,45637,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2667,0,0,0,45634,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2668,0,0,0,45649,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2669,0,0,0,45640,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2670,0,0,0,43016,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2671,0,0,0,44990,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2673,0,0,0,44990,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2674,0,0,0,44990,0,0,0,0,95,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2675,0,0,0,44990,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2676,0,2000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2677,0,2000,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2678,0,2000,2,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2679,0,0,0,47557,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2680,0,0,0,47558,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2681,0,0,0,0,47559,0,0,0,0,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2682,0,0,0,47241,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2683,0,0,0,47241,47242,0,0,0,75,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2684,0,0,0,47241,47242,0,0,0,45,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2685,0,0,0,47241,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2686,0,0,0,47241,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2687,0,0,0,47241,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2688,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2689,0,1300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2690,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2691,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2692,0,1750,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2693,50000,1400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2694,0,4250,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2695,35000,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2696,0,3585,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2697,0,3000,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2698,15000,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2699,0,1245,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2700,0,1150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2701,0,300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2702,0,0,0,45688,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2703,0,0,0,45689,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2704,0,0,0,45690,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2705,0,0,0,45691,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2706,0,0,0,40752,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2707,0,0,0,47241,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2708,0,0,0,47241,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2709,0,0,0,47241,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2710,0,0,0,46849,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2711,0,0,0,45624,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2712,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2713,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2714,39400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2715,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2716,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2717,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2718,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2719,0,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2720,0,300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2721,0,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2722,0,500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2723,0,0,0,47241,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2724,0,0,38425,0,0,0,0,10,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2725,0,0,49927,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2726,0,0,49927,0,0,0,0,10,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2727,0,0,49927,0,0,0,0,5,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2728,0,0,49927,0,0,0,0,2,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2729,0,0,49927,0,0,0,0,40,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2730,0,0,49916,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2731,0,0,49908,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2732,0,0,49927,0,0,0,0,30,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2733,0,0,49927,0,0,0,0,20,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2734,0,0,47241,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2735,0,0,48957,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2736,0,0,48956,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2737,0,0,48955,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2738,0,0,48954,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2739,0,0,49426,0,0,0,0,30,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2740,0,0,49426,0,0,0,0,60,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2741,0,0,49426,0,0,0,0,50,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2742,0,0,49426,0,0,0,0,95,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2743,0,0,49426,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2744,0,0,49426,0,0,0,0,23,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2745,0,0,52025,50279,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2746,0,0,52025,50278,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2747,0,0,52025,50277,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2748,0,0,52025,50276,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2749,0,0,52025,50275,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2750,0,0,52028,51159,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2751,0,0,52028,51158,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2752,0,0,52028,51157,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2753,0,0,52028,51156,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2754,0,0,52028,51155,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2755,0,0,52025,50105,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2756,0,0,52025,50090,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2757,0,0,52025,50089,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2758,0,0,52025,50088,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2759,0,0,52025,50087,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2760,0,0,52028,51189,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2761,0,0,52028,51188,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2762,0,0,52028,51187,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2763,0,0,52028,51186,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2764,0,0,52028,51185,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2765,0,0,52025,50113,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2766,0,0,52025,50109,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2767,0,0,52025,50108,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2768,0,0,52025,50107,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2769,0,0,52025,50106,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2770,0,0,52028,51139,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2771,0,0,52028,51138,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2772,0,0,52028,51137,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2773,0,0,52028,51136,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2774,0,0,52028,51135,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2775,0,0,52025,50823,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2776,0,0,52025,50820,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2777,0,0,52025,50819,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2778,0,0,52025,50822,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2779,0,0,52025,50821,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2780,0,0,52028,51149,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2781,0,0,52028,51148,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2782,0,0,52028,51147,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2783,0,0,52028,51146,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2784,0,0,52028,51145,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2785,0,0,52025,50824,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2786,0,0,52025,50828,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2787,0,0,52025,50825,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2788,0,0,52025,50826,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2789,0,0,52025,50827,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2790,0,0,52028,51144,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2791,0,0,52028,51143,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2792,0,0,52028,51142,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2793,0,0,52028,51141,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2794,0,0,52028,51140,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2795,0,0,52025,50098,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2796,0,0,52025,50097,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2797,0,0,52025,50096,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2798,0,0,52025,50095,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2799,0,0,52025,50094,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2800,0,0,52028,51129,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2801,0,0,52028,51128,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2802,0,0,52028,51127,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2803,0,0,52028,51126,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2804,0,0,52028,51125,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2805,0,0,52025,50853,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2806,0,0,52025,50854,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2807,0,0,52025,50856,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2808,0,0,52025,50855,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2809,0,0,52025,50857,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2810,0,0,52028,51134,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2811,0,0,52028,51133,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2812,0,0,52028,51132,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2813,0,0,52028,51131,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2814,0,0,52028,51130,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2815,0,0,52027,50869,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2816,0,0,52027,50865,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2817,0,0,52027,50867,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2818,0,0,52027,50866,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2819,0,0,52027,50868,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2820,0,0,52030,51169,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2821,0,0,52030,51168,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2822,0,0,52030,51167,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2823,0,0,52030,51166,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2824,0,0,52030,51165,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2825,0,0,52027,50324,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2826,0,0,52027,50325,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2827,0,0,52027,50326,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2828,0,0,52027,50327,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2829,0,0,52027,50328,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2830,0,0,52030,51164,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2831,0,0,52030,51163,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2832,0,0,52030,51162,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2833,0,0,52030,51161,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2834,0,0,52030,51160,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2835,0,0,52027,50860,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2836,0,0,52027,50861,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2837,0,0,52027,50863,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2838,0,0,52027,50862,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2839,0,0,52027,50864,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2840,0,0,52030,51174,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2841,0,0,52030,51173,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2842,0,0,52030,51172,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2843,0,0,52030,51171,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2844,0,0,52030,51170,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2845,0,0,52027,50244,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2846,0,0,52027,50243,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2847,0,0,52027,50242,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2848,0,0,52027,50241,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2849,0,0,52027,50240,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2850,0,0,52030,51209,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2851,0,0,52030,51208,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2852,0,0,52030,51207,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2853,0,0,52030,51206,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2854,0,0,52030,51205,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2855,0,0,52027,50767,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2856,0,0,52027,50768,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2857,0,0,52027,50769,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2858,0,0,52027,50765,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2859,0,0,52027,50766,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2860,0,0,52030,51179,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2861,0,0,52030,51178,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2862,0,0,52030,51177,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2863,0,0,52030,51176,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2864,0,0,52030,51175,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2865,0,0,52027,50394,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2866,0,0,52027,50393,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2867,0,0,52027,50396,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2868,0,0,52027,50391,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2869,0,0,52027,50392,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2870,0,0,52030,51184,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2871,0,0,52030,51183,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2872,0,0,52030,51182,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2873,0,0,52030,51181,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2874,0,0,52030,51180,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2875,0,0,52026,50082,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2876,0,0,52026,50081,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2877,0,0,52026,50080,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2878,0,0,52026,50079,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2879,0,0,52026,50078,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2880,0,0,52029,51214,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2881,0,0,52029,51213,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2882,0,0,52029,51212,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2883,0,0,52029,51211,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2884,0,0,52029,51210,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2885,0,0,52026,50846,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2886,0,0,52026,50847,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2887,0,0,52026,50849,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2888,0,0,52026,50848,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2889,0,0,52026,50850,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2890,0,0,52029,51219,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2891,0,0,52029,51218,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2892,0,0,52029,51217,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2893,0,0,52029,51216,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2894,0,0,52029,51215,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2895,0,0,52026,50118,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2896,0,0,52026,50117,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2897,0,0,52026,50116,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2898,0,0,52026,50115,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2899,0,0,52026,50114,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2900,0,0,52029,51154,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2901,0,0,52029,51153,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2902,0,0,52029,51152,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2903,0,0,52029,51151,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2904,0,0,52029,51150,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2905,0,0,52026,50835,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2906,0,0,52026,50836,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2907,0,0,52026,50837,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2908,0,0,52026,50838,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2909,0,0,52026,50839,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2910,0,0,52029,51190,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2911,0,0,52029,51191,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2912,0,0,52029,51192,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2913,0,0,52029,51193,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2914,0,0,52029,51194,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2915,0,0,52026,50830,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2916,0,0,52026,50831,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2917,0,0,52026,50832,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2918,0,0,52026,50833,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2919,0,0,52026,50834,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2920,0,0,52029,51195,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2921,0,0,52029,51196,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2922,0,0,52029,51197,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2923,0,0,52029,51198,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2924,0,0,52029,51198,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2925,0,0,52026,50841,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2926,0,0,52026,50842,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2927,0,0,52026,50843,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2928,0,0,52026,50844,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2929,0,0,52026,50845,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2930,0,0,52029,51200,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2931,0,0,52029,51201,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2932,0,0,52029,51202,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2933,0,0,52029,51203,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2934,0,0,52029,51204,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2935,0,0,52029,51199,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2936,1540,55000,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2937,550,0,0,0,0,0,0,0,0,0,0,0,2350);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2938,550,0,0,0,0,0,0,0,0,0,0,0,2300);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2939,4670,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2940,3950,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2941,1540,55000,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2942,4670,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2943,1300,38500,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2944,3300,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2945,1090,38500,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2946,450,16500,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2947,1370,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2948,1930,0,0,0,0,0,0,0,0,0,0,0,2000);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2949,2370,0,0,0,0,0,0,0,0,0,0,0,1950);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2950,350,0,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2951,1260,0,0,0,0,0,0,0,0,0,0,0,1700);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2952,2370,0,0,0,0,0,0,0,0,0,0,0,1600);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2953,2370,0,0,0,0,0,0,0,0,0,0,0,1500);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2954,1430,0,0,0,0,0,0,0,0,0,0,0,1400);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2955,600,10550,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2956,770,13200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2957,440,8000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2958,0,34700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2959,0,54500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2960,0,43300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2961,0,68200,0,0,0,0,0,0,0,0,0,0,1400);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2962,0,68200,0,0,0,0,0,0,0,0,0,0,1300);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2963,0,43400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2964,0,52200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2965,0,68200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2966,0,34100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2967,0,21700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2968,0,26100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2969,0,12000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2974,0,0,50402,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2975,0,0,50401,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2976,0,0,50387,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2977,0,0,50376,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2978,0,0,52569,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2979,0,0,52570,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2980,0,0,52571,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2981,0,0,52572,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2982,0,0,52572,0,0,0,0,1,0,0,0,0,0);
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
\ No newline at end of file
diff --git a/sql/updates/armory_r64_armory_spell.7z b/sql/updates/armory_r64_armory_spell.7z
new file mode 100644
index 0000000000000000000000000000000000000000..bcdc0c221aac63b9ce828b18fa4a77c75e77afdb
GIT binary patch
literal 2269519
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