Buying potions from shops FIX - v111.1
For people who want a fix for the shops:
for the v111 source released
replace MapleShop.java with:
Spoiler :
Code:
package server;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import client.inventory.Item;
import client.SkillFactory;
import constants.GameConstants;
import client.inventory.MapleInventoryIdentifier;
import client.MapleClient;
import client.inventory.MapleInventoryType;
import client.inventory.MaplePet;
import database.DatabaseConnection;
import tools.FileoutputUtil;
import tools.Pair;
import tools.packet.CField.NPCPacket;
import tools.packet.CWvsContext;
import tools.packet.CWvsContext.InventoryPacket;
public class MapleShop {
private static final Set<Integer> rechargeableItems = new LinkedHashSet<Integer>();
private int id;
private int npcId;
private List<MapleShopItem> items = new LinkedList<MapleShopItem>();
private List<Pair<Integer, String>> ranks = new ArrayList<Pair<Integer, String>>();
static {
rechargeableItems.add(2070000);
rechargeableItems.add(2070001);
rechargeableItems.add(2070002);
rechargeableItems.add(2070003);
rechargeableItems.add(2070004);
rechargeableItems.add(2070005);
rechargeableItems.add(2070006);
rechargeableItems.add(2070007);
rechargeableItems.add(2070008);
rechargeableItems.add(2070009);
rechargeableItems.add(2070010);
rechargeableItems.add(2070011);
rechargeableItems.add(2070012);
rechargeableItems.add(2070013);
rechargeableItems.add(2070016);
rechargeableItems.add(2070018); // Balanced Fury
rechargeableItems.add(2070023);
rechargeableItems.add(2070024);
rechargeableItems.add(2330000);
rechargeableItems.add(2330001);
rechargeableItems.add(2330002);
rechargeableItems.add(2330003);
rechargeableItems.add(2330004);
rechargeableItems.add(2330005);
rechargeableItems.add(2330008);
rechargeableItems.add(2331000); // Capsules
rechargeableItems.add(2332000); // Capsules
}
/** Creates a new instance of MapleShop */
private MapleShop(int id, int npcId) {
this.id = id;
this.npcId = npcId;
}
public void addItem(MapleShopItem item) {
items.add(item);
}
public List<MapleShopItem> getItems() {
return items;
}
public void sendShop(MapleClient c) {
c.getPlayer().setShop(this);
c.getSession().write(NPCPacket.getNPCShop(getNpcId(), this, c));
}
public void sendShop(MapleClient c, int customNpc) {
c.getPlayer().setShop(this);
c.getSession().write(NPCPacket.getNPCShop(customNpc, this, c));
}
public void buy(MapleClient c, int itemId, short quantity) {
if (quantity <= 0) {
AutobanManager.getInstance().addPoints(c, 1000, 0, "Buying " + quantity + " " + itemId);
return;
}
if (itemId / 10000 == 190 && !GameConstants.isMountItemAvailable(itemId, c.getPlayer().getJob())) {
c.getPlayer().dropMessage(1, "You may not buy this item.");
c.getSession().write(CWvsContext.enableActions());
return;
}
MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
int x = 0, index = -1;
for (Item i : c.getPlayer().getRebuy()) {
if (i.getItemId() == itemId) {
index = x;
break;
}
x++;
}
if (index >= 0) {
final Item i = c.getPlayer().getRebuy().get(index);
final int price = (int) Math.max(Math.ceil(ii.getPrice(itemId) * (GameConstants.isRechargable(itemId) ? 1 : i.getQuantity())), 0);
if (price >= 0 && c.getPlayer().getMeso() >= price) {
if (MapleInventoryManipulator.checkSpace(c, itemId, i.getQuantity(), i.getOwner())) {
c.getPlayer().gainMeso(-price, false);
MapleInventoryManipulator.addbyItem(c, i);
c.getPlayer().getRebuy().remove(index);
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0, this, c, x));
} else {
c.getPlayer().dropMessage(1, "Your inventory is full.");
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0, this, c, -1));
}
} else {
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0, this, c, -1));
}
return;
}
MapleShopItem item = findById(itemId);
if (item != null && item.getPrice() > 0 && item.getReqItem() == 0) {
if (item.getRank() >= 0) {
boolean passed = true;
int y = 0;
for (Pair<Integer, String> i : getRanks()) {
if (c.getPlayer().haveItem(i.left, 1, true, true) && item.getRank() >= y) {
passed = true;
break;
}
y++;
}
if (!passed) {
c.getPlayer().dropMessage(1, "You need a higher rank.");
c.getSession().write(CWvsContext.enableActions());
return;
}
}
final int price = GameConstants.isRechargable(itemId) ? item.getPrice() : (item.getPrice() * quantity);
if (price >= 0 && c.getPlayer().getMeso() >= price) {
if (MapleInventoryManipulator.checkSpace(c, itemId, quantity, "")) {
c.getPlayer().gainMeso(-price, false);
if (GameConstants.isPet(itemId)) {
MapleInventoryManipulator.addById(c, itemId, quantity, "", MaplePet.createPet(itemId, MapleInventoryIdentifier.getInstance()), -1, "Bought from shop " + id + ", " + npcId + " on " + FileoutputUtil.CurrentReadable_Date());
} else {
if (GameConstants.isRechargable(itemId)) {
quantity = ii.getSlotMax(item.getItemId());
}
MapleInventoryManipulator.addById(c, itemId, quantity, "Bought from shop " + id + ", " + npcId + " on " + FileoutputUtil.CurrentReadable_Date());
}
} else {
c.getPlayer().dropMessage(1, "Your Inventory is full");
}
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0, this, c, -1));
}
} else if (item != null && item.getReqItem() > 0 && quantity == 1 && c.getPlayer().haveItem(item.getReqItem(), item.getReqItemQ(), false, true)) {
if (MapleInventoryManipulator.checkSpace(c, itemId, quantity, "")) {
MapleInventoryManipulator.removeById(c, GameConstants.getInventoryType(item.getReqItem()), item.getReqItem(), item.getReqItemQ(), false, false);
if (GameConstants.isPet(itemId)) {
MapleInventoryManipulator.addById(c, itemId, quantity, "", MaplePet.createPet(itemId, MapleInventoryIdentifier.getInstance()), -1, "Bought from shop " + id + ", " + npcId + " on " + FileoutputUtil.CurrentReadable_Date());
} else {
if (GameConstants.isRechargable(itemId)) {
quantity = ii.getSlotMax(item.getItemId());
}
MapleInventoryManipulator.addById(c, itemId, quantity, "Bought from shop " + id + ", " + npcId + " on " + FileoutputUtil.CurrentReadable_Date());
}
} else {
c.getPlayer().dropMessage(1, "Your Inventory is full");
}
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0, this, c, -1));
}
}
public void sell(MapleClient c, MapleInventoryType type, byte slot, short quantity) {
if (quantity == 0xFFFF || quantity == 0) {
quantity = 1;
}
Item item = c.getPlayer().getInventory(type).getItem(slot);
if (item == null) {
return;
}
if (GameConstants.isThrowingStar(item.getItemId()) || GameConstants.isBullet(item.getItemId())) {
quantity = item.getQuantity();
}
if (quantity < 0) {
AutobanManager.getInstance().addPoints(c, 1000, 0, "Selling " + quantity + " " + item.getItemId() + " (" + type.name() + "/" + slot + ")");
return;
}
short iQuant = item.getQuantity();
if (iQuant == 0xFFFF) {
iQuant = 1;
}
final MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
if (ii.cantSell(item.getItemId()) || GameConstants.isPet(item.getItemId())) {
return;
}
if (quantity <= iQuant && iQuant > 0) {
if (GameConstants.GMS) { //TODO JUMP
if (item.getQuantity() == quantity) { // selling all
c.getPlayer().getRebuy().add(item.copy()); // we copy all
} else {
c.getPlayer().getRebuy().add(item.copyWithQuantity(quantity));
}
}
MapleInventoryManipulator.removeFromSlot(c, type, slot, quantity, false);
double price;
if (GameConstants.isThrowingStar(item.getItemId()) || GameConstants.isBullet(item.getItemId())) {
price = ii.getWholePrice(item.getItemId()) / (double) ii.getSlotMax(item.getItemId());
} else {
price = ii.getPrice(item.getItemId());
}
final int recvMesos = (int) Math.max(Math.ceil(price * quantity), 0);
if (price != -1.0 && recvMesos > 0) {
c.getPlayer().gainMeso(recvMesos, false);
}
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0x4, this, c, -1));
}
}
public void recharge(final MapleClient c, final byte slot) {
final Item item = c.getPlayer().getInventory(MapleInventoryType.USE).getItem(slot);
if (item == null || (!GameConstants.isThrowingStar(item.getItemId()) && !GameConstants.isBullet(item.getItemId()))) {
return;
}
final MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
short slotMax = ii.getSlotMax(item.getItemId());
final int skill = GameConstants.getMasterySkill(c.getPlayer().getJob());
if (skill != 0) {
slotMax += c.getPlayer().getTotalSkillLevel(SkillFactory.getSkill(skill)) * 10;
}
if (item.getQuantity() < slotMax) {
final int price = (int) Math.round(ii.getPrice(item.getItemId()) * (slotMax - item.getQuantity()));
if (c.getPlayer().getMeso() >= price) {
item.setQuantity(slotMax);
c.getSession().write(InventoryPacket.updateInventorySlot(MapleInventoryType.USE, (Item) item, false));
c.getPlayer().gainMeso(-price, false, false);
c.getSession().write(NPCPacket.confirmShopTransaction((byte) 0x8, this, c, -1));
}
}
}
protected MapleShopItem findById(int itemId) {
for (MapleShopItem item : items) {
if (item.getItemId() == itemId) {
return item;
}
}
return null;
}
public static MapleShop createFromDB(int id, boolean isShopId) {
MapleShop ret = null;
int shopId;
MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
try {
Connection con = DatabaseConnection.getConnection();
PreparedStatement ps = con.prepareStatement(isShopId ? "SELECT * FROM shops WHERE shopid = ?" : "SELECT * FROM shops WHERE npcid = ?");
ps.setInt(1, id);
ResultSet rs = ps.executeQuery();
if (rs.next()) {
shopId = rs.getInt("shopid");
ret = new MapleShop(shopId, rs.getInt("npcid"));
rs.close();
ps.close();
} else {
rs.close();
ps.close();
return null;
}
ps = con.prepareStatement("SELECT * FROM shopitems WHERE shopid = ? ORDER BY position ASC");
ps.setInt(1, shopId);
rs = ps.executeQuery();
List<Integer> recharges = new ArrayList<Integer>(rechargeableItems);
while (rs.next()) {
if (!ii.itemExists(rs.getInt("itemid"))) {
continue;
}
if (GameConstants.isThrowingStar(rs.getInt("itemid")) || GameConstants.isBullet(rs.getInt("itemid"))) {
MapleShopItem starItem = new MapleShopItem((short) 1, rs.getInt("itemid"), rs.getInt("price"), rs.getInt("reqitem"), rs.getInt("reqitemq"), rs.getByte("rank"));
ret.addItem(starItem);
if (rechargeableItems.contains(starItem.getItemId())) {
recharges.remove(Integer.valueOf(starItem.getItemId()));
}
} else {
ret.addItem(new MapleShopItem((short) 1000, rs.getInt("itemid"), rs.getInt("price"), rs.getInt("reqitem"), rs.getInt("reqitemq"), rs.getByte("rank")));
}
}
for (Integer recharge : recharges) {
ret.addItem(new MapleShopItem((short) 1, recharge.intValue(), 0, 0, 0, (byte) 0));
}
rs.close();
ps.close();
ps = con.prepareStatement("SELECT * FROM shopranks WHERE shopid = ? ORDER BY rank ASC");
ps.setInt(1, shopId);
rs = ps.executeQuery();
while (rs.next()) {
if (!ii.itemExists(rs.getInt("itemid"))) {
continue;
}
ret.ranks.add(new Pair<Integer, String>(rs.getInt("itemid"), rs.getString("name")));
}
rs.close();
ps.close();
} catch (SQLException e) {
System.err.println("Could not load shop");
e.printStackTrace();
}
return ret;
}
public int getNpcId() {
return npcId;
}
public int getId() {
return id;
}
public List<Pair<Integer, String>> getRanks() {
return ranks;
}
}
MapleShopFactory
Spoiler :
Code:
package server;
import java.util.HashMap;
import java.util.Map;
public class MapleShopFactory {
private Map<Integer, MapleShop> shops = new HashMap<Integer, MapleShop>();
private Map<Integer, MapleShop> npcShops = new HashMap<Integer, MapleShop>();
private static MapleShopFactory instance = new MapleShopFactory();
public static MapleShopFactory getInstance() {
return instance;
}
public void clear() {
shops.clear();
npcShops.clear();
}
public MapleShop getShop(int shopId) {
if (shops.containsKey(shopId)) {
return shops.get(shopId);
}
return loadShop(shopId, true);
}
public MapleShop getShopForNPC(int npcId) {
if (npcShops.containsKey(npcId)) {
return npcShops.get(npcId);
}
return loadShop(npcId, false);
}
private MapleShop loadShop(int id, boolean isShopId) {
MapleShop ret = MapleShop.createFromDB(id, isShopId);
if (ret != null) {
shops.put(ret.getId(), ret);
npcShops.put(ret.getNpcId(), ret);
} else if (isShopId) {
shops.put(id, null);
} else {
npcShops.put(id, null);
}
return ret;
}
}
MapleShopItem.java
Replace in packethelper addShopItemInfo
[CODE]
Forgot put in PacketHelper this new one:
Code:
public static final void addShopItemInfo(final MaplePacketLittleEndianWriter mplew, final MapleShopItem item, final MapleShop shop, final MapleItemInformationProvider ii, final Item i) {
mplew.writeInt(item.getItemId());
mplew.writeInt(item.getPrice());
mplew.write(0);
mplew.writeInt(item.getReqItem());
mplew.writeInt(item.getReqItemQ());
mplew.writeInt(0); // expiration
mplew.writeInt(0); // min level
mplew.writeInt(0); //category? 7 = special
mplew.write(0); // boolean
mplew.writeInt(0);
if (!GameConstants.isThrowingStar(item.getItemId()) && !GameConstants.isBullet(item.getItemId())) {
mplew.writeShort(1); // stacksize o.o
mplew.writeShort(item.getBuyable());
} else {
mplew.writeZeroBytes(6);
mplew.writeShort(BitTools.doubleToShortBits(ii.getPrice(item.getItemId())));
mplew.writeShort(ii.getSlotMax(item.getItemId()));
}
mplew.write(i == null ? 0 : 1);
if (i != null) {
addItemInfo(mplew, i);
}
if (shop.getRanks().size() > 0) {
mplew.write(item.getRank() >= 0 ? 1 : 0);
if (item.getRank() >= 0) {
mplew.write(item.getRank());
}
}
}
Then run in SQL:
Spoiler :
Code:
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- Server version 5.5.16-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
--
-- Create schema odin_gms2
--
CREATE DATABASE IF NOT EXISTS odin_gms2;
USE odin_gms2;
--
-- Definition of table `shopitems`
--
DROP TABLE IF EXISTS `shopitems`;
CREATE TABLE `shopitems` (
`shopitemid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`shopid` int(10) unsigned NOT NULL DEFAULT '0',
`itemid` int(11) NOT NULL DEFAULT '0',
`price` int(11) NOT NULL DEFAULT '0',
`position` int(11) NOT NULL DEFAULT '0',
`reqitem` int(11) NOT NULL DEFAULT '0',
`reqitemq` int(11) NOT NULL DEFAULT '0',
`rank` tinyint(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`shopitemid`),
KEY `shopid` (`shopid`)
) ENGINE=MyISAM AUTO_INCREMENT=2588 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `shopitems`
--
/*!40000 ALTER TABLE `shopitems` DISABLE KEYS */;
INSERT INTO `shopitems` (`shopitemid`,`shopid`,`itemid`,`price`,`position`,`reqitem`,`reqitemq`,`rank`) VALUES
(1,1,1302000,50,1,0,0,0),
(2,1,1312004,50,2,0,0,0),
(3,1,1322005,50,3,0,0,0),
(4,1,1332005,500,4,0,0,0),
(5,2,2000000,5,1,0,0,0),
(6,2,2000001,48,2,0,0,0),
(7,2,2000002,96,3,0,0,0),
(8,2,2010000,3,5,0,0,0),
(9,2,2010002,5,6,0,0,0),
(10,3,1040002,50,1,0,0,0),
(11,3,1040006,50,2,0,0,0),
(12,3,1040010,50,3,0,0,0),
(13,3,1041002,50,4,0,0,0),
(14,3,1041006,50,5,0,0,0),
(15,3,1041010,50,6,0,0,0),
(16,3,1041011,50,7,0,0,0),
(17,3,1060002,50,8,0,0,0),
(18,3,1060006,50,9,0,0,0),
(19,3,1061002,50,10,0,0,0),
(20,3,1061008,50,11,0,0,0),
(21,3,1072001,50,12,0,0,0),
(22,3,1072005,50,13,0,0,0),
(23,4,1302000,50,1,0,0,0),
(24,4,1312004,50,2,0,0,0),
(25,4,1322005,50,3,0,0,0),
(26,4,1302007,3000,4,0,0,0),
(27,4,1312000,3000,5,0,0,0),
(28,4,1332007,1000,6,0,0,0),
(29,5,1002008,500,1,0,0,0),
(30,5,1002014,1000,2,0,0,0),
(31,5,1002066,450,3,0,0,0),
(32,5,1002067,450,4,0,0,0),
(33,5,1002068,450,5,0,0,0),
(34,5,1002069,450,6,0,0,0),
(35,5,1002132,800,7,0,0,0),
(36,5,1002133,800,8,0,0,0),
(37,5,1002134,800,9,0,0,0),
(38,5,1002019,2000,10,0,0,0),
(39,5,1002001,3000,11,0,0,0),
(40,5,1040013,3000,12,0,0,0),
(41,5,1040014,3000,13,0,0,0),
(42,5,1041004,3000,14,0,0,0),
(43,5,1041012,3000,15,0,0,0),
(44,5,1060007,1000,16,0,0,0),
(45,5,1060004,2800,17,0,0,0),
(46,5,1062000,4800,18,0,0,0),
(47,5,1062001,4800,19,0,0,0),
(48,5,1072001,50,20,0,0,0),
(49,5,1072037,50,21,0,0,0),
(50,5,1072038,50,22,0,0,0),
(51,5,1072005,50,23,0,0,0),
(52,5,1072008,5000,24,0,0,0),
(53,5,1072048,5000,25,0,0,0),
(54,5,1072049,5000,26,0,0,0),
(55,5,1072017,10000,27,0,0,0),
(56,5,1072062,10000,28,0,0,0),
(57,5,1072063,10000,29,0,0,0),
(58,5,1092003,2000,30,0,0,0),
(59,5,3010001,1000,31,0,0,0),
(60,6,2000000,5,1,0,0,0),
(61,6,2000001,48,2,0,0,0),
(62,6,2000002,96,3,0,0,0),
(63,6,2000003,20,4,0,0,0),
(64,6,2000006,186,5,0,0,0),
(65,6,2002000,500,6,0,0,0),
(66,6,2002001,400,7,0,0,0),
(67,6,2002002,500,8,0,0,0),
(68,6,2002004,500,9,0,0,0),
(69,6,2002005,500,10,0,0,0),
(70,6,2010000,3,11,0,0,0),
(71,6,2010002,5,12,0,0,0),
(72,6,2010001,30,13,0,0,0),
(73,6,2010003,10,14,0,0,0),
(74,6,2010004,93,15,0,0,0),
(75,6,2020028,3000,16,0,0,0),
(76,6,2030000,400,17,0,0,0),
(77,6,2030001,500,18,0,0,0),
(78,6,2060000,1,19,0,0,0),
(79,6,2061000,1,20,0,0,0),
(80,6,2070000,500,21,0,0,0),
(81,7,1452002,3000,1,0,0,0),
(82,7,1452003,6000,2,0,0,0),
(83,7,1452001,10000,3,0,0,0),
(84,7,1452000,20000,4,0,0,0),
(85,7,1462001,4000,5,0,0,0),
(86,7,1462002,8000,6,0,0,0),
(87,7,1462003,12000,7,0,0,0),
(88,7,1462000,30000,8,0,0,0),
(89,7,1302007,3000,9,0,0,0),
(90,7,1322007,6000,10,0,0,0),
(91,7,1322008,12000,11,0,0,0),
(92,7,1422004,20000,12,0,0,0),
(93,7,1442004,24000,13,0,0,0),
(94,8,1002008,500,1,0,0,0),
(95,8,1002033,3000,2,0,0,0),
(96,8,1002012,3000,3,0,0,0),
(97,8,1002060,3000,4,0,0,0),
(98,8,1002061,3000,5,0,0,0),
(99,8,1002062,3000,6,0,0,0),
(100,8,1002063,3000,7,0,0,0),
(101,8,1002112,4000,8,0,0,0),
(102,8,1002113,4000,9,0,0,0),
(103,8,1002114,4000,10,0,0,0),
(104,8,1002115,4000,11,0,0,0),
(105,8,1002116,4000,12,0,0,0),
(106,8,1002117,12000,13,0,0,0),
(107,8,1002118,12000,14,0,0,0),
(108,8,1002119,12000,15,0,0,0),
(109,8,1002120,12000,16,0,0,0),
(110,8,1002121,12000,17,0,0,0),
(111,8,1002010,800,18,0,0,0),
(112,8,1002057,800,19,0,0,0),
(113,8,1002156,20000,20,0,0,0),
(114,8,1002157,20000,21,0,0,0),
(115,8,1002158,20000,22,0,0,0),
(116,8,1002159,20000,23,0,0,0),
(117,8,1002160,20000,24,0,0,0),
(118,8,1002161,30000,25,0,0,0),
(119,8,1002162,30000,26,0,0,0),
(120,8,1002163,30000,27,0,0,0),
(121,8,1002164,30000,28,0,0,0),
(122,8,1002165,30000,29,0,0,0),
(123,8,1032001,7000,30,0,0,0),
(124,8,1032003,7000,31,0,0,0),
(125,8,1040008,3200,32,0,0,0),
(126,8,1040071,3200,33,0,0,0),
(127,8,1040007,5500,34,0,0,0),
(128,8,1040011,5500,35,0,0,0),
(129,8,1040003,9000,36,0,0,0),
(130,8,1040022,15000,37,0,0,0),
(131,8,1040023,15000,38,0,0,0),
(132,8,1040024,15000,39,0,0,0),
(133,8,1040025,15000,40,0,0,0),
(134,8,1040067,50000,41,0,0,0),
(135,8,1040068,50000,42,0,0,0),
(136,8,1040069,50000,43,0,0,0),
(137,8,1040070,50000,44,0,0,0),
(138,8,1041007,3200,45,0,0,0),
(139,8,1041061,3200,46,0,0,0),
(140,8,1041008,5500,47,0,0,0),
(141,8,1041062,5500,48,0,0,0),
(142,8,1041063,5500,49,0,0,0),
(143,8,1041013,9000,50,0,0,0),
(144,8,1041027,9000,51,0,0,0),
(145,8,1041028,9000,52,0,0,0),
(146,8,1041032,15000,53,0,0,0),
(147,8,1041033,15000,54,0,0,0),
(148,8,1041034,15000,55,0,0,0),
(149,8,1041035,15000,56,0,0,0),
(150,8,1041054,50000,57,0,0,0),
(151,8,1041055,50000,58,0,0,0),
(152,8,1041056,50000,59,0,0,0),
(153,8,1060005,14000,60,0,0,0),
(154,8,1060056,44000,61,0,0,0),
(155,8,1060057,44000,62,0,0,0),
(156,8,1060058,44000,63,0,0,0),
(157,8,1060059,44000,64,0,0,0),
(158,8,1061009,3000,65,0,0,0),
(159,8,1061057,3000,66,0,0,0),
(160,8,1061006,5000,67,0,0,0),
(161,8,1061058,5000,68,0,0,0),
(162,8,1061059,5000,69,0,0,0),
(163,8,1061024,9000,70,0,0,0),
(164,8,1061025,9000,71,0,0,0),
(165,8,1061026,9000,72,0,0,0),
(166,8,1061050,44000,73,0,0,0),
(167,8,1061051,44000,74,0,0,0),
(168,8,1061052,44000,75,0,0,0),
(169,8,1062004,3000,76,0,0,0),
(170,8,1062002,9000,77,0,0,0),
(171,8,1062006,13000,78,0,0,0),
(172,8,1072015,1800,79,0,0,0),
(173,8,1072059,1800,80,0,0,0),
(174,8,1072016,4500,81,0,0,0),
(175,8,1072060,4500,82,0,0,0),
(176,8,1072061,4500,83,0,0,0),
(177,8,1072025,9000,84,0,0,0),
(178,8,1072026,9000,85,0,0,0),
(179,8,1072067,9000,86,0,0,0),
(180,8,1072068,9000,87,0,0,0),
(181,8,1072012,15000,88,0,0,0),
(182,8,1072054,15000,89,0,0,0),
(183,8,1072055,15000,90,0,0,0),
(184,8,1072056,15000,91,0,0,0),
(185,8,1072018,30000,92,0,0,0),
(186,8,1072064,30000,93,0,0,0),
(187,9,2000000,5,1,0,0,0),
(188,9,2000001,48,2,0,0,0),
(189,9,2000002,96,3,0,0,0),
(190,9,2000003,20,4,0,0,0),
(191,9,2000006,186,5,0,0,0),
(192,9,2002000,500,6,0,0,0),
(193,9,2002001,400,7,0,0,0),
(194,9,2002002,500,8,0,0,0),
(195,9,2002004,500,9,0,0,0),
(196,9,2002005,500,10,0,0,0),
(197,9,2010000,3,11,0,0,0),
(198,9,2010002,5,12,0,0,0),
(199,9,2010001,30,13,0,0,0),
(200,9,2010003,10,14,0,0,0),
(201,9,2010004,93,15,0,0,0),
(202,9,2020028,3000,16,0,0,0),
(203,9,2030000,400,17,0,0,0),
(204,9,2030004,500,18,0,0,0),
(205,9,2060000,1,19,0,0,0),
(206,9,2061000,1,20,0,0,0),
(207,9,2050000,200,21,0,0,0),
(208,9,2050001,200,22,0,0,0),
(209,9,2050002,300,23,0,0,0),
(210,9,2070000,500,24,0,0,0),
(211,10,1302007,3000,1,0,0,0),
(212,10,1302005,6000,2,0,0,0),
(213,10,1302002,10000,3,0,0,0),
(214,10,1302006,10000,4,0,0,0),
(215,10,1302003,20000,5,0,0,0),
(216,10,1302008,40000,6,0,0,0),
(217,10,1332006,7000,7,0,0,0),
(218,10,1332008,10000,8,0,0,0),
(219,10,1332010,22000,9,0,0,0),
(220,10,1312001,6000,10,0,0,0),
(221,10,1312003,20000,11,0,0,0),
(222,10,1312005,40000,12,0,0,0),
(223,10,1322000,6000,13,0,0,0),
(224,10,1322002,10000,14,0,0,0),
(225,10,1322004,22000,15,0,0,0),
(226,10,1322014,40000,16,0,0,0),
(227,10,1402001,3000,17,0,0,0),
(228,10,1402000,12000,18,0,0,0),
(229,10,1402008,22000,19,0,0,0),
(230,10,1412001,3000,20,0,0,0),
(231,10,1412002,10000,21,0,0,0),
(232,10,1412000,22000,22,0,0,0),
(233,10,1412006,45000,23,0,0,0),
(234,10,1422000,3000,24,0,0,0),
(235,10,1422002,6000,25,0,0,0),
(236,10,1422003,10000,26,0,0,0),
(237,10,1422006,10000,27,0,0,0),
(238,10,1422004,20000,28,0,0,0),
(239,10,1432000,3000,29,0,0,0),
(240,10,1432001,7000,30,0,0,0),
(241,10,1442000,3000,31,0,0,0),
(242,10,1442006,8000,32,0,0,0),
(243,10,1442007,12000,33,0,0,0),
(244,10,1442004,24000,34,0,0,0),
(245,11,1002043,2400,1,0,0,0),
(246,11,1002039,2700,2,0,0,0),
(247,11,1002051,3500,3,0,0,0),
(248,11,1002055,8700,4,0,0,0),
(249,11,1002059,8500,5,0,0,0),
(250,11,1002027,11500,6,0,0,0),
(251,11,1002005,19000,7,0,0,0),
(252,11,1040015,3200,8,0,0,0),
(253,11,1040038,3200,9,0,0,0),
(254,11,1040009,5500,10,0,0,0),
(255,11,1040037,5500,11,0,0,0),
(256,11,1040012,9000,12,0,0,0),
(257,11,1040039,9000,13,0,0,0),
(258,11,1040040,16000,14,0,0,0),
(259,11,1040016,16000,15,0,0,0),
(260,11,1040041,16000,16,0,0,0),
(261,11,1040021,40000,17,0,0,0),
(262,11,1040026,40000,18,0,0,0),
(263,11,1041014,3200,19,0,0,0),
(264,11,1041064,3200,20,0,0,0),
(265,11,1041019,9000,21,0,0,0),
(266,11,1041020,9000,22,0,0,0),
(267,11,1041021,9000,23,0,0,0),
(268,11,1041022,16000,24,0,0,0),
(269,11,1041023,16000,25,0,0,0),
(270,11,1041024,16000,26,0,0,0),
(271,11,1050005,15000,27,0,0,0),
(272,11,1050006,15000,28,0,0,0),
(273,11,1050007,15000,29,0,0,0),
(274,11,1050011,70000,30,0,0,0),
(275,11,1051000,8000,31,0,0,0),
(276,11,1051010,60000,32,0,0,0),
(277,11,1051011,60000,33,0,0,0),
(278,11,1051012,60000,34,0,0,0),
(279,11,1051013,60000,35,0,0,0),
(280,11,1060008,3000,36,0,0,0),
(281,11,1060028,3000,37,0,0,0),
(282,11,1060009,5000,38,0,0,0),
(283,11,1060027,5000,39,0,0,0),
(284,11,1060010,9000,40,0,0,0),
(285,11,1060029,9000,41,0,0,0),
(286,11,1060011,14000,42,0,0,0),
(287,11,1060030,14000,43,0,0,0),
(288,11,1060060,14000,44,0,0,0),
(289,11,1060016,38000,45,0,0,0),
(290,11,1060017,38000,46,0,0,0),
(291,11,1060018,38000,47,0,0,0),
(292,11,1060019,38000,48,0,0,0),
(293,11,1061014,3000,49,0,0,0),
(294,11,1061023,3000,50,0,0,0),
(295,11,1061016,9000,51,0,0,0),
(296,11,1061017,9000,52,0,0,0),
(297,11,1061018,9000,53,0,0,0),
(298,11,1061015,14000,54,0,0,0),
(299,11,1061019,14000,55,0,0,0),
(300,11,1061020,14000,56,0,0,0),
(301,11,1072009,5000,57,0,0,0),
(302,11,1072050,5000,58,0,0,0),
(303,11,1072007,10000,59,0,0,0),
(304,11,1072046,10000,60,0,0,0),
(305,11,1072047,10000,61,0,0,0),
(306,11,1072011,15000,62,0,0,0),
(307,11,1092005,4000,63,0,0,0),
(308,11,1092000,6000,64,0,0,0),
(309,12,2000000,5,1,0,0,0),
(310,12,2000001,48,2,0,0,0),
(311,12,2000002,96,3,0,0,0),
(312,12,2000003,20,4,0,0,0),
(313,12,2000006,186,5,0,0,0),
(314,12,2002000,500,6,0,0,0),
(315,12,2002001,400,7,0,0,0),
(316,12,2002002,500,8,0,0,0),
(317,12,2002004,500,9,0,0,0),
(318,12,2002005,500,10,0,0,0),
(319,12,2010000,3,11,0,0,0),
(320,12,2010002,5,12,0,0,0),
(321,12,2010001,30,13,0,0,0),
(322,12,2010003,10,14,0,0,0),
(323,12,2010004,93,15,0,0,0),
(324,12,2030000,400,16,0,0,0),
(325,12,2030003,500,17,0,0,0),
(326,12,2060000,1,18,0,0,0),
(327,12,2061000,1,19,0,0,0),
(328,12,2050000,200,20,0,0,0),
(329,12,2050001,200,21,0,0,0),
(330,12,2050002,300,22,0,0,0),
(331,12,2070000,500,23,0,0,0),
(332,13,1372005,2000,1,0,0,0),
(333,13,1372006,5000,2,0,0,0),
(334,13,1372002,9000,3,0,0,0),
(335,13,1372004,18000,4,0,0,0),
(336,13,1372003,38000,5,0,0,0),
(337,13,1382000,3000,6,0,0,0),
(338,13,1382003,6000,7,0,0,0),
(339,13,1382005,6000,8,0,0,0),
(340,13,1382004,10000,9,0,0,0),
(341,13,1382002,20000,10,0,0,0),
(342,13,1322002,10000,11,0,0,0),
(343,14,1002017,1200,1,0,0,0),
(344,14,1002102,3800,2,0,0,0),
(345,14,1002103,3800,3,0,0,0),
(346,14,1002104,3800,4,0,0,0),
(347,14,1002105,3800,5,0,0,0),
(348,14,1002106,3800,6,0,0,0),
(349,14,1002016,8000,7,0,0,0),
(350,14,1040004,2000,8,0,0,0),
(351,14,1040017,2000,9,0,0,0),
(352,14,1040018,8500,10,0,0,0),
(353,14,1040019,8500,11,0,0,0),
(354,14,1040020,8500,12,0,0,0),
(355,14,1041015,2000,13,0,0,0),
(356,14,1041016,2000,14,0,0,0),
(357,14,1041017,4000,15,0,0,0),
(358,14,1041018,4000,16,0,0,0),
(359,14,1041025,4000,17,0,0,0),
(360,14,1041026,4000,18,0,0,0),
(361,14,1041029,8500,19,0,0,0),
(362,14,1041030,8500,20,0,0,0),
(363,14,1041031,8500,21,0,0,0),
(364,14,1041041,42000,22,0,0,0),
(365,14,1041042,42000,23,0,0,0),
(366,14,1041043,42000,24,0,0,0),
(367,14,1050008,7000,25,0,0,0),
(368,14,1050009,7000,26,0,0,0),
(369,14,1050010,7000,27,0,0,0),
(370,14,1050001,16000,28,0,0,0),
(371,14,1050023,16000,29,0,0,0),
(372,14,1050024,16000,30,0,0,0),
(373,14,1050025,16000,31,0,0,0),
(374,14,1050003,40000,32,0,0,0),
(375,14,1050026,40000,33,0,0,0),
(376,14,1050027,40000,34,0,0,0),
(377,14,1050028,40000,35,0,0,0),
(378,14,1051004,16000,36,0,0,0),
(379,14,1051005,16000,37,0,0,0),
(380,14,1051003,16000,38,0,0,0),
(381,14,1060012,2000,39,0,0,0),
(382,14,1060013,2000,40,0,0,0),
(383,14,1060014,8000,41,0,0,0),
(384,14,1060015,8000,42,0,0,0),
(385,14,1061010,2000,43,0,0,0),
(386,14,1061011,2000,44,0,0,0),
(387,14,1061012,4000,45,0,0,0),
(388,14,1061013,4000,46,0,0,0),
(389,14,1061021,4000,47,0,0,0),
(390,14,1061022,4000,48,0,0,0),
(391,14,1061027,8000,49,0,0,0),
(392,14,1061028,8000,50,0,0,0),
(393,14,1061034,40000,51,0,0,0),
(394,14,1061035,40000,52,0,0,0),
(395,14,1061036,40000,53,0,0,0),
(396,14,1072006,1500,54,0,0,0),
(397,14,1072044,1500,55,0,0,0),
(398,14,1072045,1500,56,0,0,0),
(399,14,1072023,4000,57,0,0,0),
(400,14,1072024,4000,58,0,0,0),
(401,15,2000000,5,1,0,0,0),
(402,15,2000001,48,2,0,0,0),
(403,15,2000002,96,3,0,0,0),
(404,15,2000003,20,4,0,0,0),
(405,15,2000006,186,5,0,0,0),
(406,15,2002000,500,6,0,0,0),
(407,15,2002001,400,7,0,0,0),
(408,15,2002002,500,8,0,0,0),
(409,15,2002004,500,9,0,0,0),
(410,15,2002005,500,10,0,0,0),
(411,15,2010000,3,11,0,0,0),
(412,15,2010002,5,12,0,0,0),
(413,15,2010001,30,13,0,0,0),
(414,15,2010003,10,14,0,0,0),
(415,15,2010004,93,15,0,0,0),
(416,15,2030000,400,16,0,0,0),
(417,15,2030002,500,17,0,0,0),
(418,15,2060000,1,18,0,0,0),
(419,15,2061000,1,19,0,0,0),
(420,15,2050000,200,20,0,0,0),
(421,15,2050001,200,21,0,0,0),
(422,15,2050002,300,22,0,0,0),
(423,15,2050003,500,23,0,0,0),
(424,15,2070000,500,24,0,0,0),
(425,16,1302007,3000,1,0,0,0),
(426,16,1332000,4000,2,0,0,0),
(427,16,1332006,7000,3,0,0,0),
(428,16,1332002,8000,4,0,0,0),
(429,16,1332008,10000,5,0,0,0),
(430,16,1332013,15000,6,0,0,0),
(431,16,1332010,22000,7,0,0,0),
(432,16,1332004,38000,8,0,0,0),
(433,16,1332012,40000,9,0,0,0),
(434,16,1332009,42000,10,0,0,0),
(435,16,1322009,20000,11,0,0,0),
(436,16,1402001,3000,12,0,0,0),
(437,16,1412001,3000,13,0,0,0),
(438,16,1422000,3000,14,0,0,0),
(439,16,1432000,3000,15,0,0,0),
(440,16,1432001,7000,16,0,0,0),
(441,16,1442000,3000,17,0,0,0),
(442,16,1472000,3000,18,0,0,0),
(443,17,1002122,900,1,0,0,0),
(444,17,1002123,900,2,0,0,0),
(445,17,1002124,900,3,0,0,0),
(446,17,1002125,900,4,0,0,0),
(447,17,1002126,900,5,0,0,0),
(448,17,1002001,3000,6,0,0,0),
(449,17,1002107,4000,7,0,0,0),
(450,17,1002108,4000,8,0,0,0),
(451,17,1002109,4000,9,0,0,0),
(452,17,1002110,4000,10,0,0,0),
(453,17,1002111,4000,11,0,0,0),
(454,17,1002127,12000,12,0,0,0),
(455,17,1002128,12000,13,0,0,0),
(456,17,1002129,12000,14,0,0,0),
(457,17,1002130,12000,15,0,0,0),
(458,17,1002131,12000,16,0,0,0),
(459,17,1002020,7400,17,0,0,0),
(460,17,1002096,7400,18,0,0,0),
(461,17,1002097,7400,19,0,0,0),
(462,17,1002146,20000,20,0,0,0),
(463,17,1002147,20000,21,0,0,0),
(464,17,1002148,20000,22,0,0,0),
(465,17,1002149,20000,23,0,0,0),
(466,17,1002150,20000,24,0,0,0),
(467,17,1002171,30000,25,0,0,0),
(468,17,1002172,30000,26,0,0,0),
(469,17,1002173,30000,27,0,0,0),
(470,17,1002174,30000,28,0,0,0),
(471,17,1002175,30000,29,0,0,0),
(472,17,1040031,3000,30,0,0,0),
(473,17,1040032,3000,31,0,0,0),
(474,17,1040033,3000,32,0,0,0),
(475,17,1040034,5000,33,0,0,0),
(476,17,1040035,5000,34,0,0,0),
(477,17,1040042,9000,35,0,0,0),
(478,17,1040043,9000,36,0,0,0),
(479,17,1040044,9000,37,0,0,0),
(480,17,1040048,16000,38,0,0,0),
(481,17,1040049,16000,39,0,0,0),
(482,17,1040050,16000,40,0,0,0),
(483,17,1040057,45000,41,0,0,0),
(484,17,1040058,45000,42,0,0,0),
(485,17,1040059,45000,43,0,0,0),
(486,17,1040060,45000,44,0,0,0),
(487,17,1041036,3000,45,0,0,0),
(488,17,1041037,3000,46,0,0,0),
(489,17,1041038,3000,47,0,0,0),
(490,17,1041044,5000,48,0,0,0),
(491,17,1041045,5000,49,0,0,0),
(492,17,1041003,9000,50,0,0,0),
(493,17,1041039,9000,51,0,0,0),
(494,17,1041040,9000,52,0,0,0),
(495,17,1041057,18000,53,0,0,0),
(496,17,1041058,18000,54,0,0,0),
(497,17,1041059,18000,55,0,0,0),
(498,17,1041060,18000,56,0,0,0),
(499,17,1041047,45000,57,0,0,0),
(500,17,1041048,45000,58,0,0,0),
(501,17,1041049,45000,59,0,0,0),
(502,17,1041050,45000,60,0,0,0),
(503,17,1060021,2800,61,0,0,0),
(504,17,1060022,2800,62,0,0,0),
(505,17,1060023,2800,63,0,0,0),
(506,17,1060024,4800,64,0,0,0),
(507,17,1060025,4800,65,0,0,0),
(508,17,1060031,8000,66,0,0,0),
(509,17,1060032,8000,67,0,0,0),
(510,17,1060033,8000,68,0,0,0),
(511,17,1060037,19000,69,0,0,0),
(512,17,1060038,19000,70,0,0,0),
(513,17,1060039,19000,71,0,0,0),
(514,17,1060043,40000,72,0,0,0),
(515,17,1060044,40000,73,0,0,0),
(516,17,1060045,40000,74,0,0,0),
(517,17,1060046,40000,75,0,0,0),
(518,17,1061029,2800,76,0,0,0),
(519,17,1061030,2800,77,0,0,0),
(520,17,1061031,2800,78,0,0,0),
(521,17,1061037,4800,79,0,0,0),
(522,17,1061038,4800,80,0,0,0),
(523,17,1061003,8000,81,0,0,0),
(524,17,1061032,8000,82,0,0,0),
(525,17,1061033,8000,83,0,0,0),
(526,17,1061040,12000,84,0,0,0),
(527,17,1061041,12000,85,0,0,0),
(528,17,1061042,12000,86,0,0,0),
(529,17,1061053,18000,87,0,0,0),
(530,17,1061054,18000,88,0,0,0),
(531,17,1061055,18000,89,0,0,0),
(532,17,1061056,18000,90,0,0,0),
(533,17,1061043,40000,91,0,0,0),
(534,17,1061044,40000,92,0,0,0),
(535,17,1061045,40000,93,0,0,0),
(536,17,1061046,40000,94,0,0,0),
(537,17,1072070,1800,95,0,0,0),
(538,17,1072071,1800,96,0,0,0),
(539,17,1072004,2000,97,0,0,0),
(540,17,1072042,2000,98,0,0,0),
(541,17,1072043,2000,99,0,0,0),
(542,17,1072028,4500,100,0,0,0),
(543,17,1072029,4500,101,0,0,0),
(544,17,1072030,4500,102,0,0,0),
(545,17,1072031,4500,103,0,0,0),
(546,17,1072022,9000,104,0,0,0),
(547,17,1072065,9000,105,0,0,0),
(548,17,1072066,9000,106,0,0,0),
(549,18,2000000,5,1,0,0,0),
(550,18,2000001,48,2,0,0,0),
(551,18,2000002,96,3,0,0,0),
(552,18,2000003,20,4,0,0,0),
(553,18,2000006,186,5,0,0,0),
(554,18,2002000,500,6,0,0,0),
(555,18,2002001,400,7,0,0,0),
(556,18,2002002,500,8,0,0,0),
(557,18,2002004,500,9,0,0,0),
(558,18,2002005,500,10,0,0,0),
(559,18,2010000,3,11,0,0,0),
(560,18,2010002,5,12,0,0,0),
(561,18,2010001,30,13,0,0,0),
(562,18,2010003,10,14,0,0,0),
(563,18,2010004,93,15,0,0,0),
(564,18,2030000,400,16,0,0,0),
(565,18,2030005,500,17,0,0,0),
(566,18,2060000,1,18,0,0,0),
(567,18,2061000,1,19,0,0,0),
(568,18,2050000,200,20,0,0,0),
(569,18,2050001,200,21,0,0,0),
(570,18,2050002,300,22,0,0,0),
(571,18,2070000,500,23,0,0,0),
(572,19,2020001,66,1,0,0,0),
(573,19,2020005,96,2,0,0,0),
(574,19,2020003,225,3,0,0,0),
(575,19,2020004,225,4,0,0,0),
(576,19,2020006,265,5,0,0,0),
(577,19,2022003,770,6,0,0,0),
(578,19,2020000,126,7,0,0,0),
(579,19,2022000,1155,8,0,0,0),
(580,19,2020002,32,9,0,0,0),
(581,19,2030000,400,10,0,0,0),
(582,19,2060000,2,11,0,0,0),
(583,19,2061000,2,12,0,0,0),
(584,19,2070000,500,13,0,0,0),
(585,20,2000000,5,1,0,0,0),
(586,20,2000001,48,2,0,0,0),
(587,20,2000002,96,3,0,0,0),
(588,20,2000003,20,4,0,0,0),
(589,20,2000006,186,5,0,0,0),
(590,20,2010000,3,6,0,0,0),
(591,20,2010002,5,7,0,0,0),
(592,20,2010001,30,8,0,0,0),
(593,20,2010003,10,9,0,0,0),
(594,20,2010004,93,10,0,0,0),
(595,20,2022000,1155,11,0,0,0),
(596,20,2022003,770,12,0,0,0),
(597,20,2030000,400,13,0,0,0),
(598,20,2030006,600,14,0,0,0),
(599,20,2060000,1,15,0,0,0),
(600,20,2061000,1,16,0,0,0),
(601,20,2070000,500,17,0,0,0),
(602,21,2040000,35000,1,0,0,0),
(603,21,2040400,35000,2,0,0,0),
(604,21,2040600,35000,3,0,0,0),
(605,21,2040700,35000,4,0,0,0),
(606,21,2040300,35000,5,0,0,0),
(607,21,2044500,70000,6,0,0,0),
(608,21,2044600,70000,7,0,0,0),
(609,21,2043700,70000,8,0,0,0),
(610,21,2043800,70000,9,0,0,0),
(611,22,2040000,35000,1,0,0,0),
(612,22,2040003,35000,2,0,0,0),
(613,22,2040500,35000,3,0,0,0),
(614,22,2040600,35000,4,0,0,0),
(615,22,2040700,35000,5,0,0,0),
(616,22,2040703,35000,6,0,0,0),
(617,22,2043000,70000,7,0,0,0),
(618,22,2043100,70000,8,0,0,0),
(619,22,2043200,70000,9,0,0,0),
(620,22,2044000,70000,10,0,0,0),
(621,22,2044100,70000,11,0,0,0),
(622,22,2044200,70000,12,0,0,0),
(623,22,2044300,70000,13,0,0,0),
(624,22,2044400,70000,14,0,0,0),
(625,22,2043300,70000,15,0,0,0),
(626,22,2044700,70000,16,0,0,0),
(627,0,2022245,750000,0,0,0,0),
(628,0,2022068,400000,0,0,0,0),
(629,0,5072000,750000,0,0,0,0),
(630,0,5390000,1500000,0,0,0,0),
(631,0,5390001,2000000,0,0,0,0),
(632,0,5390002,1500000,0,0,0,0),
(633,23,2000000,5,1,0,0,0),
(634,23,2000001,48,2,0,0,0),
(635,23,2000002,96,3,0,0,0),
(636,23,2000003,20,4,0,0,0),
(637,23,2010000,3,5,0,0,0),
(638,23,2010002,5,6,0,0,0),
(639,23,2010001,30,7,0,0,0),
(640,23,2010003,10,8,0,0,0),
(641,23,2010004,93,9,0,0,0),
(642,23,2020001,66,10,0,0,0),
(643,23,2020005,96,11,0,0,0),
(644,23,2020003,225,12,0,0,0),
(645,23,2020004,225,13,0,0,0),
(646,23,2020006,265,14,0,0,0),
(647,23,2022003,770,15,0,0,0),
(648,23,2020000,126,16,0,0,0),
(649,23,2022000,1155,17,0,0,0),
(650,23,2020002,32,18,0,0,0),
(651,23,2001000,3200,19,0,0,0),
(652,23,2001001,2300,20,0,0,0),
(653,23,2001002,4000,21,0,0,0),
(654,23,2070000,500,22,0,0,0),
(655,24,1002023,122500,1,0,0,0),
(656,24,1040021,42500,2,0,0,0),
(657,24,1040026,42500,3,0,0,0),
(658,24,1051010,62500,4,0,0,0),
(659,24,1051011,62500,5,0,0,0),
(660,24,1051012,62500,6,0,0,0),
(661,24,1051013,62500,7,0,0,0),
(662,24,1060016,40500,8,0,0,0),
(663,24,1060017,40500,9,0,0,0),
(664,24,1060018,40500,10,0,0,0),
(665,24,1060019,40500,11,0,0,0),
(666,24,1092006,62500,12,0,0,0),
(667,24,1002064,42500,13,0,0,0),
(668,24,1041041,44500,14,0,0,0),
(669,24,1041042,44500,15,0,0,0),
(670,24,1041043,44500,16,0,0,0),
(671,24,1050003,42500,17,0,0,0),
(672,24,1050026,42500,18,0,0,0),
(673,24,1050027,42500,19,0,0,0),
(674,24,1050028,42500,20,0,0,0),
(675,24,1061034,42500,21,0,0,0),
(676,24,1061035,42500,22,0,0,0),
(677,24,1061036,42500,23,0,0,0),
(678,24,1002161,32500,24,0,0,0),
(679,24,1002162,32500,25,0,0,0),
(680,24,1002163,32500,26,0,0,0),
(681,24,1002164,32500,27,0,0,0),
(682,24,1002165,32500,28,0,0,0),
(683,24,1040069,52500,29,0,0,0),
(684,24,1040070,52500,30,0,0,0),
(685,24,1040067,52500,31,0,0,0),
(686,24,1040068,52500,32,0,0,0),
(687,24,1041056,52500,33,0,0,0),
(688,24,1041054,52500,34,0,0,0),
(689,24,1041055,52500,35,0,0,0),
(690,24,1060059,46500,36,0,0,0),
(691,24,1060058,46500,37,0,0,0),
(692,24,1060056,46500,38,0,0,0),
(693,24,1060057,46500,39,0,0,0),
(694,24,1061052,46500,40,0,0,0),
(695,24,1061050,46500,41,0,0,0),
(696,24,1061051,46500,42,0,0,0),
(697,24,1002171,32500,43,0,0,0),
(698,24,1002172,32500,44,0,0,0),
(699,24,1002173,32500,45,0,0,0),
(700,24,1002174,32500,46,0,0,0),
(701,24,1002175,32500,47,0,0,0),
(702,24,1040057,47500,48,0,0,0),
(703,24,1040058,47500,49,0,0,0),
(704,24,1040059,47500,50,0,0,0),
(705,24,1040060,47500,51,0,0,0),
(706,24,1041047,47500,52,0,0,0),
(707,24,1041048,47500,53,0,0,0),
(708,24,1041049,47500,54,0,0,0),
(709,24,1041050,47500,55,0,0,0),
(710,24,1060043,42500,56,0,0,0),
(711,24,1060044,42500,57,0,0,0),
(712,24,1060045,42500,58,0,0,0),
(713,24,1060046,42500,59,0,0,0),
(714,24,1061043,42500,60,0,0,0),
(715,24,1061044,42500,61,0,0,0),
(716,24,1061045,42500,62,0,0,0),
(717,24,1061046,42500,63,0,0,0),
(718,25,1302008,42500,1,0,0,0),
(719,25,1302068,352500,2,0,0,0),
(720,25,1312005,42500,3,0,0,0),
(721,25,1322014,42500,4,0,0,0),
(722,25,1332009,44500,5,0,0,0),
(723,25,1332012,42500,6,0,0,0),
(724,25,1372003,40500,7,0,0,0),
(725,25,1382002,22500,8,0,0,0),
(726,25,1402002,152500,9,0,0,0),
(727,25,1412006,47500,10,0,0,0),
(728,25,1422001,47500,11,0,0,0),
(729,25,1432002,62500,12,0,0,0),
(730,25,1442001,62500,13,0,0,0),
(731,25,1452005,152500,14,0,0,0),
(732,25,1462000,32500,15,0,0,0),
(733,25,1472001,22500,16,0,0,0),
(734,26,2000000,5,1,0,0,0),
(735,26,2000001,48,2,0,0,0),
(736,26,2000002,96,3,0,0,0),
(737,26,2000003,20,4,0,0,0),
(738,26,2000006,186,5,0,0,0),
(739,26,2002016,5000,6,0,0,0),
(740,26,2002017,7500,7,0,0,0),
(741,26,2002018,5000,8,0,0,0),
(742,26,2002019,5000,9,0,0,0),
(743,26,2002020,6800,10,0,0,0),
(744,26,2002021,6800,11,0,0,0),
(745,26,2002022,8100,12,0,0,0),
(746,26,2002023,13800,13,0,0,0),
(747,26,2002024,1500,14,0,0,0),
(748,26,2002025,1500,15,0,0,0),
(749,26,2010000,3,16,0,0,0),
(750,26,2010002,5,17,0,0,0),
(751,26,2010001,30,18,0,0,0),
(752,26,2010003,10,19,0,0,0),
(753,26,2010004,93,20,0,0,0),
(754,26,2022189,1000,21,0,0,0),
(755,26,2022191,1000,22,0,0,0),
(756,26,2022192,600,23,0,0,0),
(757,26,2022003,770,24,0,0,0),
(758,26,2022000,1155,25,0,0,0),
(759,26,2001000,3200,26,0,0,0),
(760,26,2001001,2300,27,0,0,0),
(761,26,2001002,4000,28,0,0,0),
(762,26,2022190,3000,29,0,0,0),
(763,26,2020012,4500,30,0,0,0),
(764,26,2020013,5600,31,0,0,0),
(765,26,2020014,8100,32,0,0,0),
(766,26,2020015,10200,33,0,0,0),
(767,26,2022195,15000,34,0,0,0),
(768,26,2030000,400,35,0,0,0),
(769,26,2060000,1,36,0,0,0),
(770,26,2061000,1,37,0,0,0),
(773,26,2070000,500,40,0,0,0),
(774,27,2022021,550,1,0,0,0),
(775,27,2022022,1300,2,0,0,0),
(776,28,2022014,650,1,0,0,0),
(777,28,2022023,1350,2,0,0,0),
(778,29,2022024,2000,1,0,0,0),
(779,29,2022025,4200,2,0,0,0),
(780,30,2022026,1800,1,0,0,0),
(781,30,2022027,3800,2,0,0,0),
(782,31,2022017,1100,1,0,0,0),
(783,31,2022018,1600,2,0,0,0),
(784,31,2022019,850,3,0,0,0),
(785,31,2022020,550,4,0,0,0),
(786,32,1050131,100000,1,0,0,0),
(787,32,1050132,100000,2,0,0,0),
(788,32,1050133,100000,3,0,0,0),
(789,32,1050134,100000,4,0,0,0),
(790,32,1051150,100000,5,0,0,0),
(791,32,1051151,100000,6,0,0,0),
(792,32,1051152,100000,7,0,0,0),
(793,32,1051153,100000,8,0,0,0),
(794,33,1302008,40000,1,0,0,0),
(795,33,1312005,40000,2,0,0,0),
(796,33,1322014,40000,3,0,0,0),
(797,33,1332009,42000,4,0,0,0),
(798,33,1332012,40000,5,0,0,0),
(799,33,1372003,38000,6,0,0,0),
(800,33,1382002,20000,7,0,0,0),
(801,33,1402002,150000,8,0,0,0),
(802,33,1412006,45000,9,0,0,0),
(803,33,1422001,45000,10,0,0,0),
(804,33,1432002,60000,11,0,0,0),
(805,33,1442001,60000,12,0,0,0),
(806,33,1452005,150000,13,0,0,0),
(807,33,1462000,30000,14,0,0,0),
(808,33,1472001,20000,15,0,0,0),
(809,34,1002023,120000,1,0,0,0),
(810,34,1040021,40000,2,0,0,0),
(811,34,1040026,40000,3,0,0,0),
(812,34,1051010,60000,4,0,0,0),
(813,34,1051011,60000,5,0,0,0),
(814,34,1051012,60000,6,0,0,0),
(815,34,1051013,60000,7,0,0,0),
(816,34,1060016,38000,8,0,0,0),
(817,34,1060017,38000,9,0,0,0),
(818,34,1060018,38000,10,0,0,0),
(819,34,1060019,38000,11,0,0,0),
(820,34,1092006,60000,12,0,0,0),
(821,34,1002064,40000,13,0,0,0),
(822,34,1041041,42000,14,0,0,0),
(823,34,1041042,42000,15,0,0,0),
(824,34,1041043,42000,16,0,0,0),
(825,34,1050003,40000,17,0,0,0),
(826,34,1050026,40000,18,0,0,0),
(827,34,1050027,40000,19,0,0,0),
(828,34,1050028,40000,20,0,0,0),
(829,34,1061034,40000,21,0,0,0),
(830,34,1061035,40000,22,0,0,0),
(831,34,1061036,40000,23,0,0,0),
(832,34,1002161,30000,24,0,0,0),
(833,34,1002162,30000,25,0,0,0),
(834,34,1002163,30000,26,0,0,0),
(835,34,1002164,30000,27,0,0,0),
(836,34,1002165,30000,28,0,0,0),
(837,34,1040069,50000,29,0,0,0),
(838,34,1040070,50000,30,0,0,0),
(839,34,1040067,50000,31,0,0,0),
(840,34,1040068,50000,32,0,0,0),
(841,34,1041056,50000,33,0,0,0),
(842,34,1041054,50000,34,0,0,0),
(843,34,1041055,50000,35,0,0,0),
(844,34,1060059,44000,36,0,0,0),
(845,34,1060058,44000,37,0,0,0),
(846,34,1060056,44000,38,0,0,0),
(847,34,1060057,44000,39,0,0,0),
(848,34,1061052,44000,40,0,0,0),
(849,34,1061050,44000,41,0,0,0),
(850,34,1061051,44000,42,0,0,0),
(851,34,1002171,30000,43,0,0,0),
(852,34,1002172,30000,44,0,0,0),
(853,34,1002173,30000,45,0,0,0),
(854,34,1002174,30000,46,0,0,0),
(855,34,1002175,30000,47,0,0,0),
(856,34,1040057,45000,48,0,0,0),
(857,34,1040058,45000,49,0,0,0),
(858,34,1040059,45000,50,0,0,0),
(859,34,1040060,45000,51,0,0,0),
(860,34,1041047,45000,52,0,0,0),
(861,34,1041048,45000,53,0,0,0),
(862,34,1041049,45000,54,0,0,0),
(863,34,1041050,45000,55,0,0,0),
(864,34,1060043,40000,56,0,0,0),
(865,34,1060044,40000,57,0,0,0),
(866,34,1060045,40000,58,0,0,0),
(867,34,1060046,40000,59,0,0,0),
(868,34,1061043,40000,60,0,0,0),
(869,34,1061044,40000,61,0,0,0),
(870,34,1061045,40000,62,0,0,0),
(871,34,1061046,40000,63,0,0,0),
(872,35,2000000,5,1,0,0,0),
(873,35,2000001,48,2,0,0,0),
(874,35,2000002,96,3,0,0,0),
(875,35,2000003,20,4,0,0,0),
(876,35,2000006,186,5,0,0,0),
(877,35,2002000,500,6,0,0,0),
(878,35,2002001,400,7,0,0,0),
(879,35,2002002,500,8,0,0,0),
(880,35,2002004,500,9,0,0,0),
(881,35,2002005,500,10,0,0,0),
(882,35,2022003,770,11,0,0,0),
(883,35,2022000,1155,12,0,0,0),
(884,35,2001000,3200,13,0,0,0),
(885,35,2001001,2300,14,0,0,0),
(886,35,2001002,4000,15,0,0,0),
(887,35,2010000,3,16,0,0,0),
(888,35,2010002,5,17,0,0,0),
(889,35,2010001,30,18,0,0,0),
(890,35,2010003,10,19,0,0,0),
(891,35,2010004,93,20,0,0,0),
(892,35,2020028,3000,21,0,0,0),
(893,35,2050000,200,22,0,0,0),
(894,35,2050001,200,23,0,0,0),
(895,35,2050002,300,24,0,0,0),
(896,35,2050003,500,25,0,0,0),
(897,35,2030000,400,26,0,0,0),
(898,35,2060000,1,27,0,0,0),
(899,35,2061000,1,28,0,0,0),
(902,35,2070000,500,31,0,0,0),
(903,36,1302004,100000,1,0,0,0),
(904,36,1302009,225000,2,0,0,0),
(905,36,1312006,100000,3,0,0,0),
(906,36,1312007,175000,4,0,0,0),
(907,36,1322015,100000,5,0,0,0),
(908,36,1322016,175000,6,0,0,0),
(909,36,1332001,200000,7,0,0,0),
(910,36,1332014,375000,8,0,0,0),
(911,36,1332011,425000,9,0,0,0),
(912,36,1372001,175000,10,0,0,0),
(913,36,1372000,400000,11,0,0,0),
(914,36,1402006,350000,12,0,0,0),
(915,36,1402007,450000,13,0,0,0),
(916,36,1412004,200000,14,0,0,0),
(917,36,1412005,250000,15,0,0,0),
(918,36,1422008,200000,16,0,0,0),
(919,36,1422007,250000,17,0,0,0),
(920,36,1432003,175000,18,0,0,0),
(921,36,1432005,225000,19,0,0,0),
(922,36,1442003,175000,20,0,0,0),
(923,36,1442009,300000,21,0,0,0),
(924,36,1452006,250000,22,0,0,0),
(925,36,1452007,375000,23,0,0,0),
(926,36,1462004,200000,24,0,0,0),
(927,36,1462005,250000,25,0,0,0),
(928,36,1472004,30000,26,0,0,0),
(929,36,1472007,60000,27,0,0,0),
(930,37,1072168,30000,1,0,0,0),
(931,37,1072169,28000,2,0,0,0),
(932,37,1072170,29000,3,0,0,0),
(933,37,1072171,29000,4,0,0,0),
(934,37,1002004,160000,5,0,0,0),
(935,37,1040000,200000,6,0,0,0),
(936,37,1040085,200000,7,0,0,0),
(937,37,1041084,200000,8,0,0,0),
(938,37,1041085,200000,9,0,0,0),
(939,37,1050000,112500,10,0,0,0),
(940,37,1050021,112500,11,0,0,0),
(941,37,1051001,112500,12,0,0,0),
(942,37,1051014,112500,13,0,0,0),
(943,37,1060075,180000,14,0,0,0),
(944,37,1060074,180000,15,0,0,0),
(945,37,1061083,180000,16,0,0,0),
(946,37,1061084,180000,17,0,0,0),
(947,37,1092001,100000,18,0,0,0),
(948,37,1092002,200000,19,0,0,0),
(949,37,1002141,96000,20,0,0,0),
(950,37,1002142,96000,21,0,0,0),
(951,37,1002143,96000,22,0,0,0),
(952,37,1002144,96000,23,0,0,0),
(953,37,1041052,120000,24,0,0,0),
(954,37,1041051,120000,25,0,0,0),
(955,37,1050031,300000,26,0,0,0),
(956,37,1050002,300000,27,0,0,0),
(957,37,1050035,450000,28,0,0,0),
(958,37,1050038,450000,29,0,0,0),
(959,37,1050036,450000,30,0,0,0),
(960,37,1050037,450000,31,0,0,0),
(961,37,1051023,450000,32,0,0,0),
(962,37,1051025,450000,33,0,0,0),
(963,37,1051024,450000,34,0,0,0),
(964,37,1051027,450000,35,0,0,0),
(965,37,1061048,120000,36,0,0,0),
(966,37,1061047,120000,37,0,0,0),
(967,37,1002138,100000,38,0,0,0),
(968,37,1002139,100000,39,0,0,0),
(969,37,1002135,100000,40,0,0,0),
(970,37,1002137,100000,41,0,0,0),
(971,37,1040072,114000,42,0,0,0),
(972,37,1040073,114000,43,0,0,0),
(973,37,1040074,114000,44,0,0,0),
(974,37,1040076,114000,45,0,0,0),
(975,37,1040081,180000,46,0,0,0),
(976,37,1040079,180000,47,0,0,0),
(977,37,1041066,114000,48,0,0,0),
(978,37,1041069,114000,49,0,0,0),
(979,37,1041065,114000,50,0,0,0),
(980,37,1041067,114000,51,0,0,0),
(981,37,1041082,180000,52,0,0,0),
(982,37,1041081,180000,53,0,0,0),
(983,37,1060062,108000,54,0,0,0),
(984,37,1060065,108000,55,0,0,0),
(985,37,1060061,108000,56,0,0,0),
(986,37,1060063,108000,57,0,0,0),
(987,37,1060070,160000,58,0,0,0),
(988,37,1060069,160000,59,0,0,0),
(989,37,1061061,108000,60,0,0,0),
(990,37,1061064,108000,61,0,0,0),
(991,37,1061060,108000,62,0,0,0),
(992,37,1061062,108000,63,0,0,0),
(993,37,1061081,160000,64,0,0,0),
(994,37,1061080,160000,65,0,0,0),
(995,37,1002176,100000,66,0,0,0),
(996,37,1002177,100000,67,0,0,0),
(997,37,1002178,100000,68,0,0,0),
(998,37,1002179,100000,69,0,0,0),
(999,37,1002180,100000,70,0,0,0),
(1000,37,1040063,114000,71,0,0,0),
(1001,37,1040062,114000,72,0,0,0),
(1002,37,1040061,114000,73,0,0,0),
(1003,37,1040082,180000,74,0,0,0),
(1004,37,1040083,180000,75,0,0,0),
(1005,37,1041075,180000,76,0,0,0),
(1006,37,1041074,180000,77,0,0,0),
(1007,37,1051007,111000,78,0,0,0),
(1008,37,1051008,111000,79,0,0,0),
(1009,37,1051009,111000,80,0,0,0),
(1010,37,1060051,108000,81,0,0,0),
(1011,37,1060050,108000,82,0,0,0),
(1012,37,1060052,108000,83,0,0,0),
(1013,37,1060071,160000,84,0,0,0),
(1014,37,1060072,160000,85,0,0,0),
(1015,37,1061070,160000,86,0,0,0),
(1016,37,1061069,160000,87,0,0,0),
(1017,38,2022001,400,1,0,0,0),
(1018,38,2022186,2400,2,0,0,0),
(1019,38,2000000,5,3,0,0,0),
(1020,38,2000001,48,4,0,0,0),
(1021,38,2000002,96,5,0,0,0),
(1022,38,2000003,20,6,0,0,0),
(1023,38,2000006,186,7,0,0,0),
(1024,38,2002000,500,8,0,0,0),
(1025,38,2002001,400,9,0,0,0),
(1026,38,2002002,500,10,0,0,0),
(1027,38,2002004,500,11,0,0,0),
(1028,38,2002005,500,12,0,0,0),
(1029,38,2010000,3,13,0,0,0),
(1030,38,2010002,5,14,0,0,0),
(1031,38,2010001,30,15,0,0,0),
(1032,38,2010003,10,16,0,0,0),
(1033,38,2010004,93,17,0,0,0),
(1034,38,2022003,770,18,0,0,0),
(1035,38,2022000,1155,19,0,0,0),
(1036,38,2001000,3200,20,0,0,0),
(1037,38,2001001,2300,21,0,0,0),
(1038,38,2001002,4000,22,0,0,0),
(1039,38,2020012,4500,23,0,0,0),
(1040,38,2020013,5600,24,0,0,0),
(1041,38,2020014,8100,25,0,0,0),
(1042,38,2020015,10200,26,0,0,0),
(1043,38,2050000,200,27,0,0,0),
(1044,38,2050001,200,28,0,0,0),
(1045,38,2050002,300,29,0,0,0),
(1046,38,2030000,400,30,0,0,0),
(1047,38,2060000,1,31,0,0,0),
(1048,38,2061000,1,32,0,0,0),
(1051,38,2070000,500,300,0,0,0),
(1052,39,2000001,48,1,0,0,0),
(1053,39,2000002,96,2,0,0,0),
(1054,39,2000003,20,3,0,0,0),
(1055,39,2000006,186,4,0,0,0),
(1056,39,2002000,520,5,0,0,0),
(1057,39,2002001,416,6,0,0,0),
(1058,39,2002002,520,7,0,0,0),
(1059,39,2002004,520,8,0,0,0),
(1060,39,2002005,520,9,0,0,0),
(1061,39,2001000,3328,10,0,0,0),
(1062,39,2001001,2392,11,0,0,0),
(1063,39,2001002,4160,12,0,0,0),
(1064,39,2020005,96,13,0,0,0),
(1065,39,2010004,93,14,0,0,0),
(1066,39,2020001,66,15,0,0,0),
(1067,39,2020003,225,16,0,0,0),
(1068,39,2020004,225,17,0,0,0),
(1069,39,2020006,265,18,0,0,0),
(1070,39,2022003,770,19,0,0,0),
(1071,39,2022000,1155,20,0,0,0),
(1072,39,2020012,4680,21,0,0,0),
(1073,39,2020013,5824,22,0,0,0),
(1074,39,2020014,8424,23,0,0,0),
(1075,39,2020015,10608,24,0,0,0),
(1076,39,2030000,400,25,0,0,0),
(1077,39,2060000,1,26,0,0,0),
(1078,39,2061000,1,27,0,0,0),
(1081,39,2070000,500,30,0,0,0),
(1082,40,1002023,120000,1,0,0,0),
(1083,40,1002048,160000,2,0,0,0),
(1084,40,1002034,60000,3,0,0,0),
(1085,40,1002142,96000,4,0,0,0),
(1086,40,1002162,60000,5,0,0,0),
(1087,40,1002138,100000,6,0,0,0),
(1088,40,1002172,60000,7,0,0,0),
(1089,40,1002177,100000,8,0,0,0),
(1090,40,1051011,60000,9,0,0,0),
(1091,40,1051012,60000,10,0,0,0),
(1092,40,1051013,60000,11,0,0,0),
(1093,40,1050011,70000,12,0,0,0),
(1094,40,1040021,40000,13,0,0,0),
(1095,40,1040026,40000,14,0,0,0),
(1096,40,1060016,38000,15,0,0,0),
(1097,40,1060017,38000,16,0,0,0),
(1098,40,1050000,112500,17,0,0,0),
(1099,40,1050021,112500,18,0,0,0),
(1100,40,1051001,112500,19,0,0,0),
(1101,40,1051014,112500,20,0,0,0),
(1102,40,1051015,112500,21,0,0,0),
(1103,40,1040085,200000,22,0,0,0),
(1104,40,1040086,200000,23,0,0,0),
(1105,40,1041084,200000,24,0,0,0),
(1106,40,1041085,200000,25,0,0,0),
(1107,40,1060074,180000,26,0,0,0),
(1108,40,1060075,180000,27,0,0,0),
(1109,40,1061083,180000,28,0,0,0),
(1110,40,1061084,180000,29,0,0,0),
(1111,40,1041041,42000,30,0,0,0),
(1112,40,1041042,42000,31,0,0,0),
(1113,40,1041043,42000,32,0,0,0),
(1114,40,1061034,40000,33,0,0,0),
(1115,40,1061035,40000,34,0,0,0),
(1116,40,1061036,40000,35,0,0,0),
(1117,40,1050003,40000,36,0,0,0),
(1118,40,1050026,40000,37,0,0,0),
(1119,40,1050028,40000,38,0,0,0),
(1120,40,1041051,120000,39,0,0,0),
(1121,40,1041052,120000,40,0,0,0),
(1122,40,1061047,120000,41,0,0,0),
(1123,40,1061048,120000,42,0,0,0),
(1124,40,1050002,300000,43,0,0,0),
(1125,40,1050030,300000,44,0,0,0),
(1126,40,1050031,300000,45,0,0,0),
(1127,40,1051023,450000,46,0,0,0),
(1128,40,1051024,450000,47,0,0,0),
(1129,40,1051025,450000,48,0,0,0),
(1130,40,1050036,450000,49,0,0,0),
(1131,40,1050037,450000,50,0,0,0),
(1132,40,1050038,450000,51,0,0,0),
(1133,40,1041054,50000,52,0,0,0),
(1134,40,1041056,50000,53,0,0,0),
(1135,40,1061050,44000,54,0,0,0),
(1136,40,1061052,44000,55,0,0,0),
(1137,40,1040067,50000,56,0,0,0),
(1138,40,1040069,50000,57,0,0,0),
(1139,40,1060056,44000,58,0,0,0),
(1140,40,1060058,44000,59,0,0,0),
(1141,40,1041065,114000,60,0,0,0),
(1142,40,1041066,114000,61,0,0,0),
(1143,40,1041067,114000,62,0,0,0),
(1144,40,1061060,108000,63,0,0,0),
(1145,40,1061061,108000,64,0,0,0),
(1146,40,1061062,108000,65,0,0,0),
(1147,40,1040072,114000,66,0,0,0),
(1148,40,1040073,114000,67,0,0,0),
(1149,40,1040074,114000,68,0,0,0),
(1150,40,1060061,108000,69,0,0,0),
(1151,40,1060062,108000,70,0,0,0),
(1152,40,1060063,108000,71,0,0,0),
(1153,40,1040079,180000,72,0,0,0),
(1154,40,1040081,180000,73,0,0,0),
(1155,40,1060069,160000,74,0,0,0),
(1156,40,1060070,160000,75,0,0,0),
(1157,40,1041081,180000,76,0,0,0),
(1158,40,1041082,180000,77,0,0,0),
(1159,40,1061080,160000,78,0,0,0),
(1160,40,1061081,160000,79,0,0,0),
(1161,40,1041047,45000,80,0,0,0),
(1162,40,1041049,45000,81,0,0,0),
(1163,40,1041050,45000,82,0,0,0),
(1164,40,1061043,40000,83,0,0,0),
(1165,40,1061045,40000,84,0,0,0),
(1166,40,1061046,40000,85,0,0,0),
(1167,40,1040057,45000,86,0,0,0),
(1168,40,1040059,45000,87,0,0,0),
(1169,40,1060043,40000,88,0,0,0),
(1170,40,1060045,40000,89,0,0,0),
(1171,40,1040061,114000,90,0,0,0),
(1172,40,1040062,114000,91,0,0,0),
(1173,40,1060050,108000,92,0,0,0),
(1174,40,1060051,108000,93,0,0,0),
(1175,40,1051007,111000,94,0,0,0),
(1176,40,1051008,111000,95,0,0,0),
(1177,40,1051009,111000,96,0,0,0),
(1178,40,1040082,180000,97,0,0,0),
(1179,40,1040083,180000,98,0,0,0),
(1180,40,1060071,160000,99,0,0,0),
(1181,40,1060072,160000,100,0,0,0),
(1182,40,1041074,180000,101,0,0,0),
(1183,40,1041075,180000,102,0,0,0),
(1184,40,1061069,160000,103,0,0,0),
(1185,40,1061070,160000,104,0,0,0),
(1186,41,2000000,5,1,0,0,0),
(1187,41,2000001,48,2,0,0,0),
(1188,41,2000002,96,3,0,0,0),
(1189,41,2000003,20,4,0,0,0),
(1190,41,2000006,186,5,0,0,0),
(1191,41,2002000,500,6,0,0,0),
(1192,41,2002001,400,7,0,0,0),
(1193,41,2002002,500,8,0,0,0),
(1194,41,2002004,500,9,0,0,0),
(1195,41,2002005,500,10,0,0,0),
(1196,41,2022040,300,11,0,0,0),
(1197,41,2022041,1600,12,0,0,0),
(1198,41,2001000,3200,13,0,0,0),
(1199,41,2001001,2300,14,0,0,0),
(1200,41,2001002,4000,15,0,0,0),
(1201,41,2010000,3,16,0,0,0),
(1202,41,2010002,5,17,0,0,0),
(1203,41,2010001,30,18,0,0,0),
(1204,41,2010003,10,19,0,0,0),
(1205,41,2010004,93,20,0,0,0),
(1206,41,2020012,4500,21,0,0,0),
(1207,41,2020013,5600,22,0,0,0),
(1208,41,2020014,8100,23,0,0,0),
(1209,41,2020015,10200,24,0,0,0),
(1210,41,2022003,770,25,0,0,0),
(1211,41,2022000,1155,26,0,0,0),
(1212,41,2030000,400,27,0,0,0),
(1213,41,2060000,1,28,0,0,0),
(1214,41,2061000,1,29,0,0,0),
(1217,41,2060001,10,32,0,0,0),
(1218,41,2061001,10,33,0,0,0),
(1219,41,2070000,500,34,0,0,0),
(1220,42,1302003,20000,1,0,0,0),
(1221,42,1302008,40000,2,0,0,0),
(1222,42,1302004,100000,3,0,0,0),
(1223,42,1302009,225000,4,0,0,0),
(1224,42,1312003,20000,5,0,0,0),
(1225,42,1312005,40000,6,0,0,0),
(1226,42,1312006,100000,7,0,0,0),
(1227,42,1312007,175000,8,0,0,0),
(1228,42,1322004,22000,9,0,0,0),
(1229,42,1322014,40000,10,0,0,0),
(1230,42,1322015,100000,11,0,0,0),
(1231,42,1322016,175000,12,0,0,0),
(1232,42,1332004,38000,13,0,0,0),
(1233,42,1332012,40000,14,0,0,0),
(1234,42,1332014,375000,15,0,0,0),
(1235,42,1332011,425000,16,0,0,0),
(1236,42,1372004,18000,17,0,0,0),
(1237,42,1382002,20000,18,0,0,0),
(1238,42,1372003,38000,19,0,0,0),
(1239,42,1372001,175000,20,0,0,0),
(1240,42,1372000,400000,21,0,0,0),
(1241,42,1402008,22000,22,0,0,0),
(1242,42,1402002,150000,23,0,0,0),
(1243,42,1402006,350000,24,0,0,0),
(1244,42,1402007,450000,25,0,0,0),
(1245,42,1412000,22000,26,0,0,0),
(1246,42,1412004,200000,27,0,0,0),
(1247,42,1412006,45000,28,0,0,0),
(1248,42,1412005,250000,29,0,0,0),
(1249,42,1422004,20000,30,0,0,0),
(1250,42,1422001,45000,31,0,0,0),
(1251,42,1422008,200000,32,0,0,0),
(1252,42,1422007,250000,33,0,0,0),
(1253,42,1432002,60000,34,0,0,0),
(1254,42,1432003,175000,35,0,0,0),
(1255,42,1432005,225000,36,0,0,0),
(1256,42,1442004,24000,37,0,0,0),
(1257,42,1442001,60000,38,0,0,0),
(1258,42,1442003,175000,39,0,0,0),
(1259,42,1442009,300000,40,0,0,0),
(1260,42,1452000,20000,41,0,0,0),
(1261,42,1452005,150000,42,0,0,0),
(1262,42,1452006,250000,43,0,0,0),
(1263,42,1452007,375000,44,0,0,0),
(1264,42,1462003,12000,45,0,0,0),
(1265,42,1462000,30000,46,0,0,0),
(1266,42,1462004,200000,47,0,0,0),
(1267,42,1462005,250000,48,0,0,0),
(1268,42,1472007,60000,49,0,0,0),
(1269,43,2000000,5,1,0,0,0),
(1270,43,2000001,48,2,0,0,0),
(1271,43,2000002,96,3,0,0,0),
(1272,43,2000003,20,4,0,0,0),
(1273,43,2000006,186,5,0,0,0),
(1274,43,2002000,500,6,0,0,0),
(1275,43,2002001,400,7,0,0,0),
(1276,43,2002002,500,8,0,0,0),
(1277,43,2002004,500,9,0,0,0),
(1278,43,2002005,500,10,0,0,0),
(1279,43,2001000,3200,11,0,0,0),
(1280,43,2001001,2300,12,0,0,0),
(1281,43,2001002,4000,13,0,0,0),
(1282,43,2010000,3,14,0,0,0),
(1283,43,2010002,5,15,0,0,0),
(1284,43,2010001,30,16,0,0,0),
(1285,43,2010003,10,17,0,0,0),
(1286,43,2010004,93,18,0,0,0),
(1287,43,2020012,4500,19,0,0,0),
(1288,43,2020013,5600,20,0,0,0),
(1289,43,2020014,8100,21,0,0,0),
(1290,43,2020015,10200,22,0,0,0),
(1291,43,2022003,770,23,0,0,0),
(1292,43,2022000,1155,24,0,0,0),
(1293,43,2030000,400,25,0,0,0),
(1294,43,2060000,1,26,0,0,0),
(1295,43,2061000,1,27,0,0,0),
(1298,43,2060001,10,30,0,0,0),
(1299,43,2061001,10,31,0,0,0),
(1300,43,2070000,500,32,0,0,0),
(1301,44,1302004,100000,1,0,0,0),
(1302,44,1302009,225000,2,0,0,0),
(1303,44,1312006,100000,3,0,0,0),
(1304,44,1312007,175000,4,0,0,0),
(1305,44,1322015,100000,5,0,0,0),
(1306,44,1322016,175000,6,0,0,0),
(1307,44,1332001,200000,7,0,0,0),
(1308,44,1332014,375000,8,0,0,0),
(1309,44,1332011,425000,9,0,0,0),
(1310,44,1372001,175000,10,0,0,0),
(1311,44,1372000,400000,11,0,0,0),
(1312,44,1402006,350000,12,0,0,0),
(1313,44,1402007,450000,13,0,0,0),
(1314,44,1412004,200000,14,0,0,0),
(1315,44,1412005,250000,15,0,0,0),
(1316,44,1422008,200000,16,0,0,0),
(1317,44,1422007,250000,17,0,0,0),
(1318,44,1432003,175000,18,0,0,0),
(1319,44,1432005,225000,19,0,0,0),
(1320,44,1442003,175000,20,0,0,0),
(1321,44,1442009,300000,21,0,0,0),
(1322,44,1452006,250000,22,0,0,0),
(1323,44,1452007,375000,23,0,0,0),
(1324,44,1462004,200000,24,0,0,0),
(1325,44,1462005,250000,25,0,0,0),
(1326,44,1472004,30000,26,0,0,0),
(1327,44,1472007,60000,27,0,0,0),
(1328,45,1002004,160000,1,0,0,0),
(1329,45,1040000,200000,2,0,0,0),
(1330,45,1040085,200000,3,0,0,0),
(1331,45,1041084,200000,4,0,0,0),
(1332,45,1041085,200000,5,0,0,0),
(1333,45,1050000,112500,6,0,0,0),
(1334,45,1050021,112500,7,0,0,0),
(1335,45,1051001,112500,8,0,0,0),
(1336,45,1051014,112500,9,0,0,0),
(1337,45,1060075,180000,10,0,0,0),
(1338,45,1060074,180000,11,0,0,0),
(1339,45,1061083,180000,12,0,0,0),
(1340,45,1061084,180000,13,0,0,0),
(1341,45,1092001,100000,14,0,0,0),
(1342,45,1092002,200000,15,0,0,0),
(1343,45,1002141,96000,16,0,0,0),
(1344,45,1002142,96000,17,0,0,0),
(1345,45,1002143,96000,18,0,0,0),
(1346,45,1002144,96000,19,0,0,0),
(1347,45,1041052,120000,20,0,0,0),
(1348,45,1041051,120000,21,0,0,0),
(1349,45,1050031,300000,22,0,0,0),
(1350,45,1050002,300000,23,0,0,0),
(1351,45,1050035,450000,24,0,0,0),
(1352,45,1050038,450000,25,0,0,0),
(1353,45,1050036,450000,26,0,0,0),
(1354,45,1050037,450000,27,0,0,0),
(1355,45,1051023,450000,28,0,0,0),
(1356,45,1051025,450000,29,0,0,0),
(1357,45,1051024,450000,30,0,0,0),
(1358,45,1051027,450000,31,0,0,0),
(1359,45,1061048,120000,32,0,0,0),
(1360,45,1061047,120000,33,0,0,0),
(1361,45,1002138,100000,34,0,0,0),
(1362,45,1002139,100000,35,0,0,0),
(1363,45,1002135,100000,36,0,0,0),
(1364,45,1002137,100000,37,0,0,0),
(1365,45,1040072,114000,38,0,0,0),
(1366,45,1040073,114000,39,0,0,0),
(1367,45,1040074,114000,40,0,0,0),
(1368,45,1040076,114000,41,0,0,0),
(1369,45,1040081,180000,42,0,0,0),
(1370,45,1040079,180000,43,0,0,0),
(1371,45,1041066,114000,44,0,0,0),
(1372,45,1041069,114000,45,0,0,0),
(1373,45,1041065,114000,46,0,0,0),
(1374,45,1041067,114000,47,0,0,0),
(1375,45,1041082,180000,48,0,0,0),
(1376,45,1061080,180000,49,0,0,0),
(1377,45,1060062,108000,50,0,0,0),
(1378,45,1060065,108000,51,0,0,0),
(1379,45,1060061,108000,52,0,0,0),
(1380,45,1060063,108000,53,0,0,0),
(1381,45,1060070,160000,54,0,0,0),
(1382,45,1060069,160000,55,0,0,0),
(1383,45,1061061,108000,56,0,0,0),
(1384,45,1061064,108000,57,0,0,0),
(1385,45,1061060,108000,58,0,0,0),
(1386,45,1061062,108000,59,0,0,0),
(1387,45,1061081,160000,60,0,0,0),
(1388,45,1061080,160000,61,0,0,0),
(1389,45,1002176,100000,62,0,0,0),
(1390,45,1002177,100000,63,0,0,0),
(1391,45,1002178,100000,64,0,0,0),
(1392,45,1002179,100000,65,0,0,0),
(1393,45,1002180,100000,66,0,0,0),
(1394,45,1040063,114000,67,0,0,0),
(1395,45,1040062,114000,68,0,0,0),
(1396,45,1040061,114000,69,0,0,0),
(1397,45,1040082,180000,70,0,0,0),
(1398,45,1040083,180000,71,0,0,0),
(1399,45,1041075,180000,72,0,0,0),
(1400,45,1041074,180000,73,0,0,0),
(1401,45,1051007,111000,74,0,0,0),
(1402,45,1051008,111000,75,0,0,0),
(1403,45,1051009,111000,76,0,0,0),
(1404,45,1060051,108000,77,0,0,0),
(1405,45,1060050,108000,78,0,0,0),
(1406,45,1060052,108000,79,0,0,0),
(1407,45,1060071,160000,80,0,0,0),
(1408,45,1060072,160000,81,0,0,0),
(1409,45,1061070,160000,82,0,0,0),
(1410,45,1061069,160000,83,0,0,0),
(1411,46,2040003,35000,1,0,0,0),
(1412,46,2040300,35000,2,0,0,0),
(1413,46,2040400,35000,3,0,0,0),
(1414,46,2040503,35000,4,0,0,0),
(1415,46,2040600,35000,5,0,0,0),
(1416,46,2040700,35000,6,0,0,0),
(1417,46,2040800,35000,7,0,0,0),
(1418,46,2040900,35000,8,0,0,0),
(1419,46,2041000,35000,9,0,0,0),
(1420,46,2041003,35000,10,0,0,0),
(1421,46,2043000,70000,11,0,0,0),
(1422,46,2043100,70000,12,0,0,0),
(1423,46,2043200,70000,13,0,0,0),
(1424,46,2043300,70000,14,0,0,0),
(1425,46,2043700,70000,15,0,0,0),
(1426,46,2043800,70000,16,0,0,0),
(1427,46,2044000,70000,17,0,0,0),
(1428,46,2044100,70000,18,0,0,0),
(1429,46,2044200,70000,19,0,0,0),
(1430,46,2044300,70000,20,0,0,0),
(1431,46,2044400,70000,21,0,0,0),
(1432,46,2044500,70000,22,0,0,0),
(1433,46,2044600,70000,23,0,0,0),
(1434,46,2044700,70000,24,0,0,0),
(1435,40,1912000,10000000,-1,0,0,0),
(1436,40,1902000,10000000,-2,0,0,0),
(1437,40,1902001,40000000,-3,0,0,0),
(1438,47,2002010,500,1,0,0,0),
(1439,47,2002006,600,2,0,0,0),
(1440,47,2002007,600,3,0,0,0),
(1441,47,2002008,600,4,0,0,0),
(1442,47,2002009,600,5,0,0,0),
(1443,47,2022003,770,6,0,0,0),
(1444,47,2022000,1155,7,0,0,0),
(1445,47,2001001,2300,8,0,0,0),
(1446,47,2001002,4000,9,0,0,0),
(1447,47,2020012,4680,10,0,0,0),
(1448,47,2020013,5824,11,0,0,0),
(1449,47,2020014,8100,12,0,0,0),
(1450,47,2020015,10200,13,0,0,0),
(1451,47,2000007,5,14,0,0,0),
(1452,47,2000000,5,15,0,0,0),
(1453,47,2000008,48,16,0,0,0),
(1454,47,2000001,48,17,0,0,0),
(1455,47,2000009,96,18,0,0,0),
(1456,47,2000002,96,19,0,0,0),
(1457,47,2000010,20,20,0,0,0),
(1458,47,2000003,20,21,0,0,0),
(1459,47,2000011,186,22,0,0,0),
(1460,47,2000006,186,23,0,0,0),
(1461,47,2050000,200,24,0,0,0),
(1462,47,2050001,200,25,0,0,0),
(1463,47,2050002,300,26,0,0,0),
(1464,47,2050003,500,27,0,0,0),
(1465,47,2060000,1,28,0,0,0),
(1466,47,2061000,1,29,0,0,0),
(1469,47,2060001,10,32,0,0,0),
(1470,47,2061001,10,33,0,0,0),
(1471,47,2030000,400,34,0,0,0),
(1472,48,1302008,40000,1,0,0,0),
(1473,48,1302004,100000,2,0,0,0),
(1474,48,1302009,225000,3,0,0,0),
(1475,48,1312005,40000,4,0,0,0),
(1476,48,1312006,100000,5,0,0,0),
(1477,48,1312007,175000,6,0,0,0),
(1478,48,1322014,40000,7,0,0,0),
(1479,48,1322015,100000,8,0,0,0),
(1480,48,1322016,175000,9,0,0,0),
(1481,48,1332009,42000,10,0,0,0),
(1482,48,1332012,40000,11,0,0,0),
(1483,48,1332001,200000,12,0,0,0),
(1484,48,1332014,375000,13,0,0,0),
(1485,48,1332011,425000,14,0,0,0),
(1486,48,1372003,38000,15,0,0,0),
(1487,48,1372001,175000,16,0,0,0),
(1488,48,1372000,400000,17,0,0,0),
(1489,48,1382002,20000,18,0,0,0),
(1490,48,1402002,150000,19,0,0,0),
(1491,48,1402006,350000,20,0,0,0),
(1492,48,1402007,450000,21,0,0,0),
(1493,48,1412006,45000,22,0,0,0),
(1494,48,1412004,200000,23,0,0,0),
(1495,48,1412005,250000,24,0,0,0),
(1496,48,1422001,45000,25,0,0,0),
(1497,48,1422008,200000,26,0,0,0),
(1498,48,1422007,250000,27,0,0,0),
(1499,48,1432002,60000,28,0,0,0),
(1500,48,1432003,175000,29,0,0,0),
(1501,48,1432005,225000,30,0,0,0),
(1502,48,1442001,60000,31,0,0,0),
(1503,48,1442003,175000,32,0,0,0),
(1504,48,1442009,300000,33,0,0,0),
(1505,48,1452005,150000,34,0,0,0),
(1506,48,1452006,250000,35,0,0,0),
(1507,48,1452007,375000,36,0,0,0),
(1508,48,1462000,30000,37,0,0,0),
(1509,48,1462004,200000,38,0,0,0),
(1510,48,1462005,250000,39,0,0,0),
(1511,48,1472001,20000,40,0,0,0),
(1512,48,1472004,30000,41,0,0,0),
(1513,48,1472007,60000,42,0,0,0),
(1514,49,1002004,160000,1,0,0,0),
(1515,49,1040000,200000,2,0,0,0),
(1516,49,1040085,200000,3,0,0,0),
(1517,49,1041084,200000,4,0,0,0),
(1518,49,1041085,200000,5,0,0,0),
(1519,49,1050000,112500,6,0,0,0),
(1520,49,1050021,112500,7,0,0,0),
(1521,49,1051001,112500,8,0,0,0),
(1522,49,1051014,112500,9,0,0,0),
(1523,49,1060075,180000,10,0,0,0),
(1524,49,1060074,180000,11,0,0,0),
(1525,49,1061083,180000,12,0,0,0),
(1526,49,1061084,180000,13,0,0,0),
(1527,49,1092001,100000,14,0,0,0),
(1528,49,1092002,200000,15,0,0,0),
(1529,49,1002141,96000,16,0,0,0),
(1530,49,1002142,96000,17,0,0,0),
(1531,49,1002143,96000,18,0,0,0),
(1532,49,1002144,96000,19,0,0,0),
(1533,49,1041052,120000,20,0,0,0),
(1534,49,1041051,120000,21,0,0,0),
(1535,49,1050031,300000,22,0,0,0),
(1536,49,1050002,300000,23,0,0,0),
(1537,49,1050035,450000,24,0,0,0),
(1538,49,1050038,450000,25,0,0,0),
(1539,49,1050036,450000,26,0,0,0),
(1540,49,1050037,450000,27,0,0,0),
(1541,49,1051023,450000,28,0,0,0),
(1542,49,1051025,450000,29,0,0,0),
(1543,49,1051024,450000,30,0,0,0),
(1544,49,1051027,450000,31,0,0,0),
(1545,49,1061048,120000,32,0,0,0),
(1546,49,1061047,120000,33,0,0,0),
(1547,49,1002138,100000,34,0,0,0),
(1548,49,1002139,100000,35,0,0,0),
(1549,49,1002135,100000,36,0,0,0),
(1550,49,1002137,100000,37,0,0,0),
(1551,49,1040072,114000,38,0,0,0),
(1552,49,1040073,114000,39,0,0,0),
(1553,49,1040074,114000,40,0,0,0),
(1554,49,1040076,114000,41,0,0,0),
(1555,49,1040081,180000,42,0,0,0),
(1556,49,1040079,180000,43,0,0,0),
(1557,49,1041066,114000,44,0,0,0),
(1558,49,1041069,114000,45,0,0,0),
(1559,49,1041065,114000,46,0,0,0),
(1560,49,1041067,114000,47,0,0,0),
(1561,49,1041082,180000,48,0,0,0),
(1562,49,1041081,180000,49,0,0,0),
(1563,49,1060062,108000,50,0,0,0),
(1564,49,1060065,108000,51,0,0,0),
(1565,49,1060061,108000,52,0,0,0),
(1566,49,1060063,108000,53,0,0,0),
(1567,49,1060070,160000,54,0,0,0),
(1568,49,1060069,160000,55,0,0,0),
(1569,49,1061061,108000,56,0,0,0),
(1570,49,1061064,108000,57,0,0,0),
(1571,49,1061060,108000,58,0,0,0),
(1572,49,1061062,108000,59,0,0,0),
(1573,49,1061081,160000,60,0,0,0),
(1574,49,1061080,160000,61,0,0,0),
(1575,49,1002176,100000,62,0,0,0),
(1576,49,1002177,100000,63,0,0,0),
(1577,49,1002178,100000,64,0,0,0),
(1578,49,1002179,100000,65,0,0,0),
(1579,49,1002180,100000,66,0,0,0),
(1580,49,1040063,114000,67,0,0,0),
(1581,49,1040062,114000,68,0,0,0),
(1582,49,1040061,114000,69,0,0,0),
(1583,49,1040082,180000,70,0,0,0),
(1584,49,1040083,180000,71,0,0,0),
(1585,49,1041075,180000,72,0,0,0),
(1586,49,1041074,180000,73,0,0,0),
(1587,49,1051007,111000,74,0,0,0),
(1588,49,1051008,111000,75,0,0,0),
(1589,49,1051009,111000,76,0,0,0),
(1590,49,1060051,108000,77,0,0,0),
(1591,49,1060050,108000,78,0,0,0),
(1592,49,1060052,108000,79,0,0,0),
(1593,49,1060071,160000,80,0,0,0),
(1594,49,1060072,160000,81,0,0,0),
(1595,49,1061070,160000,82,0,0,0),
(1596,49,1061069,160000,83,0,0,0),
(1597,50,2000007,5,1,0,0,0),
(1598,50,2000000,5,2,0,0,0),
(1599,50,2000008,48,3,0,0,0),
(1600,50,2000001,48,4,0,0,0),
(1601,50,2000009,96,5,0,0,0),
(1602,50,2000002,96,6,0,0,0),
(1603,50,2000010,20,7,0,0,0),
(1604,50,2000003,20,8,0,0,0),
(1605,50,2000011,186,9,0,0,0),
(1606,50,2000006,186,10,0,0,0),
(1607,50,2001001,2185,11,0,0,0),
(1608,50,2001002,3800,12,0,0,0),
(1609,50,2002006,500,13,0,0,0),
(1610,50,2002007,500,14,0,0,0),
(1611,50,2002008,500,15,0,0,0),
(1612,50,2002009,500,16,0,0,0),
(1613,50,2002010,500,17,0,0,0),
(1614,50,2010001,30,18,0,0,0),
(1615,50,2010002,5,19,0,0,0),
(1616,50,2020001,66,20,0,0,0),
(1617,50,2020002,32,21,0,0,0),
(1618,50,2020003,225,22,0,0,0),
(1619,50,2020004,225,23,0,0,0),
(1620,50,2020005,96,24,0,0,0),
(1621,50,2020006,265,25,0,0,0),
(1622,50,2020028,2850,26,0,0,0),
(1623,50,2030000,400,27,0,0,0),
(1624,50,2060000,1,28,0,0,0),
(1625,50,2061000,1,29,0,0,0),
(1628,50,2060001,10,32,0,0,0),
(1629,50,2061001,10,33,0,0,0),
(1630,50,2070000,500,34,0,0,0),
(1631,51,1302004,100000,1,0,0,0),
(1632,51,1302009,225000,2,0,0,0),
(1633,51,1312006,100000,3,0,0,0),
(1634,51,1312007,175000,4,0,0,0),
(1635,51,1322015,100000,5,0,0,0),
(1636,51,1322016,175000,6,0,0,0),
(1637,51,1332001,200000,7,0,0,0),
(1638,51,1332014,375000,8,0,0,0),
(1639,51,1332011,425000,9,0,0,0),
(1640,51,1372001,175000,10,0,0,0),
(1641,51,1372000,400000,11,0,0,0),
(1642,51,1402006,350000,12,0,0,0),
(1643,51,1402007,450000,13,0,0,0),
(1644,51,1412004,200000,14,0,0,0),
(1645,51,1412005,250000,15,0,0,0),
(1646,51,1422008,200000,16,0,0,0),
(1647,51,1422007,250000,17,0,0,0),
(1648,51,1432003,175000,18,0,0,0),
(1649,51,1432005,225000,19,0,0,0),
(1650,51,1442003,175000,20,0,0,0),
(1651,51,1442009,300000,21,0,0,0),
(1652,51,1452006,250000,22,0,0,0),
(1653,51,1452007,375000,23,0,0,0),
(1654,51,1462004,200000,24,0,0,0),
(1655,51,1462005,250000,25,0,0,0),
(1656,51,1472004,30000,26,0,0,0),
(1657,51,1472007,60000,27,0,0,0),
(1658,52,1002004,160000,1,0,0,0),
(1659,52,1040000,200000,2,0,0,0),
(1660,52,1040085,200000,3,0,0,0),
(1661,52,1041084,200000,4,0,0,0),
(1662,52,1041085,200000,5,0,0,0),
(1663,52,1050000,112500,6,0,0,0),
(1664,52,1050021,112500,7,0,0,0),
(1665,52,1051001,112500,8,0,0,0),
(1666,52,1051014,112500,9,0,0,0),
(1667,52,1060075,180000,10,0,0,0),
(1668,52,1060074,180000,11,0,0,0),
(1669,52,1061083,180000,12,0,0,0),
(1670,52,1061084,180000,13,0,0,0),
(1671,52,1092001,100000,14,0,0,0),
(1672,52,1092002,200000,15,0,0,0),
(1673,52,1002141,96000,16,0,0,0),
(1674,52,1002142,96000,17,0,0,0),
(1675,52,1002143,96000,18,0,0,0),
(1676,52,1002144,96000,19,0,0,0),
(1677,52,1041052,120000,20,0,0,0),
(1678,52,1041051,120000,21,0,0,0),
(1679,52,1050031,300000,22,0,0,0),
(1680,52,1050002,300000,23,0,0,0),
(1681,52,1050035,450000,24,0,0,0),
(1682,52,1050038,450000,25,0,0,0),
(1683,52,1050036,450000,26,0,0,0),
(1684,52,1050037,450000,27,0,0,0),
(1685,52,1051023,450000,28,0,0,0),
(1686,52,1051025,450000,29,0,0,0),
(1687,52,1051024,450000,30,0,0,0),
(1688,52,1051027,450000,31,0,0,0),
(1689,52,1061048,120000,32,0,0,0),
(1690,52,1061047,120000,33,0,0,0),
(1691,52,1002138,100000,34,0,0,0),
(1692,52,1002139,100000,35,0,0,0),
(1693,52,1002135,100000,36,0,0,0),
(1694,52,1002137,100000,37,0,0,0),
(1695,52,1040072,114000,38,0,0,0),
(1696,52,1040073,114000,39,0,0,0),
(1697,52,1040074,114000,40,0,0,0),
(1698,52,1040076,114000,41,0,0,0),
(1699,52,1040081,180000,42,0,0,0),
(1700,52,1040079,180000,43,0,0,0),
(1701,52,1041066,114000,44,0,0,0),
(1702,52,1041069,114000,45,0,0,0),
(1703,52,1041065,114000,46,0,0,0),
(1704,52,1041067,114000,47,0,0,0),
(1705,52,1041082,180000,48,0,0,0),
(1706,52,1041081,180000,49,0,0,0),
(1707,52,1060062,108000,50,0,0,0),
(1708,52,1060065,108000,51,0,0,0),
(1709,52,1060061,108000,52,0,0,0),
(1710,52,1060063,108000,53,0,0,0),
(1711,52,1060070,160000,54,0,0,0),
(1712,52,1060069,160000,55,0,0,0),
(1713,52,1061061,108000,56,0,0,0),
(1714,52,1061064,108000,57,0,0,0),
(1715,52,1061060,108000,58,0,0,0),
(1716,52,1061062,108000,59,0,0,0),
(1717,52,1061081,160000,60,0,0,0),
(1718,52,1061080,160000,61,0,0,0),
(1719,52,1002176,100000,62,0,0,0),
(1720,52,1002177,100000,63,0,0,0),
(1721,52,1002178,100000,64,0,0,0),
(1722,52,1002179,100000,65,0,0,0),
(1723,52,1002180,100000,66,0,0,0),
(1724,52,1040063,114000,67,0,0,0),
(1725,52,1040062,114000,68,0,0,0),
(1726,52,1040061,114000,69,0,0,0),
(1727,52,1040082,180000,70,0,0,0),
(1728,52,1040083,180000,71,0,0,0),
(1729,52,1041075,180000,72,0,0,0),
(1730,52,1041074,180000,73,0,0,0),
(1731,52,1051007,111000,74,0,0,0),
(1732,52,1051008,111000,75,0,0,0),
(1733,52,1051009,111000,76,0,0,0),
(1734,52,1060051,108000,77,0,0,0),
(1735,52,1060050,108000,78,0,0,0),
(1736,52,1060052,108000,79,0,0,0),
(1737,52,1060071,160000,80,0,0,0),
(1738,52,1060072,160000,81,0,0,0),
(1739,52,1061070,160000,82,0,0,0),
(1740,52,1061069,160000,83,0,0,0),
(1741,53,2000000,5,1,0,0,0),
(1742,53,2000001,48,2,0,0,0),
(1743,53,2000002,96,3,0,0,0),
(1744,53,2000003,20,4,0,0,0),
(1745,53,2000006,186,5,0,0,0),
(1746,53,2002000,475,6,0,0,0),
(1747,53,2002001,380,7,0,0,0),
(1748,53,2002002,475,8,0,0,0),
(1749,53,2002004,475,9,0,0,0),
(1750,53,2002005,475,10,0,0,0),
(1751,53,2002011,1200,11,0,0,0),
(1752,53,2001000,3040,12,0,0,0),
(1753,53,2001001,2185,13,0,0,0),
(1754,53,2001002,3800,14,0,0,0),
(1755,53,2010000,3,15,0,0,0),
(1756,53,2010001,30,16,0,0,0),
(1757,53,2010002,5,17,0,0,0),
(1758,53,2010003,10,18,0,0,0),
(1759,53,2010004,93,19,0,0,0),
(1760,53,2020012,4680,20,0,0,0),
(1761,53,2020013,5600,21,0,0,0),
(1762,53,2020014,7695,22,0,0,0),
(1763,53,2020015,9690,23,0,0,0),
(1764,53,2022003,770,24,0,0,0),
(1765,53,2022000,1155,25,0,0,0),
(1766,53,2030000,400,26,0,0,0),
(1767,53,2060000,1,27,0,0,0),
(1768,53,2061000,1,28,0,0,0),
(1769,53,2060001,10,29,0,0,0),
(1770,53,2061001,10,30,0,0,0),
(1771,53,2070000,500,31,0,0,0),
(1772,54,2000007,5,1,0,0,0),
(1773,54,2000000,5,2,0,0,0),
(1774,54,2000008,48,3,0,0,0),
(1775,54,2000001,48,4,0,0,0),
(1776,54,2000009,96,5,0,0,0),
(1777,54,2000002,96,6,0,0,0),
(1778,54,2000010,20,7,0,0,0),
(1779,54,2000003,20,8,0,0,0),
(1780,54,2000011,186,9,0,0,0),
(1781,54,2000006,186,10,0,0,0),
(1782,54,2001001,2185,11,0,0,0),
(1783,54,2001002,3800,12,0,0,0),
(1784,54,2002006,570,13,0,0,0),
(1785,54,2002007,570,14,0,0,0),
(1786,54,2002008,570,15,0,0,0),
(1787,54,2002009,570,16,0,0,0),
(1788,54,2002010,475,17,0,0,0),
(1789,54,2010001,30,18,0,0,0),
(1790,54,2010002,5,19,0,0,0),
(1791,54,2020001,66,20,0,0,0),
(1792,54,2020002,32,21,0,0,0),
(1793,54,2020003,225,22,0,0,0),
(1794,54,2020004,225,23,0,0,0),
(1795,54,2020005,96,24,0,0,0),
(1796,54,2020006,265,25,0,0,0),
(1797,54,2022003,770,26,0,0,0),
(1798,54,2022000,1155,27,0,0,0),
(1799,54,2020012,4680,28,0,0,0),
(1800,54,2020013,5824,29,0,0,0),
(1801,54,2020014,8424,30,0,0,0),
(1802,54,2020015,10608,31,0,0,0),
(1803,54,2120000,25,32,0,0,0),
(1804,54,2060000,1,33,0,0,0),
(1805,54,2061000,1,34,0,0,0),
(1806,54,2060001,10,35,0,0,0),
(1807,54,2061001,10,36,0,0,0),
(1835,38,4006000,7500,0,0,0,0),
(1836,38,4006001,7500,0,0,0,0),
(1837,105,2120000,50,1,0,0,0),
(1838,105,4160000,1000,2,0,0,0),
(1839,105,4160001,1000,3,0,0,0),
(1840,105,4160002,1000,4,0,0,0),
(1841,105,4160003,1000,5,0,0,0),
(1842,105,4160004,1000,6,0,0,0),
(1843,105,4160005,1000,7,0,0,0),
(1844,105,4160006,1000,8,0,0,0),
(1845,105,4160007,1000,9,0,0,0),
(1846,105,4160008,1000,10,0,0,0),
(1847,105,4160009,1000,11,0,0,0),
(1848,105,4160010,1000,12,0,0,0),
(1849,105,4160012,1000,15,0,0,0),
(1850,105,4160013,1000,16,0,0,0),
(1851,105,4160014,1000,17,0,0,0),
(1852,105,4160015,1000,18,0,0,0),
(1853,105,4160016,1000,19,0,0,0),
(1854,105,4160017,1000,20,0,0,0),
(1855,105,4160019,1000,22,0,0,0),
(1856,105,4160020,1000,23,0,0,0),
(1857,105,4160022,1000,25,0,0,0),
(1858,105,4160023,1000,26,0,0,0),
(1859,105,4160024,1000,27,0,0,0),
(1861,105,4160027,1000,30,0,0,0),
(1862,105,4160029,1000,32,0,0,0),
(1929,55,2040900,34000,20,0,0,0),
(1928,55,2040500,34000,19,0,0,0),
(1927,55,2040600,34000,18,0,0,0),
(1926,55,2040400,34000,17,0,0,0),
(1925,55,2040000,34000,16,0,0,0),
(1924,55,2040300,34000,15,0,0,0),
(1923,55,2043800,69000,14,0,0,0),
(1922,55,2043700,69000,13,0,0,0),
(1921,55,2044700,69000,12,0,0,0),
(1920,55,2044600,69000,11,0,0,0),
(1919,55,2044500,69000,10,0,0,0),
(1918,55,2044400,69000,9,0,0,0),
(1917,55,2044300,69000,8,0,0,0),
(1916,55,2044200,69000,7,0,0,0),
(1915,55,2044100,69000,6,0,0,0),
(1914,55,2044000,69000,5,0,0,0),
(1913,55,2043200,69000,4,0,0,0),
(1912,55,2043100,69000,3,0,0,0),
(1911,55,2043000,69000,2,0,0,0),
(1864,100,1050100,30000,1,0,0,0),
(1865,100,1051098,30000,2,0,0,0),
(1866,100,2030008,400,3,0,0,0),
(1867,100,2030009,500,4,0,0,0),
(1868,100,2030010,500,5,0,0,0),
(1869,100,2070000,500,6,0,0,0),
(1870,101,1050100,30000,1,0,0,0),
(1871,101,1051098,30000,2,0,0,0),
(1872,101,2030008,400,3,0,0,0),
(1873,101,2030009,500,4,0,0,0),
(1874,101,2030010,500,5,0,0,0),
(1875,101,2070000,500,6,0,0,0),
(1876,102,2060003,40,1,0,0,0),
(1877,102,2000001,48,2,0,0,0),
(1878,102,2000002,96,3,0,0,0),
(1879,102,2001001,2300,4,0,0,0),
(1880,102,2020012,4500,5,0,0,0),
(1881,102,2000003,20,6,0,0,0),
(1882,102,2000006,186,7,0,0,0),
(1883,102,2001002,4000,8,0,0,0),
(1884,102,2020014,8100,9,0,0,0),
(1885,102,2022002,1000,10,0,0,0),
(1886,102,2070000,500,11,0,0,0),
(1887,103,1382011,2000000,1,0,0,0),
(1888,103,1332024,2000000,2,0,0,0),
(1889,103,1302022,80000,3,0,0,0),
(1890,103,1302021,1250000,4,0,0,0),
(1891,103,1462006,500000,5,0,0,0),
(1892,103,1472008,250000,6,0,0,0),
(1893,103,1402010,150000,7,0,0,0),
(1894,103,1432008,150000,8,0,0,0),
(1895,103,1402009,30000,9,0,0,0),
(1896,103,1322012,15000,10,0,0,0),
(1897,103,1312013,100000,11,0,0,0),
(1898,103,2070000,500,12,0,0,0),
(1899,104,1002136,100000,1,0,0,0),
(1900,104,1032002,110000,2,0,0,0),
(1901,104,1040029,110000,3,0,0,0),
(1902,104,1060020,110000,4,0,0,0),
(1903,104,1051006,115000,5,0,0,0),
(1904,104,1072051,25000,6,0,0,0),
(1905,104,1072034,25000,7,0,0,0),
(1906,104,1072086,25000,8,0,0,0),
(1907,104,1072020,30000,9,0,0,0),
(1908,104,2070012,100000,10,0,0,0),
(1909,104,2070013,100000,11,0,0,0),
(1910,55,2043300,69000,1,0,0,0),
(1930,55,2041000,34000,21,0,0,0),
(1931,55,2041003,34000,22,0,0,0),
(1932,55,2040800,34000,23,0,0,0),
(1933,55,2040700,34000,24,0,0,0),
(1934,55,2040703,34000,25,0,0,0),
(1935,55,2040706,34000,26,0,0,0),
(1936,55,4031348,10000000,27,0,0,0),
(1937,106,1302000,50,1,0,0,0),
(1938,106,1312004,50,2,0,0,0),
(1939,106,1322005,50,3,0,0,0),
(1940,106,1332005,500,4,0,0,0),
(1941,106,1040002,50,5,0,0,0),
(1942,106,1040006,50,6,0,0,0),
(1943,106,1040010,50,7,0,0,0),
(1944,106,1041002,50,8,0,0,0),
(1945,106,1041006,50,9,0,0,0),
(1946,106,1041010,50,10,0,0,0),
(1947,106,1041011,50,11,0,0,0),
(1948,106,1060002,50,12,0,0,0),
(1949,106,1060006,50,13,0,0,0),
(1950,106,1061002,50,14,0,0,0),
(1951,106,1061008,50,15,0,0,0),
(1952,106,1072001,50,16,0,0,0);
INSERT INTO `shopitems` (`shopitemid`,`shopid`,`itemid`,`price`,`position`,`reqitem`,`reqitemq`,`rank`) VALUES
(1954,107,2000000,5,1,0,0,0),
(1955,107,2000001,48,2,0,0,0),
(1956,107,2000002,96,3,0,0,0),
(1957,107,2000006,186,4,0,0,0),
(1958,107,2002000,500,5,0,0,0),
(1959,107,2002001,400,6,0,0,0),
(1960,107,2002002,500,7,0,0,0),
(1961,107,2002004,500,8,0,0,0),
(1962,107,2002005,500,9,0,0,0),
(1963,107,2010000,3,10,0,0,0),
(1964,107,2010002,5,11,0,0,0),
(1965,107,2010001,30,12,0,0,0),
(1966,107,2010003,10,13,0,0,0),
(1967,107,2010004,93,14,0,0,0),
(1968,107,2030000,400,15,0,0,0),
(1969,107,2060000,1,16,0,0,0),
(1970,107,2061000,1,17,0,0,0),
(1971,107,2050000,200,18,0,0,0),
(1972,107,2050001,200,19,0,0,0),
(1973,107,2050002,300,20,0,0,0),
(1974,107,2070000,500,21,0,0,0),
(1975,107,2330000,600,22,0,0,0),
(1976,56,2022476,4200,1,0,0,0),
(1977,56,2022477,9200,2,0,0,0),
(1978,56,2022478,3200,3,0,0,0),
(1979,56,2022479,3800,4,0,0,0),
(1980,56,2022480,12000,5,0,0,0),
(1981,56,2022203,800,6,0,0,0),
(1982,56,2022204,1200,7,0,0,0),
(1983,56,2022205,1800,8,0,0,0),
(1984,56,2022206,2200,9,0,0,0),
(1985,56,2022207,2600,10,0,0,0),
(1986,56,2022208,1000,11,0,0,0),
(1987,56,2022209,1600,12,0,0,0),
(1988,56,2022210,3200,13,0,0,0),
(1989,56,2022211,6800,14,0,0,0),
(1990,56,2022214,3200,15,0,0,0),
(1991,56,2022215,6800,16,0,0,0),
(1992,56,2050000,200,17,0,0,0),
(1993,56,2050001,200,18,0,0,0),
(1994,56,2050002,200,19,0,0,0),
(1995,56,2050003,500,20,0,0,0),
(1996,56,2030000,400,21,0,0,0),
(1997,56,2060000,1,22,0,0,0),
(1998,56,2060001,1,23,0,0,0),
(1999,38,2050004,1500,0,0,0,0),
(2000,61,5071000,1000000,99,0,0,0),
(2002,61,5072000,2000000,1000,0,0,0),
(2003,61,5073000,3200000,102,0,0,0),
(2004,61,5074000,3200000,103,0,0,0),
(2005,61,5076000,5000000,104,0,0,0),
(2006,61,5077000,7000000,105,0,0,0),
(2007,58,1492000,3000,1,0,0,0),
(2008,58,1492001,6000,2,0,0,0),
(2009,58,1492002,10000,3,0,0,0),
(2010,58,1492003,22000,4,0,0,0),
(2011,58,1492004,50000,5,0,0,0),
(2012,58,1482000,3000,6,0,0,0),
(2013,58,1482001,6000,7,0,0,0),
(2014,58,1482002,10000,8,0,0,0),
(2015,58,1482003,22000,9,0,0,0),
(2016,58,1482004,50000,10,0,0,0),
(2017,58,1442004,24000,11,0,0,0),
(2018,58,1302007,3000,12,0,0,0),
(2019,58,1322007,6000,13,0,0,0),
(2020,59,2000000,5,1,0,0,0),
(2021,59,2000001,48,2,0,0,0),
(2022,59,2000002,96,3,0,0,0),
(2023,59,2000003,20,4,0,0,0),
(2024,59,2000006,186,5,0,0,0),
(2025,59,2002000,500,6,0,0,0),
(2026,59,2002001,400,7,0,0,0),
(2027,59,2002002,500,8,0,0,0),
(2028,59,2002004,500,9,0,0,0),
(2029,59,2002005,500,10,0,0,0),
(2030,59,2022003,770,11,0,0,0),
(2031,59,2022000,1155,12,0,0,0),
(2032,59,2001000,3200,13,0,0,0),
(2033,59,2001001,2300,14,0,0,0),
(2034,59,2001002,4000,15,0,0,0),
(2035,59,2010000,3,16,0,0,0),
(2036,59,2010002,5,17,0,0,0),
(2037,59,2010001,30,18,0,0,0),
(2038,59,2010003,10,19,0,0,0),
(2039,59,2010004,93,20,0,0,0),
(2040,59,2020028,3000,21,0,0,0),
(2041,59,2050000,200,22,0,0,0),
(2042,59,2050001,200,23,0,0,0),
(2043,59,2050002,300,24,0,0,0),
(2044,59,2050003,500,25,0,0,0),
(2045,59,2030000,400,26,0,0,0),
(2046,59,2060000,1,27,0,0,0),
(2047,59,2061000,1,28,0,0,0),
(2048,59,2070000,500,29,0,0,0),
(2049,59,2330000,500,30,0,0,0),
(2050,59,2022015,12000,31,0,0,0),
(2068,60,2022209,1600,7,0,0,0),
(2062,60,2022203,800,1,0,0,0),
(2063,60,2022204,1200,2,0,0,0),
(2064,60,2022205,1800,3,0,0,0),
(2065,60,2022206,2200,4,0,0,0),
(2066,60,2022207,2600,5,0,0,0),
(2067,60,2022208,1000,6,0,0,0),
(2072,60,2022215,6800,11,0,0,0),
(2071,60,2022214,3200,10,0,0,0),
(2070,60,2022211,6400,9,0,0,0),
(2069,60,2022210,3200,8,0,0,0),
(2073,57,5390000,4400000,6,0,0,0),
(2074,57,5390001,4400000,7,0,0,0),
(2075,57,5390002,4400000,8,0,0,0),
(2076,57,5390003,4400000,9,0,0,0),
(2077,57,5390004,4400000,10,0,0,0),
(2078,40,1912005,10000000,-4,0,0,0),
(2079,40,1902005,10000000,-5,0,0,0),
(2080,40,1902006,30000000,-6,0,0,0),
(2081,40,1902007,50000000,-7,0,0,0),
(2082,61,2000004,2500,-1,0,0,0),
(2083,61,4006001,5000,-2,0,0,0),
(2084,61,4006000,5000,-3,0,0,0),
(2085,61,2050004,1000,-4,0,0,0),
(2086,40,1902002,100000000,-4,0,0,0),
(2087,40,1912011,10000000,-8,0,0,0),
(2088,40,1902015,10000000,-9,0,0,0),
(2089,40,1902016,30000000,-10,0,0,0),
(2090,40,1902017,50000000,-11,0,0,0),
(2091,40,1902018,100000000,-12,0,0,0),
(2092,40,1912033,10000000,-13,0,0,0),
(2093,40,1902040,10000000,-14,0,0,0),
(2094,40,1912034,30000000,-15,0,0,0),
(2095,40,1902041,30000000,-16,0,0,0),
(2096,40,1912035,50000000,-17,0,0,0),
(2097,40,1902042,50000000,-18,0,0,0),
(2098,61,2460000,8000,0,0,0,0),
(2099,61,2460001,16000,1,0,0,0),
(2100,61,2460002,32000,2,0,0,0),
(2101,61,2460003,128000,3,0,0,0),
(2102,1110,2100900,0,0,4310011,50,0),
(2103,1110,2022724,0,0,4310011,200,0),
(2104,1110,2022725,0,0,4310011,100,0),
(2105,1110,2022726,0,0,4310011,200,0),
(2106,1110,2022727,0,0,4310011,100,0),
(2107,1110,2022728,0,0,4310011,250,0),
(2108,1110,2022729,0,0,4310011,250,0),
(2109,1110,2022730,0,0,4310011,250,0),
(2110,1110,2022731,0,0,4310011,250,0),
(2111,1110,2022732,0,0,4310011,400,0),
(2112,1110,2210035,0,0,4310011,100,0),
(2113,1110,2210036,0,0,4310011,100,0),
(2114,1110,2210037,0,0,4310011,100,0),
(2115,1110,2210038,0,0,4310011,100,0),
(2116,1110,2210039,0,0,4310011,100,0),
(2117,1110,2210044,0,0,4310011,100,0),
(2118,1111,3010143,0,0,4310012,10,0),
(2119,1111,2430036,0,0,4310012,1,0),
(2120,1111,2430037,0,0,4310012,1,0),
(2121,1111,2430038,0,0,4310012,1,0),
(2122,1111,2430039,0,0,4310012,1,0),
(2123,1111,2430040,0,0,4310012,1,0),
(2124,1111,5062000,0,0,4310012,10,0),
(2125,1111,2049400,0,0,4310012,20,0),
(2126,1111,2049401,0,0,4310012,10,0),
(2141,22,2043400,70000,50,0,0,0),
(2460,22,2045300,70000,50,0,0,0),
(2128,1111,2049301,0,0,4310012,10,0),
(2129,1111,1122018,0,0,4310012,25,0),
(2130,1111,1000026,0,0,4310012,1,0),
(2131,1111,1001036,0,0,4310012,1,0),
(2132,1111,1051131,0,0,4310012,1,0),
(2133,1111,1102230,0,0,4310012,5,0),
(2134,61,2000005,5500,-1,0,0,0),
(2135,61,4001017,20000000,5,0,0,0),
(2136,61,4031179,15000000,5,0,0,0),
(2137,61,2120000,500,6,0,0,0),
(2138,16,1342000,35000,-1,0,0,0),
(2139,16,1342001,85000,-1,0,0,0),
(2140,61,2330000,800,7,0,0,0),
(2142,46,2043400,70000,50,0,0,0),
(2461,46,2045300,70000,50,0,0,0),
(2143,55,2043400,69000,50,0,0,0),
(2462,55,2045300,69000,50,0,0,0),
(2144,21,2044900,70000,0,0,0,0),
(2145,21,2044800,70000,0,0,0,0),
(2146,61,2000000,5,0,0,0,0),
(2147,61,2000001,48,0,0,0,0),
(2148,61,2000002,96,0,0,0,0),
(2149,61,2000003,20,0,0,0,0),
(2150,61,2000006,186,0,0,0,0),
(2151,61,2060000,1,0,0,0,0),
(2152,61,2061000,1,0,0,0,0),
(2153,61,2260000,30000,0,0,0,0),
(2154,52,1052110,50000,50,0,0,0),
(2155,52,1052113,200000,50,0,0,0),
(2156,52,1002622,30000,50,0,0,0),
(2157,52,1002625,70000,50,0,0,0),
(2158,48,1482004,50000,50,0,0,0),
(2159,48,1482005,100000,50,0,0,0),
(2160,48,1482006,200000,50,0,0,0),
(2161,48,1492004,50000,50,0,0,0),
(2162,48,1492005,100000,50,0,0,0),
(2163,48,1492006,200000,50,0,0,0),
(2164,200,1003154,0,1,4310010,3,0),
(2165,200,1003155,0,2,4310010,3,0),
(2166,200,1003156,0,3,4310010,3,0),
(2167,200,1003157,0,4,4310010,3,0),
(2168,200,1003158,0,5,4310010,3,0),
(2169,200,1102262,0,6,4310009,1,0),
(2170,200,1102263,0,7,4310009,1,0),
(2171,200,1102264,0,8,4310009,1,0),
(2172,200,1102265,0,9,4310009,1,0),
(2173,200,1102266,0,10,4310009,1,0),
(2174,200,1082285,0,11,4310009,1,0),
(2175,200,1082286,0,12,4310009,1,0),
(2176,200,1082287,0,13,4310009,1,0),
(2177,200,1082288,0,14,4310009,1,0),
(2178,200,1082289,0,15,4310009,1,0),
(2179,200,1072471,0,16,4310009,1,0),
(2180,200,1072472,0,17,4310009,1,0),
(2181,200,1072473,0,18,4310009,1,0),
(2182,200,1072474,0,19,4310009,1,0),
(2183,200,1072475,0,20,4310009,1,0),
(2234,301,2512008,500000,0,0,0,0),
(2233,301,2512003,2000000,0,0,0,0),
(2232,301,2512002,1500000,0,0,0,0),
(2231,301,2512001,1000000,0,0,0,0),
(2230,301,2512000,500000,0,0,0,0),
(2189,200,1052299,0,26,4310010,3,0),
(2190,200,1052300,0,27,4310010,3,0),
(2191,200,1052301,0,28,4310010,3,0),
(2192,200,1052302,0,29,4310010,3,0),
(2193,200,1052303,0,30,4310010,3,0),
(2194,200,1302149,0,31,4310010,5,0),
(2195,200,1332126,0,32,4310010,5,0),
(2196,200,1372080,0,33,4310010,5,0),
(2197,200,1382102,0,34,4310010,5,0),
(2198,200,1402091,0,35,4310010,5,0),
(2199,200,1442113,0,36,4310010,5,0),
(2200,200,1432084,0,37,4310010,5,0),
(2201,200,1452107,0,38,4310010,5,0),
(2202,200,1462094,0,39,4310010,5,0),
(2203,200,1472118,0,40,4310010,5,0),
(2204,200,1482080,0,41,4310010,5,0),
(2205,200,1492081,0,42,4310010,5,0),
(2470,200,1532019,0,43,4310010,5,0),
(2206,201,1002801,0,1,4310000,5,0),
(2207,201,1332080,0,2,4310000,5,0),
(2208,201,1402048,0,3,4310000,5,0),
(2209,201,1402051,0,7,4310000,7,0),
(2210,201,1462052,0,4,4310000,5,0),
(2211,201,1462055,0,8,4310000,7,0),
(2212,201,1472075,0,5,4310000,5,0),
(2213,201,1132014,0,6,4310000,5,0),
(2214,201,1332079,0,9,4310000,10,0),
(2215,201,1402049,0,10,4310000,10,0),
(2216,201,1402050,0,14,4310000,12,0),
(2217,201,1462054,0,11,4310000,10,0),
(2218,201,1472074,0,12,4310000,10,0),
(2219,201,1132015,0,13,4310000,10,0),
(2220,201,1102205,0,15,4310000,15,0),
(2221,201,1332077,0,17,4310000,15,0),
(2222,201,1382082,0,18,4310000,15,0),
(2223,201,1432063,0,19,4310000,15,0),
(2224,201,1452087,0,20,4310000,15,0),
(2225,201,1462053,0,21,4310000,15,0),
(2226,201,1472072,0,22,4310000,15,0),
(2227,201,1482048,0,23,4310000,15,0),
(2228,201,1492047,0,24,4310000,15,0),
(2229,201,1132016,0,16,4310000,15,0),
(2235,301,2512009,1000000,0,0,0,0),
(2236,301,2512010,1500000,0,0,0,0),
(2237,301,2512011,2000000,0,0,0,0),
(2238,301,2512016,500000,0,0,0,0),
(2239,301,2512017,1000000,0,0,0,0),
(2240,301,2512018,1500000,0,0,0,0),
(2241,301,2512019,2000000,0,0,0,0),
(2242,301,2512024,500000,0,0,0,0),
(2243,301,2512025,1000000,0,0,0,0),
(2244,301,2512026,1500000,0,0,0,0),
(2245,301,2512027,2000000,0,0,0,0),
(2246,301,2512032,1000000,0,0,0,0),
(2247,301,2512033,2000000,0,0,0,0),
(2248,301,2512034,3000000,0,0,0,0),
(2249,301,2512037,1000000,0,0,0,0),
(2250,301,2512038,2000000,0,0,0,0),
(2251,301,2512039,3000000,0,0,0,0),
(2252,301,2512069,2000000,0,0,0,0),
(2253,301,2512070,3000000,0,0,0,0),
(2254,301,2512071,4000000,0,0,0,0),
(2255,301,2512072,5000000,0,0,0,0),
(2256,301,2512073,6000000,0,0,0,0),
(2257,301,2512074,7000000,0,0,0,0),
(2258,301,2512075,8000000,0,0,0,0),
(2259,301,2512076,9000000,0,0,0,0),
(2260,301,2512077,10000000,0,0,0,0),
(2261,301,2512078,11000000,0,0,0,0),
(2262,301,2512079,2000000,0,0,0,0),
(2263,301,2512080,3000000,0,0,0,0),
(2264,301,2512081,4000000,0,0,0,0),
(2265,301,2512082,5000000,0,0,0,0),
(2266,301,2512083,6000000,0,0,0,0),
(2267,301,2512084,7000000,0,0,0,0),
(2268,301,2512085,8000000,0,0,0,0),
(2269,301,2512086,9000000,0,0,0,0),
(2270,301,2512087,10000000,0,0,0,0),
(2271,301,2512088,11000000,0,0,0,0),
(2272,301,2512139,2000000,0,0,0,0),
(2273,301,2512140,3000000,0,0,0,0),
(2274,301,2512141,4000000,0,0,0,0),
(2275,301,2512142,5000000,0,0,0,0),
(2276,301,2512143,6000000,0,0,0,0),
(2277,301,2512144,7000000,0,0,0,0),
(2278,301,2512145,8000000,0,0,0,0),
(2279,301,2512146,9000000,0,0,0,0),
(2280,301,2512147,10000000,0,0,0,0),
(2281,301,2512148,11000000,0,0,0,0),
(2282,301,2512159,2000000,0,0,0,0),
(2283,301,2512160,3000000,0,0,0,0),
(2284,301,2512161,4000000,0,0,0,0),
(2285,301,2512162,5000000,0,0,0,0),
(2286,301,2512163,6000000,0,0,0,0),
(2287,301,2512164,7000000,0,0,0,0),
(2288,301,2512165,8000000,0,0,0,0),
(2289,301,2512166,9000000,0,0,0,0),
(2290,301,2512167,1000000,0,0,0,0),
(2291,301,2512168,11000000,0,0,0,0),
(2292,301,2512179,2000000,0,0,0,0),
(2293,301,2512180,3000000,0,0,0,0),
(2294,301,2512181,4000000,0,0,0,0),
(2295,301,2512182,5000000,0,0,0,0),
(2296,301,2512183,6000000,0,0,0,0),
(2297,301,2512184,7000000,0,0,0,0),
(2298,301,2512185,8000000,0,0,0,0),
(2299,301,2512186,9000000,0,0,0,0),
(2300,301,2512187,10000000,0,0,0,0),
(2301,301,2512188,11000000,0,0,0,0),
(2302,301,2512199,2000000,0,0,0,0),
(2303,301,2512200,3000000,0,0,0,0),
(2304,301,2512201,4000000,0,0,0,0),
(2305,301,2512202,5000000,0,0,0,0),
(2306,301,2512203,6000000,0,0,0,0),
(2307,301,2512204,7000000,0,0,0,0),
(2308,301,2512205,8000000,0,0,0,0),
(2309,301,2512206,9000000,0,0,0,0),
(2310,301,2512207,10000000,0,0,0,0),
(2311,301,2512208,11000000,0,0,0,0),
(2312,301,2512219,500000,0,0,0,0),
(2313,301,2512220,1000000,0,0,0,0),
(2314,301,2512221,1500000,0,0,0,0),
(2315,301,2512222,2000000,0,0,0,0),
(2316,301,2512223,2500000,0,0,0,0),
(2317,301,2512224,3000000,0,0,0,0),
(2318,301,2512225,3500000,0,0,0,0),
(2319,301,2512226,4000000,0,0,0,0),
(2320,301,2512227,4500000,0,0,0,0),
(2321,301,2512228,5000000,0,0,0,0),
(2322,301,2512239,3000000,0,0,0,0),
(2323,301,2512240,5000000,0,0,0,0),
(2324,301,2512241,7000000,0,0,0,0),
(2325,301,2512242,9000000,0,0,0,0),
(2326,301,2512243,11000000,0,0,0,0),
(2327,301,2512249,3000000,0,0,0,0),
(2328,301,2512250,5000000,0,0,0,0),
(2329,301,2512251,7000000,0,0,0,0),
(2330,301,2512252,9000000,0,0,0,0),
(2331,301,2512253,11000000,0,0,0,0),
(2332,301,2512262,20000000,0,0,0,0),
(2333,301,2512263,50000000,0,0,0,0),
(2334,300,4001480,10000,0,0,0,0),
(2335,300,4001481,100000,0,0,0,0),
(2336,300,4001482,10000,0,0,0,0),
(2337,300,4001483,100000,0,0,0,0),
(2338,300,2430212,600000,0,0,0,0),
(2339,300,2430213,2000000,0,0,0,0),
(2471,300,2430231,15000000,0,0,0,0),
(2340,300,4340000,10000,0,0,0,0),
(2341,300,1502000,1000,0,0,0,0),
(2342,300,1512000,1000,0,0,0,0),
(2343,300,4024000,1000,0,0,0,0),
(2344,300,4024001,3000,0,0,0,0),
(2345,300,4024002,5000,0,0,0,0),
(2346,300,4024003,10000,0,0,0,0),
(2347,300,4024004,1000,0,0,0,0),
(2348,300,4024005,3000,0,0,0,0),
(2349,300,4024006,5000,0,0,0,0),
(2350,300,4024007,10000,0,0,0,0),
(2351,300,4025000,10000,0,0,0,0),
(2352,300,4025001,50000,0,0,0,0),
(2353,300,4025002,100000,0,0,0,0),
(2354,300,4025003,500000,0,0,0,0),
(2355,300,4025004,1000,0,0,0,0),
(2356,300,4025005,2000,0,0,0,0),
(2357,300,4025006,4000,0,0,0,0),
(2358,300,4025007,8000,0,0,0,0),
(2359,300,4025008,1000,0,0,0,0),
(2360,300,4025009,2000,0,0,0,0),
(2361,300,4025010,4000,0,0,0,0),
(2362,300,4025011,8000,0,0,0,0),
(2363,300,4021017,50000,0,0,0,0),
(2364,302,2510000,3000000,0,0,0,0),
(2365,302,2510001,3000000,0,0,0,0),
(2366,302,2510002,3000000,0,0,0,0),
(2367,302,2510003,3000000,0,0,0,0),
(2368,302,2510004,3000000,0,0,0,0),
(2369,302,2510020,3000000,0,0,0,0),
(2370,302,2510021,3000000,0,0,0,0),
(2371,302,2510022,3000000,0,0,0,0),
(2372,302,2510023,3000000,0,0,0,0),
(2373,302,2510024,3000000,0,0,0,0),
(2374,302,2510025,3000000,0,0,0,0),
(2375,302,2510026,3000000,0,0,0,0),
(2376,302,2510027,3000000,0,0,0,0),
(2377,302,2510028,3000000,0,0,0,0),
(2378,302,2510029,3000000,0,0,0,0),
(2379,302,2510030,3000000,0,0,0,0),
(2380,302,2510046,3000000,0,0,0,0),
(2381,302,2510047,3000000,0,0,0,0),
(2382,302,2510048,3000000,0,0,0,0),
(2383,302,2510049,3000000,0,0,0,0),
(2384,302,2510050,3000000,0,0,0,0),
(2385,302,2510066,3000000,0,0,0,0),
(2386,302,2510067,3000000,0,0,0,0),
(2387,302,2510068,3000000,0,0,0,0),
(2388,302,2510069,3000000,0,0,0,0),
(2389,302,2510070,3000000,0,0,0,0),
(2390,302,2510091,5000000,0,0,0,0),
(2391,302,2510092,5000000,0,0,0,0),
(2392,302,2510093,5000000,0,0,0,0),
(2393,302,2510094,5000000,0,0,0,0),
(2394,302,2510095,5000000,0,0,0,0),
(2395,302,2510096,5000000,0,0,0,0),
(2396,302,2510097,5000000,0,0,0,0),
(2397,302,2510098,5000000,0,0,0,0),
(2398,302,2510099,5000000,0,0,0,0),
(2399,302,2510100,5000000,0,0,0,0),
(2400,302,2510101,5000000,0,0,0,0),
(2401,302,2510102,5000000,0,0,0,0),
(2402,302,2510103,5000000,0,0,0,0),
(2403,302,2510104,5000000,0,0,0,0),
(2404,302,2510105,5000000,0,0,0,0),
(2405,302,2510106,5000000,0,0,0,0),
(2406,302,2510107,5000000,0,0,0,0),
(2407,302,2510156,5000000,0,0,0,0),
(2408,302,2510157,5000000,0,0,0,0),
(2409,302,2510158,5000000,0,0,0,0),
(2410,302,2510159,5000000,0,0,0,0),
(2411,302,2510165,3000000,0,0,0,0),
(2412,302,2510166,3000000,0,0,0,0),
(2413,302,2511000,3000000,0,0,0,0),
(2414,302,2511004,3000000,0,0,0,0),
(2415,302,2511008,3000000,0,0,0,0),
(2416,302,2511012,3000000,0,0,0,0),
(2417,302,2511016,3000000,0,0,0,0),
(2418,302,2511021,3000000,0,0,0,0),
(2419,302,2511024,3000000,0,0,0,0),
(2420,302,2511028,3000000,0,0,0,0),
(2421,302,2511032,3000000,0,0,0,0),
(2422,302,2511036,3000000,0,0,0,0),
(2423,302,2511040,3000000,0,0,0,0),
(2424,302,2511046,3000000,0,0,0,0),
(2425,302,2511050,3000000,0,0,0,0),
(2426,302,2511054,3000000,0,0,0,0),
(2427,302,2511058,3000000,0,0,0,0),
(2428,302,2511060,3000000,0,0,0,0),
(2429,302,2511061,3000000,0,0,0,0),
(2430,302,2511062,3000000,0,0,0,0),
(2431,302,2511063,3000000,0,0,0,0),
(2432,400,2002044,150,0,0,0,11),
(2433,400,2002045,350,0,0,0,11),
(2434,400,2002048,550,0,0,0,11),
(2435,400,2002049,1100,0,0,0,11),
(2436,400,1132091,2500000,0,0,0,8),
(2437,400,2002046,800,0,0,0,8),
(2438,400,2002050,1750,0,0,0,8),
(2439,400,2041320,3000000,0,0,0,7),
(2440,400,2002047,1200,0,0,0,7),
(2441,400,2002051,2400,0,0,0,7),
(2442,400,1152059,7500000,0,0,0,6),
(2443,400,2041508,10000000,0,0,0,3),
(2444,400,1122114,50000000,0,0,0,0),
(2445,400,2041217,20000000,0,0,0,0),
(2446,303,1162000,50000,0,0,0,0),
(2447,303,1162001,50000,0,0,0,0),
(2448,303,1162002,50000,0,0,0,0),
(2449,303,1162003,50000,0,0,0,0),
(2450,303,1162004,50000,0,0,0,0),
(2451,303,1162005,50000,0,0,0,0),
(2500,304,1122105,0,1,4310015,10,0),
(2501,304,1132086,0,2,4310015,10,0),
(2502,304,1152050,0,3,4310015,10,0),
(2503,304,1112956,0,4,4310015,10,0),
(2504,304,1162006,0,5,4310015,20,0),
(2505,304,1162007,0,6,4310015,40,0),
(2506,304,2028061,0,7,4310015,5,0),
(2507,304,2028062,0,8,4310015,5,0),
(2508,304,2510015,0,9,4310015,50,0),
(2509,304,2510016,0,9,4310015,50,0),
(2510,304,2510017,0,9,4310015,50,0),
(2511,304,2510018,0,9,4310015,50,0),
(2512,304,2510019,0,9,4310015,50,0),
(2513,304,2510041,0,9,4310015,50,0),
(2514,304,2510042,0,9,4310015,50,0),
(2515,304,2510043,0,9,4310015,50,0),
(2516,304,2510044,0,9,4310015,50,0),
(2517,304,2510045,0,9,4310015,50,0),
(2518,304,2510061,0,9,4310015,50,0),
(2519,304,2510062,0,9,4310015,50,0),
(2520,304,2510063,0,9,4310015,50,0),
(2521,304,2510064,0,9,4310015,50,0),
(2522,304,2510065,0,9,4310015,50,0),
(2523,304,2510081,0,9,4310015,50,0),
(2524,304,2510082,0,9,4310015,50,0),
(2525,304,2510083,0,9,4310015,50,0),
(2526,304,2510084,0,9,4310015,50,0),
(2527,304,2510085,0,9,4310015,50,0),
(2528,304,2510086,0,9,4310015,50,0),
(2529,304,2510087,0,9,4310015,50,0),
(2530,304,2510088,0,9,4310015,50,0),
(2531,304,2510089,0,9,4310015,50,0),
(2532,304,2510090,0,9,4310015,50,0),
(2533,304,2510144,0,9,4310015,75,0),
(2534,304,2510145,0,9,4310015,75,0),
(2535,304,2510147,0,9,4310015,75,0),
(2536,304,2510147,0,9,4310015,75,0),
(2537,304,2510148,0,9,4310015,75,0),
(2538,304,2510149,0,9,4310015,75,0),
(2539,304,2510150,0,9,4310015,75,0),
(2540,304,2510151,0,9,4310015,75,0),
(2541,304,2510152,0,9,4310015,75,0),
(2542,304,2510153,0,9,4310015,75,0),
(2543,304,2510154,0,9,4310015,75,0),
(2544,304,2510155,0,9,4310015,75,0),
(2545,304,2511020,0,9,4310015,50,0),
(2546,304,2511041,0,9,4310015,50,0),
(2547,304,2511058,0,9,4310015,50,0),
(2548,304,2511080,0,9,4310015,50,0),
(2549,304,2511102,0,9,4310015,50,0),
(2550,304,2511097,0,9,4310015,15,0),
(2551,304,2511079,0,9,4310015,15,0),
(2552,304,2511040,0,9,4310015,15,0),
(2553,304,2510177,0,9,4310015,15,0),
(2554,304,2510178,0,9,4310015,15,0),
(2555,304,2510179,0,9,4310015,15,0),
(2556,304,2510180,0,9,4310015,15,0),
(2557,304,2510181,0,9,4310015,15,0),
(2558,304,2510182,0,9,4310015,15,0),
(2559,304,2510183,0,9,4310015,15,0),
(2560,304,2510184,0,9,4310015,15,0),
(2561,304,2510185,0,9,4310015,15,0),
(2562,304,2510186,0,9,4310015,15,0),
(2563,304,2510187,0,9,4310015,15,0),
(2564,304,2510188,0,9,4310015,15,0),
(2565,304,2510189,0,9,4310015,15,0),
(2566,304,2510190,0,9,4310015,15,0),
(2567,304,2510191,0,9,4310015,15,0),
(2568,304,2510192,0,9,4310015,15,0),
(2569,304,2510193,0,9,4310015,15,0),
(2570,304,2510194,0,9,4310015,15,0),
(2571,304,2510195,0,9,4310015,15,0),
(2572,304,2510196,0,9,4310015,15,0),
(2573,305,2510196,1,1,0,0,0),
(2574,306,1352000,10000,1,0,0,0),
(2575,306,1352001,10000,2,0,0,0),
(2576,306,1352002,10000,3,0,0,0),
(2577,306,1352003,10000,4,0,0,0),
(2579,307,1522004,20000,0,0,0,0),
(2580,307,1522005,40000,1,0,0,0),
(2581,307,1522006,60000,2,0,0,0),
(2582,307,1522007,100000,3,0,0,0);
/*!40000 ALTER TABLE `shopitems` ENABLE KEYS */;
--
-- Definition of table `shops`
--
DROP TABLE IF EXISTS `shops`;
CREATE TABLE `shops` (
`shopid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`npcid` int(11) DEFAULT '0',
PRIMARY KEY (`shopid`)
) ENGINE=MyISAM AUTO_INCREMENT=9595019 DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED;
--
-- Dumping data for table `shops`
--
/*!40000 ALTER TABLE `shops` DISABLE KEYS */;
INSERT INTO `shops` (`shopid`,`npcid`) VALUES
(1,11000),
(2,11100),
(3,21000),
(4,1001000),
(5,1001001),
(6,1001100),
(7,1011000),
(8,1011001),
(9,1011100),
(10,1021000),
(11,1021001),
(12,1021100),
(13,1031000),
(14,1031001),
(15,1031100),
(16,1051000),
(17,1051001),
(18,1051002),
(19,1061001),
(20,1061002),
(21,1032103),
(22,1052104),
(23,1081000),
(24,9201058),
(25,9201059),
(26,9201060),
(27,9110003),
(28,9110004),
(29,9110005),
(30,9110006),
(31,9110007),
(32,9201020),
(33,2012003),
(34,2012004),
(35,2012005),
(36,2020001),
(37,2022000),
(38,2022001),
(39,2030009),
(40,2060003),
(41,2060004),
(42,2060007),
(43,2070001),
(44,2070002),
(45,2070003),
(46,2022002),
(47,2040051),
(48,2041002),
(49,2041003),
(50,2041006),
(51,2050000),
(52,2050003),
(53,2051000),
(54,2040049),
(55,2041016),
(100,9120004),
(101,9120019),
(102,9120002),
(103,9120000),
(104,9120001),
(105,1012004),
(106,1100001),
(107,1100002),
(56,9270065),
(57,9330086),
(58,1091000),
(59,9270021),
(60,9270027),
(61,9090000),
(1110,9270074),
(1111,9270076),
(200,2161010),
(201,2131004),
(300,9031007),
(301,9031015),
(302,9031006),
(400,9120229),
(303,1012122),
(304,9070001),
(305,9201100);
/*!40000 ALTER TABLE `shops` ENABLE KEYS */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Re: Buying potions from shops FIX
Thank you very very much paul!!
Re: Buying potions from shops FIX - v111.1
Forgot put in PacketHelper this new one:
Code:
public static final void addShopItemInfo(final MaplePacketLittleEndianWriter mplew, final MapleShopItem item, final MapleShop shop, final MapleItemInformationProvider ii, final Item i) {
mplew.writeInt(item.getItemId());
mplew.writeInt(item.getPrice());
mplew.write(0);
mplew.writeInt(item.getReqItem());
mplew.writeInt(item.getReqItemQ());
mplew.writeInt(0); // expiration
mplew.writeInt(0); // min level
mplew.writeInt(0); //category? 7 = special
mplew.write(0); // boolean
mplew.writeInt(0);
if (!GameConstants.isThrowingStar(item.getItemId()) && !GameConstants.isBullet(item.getItemId())) {
mplew.writeShort(1); // stacksize o.o
mplew.writeShort(item.getBuyable());
} else {
mplew.writeZeroBytes(6);
mplew.writeShort(BitTools.doubleToShortBits(ii.getPrice(item.getItemId())));
mplew.writeShort(ii.getSlotMax(item.getItemId()));
}
mplew.write(i == null ? 0 : 1);
if (i != null) {
addItemInfo(mplew, i);
}
if (shop.getRanks().size() > 0) {
mplew.write(item.getRank() >= 0 ? 1 : 0);
if (item.getRank() >= 0) {
mplew.write(item.getRank());
}
}
}
Re: Buying potions from shops FIX - v111.1
Or just find
mplew.writeShort(item.getBuyable() > 0 ? item.getBuyable() : ii.getSlotMax(item.getItemId()));
and make it
mplew.writeShort(ii.getSlotMax(item.getItemId()));
or just learn to use the "BUYABLE" value in shopitems.
You don't have to edit anything else in the source.
Replace packet with this if you're lazy, don't do what paul told you to.
Code:
public static final void addShopItemInfo(final MaplePacketLittleEndianWriter mplew, final MapleShopItem item, final MapleShop shop, final MapleItemInformationProvider ii, final Item i) {
mplew.writeInt(item.getItemId());
mplew.writeInt(item.getPrice());
mplew.write(0);
mplew.writeInt(item.getReqItem());
mplew.writeInt(item.getReqItemQ());
mplew.writeInt(0); // expiration
mplew.writeInt(0); // min level
mplew.writeInt(0); //category? 7 = special
mplew.write(0); // boolean
mplew.writeInt(0);
if (!GameConstants.isThrowingStar(item.getItemId()) && !GameConstants.isBullet(item.getItemId())) {
mplew.writeShort(1); // stacksize o.o
mplew.writeShort(ii.getSlotMax(item.getItemId()));
} else {
mplew.writeZeroBytes(6);
mplew.writeShort(BitTools.doubleToShortBits(ii.getPrice(item.getItemId())));
mplew.writeShort(ii.getSlotMax(item.getItemId()));
}
mplew.write(i == null ? 0 : 1);
if (i != null) {
addItemInfo(mplew, i);
}
if (shop.getRanks().size() > 0) {
mplew.write(item.getRank() >= 0 ? 1 : 0);
if (item.getRank() >= 0) {
mplew.write(item.getRank());
}
}
}
Re: Buying potions from shops FIX - v111.1
and the easier way ...
empty your shopitems table
and import this shopitems.rar
Re: Buying potions from shops FIX - v111.1
Re: Buying potions from shops FIX - v111.1
Quote:
Originally Posted by
naor123421
dosn't work
My one is work. I was fixed by that.
Re: Buying potions from shops FIX - v111.1
Re: Buying potions from shops FIX - v111.1
Why change everything when simply this fixes the issue?
PHP Code:
ret . addItem (new MapleShopItem (( short ) 1000 , rs . getInt ( "itemid" ), rs . getInt ( "price" ), rs . getInt ( "reqitem" ), rs . getInt ( "reqitemq" ), rs . getByte ( "rank" ), rs . getInt ( "category" ), rs . getInt ( "minLevel" ), rs . getInt ( "expiration" ))); }
Simply changing, "buyable" to "1000" solves the whole issue, no?
Re: Buying potions from shops FIX - v111.1
Quote:
Originally Posted by
joseph24194
and the easier way ...
empty your shopitems table
and import this
shopitems.rar
this works. LOL
no more to do
Re: Buying potions from shops FIX - v111.1
Quote:
Originally Posted by
joseph24194
and the easier way ...
empty your shopitems table
and import this
shopitems.rar
Yes, this work !
Re: Buying potions from shops FIX - v111.1
all shops not selling items now
Re: Buying potions from shops FIX - v111.1
There's another way but this is much more technical. Thanks though!
Re: Buying potions from shops FIX - v111.1
Quote:
Originally Posted by
joseph24194
and the easier way ...
empty your shopitems table
and import this
shopitems.rar
I tryed this but all the shops dosn't work now i cant enter all the shops
Re: Buying potions from shops FIX - v111.1
all the items in the shop are now GONE!! what's going on??