<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE muclient>
<!-- Saved on Friday, September 28, 2018, 6:34 PM -->
<!-- MuClient version 5.06 - pre -->
<!-- Plugin "Aard_Potential" generated by Plugin Wizard -->
<muclient >
<plugin
name="Aard_Costs"
author="Endymion"
id="f146caacda3dceaf7e572358"
language="Lua"
purpose="Cost of potential, master, etc."
date_written="2018-09-28 18:33:04"
requires="4.00"
version="1.0"
>
</plugin>
<!-- Triggers -->
<triggers >
<trigger
enabled="n"
match="^You have (?<p > \d+) points? of potential.$"
regexp="y"
script="set_potential"
sequence="100"
group="potential"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^Your next point of potential .+$"
regexp="y"
sequence="100"
group="potential"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^You have [\d,]+ quest points .+$|^$"
regexp="y"
sequence="100"
group="potential"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^Your current total max stats is .+$"
regexp="y"
script="calculate_potential"
sequence="100"
group="potential"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^ Mastery QP Gold$|^Damage Type Level Cost Cost$|^[\s-]+$|^You have .+ gold .+ masteries\.$|^$"
regexp="y"
sequence="100"
group="mastery"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^(?<which > \w+)\s+(?<current > \d+)\s+(?<qp > \d+)\s+(?<gold > [\d,]+)$"
regexp="y"
script="set_mastery"
sequence="100"
group="mastery"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^You have (?<qp > [\d,]+) qp available for masteries\.$"
regexp="y"
script="calculate_mastery"
sequence="100"
group="mastery"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^\s+---- Next Cost ----$|^ Skill name Learned Instinct Trains Gold$|^[\s-]+$|^.+deposited.+available.+$|^$"
regexp="y"
sequence="100"
group="instinct"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^You have (?<trains > [\d,]+) trains? available for instinct:$"
regexp="y"
script="set_trains"
sequence="100"
group="instinct"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^(Level [\s\d:]+|N\/A\s+:\s|\s+)?(?<which > \w+( \w+)?)\s+(?<pct > \d+\%|N\/A)\s+(?<current > \d+)\s+(?<trains > [\d]+)\s+(?<gold > [\d,]+)$"
regexp="y"
script="set_instinct"
sequence="100"
group="instinct"
omit_from_output="y"
>
</trigger>
<trigger
enabled="n"
match="^You have .+ gold available for instinct\.$"
regexp="y"
script="find_set_instinct"
sequence="100"
group="instinct"
omit_from_output="y"
>
</trigger>
</triggers>
<!-- Aliases -->
<aliases >
<alias
match="^instinct (?<which > \w+) ((?<start > \d+|to) )?(?<amt > \d+)$"
enabled="y"
regexp="y"
script="get_instinct"
sequence="101"
keep_evaluating="y"
>
</alias>
<alias
match="^mastery (?<which > \w+) ((?<start > \d+|to) )?(?<amt > \d+)$"
enabled="y"
regexp="y"
script="get_mastery"
sequence="101"
keep_evaluating="y"
>
</alias>
<alias
match="^potential ((?<start > \d+|to) )?(?<amt > \d+)$"
enabled="y"
regexp="y"
script="get_potential"
sequence="100"
>
</alias>
<alias
match="^costs? help$"
enabled="y"
regexp="y"
script="help"
sequence="100"
>
</alias>
</aliases>
<!-- Script -->
<script >
< ![CDATA[
require "commas"
require "gmcphelper"
require "tprint"
local search = ""
local which_instinct = ""
local which_mastery = ""
local to = ""
local actual = false
function get_potential(name, line, args)
start = args.start
want = tonumber(args.amt)
actual = true
if start ~= "" then
if start == "to" then
to = start
else
actual = false
current = tonumber(start)
calculate_potential()
return
end
end
-- get current potential
EnableTriggerGroup("potential", true)
SendNoEcho("potential")
end
function get_mastery(name, line, args)
--Note("starting")
which_mastery = ""
to = ""
for i, m in ipairs(masteries) do
--Note("checking "..m)
if string.find(string.lower(m), string.lower(args.which)) == 1 then
which_mastery = m
--Note(which_mastery)
break
end
end
if which_mastery == "" then -- loose search
for i, m in ipairs(masteries) do
--Note("checking "..m)
if string.find(string.lower(m), string.lower(args.which)) == 1 then
which_mastery = m
--Note(which_mastery)
break
end
end
end
if which_mastery == "" then
ColourNote("orange", "", " >> ", "silver", "", "No mastery found that matches ", "yellow", "", args.which, "silver", "", ".")
return -- no match to a mastery
end
actual = true
start = args.start
want = tonumber(args.amt)
if start ~= "" then
if start == "to" then
to = start
else
actual = false
current = tonumber(start)
calculate_mastery()
return
end
end
-- get current mastery
EnableTriggerGroup("mastery", true)
SendNoEcho("mastery")
end
function get_instinct(name, line, args)
to = ""
actual = true
start = args.start
want = tonumber(args.amt)
if start ~= "" then
if start == "to" then
to = start
else
actual = false
current = tonumber(start)
end
end
search = args.which
instincts = {}
-- get current instinct
EnableTriggerGroup("instinct", true)
SendNoEcho("instinct")
end
function set_trains(name, line, args)
args.trains = string.gsub(args.trains, ",", "")
my_trains = tonumber(args.trains)
end
function set_instinct(name, line, args)
table.insert(instincts, {name = args.which, current = tonumber(args.current)})
end
function find_set_instinct()
which_instinct = ""
for _, i in ipairs(instincts) do
--Note("checking "..i.name)
if string.find(string.lower(i.name), string.lower(search)) == 1 then
which_instinct = i.name
if actual then
current = tonumber(i.current)
end
--Note(which_instinct)
break
end
end
if which_instinct == "" then -- loose search
for _, i in ipairs(instincts) do
--Note("checking "..i.name)
if string.find(string.lower(i.name), string.lower(search)) then
which_instinct = i.name
if actual then
current = tonumber(i.current)
end
--Note(which_instinct)
break
end
end
end
if which_instinct == "" then
EnableTriggerGroup("instinct", false)
ColourNote("orange", "", " >> ", "silver", "", "No instinct found that matches ", "yellow", "", search, "silver", "", ".")
return -- no match to an instinct
end
calculate_instinct()
end
function set_mastery(name, line, args)
if args.which == which_mastery then
current = tonumber(args.current)
--Note(which_mastery.." = "..current)
end
end
function set_potential(name, line, args)
current = tonumber(args.p)
end
function afford_instinct(trains, gold)
char_base = gmcp("char.worth")
if my_trains >= trains and (char_base.gold + char_base.bank) >= gold then
return "white", "", " [", "lime", "", "OK", "white", "", "]"
else
return "white", "", " [", "red", "", "NOK", "white", "", "]"
end
end
function calculate_instinct()
EnableTriggerGroup("instinct", false)
local trains = 0
local gold = 0
if to == "to" then
to = want
else
to = current + want
end
if to < = current then
ColourNote("orange", "", " >> ", "silver", "", "Your ", "yellow", "", which_instinct, "silver", "", " instinct is already ", "yellow", "", current, "silver", "", "! Please try again.")
return
end
for i = current + 1, to do
trains = trains + instinct[i].trains
gold = gold + instinct[i].gold
end
if actual then
ColourNote("orange", "", " >> ", "silver", "", "You need ", "magenta", "", commas(trains), "red", "", " trains", "silver", "", " and ", "magenta", "", commas(gold), "gold", "", " gold", "silver", "", " to increase your ", "yellow", "", which_instinct, "silver", "", " instinct from ", "yellow", "", current, "silver", "", " to ", "yellow", "", to, "silver", "", ".", afford_instinct(trains, gold))
else
ColourNote("orange", "", " >> ", "silver", "", "It would cost ", "magenta", "", commas(trains), "red", "", " trains", "silver", "", " and ", "magenta", "", commas(gold), "gold", "", " gold", "silver", "", " to increase ", "yellow", "", which_instinct, "silver", "", " instinct from ", "yellow", "", current, "silver", "", " to ", "yellow", "", to, "silver", "", ".")
end
end
function afford_mastery(qp, gold)
char_base = gmcp("char.worth")
if quest_points >= qp and (char_base.gold + char_base.bank) >= gold then
return "white", "", " [", "lime", "", "OK", "white", "", "]"
else
return "white", "", " [", "red", "", "NOK", "white", "", "]"
end
end
function calculate_mastery(name, line, args)
if args then
args.qp = string.gsub(args.qp, ",", "")
quest_points = tonumber(args.qp)
end
EnableTriggerGroup("mastery", false)
local qp = 0
local gold = 0
if to == "to" then
to = want
else
to = current + want
end
if to < = current then
ColourNote("orange", "", " >> ", "silver", "", "Your ", "yellow", "", which_mastery, "silver", "", " mastery is already ", "yellow", "", current, "silver", "", "! Please try again.")
return
end
for i = current + 1, to do
qp = qp + mastery[i].qp
gold = gold + mastery[i].gold
end
if actual then
ColourNote("orange", "", " >> ", "silver", "", "You need ", "magenta", "", commas(qp), "red", "", " quest points", "silver", "", " and ", "magenta", "", commas(gold), "gold", "", " gold", "silver", "", " to increase your ", "yellow", "", which_mastery, "silver", "", " mastery from ", "yellow", "", current, "silver", "", " to ", "yellow", "", to, "silver", "", ".", afford_mastery(qp, gold))
else
ColourNote("orange", "", " >> ", "silver", "", "It would cost ", "magenta", "", commas(qp), "red", "", " quest points", "silver", "", " and ", "magenta", "", commas(gold), "gold", "", " gold", "silver", "", " to increase ", "yellow", "", which_mastery, "silver", "", " mastery from ", "yellow", "", current, "silver", "", " to ", "yellow", "", to, "silver", "", ".")
end
end
function afford_potential(qp)
char_base = gmcp("char.worth")
if quest_points >= qp then
return "white", "", " [", "lime", "", "OK", "white", "", "]"
else
return "white", "", " [", "red", "", "NOK", "white", "", "]"
end
end
function calculate_potential()
EnableTriggerGroup("potential", false)
--Note("You have "..current.." potential.")
--Note("You want to know how much for "..want.." more.")
local qp = 0
if to == "to" then
to = want
else
to = current + want
end
if to < = current then
ColourNote("orange", "", " >> ", "silver", "", "Your ", "yellow", "", "Potential", "silver", "", " is already ", "yellow", "", current, "silver", "", "! Please try again.")
return
end
for i = current + 1, to do
qp = qp + potential[i].qp
end
if actual then
ColourNote("orange", "", " >> ", "silver", "", "You need ", "magenta", "", commas(qp), "red", "", " quest points ", "silver", "", "to increase your ", "yellow", "", "Potential", "silver", "", " from ", "yellow", "", current, "silver", "", " to ", "yellow", "", to, "silver", "", ".", afford_potential(qp))
else
ColourNote("orange", "", " >> ", "silver", "", "It would cost ", "magenta", "", commas(qp), "red", "", " quest points ", "silver", "", "to increase ", "yellow", "", "Potential", "silver", "", " from ", "yellow", "", current, "silver", "", " to ", "yellow", "", to, "silver", "", ".")
end
end
function help()
Note()
ColourNote("orange", "", " >> ", "silver", "", "Syntax is: ")
ColourNote("white", "", " costs help")
ColourNote("white", "", " (potential|mastery <type > |instinct <type > ) < #>")
ColourNote("white", "", " (potential|mastery <type > |instinct <type > ) to < #>")
ColourNote("white", "", " (potential|mastery <type > |instinct <type > ) <start > < #>")
ColourNote("silver", "", " The ", "white", "", "<start > ", "silver", "", " variable is optional, otherwise your current potential is used.")
ColourNote("silver", "", " e.g.", "white", "", " potential 5 ", "silver", "", "Will calculate how much for you to buy 5 potential.")
ColourNote("silver", "", " e.g.", "white", "", " potential to 100 ", "silver", "", "Will calculate how much for you to increase your potential to 100.")
ColourNote("silver", "", " e.g.", "white", "", " potential 100 5 ", "silver", "", "Will calculate how much to buy 5 potential if you have 100.")
ColourNote("silver", "", " e.g.", "white", "", " mastery electric 5 ", "silver", "", "Will calculate how much to buy 5 electric mastery.")
ColourNote("silver", "", " e.g.", "white", "", " mastery electric to 104 ", "silver", "", "Will calculate how much to buy electric mastery from your current amount to 104.")
ColourNote("silver", "", " e.g.", "white", "", " mastery electric 100 5 ", "silver", "", "Will calculate how much to buy 5 electric mastery if you have 100.")
ColourNote("silver", "", " e.g.", "white", "", " instinct dodge 5 ", "silver", "", "Will calculate how much to buy 5 dodge instinct.")
ColourNote("silver", "", " e.g.", "white", "", " instinct dodge to 104 ", "silver", "", "Will calculate how much to buy dodge instinct from your current amount to 104.")
ColourNote("silver", "", " e.g.", "white", "", " instinct dodge 100 5 ", "silver", "", "Will calculate how much to buy 5 dodge instinct if you have 100.")
Note()
end
help()
potential = {
[1] = {qp = 100, total = "100"}, [2] = {qp = 125, total = "225"},
[3] = {qp = 150, total = "375"}, [4] = {qp = 175, total = "550"},
[5] = {qp = 200, total = "750"}, [6] = {qp = 225, total = "975"},
[7] = {qp = 250, total = "1,225"}, [8] = {qp = 275, total = "1,500"},
[9] = {qp = 300, total = "1,800"}, [10] = {qp = 325, total = "2,125"},
[11] = {qp = 350, total = "2,475"}, [12] = {qp = 375, total = "2,850"},
[13] = {qp = 400, total = "3,250"}, [14] = {qp = 425, total = "3,675"},
[15] = {qp = 450, total = "4,125"}, [16] = {qp = 475, total = "4,600"},
[17] = {qp = 500, total = "5,100"}, [18] = {qp = 525, total = "5,625"},
[19] = {qp = 550, total = "6,175"}, [20] = {qp = 575, total = "6,750"},
[21] = {qp = 600, total = "7,350"}, [22] = {qp = 625, total = "7,975"},
[23] = {qp = 650, total = "8,625"}, [24] = {qp = 675, total = "9,300"},
[25] = {qp = 700, total = "10,000"}, [26] = {qp = 725, total = "10,725"},
[27] = {qp = 750, total = "11,475"}, [28] = {qp = 775, total = "12,250"},
[29] = {qp = 800, total = "13,050"}, [30] = {qp = 825, total = "13,875"},
[31] = {qp = 850, total = "14,725"}, [32] = {qp = 875, total = "15,600"},
[33] = {qp = 900, total = "16,500"}, [34] = {qp = 925, total = "17,425"},
[35] = {qp = 950, total = "18,375"}, [36] = {qp = 975, total = "19,350"},
[37] = {qp = 1000, total = "20,350"}, [38] = {qp = 1025, total = "21,375"},
[39] = {qp = 1050, total = "22,425"}, [40] = {qp = 1075, total = "23,500"},
[41] = {qp = 1100, total = "24,600"}, [42] = {qp = 1125, total = "25,725"},
[43] = {qp = 1150, total = "26,875"}, [44] = {qp = 1175, total = "28,050"},
[45] = {qp = 1200, total = "29,250"}, [46] = {qp = 1225, total = "30,475"},
[47] = {qp = 1250, total = "31,725"}, [48] = {qp = 1275, total = "33,000"},
[49] = {qp = 1300, total = "34,300"}, [50] = {qp = 1325, total = "35,625"},
[51] = {qp = 1350, total = "36,975"}, [52] = {qp = 1375, total = "38,350"},
[53] = {qp = 1400, total = "39,750"}, [54] = {qp = 1425, total = "41,175"},
[55] = {qp = 1450, total = "42,625"}, [56] = {qp = 1475, total = "44,100"},
[57] = {qp = 1500, total = "45,600"}, [58] = {qp = 1525, total = "47,125"},
[59] = {qp = 1550, total = "48,675"}, [60] = {qp = 1575, total = "50,250"},
[61] = {qp = 1600, total = "51,850"}, [62] = {qp = 1625, total = "53,475"},
[63] = {qp = 1650, total = "55,125"}, [64] = {qp = 1675, total = "56,800"},
[65] = {qp = 1700, total = "58,500"}, [66] = {qp = 1725, total = "60,225"},
[67] = {qp = 1750, total = "61,975"}, [68] = {qp = 1775, total = "63,750"},
[69] = {qp = 1800, total = "65,550"}, [70] = {qp = 1825, total = "67,375"},
[71] = {qp = 1850, total = "69,225"}, [72] = {qp = 1875, total = "71,100"},
[73] = {qp = 1900, total = "73,000"}, [74] = {qp = 1925, total = "74,925"},
[75] = {qp = 1950, total = "76,875"}, [76] = {qp = 1975, total = "78,850"},
[77] = {qp = 2000, total = "80,850"}, [78] = {qp = 2025, total = "82,875"},
[79] = {qp = 2050, total = "84,925"}, [80] = {qp = 2075, total = "87,000"},
[81] = {qp = 2100, total = "89,100"}, [82] = {qp = 2125, total = "91,225"},
[83] = {qp = 2150, total = "93,375"}, [84] = {qp = 2175, total = "95,550"},
[85] = {qp = 2200, total = "97,750"}, [86] = {qp = 2225, total = "99,975"},
[87] = {qp = 2250, total = "102,225"}, [88] = {qp = 2275, total = "104,500"},
[89] = {qp = 2300, total = "106,800"}, [90] = {qp = 2325, total = "109,125"},
[91] = {qp = 2350, total = "111,475"}, [92] = {qp = 2375, total = "113,850"},
[93] = {qp = 2400, total = "116,250"}, [94] = {qp = 2425, total = "118,675"},
[95] = {qp = 2450, total = "121,125"}, [96] = {qp = 2475, total = "123,600"},
[97] = {qp = 2500, total = "126,100"}, [98] = {qp = 2525, total = "128,625"},
[99] = {qp = 2550, total = "131,175"}, [100] = {qp = 2575, total = "133,750"},
[101] = {qp = 2600, total = "136,350"}, [102] = {qp = 2625, total = "138,975"},
[103] = {qp = 2650, total = "141,625"}, [104] = {qp = 2675, total = "144,300"},
[105] = {qp = 2700, total = "147,000"}, [106] = {qp = 2725, total = "149,725"},
[107] = {qp = 2750, total = "152,475"}, [108] = {qp = 2775, total = "155,250"},
[109] = {qp = 2800, total = "158,050"}, [110] = {qp = 2825, total = "160,875"},
[111] = {qp = 2850, total = "163,725"}, [112] = {qp = 2875, total = "166,600"},
[113] = {qp = 2900, total = "169,500"}, [114] = {qp = 2925, total = "172,425"},
[115] = {qp = 2950, total = "175,375"}, [116] = {qp = 2975, total = "178,350"},
[117] = {qp = 3000, total = "181,350"}, [118] = {qp = 3025, total = "184,375"},
[119] = {qp = 3050, total = "187,425"}, [120] = {qp = 3075, total = "190,500"},
[121] = {qp = 3100, total = "193,600"}, [122] = {qp = 3125, total = "196,725"},
[123] = {qp = 3150, total = "199,875"}, [124] = {qp = 3175, total = "203,050"},
[125] = {qp = 3200, total = "206,250"}, [126] = {qp = 3225, total = "209,475"},
[127] = {qp = 3250, total = "212,725"}, [128] = {qp = 3275, total = "216,000"},
[129] = {qp = 3300, total = "219,300"}, [130] = {qp = 3325, total = "222,625"},
[131] = {qp = 3350, total = "225,975"}, [132] = {qp = 3375, total = "229,350"},
[133] = {qp = 3400, total = "232,750"}, [134] = {qp = 3425, total = "236,175"},
[135] = {qp = 3450, total = "239,625"}, [136] = {qp = 3475, total = "243,100"},
[137] = {qp = 3500, total = "246,600"}, [138] = {qp = 3525, total = "250,125"},
[139] = {qp = 3550, total = "253,675"}, [140] = {qp = 3575, total = "257,250"},
[141] = {qp = 3600, total = "260,850"}, [142] = {qp = 3625, total = "264,475"},
[143] = {qp = 3650, total = "268,125"}, [144] = {qp = 3675, total = "271,800"},
[145] = {qp = 3700, total = "275,500"}, [146] = {qp = 3725, total = "279,225"},
[147] = {qp = 3750, total = "282,975"}, [148] = {qp = 3775, total = "286,750"},
[149] = {qp = 3800, total = "290,550"}, [150] = {qp = 3825, total = "294,375"},
[151] = {qp = 3850, total = "298,225"}, [152] = {qp = 3900, total = "302,125"},
[153] = {qp = 3950, total = "306,075"}, [154] = {qp = 4000, total = "310,075"},
[155] = {qp = 4050, total = "314,125"}, [156] = {qp = 4100, total = "318,225"},
[157] = {qp = 4150, total = "322,375"}, [158] = {qp = 4200, total = "326,575"},
[159] = {qp = 4250, total = "330,825"}, [160] = {qp = 4300, total = "335,125"},
[161] = {qp = 4350, total = "339,475"}, [162] = {qp = 4400, total = "343,875"},
[163] = {qp = 4450, total = "348,325"}, [164] = {qp = 4500, total = "352,825"},
[165] = {qp = 4550, total = "357,375"}, [166] = {qp = 4600, total = "361,975"},
[167] = {qp = 4650, total = "366,625"}, [168] = {qp = 4700, total = "371,325"},
[169] = {qp = 4750, total = "376,075"}, [170] = {qp = 4800, total = "380,875"},
[171] = {qp = 4850, total = "385,725"}, [172] = {qp = 4900, total = "390,625"},
[173] = {qp = 4950, total = "395,575"}, [174] = {qp = 5000, total = "400,575"},
[175] = {qp = 5050, total = "405,625"}, [176] = {qp = 5100, total = "410,725"},
[177] = {qp = 5150, total = "415,875"}, [178] = {qp = 5200, total = "421,075"},
[179] = {qp = 5250, total = "426,325"}, [180] = {qp = 5300, total = "431,625"},
[181] = {qp = 5350, total = "436,975"}, [182] = {qp = 5400, total = "442,375"},
[183] = {qp = 5450, total = "447,825"}, [184] = {qp = 5500, total = "453,325"},
[185] = {qp = 5550, total = "458,875"}, [186] = {qp = 5600, total = "464,475"},
[187] = {qp = 5650, total = "470,125"}, [188] = {qp = 5700, total = "475,825"},
[189] = {qp = 5750, total = "481,575"}, [190] = {qp = 5800, total = "487,375"},
[191] = {qp = 5850, total = "493,225"}, [192] = {qp = 5900, total = "499,125"},
[193] = {qp = 5950, total = "505,075"}, [194] = {qp = 6000, total = "511,075"},
[195] = {qp = 6050, total = "517,125"}, [196] = {qp = 6100, total = "523,225"},
[197] = {qp = 6150, total = "529,375"}, [198] = {qp = 6200, total = "535,575"},
[199] = {qp = 6250, total = "541,825"}, [200] = {qp = 6300, total = "548,125"},
[201] = {qp = 6350, total = "554,475"}, [202] = {qp = 6400, total = "560,875"},
[203] = {qp = 6450, total = "567,325"}, [204] = {qp = 6500, total = "573,825"},
[205] = {qp = 6550, total = "580,375"}, [206] = {qp = 6600, total = "586,975"},
[207] = {qp = 6650, total = "593,625"}, [208] = {qp = 6700, total = "600,325"},
[209] = {qp = 6750, total = "607,075"}, [210] = {qp = 6800, total = "613,875"},
[211] = {qp = 6850, total = "620,725"}, [212] = {qp = 6900, total = "627,625"},
[213] = {qp = 6950, total = "634,575"}, [214] = {qp = 7000, total = "641,575"},
[215] = {qp = 7050, total = "648,625"}, [216] = {qp = 7100, total = "655,725"},
[217] = {qp = 7150, total = "662,875"}, [218] = {qp = 7200, total = "670,075"},
[219] = {qp = 7250, total = "677,325"}, [220] = {qp = 7300, total = "684,625"},
[221] = {qp = 7350, total = "691,975"}, [222] = {qp = 7400, total = "699,375"},
[223] = {qp = 7450, total = "706,825"}, [224] = {qp = 7500, total = "714,325"},
[225] = {qp = 7550, total = "721,875"}, [226] = {qp = 7600, total = "729,475"},
[227] = {qp = 7650, total = "737,125"}, [228] = {qp = 7700, total = "744,825"},
[229] = {qp = 7750, total = "752,575"}, [230] = {qp = 7800, total = "760,375"},
[231] = {qp = 7850, total = "768,225"}, [232] = {qp = 7900, total = "776,125"},
[233] = {qp = 7950, total = "784,075"}, [234] = {qp = 8000, total = "792,075"},
[235] = {qp = 8050, total = "800,125"}, [236] = {qp = 8100, total = "808,225"},
[237] = {qp = 8150, total = "816,375"}, [238] = {qp = 8200, total = "824,575"},
[239] = {qp = 8250, total = "832,825"}, [240] = {qp = 8300, total = "841,125"},
[241] = {qp = 8350, total = "849,475"}, [242] = {qp = 8400, total = "857,875"},
[243] = {qp = 8450, total = "866,325"}, [244] = {qp = 8500, total = "874,825"},
[245] = {qp = 8550, total = "883,375"}, [246] = {qp = 8600, total = "891,975"},
[247] = {qp = 8650, total = "900,625"}, [248] = {qp = 8700, total = "909,325"},
[249] = {qp = 8750, total = "918,075"}, [250] = {qp = 8800, total = "926,875"},
[251] = {qp = 8850, total = "935,725"}, [252] = {qp = 8900, total = "944,625"},
[253] = {qp = 8950, total = "953,575"}, [254] = {qp = 9000, total = "962,575"},
[255] = {qp = 9050, total = "971,625"}, [256] = {qp = 9100, total = "980,725"},
[257] = {qp = 9150, total = "989,875"}, [258] = {qp = 9200, total = "999,075"},
[259] = {qp = 9250, total = "1,008,325"}, [260] = {qp = 9300, total = "1,017,625"},
[261] = {qp = 9350, total = "1,026,975"}, [262] = {qp = 9400, total = "1,036,375"},
[263] = {qp = 9450, total = "1,045,825"}, [264] = {qp = 9500, total = "1,055,325"},
[265] = {qp = 9550, total = "1,064,875"}, [266] = {qp = 9600, total = "1,074,475"},
[267] = {qp = 9650, total = "1,084,125"}, [268] = {qp = 9700, total = "1,093,825"},
[269] = {qp = 9750, total = "1,103,575"}, [270] = {qp = 9800, total = "1,113,375"},
[271] = {qp = 9850, total = "1,123,225"}, [272] = {qp = 9900, total = "1,133,125"},
[273] = {qp = 9950, total = "1,143,075"}, [274] = {qp = 10000, total = "1,153,075"},
[275] = {qp = 10050, total = "1,163,125"}, [276] = {qp = 10100, total = "1,173,225"},
[277] = {qp = 10150, total = "1,183,375"}, [278] = {qp = 10200, total = "1,193,575"},
[279] = {qp = 10250, total = "1,203,825"}, [280] = {qp = 10300, total = "1,214,125"},
[281] = {qp = 10350, total = "1,224,475"}, [282] = {qp = 10400, total = "1,234,875"},
[283] = {qp = 10450, total = "1,245,325"}, [284] = {qp = 10500, total = "1,255,825"},
[285] = {qp = 10550, total = "1,266,375"}, [286] = {qp = 10600, total = "1,276,975"},
[287] = {qp = 10650, total = "1,287,625"}, [288] = {qp = 10700, total = "1,298,325"},
[289] = {qp = 10750, total = "1,309,075"}, [290] = {qp = 10800, total = "1,319,875"},
[291] = {qp = 10850, total = "1,330,725"}, [292] = {qp = 10900, total = "1,341,625"},
[293] = {qp = 10950, total = "1,352,575"}, [294] = {qp = 11000, total = "1,363,575"},
[295] = {qp = 11050, total = "1,374,625"}, [296] = {qp = 11100, total = "1,385,725"},
[297] = {qp = 11150, total = "1,396,875"}, [298] = {qp = 11200, total = "1,408,075"},
[299] = {qp = 11250, total = "1,419,325"}, [300] = {qp = 11300, total = "1,430,625"},
[301] = {qp = 11350, total = "1,441,975"}, [302] = {qp = 11400, total = "1,453,375"},
[303] = {qp = 11450, total = "1,464,825"}, [304] = {qp = 11500, total = "1,476,325"},
[305] = {qp = 11550, total = "1,487,875"}, [306] = {qp = 11600, total = "1,499,475"},
[307] = {qp = 11650, total = "1,511,125"}, [308] = {qp = 11700, total = "1,522,825"},
[309] = {qp = 11750, total = "1,534,575"}, [310] = {qp = 11800, total = "1,546,375"},
[311] = {qp = 11850, total = "1,558,225"}, [312] = {qp = 11900, total = "1,570,125"},
[313] = {qp = 11950, total = "1,582,075"}, [314] = {qp = 12000, total = "1,594,075"},
[315] = {qp = 12050, total = "1,606,125"}, [316] = {qp = 12100, total = "1,618,225"},
[317] = {qp = 12150, total = "1,630,375"}, [318] = {qp = 12200, total = "1,642,575"},
[319] = {qp = 12250, total = "1,654,825"}, [320] = {qp = 12300, total = "1,667,125"},
[321] = {qp = 12350, total = "1,679,475"}, [322] = {qp = 12400, total = "1,691,875"},
[323] = {qp = 12450, total = "1,704,325"}, [324] = {qp = 12500, total = "1,716,825"},
[325] = {qp = 12550, total = "1,729,375"}, [326] = {qp = 12600, total = "1,741,975"},
[327] = {qp = 12650, total = "1,754,625"}, [328] = {qp = 12700, total = "1,767,325"},
[329] = {qp = 12750, total = "1,780,075"}, [330] = {qp = 12800, total = "1,792,875"},
[331] = {qp = 12850, total = "1,805,725"}, [332] = {qp = 12900, total = "1,818,625"},
[333] = {qp = 12950, total = "1,831,575"}, [334] = {qp = 13000, total = "1,844,575"},
[335] = {qp = 13050, total = "1,857,625"}, [336] = {qp = 13100, total = "1,870,725"},
[337] = {qp = 13150, total = "1,883,875"}, [338] = {qp = 13200, total = "1,897,075"},
[339] = {qp = 13250, total = "1,910,325"}, [340] = {qp = 13300, total = "1,923,625"},
[341] = {qp = 13350, total = "1,936,975"}, [342] = {qp = 13400, total = "1,950,375"},
[343] = {qp = 13450, total = "1,963,825"}, [344] = {qp = 13500, total = "1,977,325"},
[345] = {qp = 13550, total = "1,990,875"}, [346] = {qp = 13600, total = "2,004,475"},
[347] = {qp = 13650, total = "2,018,125"}, [348] = {qp = 13700, total = "2,031,825"},
[349] = {qp = 13750, total = "2,045,575"}, [350] = {qp = 13800, total = "2,059,375"},
[351] = {qp = 13850, total = "2,073,225"}, [352] = {qp = 13900, total = "2,087,125"},
[353] = {qp = 13950, total = "2,101,075"}, [354] = {qp = 14000, total = "2,115,075"},
[355] = {qp = 14050, total = "2,129,125"}, [356] = {qp = 14100, total = "2,143,225"},
[357] = {qp = 14150, total = "2,157,375"}, [358] = {qp = 14200, total = "2,171,575"},
[359] = {qp = 14250, total = "2,185,825"}, [360] = {qp = 14300, total = "2,200,125"},
[361] = {qp = 14350, total = "2,214,475"}, [362] = {qp = 14400, total = "2,228,875"},
[363] = {qp = 14450, total = "2,243,325"}, [364] = {qp = 14500, total = "2,257,825"},
[365] = {qp = 14550, total = "2,272,375"}, [366] = {qp = 14600, total = "2,286,975"},
[367] = {qp = 14650, total = "2,301,625"}, [368] = {qp = 14700, total = "2,316,325"},
[369] = {qp = 14750, total = "2,331,075"}, [370] = {qp = 14800, total = "2,345,875"},
[371] = {qp = 14850, total = "2,360,725"}, [372] = {qp = 14900, total = "2,375,625"},
[373] = {qp = 14950, total = "2,390,575"}, [374] = {qp = 15000, total = "2,405,575"},
[375] = {qp = 15050, total = "2,420,625"}, [376] = {qp = 15100, total = "2,435,725"},
[377] = {qp = 15150, total = "2,450,875"}, [378] = {qp = 15200, total = "2,466,075"},
[379] = {qp = 15250, total = "2,481,325"}, [380] = {qp = 15300, total = "2,496,625"},
[381] = {qp = 15350, total = "2,511,975"}, [382] = {qp = 15400, total = "2,527,375"},
[383] = {qp = 15450, total = "2,542,825"}, [384] = {qp = 15500, total = "2,558,325"},
[385] = {qp = 15550, total = "2,573,875"}, [386] = {qp = 15600, total = "2,589,475"},
[387] = {qp = 15650, total = "2,605,125"}, [388] = {qp = 15700, total = "2,620,825"},
[389] = {qp = 15750, total = "2,636,575"}, [390] = {qp = 15800, total = "2,652,375"},
[391] = {qp = 15850, total = "2,668,225"}, [392] = {qp = 15900, total = "2,684,125"},
[393] = {qp = 15950, total = "2,700,075"}, [394] = {qp = 16000, total = "2,716,075"},
[395] = {qp = 16050, total = "2,732,125"}, [396] = {qp = 16100, total = "2,748,225"},
[397] = {qp = 16150, total = "2,764,375"}, [398] = {qp = 16200, total = "2,780,575"},
[399] = {qp = 16250, total = "2,796,825"}, [400] = {qp = 16300, total = "2,813,125"},
[401] = {qp = 16350, total = "2,829,475"}, [402] = {qp = 16400, total = "2,845,875"},
[403] = {qp = 16450, total = "2,862,325"}, [404] = {qp = 16500, total = "2,878,825"},
[405] = {qp = 16550, total = "2,895,375"}, [406] = {qp = 16600, total = "2,911,975"},
[407] = {qp = 16650, total = "2,928,625"}, [408] = {qp = 16700, total = "2,945,325"},
[409] = {qp = 16750, total = "2,962,075"}, [410] = {qp = 16800, total = "2,978,875"},
[411] = {qp = 16850, total = "2,995,725"}, [412] = {qp = 16900, total = "3,012,625"},
[413] = {qp = 16950, total = "3,029,575"}, [414] = {qp = 17000, total = "3,046,575"},
[415] = {qp = 17050, total = "3,063,625"}, [416] = {qp = 17100, total = "3,080,725"},
[417] = {qp = 17150, total = "3,097,875"}, [418] = {qp = 17200, total = "3,115,075"},
[419] = {qp = 17250, total = "3,132,325"}, [420] = {qp = 17300, total = "3,149,625"},
[421] = {qp = 17350, total = "3,166,975"}, [422] = {qp = 17400, total = "3,184,375"},
[423] = {qp = 17450, total = "3,201,825"}, [424] = {qp = 17500, total = "3,219,325"},
[425] = {qp = 17550, total = "3,236,875"}, [426] = {qp = 17600, total = "3,254,475"},
[427] = {qp = 17650, total = "3,272,125"}, [428] = {qp = 17700, total = "3,289,825"},
[429] = {qp = 17750, total = "3,307,575"}, [430] = {qp = 17800, total = "3,325,375"},
[431] = {qp = 17850, total = "3,343,225"}, [432] = {qp = 17900, total = "3,361,125"},
[433] = {qp = 17950, total = "3,379,075"}, [434] = {qp = 18000, total = "3,397,075"},
[435] = {qp = 18050, total = "3,415,125"}, [436] = {qp = 18100, total = "3,433,225"},
[437] = {qp = 18150, total = "3,451,375"}, [438] = {qp = 18200, total = "3,469,575"},
[439] = {qp = 18250, total = "3,487,825"}, [440] = {qp = 18300, total = "3,506,125"},
[441] = {qp = 18350, total = "3,524,475"}, [442] = {qp = 18400, total = "3,542,875"},
[443] = {qp = 18450, total = "3,561,325"}, [444] = {qp = 18500, total = "3,579,825"},
[445] = {qp = 18550, total = "3,598,375"}, [446] = {qp = 18600, total = "3,616,975"},
[447] = {qp = 18650, total = "3,635,625"}, [448] = {qp = 18700, total = "3,654,325"},
[449] = {qp = 18750, total = "3,673,075"}, [450] = {qp = 18800, total = "3,691,875"}
}
masteries = {
"Bash",
"Pierce",
"Slash",
"Acid",
"Air",
"Cold",
"Disease",
"Earth",
"Electric",
"Energy",
"Fire",
"Holy",
"Light",
"Magic",
"Mental",
"Negative",
"Poison",
"Shadow",
"Sonic",
"Water"
}
mastery = {
[1] = {qp = 100, tot_qp = 100, gold = 2000000, tot_gold = 2000000},
[2] = {qp = 120, tot_qp = 220, gold = 2250000, tot_gold = 4250000},
[3] = {qp = 140, tot_qp = 360, gold = 2500000, tot_gold = 6750000},
[4] = {qp = 160, tot_qp = 520, gold = 2750000, tot_gold = 9500000},
[5] = {qp = 180, tot_qp = 700, gold = 3000000, tot_gold = 12500000},
[6] = {qp = 200, tot_qp = 900, gold = 3250000, tot_gold = 15750000},
[7] = {qp = 220, tot_qp = 1120, gold = 3500000, tot_gold = 19250000},
[8] = {qp = 240, tot_qp = 1360, gold = 3750000, tot_gold = 23000000},
[9] = {qp = 260, tot_qp = 1620, gold = 4000000, tot_gold = 27000000},
[10] = {qp = 280, tot_qp = 1900, gold = 4250000, tot_gold = 31250000},
[11] = {qp = 300, tot_qp = 2200, gold = 4500000, tot_gold = 35750000},
[12] = {qp = 320, tot_qp = 2520, gold = 4750000, tot_gold = 40500000},
[13] = {qp = 340, tot_qp = 2860, gold = 5000000, tot_gold = 45500000},
[14] = {qp = 360, tot_qp = 3220, gold = 5250000, tot_gold = 50750000},
[15] = {qp = 380, tot_qp = 3600, gold = 5500000, tot_gold = 56250000},
[16] = {qp = 400, tot_qp = 4000, gold = 5750000, tot_gold = 62000000},
[17] = {qp = 420, tot_qp = 4420, gold = 6000000, tot_gold = 68000000},
[18] = {qp = 440, tot_qp = 4860, gold = 6250000, tot_gold = 74250000},
[19] = {qp = 460, tot_qp = 5320, gold = 6500000, tot_gold = 80750000},
[20] = {qp = 480, tot_qp = 5800, gold = 6750000, tot_gold = 87500000},
[21] = {qp = 500, tot_qp = 6300, gold = 7000000, tot_gold = 94500000},
[22] = {qp = 520, tot_qp = 6820, gold = 7250000, tot_gold = 101750000},
[23] = {qp = 540, tot_qp = 7360, gold = 7500000, tot_gold = 109250000},
[24] = {qp = 560, tot_qp = 7920, gold = 7750000, tot_gold = 117000000},
[25] = {qp = 580, tot_qp = 8500, gold = 8000000, tot_gold = 125000000},
[26] = {qp = 600, tot_qp = 9100, gold = 8250000, tot_gold = 133250000},
[27] = {qp = 620, tot_qp = 9720, gold = 8500000, tot_gold = 141750000},
[28] = {qp = 640, tot_qp = 10360, gold = 8750000, tot_gold = 150500000},
[29] = {qp = 660, tot_qp = 11020, gold = 9000000, tot_gold = 159500000},
[30] = {qp = 680, tot_qp = 11700, gold = 9250000, tot_gold = 168750000},
[31] = {qp = 700, tot_qp = 12400, gold = 9500000, tot_gold = 178250000},
[32] = {qp = 720, tot_qp = 13120, gold = 9750000, tot_gold = 188000000},
[33] = {qp = 740, tot_qp = 13860, gold = 10000000, tot_gold = 198000000},
[34] = {qp = 760, tot_qp = 14620, gold = 10250000, tot_gold = 208250000},
[35] = {qp = 780, tot_qp = 15400, gold = 10500000, tot_gold = 218750000},
[36] = {qp = 800, tot_qp = 16200, gold = 10750000, tot_gold = 229500000},
[37] = {qp = 820, tot_qp = 17020, gold = 11000000, tot_gold = 240500000},
[38] = {qp = 840, tot_qp = 17860, gold = 11250000, tot_gold = 251750000},
[39] = {qp = 860, tot_qp = 18720, gold = 11500000, tot_gold = 263250000},
[40] = {qp = 880, tot_qp = 19600, gold = 11750000, tot_gold = 275000000},
[41] = {qp = 900, tot_qp = 20500, gold = 12000000, tot_gold = 287000000},
[42] = {qp = 920, tot_qp = 21420, gold = 12250000, tot_gold = 299250000},
[43] = {qp = 940, tot_qp = 22360, gold = 12500000, tot_gold = 311750000},
[44] = {qp = 960, tot_qp = 23320, gold = 12750000, tot_gold = 324500000},
[45] = {qp = 980, tot_qp = 24300, gold = 13000000, tot_gold = 337500000},
[46] = {qp = 1000, tot_qp = 25300, gold = 13250000, tot_gold = 350750000},
[47] = {qp = 1020, tot_qp = 26320, gold = 13500000, tot_gold = 364250000},
[48] = {qp = 1040, tot_qp = 27360, gold = 13750000, tot_gold = 378000000},
[49] = {qp = 1060, tot_qp = 28420, gold = 14000000, tot_gold = 392000000},
[50] = {qp = 1080, tot_qp = 29500, gold = 14250000, tot_gold = 406250000},
[51] = {qp = 1100, tot_qp = 30600, gold = 14500000, tot_gold = 420750000},
[52] = {qp = 1120, tot_qp = 31720, gold = 14750000, tot_gold = 435500000},
[53] = {qp = 1140, tot_qp = 32860, gold = 15000000, tot_gold = 450500000},
[54] = {qp = 1160, tot_qp = 34020, gold = 15250000, tot_gold = 465750000},
[55] = {qp = 1180, tot_qp = 35200, gold = 15500000, tot_gold = 481250000},
[56] = {qp = 1200, tot_qp = 36400, gold = 15750000, tot_gold = 497000000},
[57] = {qp = 1220, tot_qp = 37620, gold = 16000000, tot_gold = 513000000},
[58] = {qp = 1240, tot_qp = 38860, gold = 16250000, tot_gold = 529250000},
[59] = {qp = 1260, tot_qp = 40120, gold = 16500000, tot_gold = 545750000},
[60] = {qp = 1280, tot_qp = 41400, gold = 16750000, tot_gold = 562500000},
[61] = {qp = 1300, tot_qp = 42700, gold = 17000000, tot_gold = 579500000},
[62] = {qp = 1320, tot_qp = 44020, gold = 17250000, tot_gold = 596750000},
[63] = {qp = 1340, tot_qp = 45360, gold = 17500000, tot_gold = 614250000},
[64] = {qp = 1360, tot_qp = 46720, gold = 17750000, tot_gold = 632000000},
[65] = {qp = 1380, tot_qp = 48100, gold = 18000000, tot_gold = 650000000},
[66] = {qp = 1400, tot_qp = 49500, gold = 18250000, tot_gold = 668250000},
[67] = {qp = 1420, tot_qp = 50920, gold = 18500000, tot_gold = 686750000},
[68] = {qp = 1440, tot_qp = 52360, gold = 18750000, tot_gold = 705500000},
[69] = {qp = 1460, tot_qp = 53820, gold = 19000000, tot_gold = 724500000},
[70] = {qp = 1480, tot_qp = 55300, gold = 19250000, tot_gold = 743750000},
[71] = {qp = 1500, tot_qp = 56800, gold = 19500000, tot_gold = 763250000},
[72] = {qp = 1520, tot_qp = 58320, gold = 19750000, tot_gold = 783000000},
[73] = {qp = 1540, tot_qp = 59860, gold = 20000000, tot_gold = 803000000},
[74] = {qp = 1560, tot_qp = 61420, gold = 20250000, tot_gold = 823250000},
[75] = {qp = 1580, tot_qp = 63000, gold = 20500000, tot_gold = 843750000},
[76] = {qp = 1600, tot_qp = 64600, gold = 20750000, tot_gold = 864500000},
[77] = {qp = 1620, tot_qp = 66220, gold = 21000000, tot_gold = 885500000},
[78] = {qp = 1640, tot_qp = 67860, gold = 21250000, tot_gold = 906750000},
[79] = {qp = 1660, tot_qp = 69520, gold = 21500000, tot_gold = 928250000},
[80] = {qp = 1680, tot_qp = 71200, gold = 21750000, tot_gold = 950000000},
[81] = {qp = 1700, tot_qp = 72900, gold = 22000000, tot_gold = 972000000},
[82] = {qp = 1720, tot_qp = 74620, gold = 22250000, tot_gold = 994250000},
[83] = {qp = 1740, tot_qp = 76360, gold = 22500000, tot_gold = 1016750000},
[84] = {qp = 1760, tot_qp = 78120, gold = 22750000, tot_gold = 1039500000},
[85] = {qp = 1780, tot_qp = 79900, gold = 23000000, tot_gold = 1062500000},
[86] = {qp = 1800, tot_qp = 81700, gold = 23250000, tot_gold = 1085750000},
[87] = {qp = 1820, tot_qp = 83520, gold = 23500000, tot_gold = 1109250000},
[88] = {qp = 1840, tot_qp = 85360, gold = 23750000, tot_gold = 1133000000},
[89] = {qp = 1860, tot_qp = 87220, gold = 24000000, tot_gold = 1157000000},
[90] = {qp = 1880, tot_qp = 89100, gold = 24250000, tot_gold = 1181250000},
[91] = {qp = 1900, tot_qp = 91000, gold = 24500000, tot_gold = 1205750000},
[92] = {qp = 1920, tot_qp = 92920, gold = 24750000, tot_gold = 1230500000},
[93] = {qp = 1940, tot_qp = 94860, gold = 25000000, tot_gold = 1255500000},
[94] = {qp = 1960, tot_qp = 96820, gold = 25250000, tot_gold = 1280750000},
[95] = {qp = 1980, tot_qp = 98800, gold = 25500000, tot_gold = 1306250000},
[96] = {qp = 2000, tot_qp = 100800, gold = 25750000, tot_gold = 1332000000},
[97] = {qp = 2020, tot_qp = 102820, gold = 26000000, tot_gold = 1358000000},
[98] = {qp = 2040, tot_qp = 104860, gold = 26250000, tot_gold = 1384250000},
[99] = {qp = 2060, tot_qp = 106920, gold = 26500000, tot_gold = 1410750000},
[100] = {qp = 2080, tot_qp = 109000, gold = 26750000, tot_gold = 1437500000},
[101] = {qp = 2100, tot_qp = 111100, gold = 27000000, tot_gold = 1464500000},
[102] = {qp = 2120, tot_qp = 113220, gold = 27250000, tot_gold = 1491750000},
[103] = {qp = 2140, tot_qp = 115360, gold = 27500000, tot_gold = 1519250000},
[104] = {qp = 2160, tot_qp = 117520, gold = 27750000, tot_gold = 1547000000},
[105] = {qp = 2180, tot_qp = 119700, gold = 28000000, tot_gold = 1575000000},
[106] = {qp = 2200, tot_qp = 121900, gold = 28250000, tot_gold = 1603250000},
[107] = {qp = 2220, tot_qp = 124120, gold = 28500000, tot_gold = 1631750000},
[108] = {qp = 2240, tot_qp = 126360, gold = 28750000, tot_gold = 1660500000},
[109] = {qp = 2260, tot_qp = 128620, gold = 29000000, tot_gold = 1689500000},
[110] = {qp = 2280, tot_qp = 130900, gold = 29250000, tot_gold = 1718750000},
[111] = {qp = 2300, tot_qp = 133200, gold = 29500000, tot_gold = 1748250000},
[112] = {qp = 2320, tot_qp = 135520, gold = 29750000, tot_gold = 1778000000},
[113] = {qp = 2340, tot_qp = 137860, gold = 30000000, tot_gold = 1808000000},
[114] = {qp = 2360, tot_qp = 140220, gold = 30250000, tot_gold = 1838250000},
[115] = {qp = 2380, tot_qp = 142600, gold = 30500000, tot_gold = 1868750000},
[116] = {qp = 2400, tot_qp = 145000, gold = 30750000, tot_gold = 1899500000},
[117] = {qp = 2420, tot_qp = 147420, gold = 31000000, tot_gold = 1930500000},
[118] = {qp = 2440, tot_qp = 149860, gold = 31250000, tot_gold = 1961750000},
[119] = {qp = 2460, tot_qp = 152320, gold = 31500000, tot_gold = 1993250000},
[120] = {qp = 2480, tot_qp = 154800, gold = 31750000, tot_gold = 2025000000},
[121] = {qp = 2500, tot_qp = 157300, gold = 32000000, tot_gold = 2057000000},
[122] = {qp = 2520, tot_qp = 159820, gold = 32250000, tot_gold = 2089250000},
[123] = {qp = 2540, tot_qp = 162360, gold = 32500000, tot_gold = 2121750000},
[124] = {qp = 2560, tot_qp = 164920, gold = 32750000, tot_gold = 2154500000},
[125] = {qp = 2580, tot_qp = 167500, gold = 33000000, tot_gold = 2187500000},
[126] = {qp = 2600, tot_qp = 170100, gold = 33250000, tot_gold = 2220750000},
[127] = {qp = 2620, tot_qp = 172720, gold = 33500000, tot_gold = 2254250000},
[128] = {qp = 2640, tot_qp = 175360, gold = 33750000, tot_gold = 2288000000},
[129] = {qp = 2660, tot_qp = 178020, gold = 34000000, tot_gold = 2322000000},
[130] = {qp = 2680, tot_qp = 180700, gold = 34250000, tot_gold = 2356250000},
[131] = {qp = 2700, tot_qp = 183400, gold = 34500000, tot_gold = 2390750000},
[132] = {qp = 2720, tot_qp = 186120, gold = 34750000, tot_gold = 2425500000},
[133] = {qp = 2740, tot_qp = 188860, gold = 35000000, tot_gold = 2460500000},
[134] = {qp = 2760, tot_qp = 191620, gold = 35250000, tot_gold = 2495750000},
[135] = {qp = 2780, tot_qp = 194400, gold = 35500000, tot_gold = 2531250000},
[136] = {qp = 2800, tot_qp = 197200, gold = 35750000, tot_gold = 2567000000},
[137] = {qp = 2820, tot_qp = 200020, gold = 36000000, tot_gold = 2603000000},
[138] = {qp = 2840, tot_qp = 202860, gold = 36250000, tot_gold = 2639250000},
[139] = {qp = 2860, tot_qp = 205720, gold = 36500000, tot_gold = 2675750000},
[140] = {qp = 2880, tot_qp = 208600, gold = 36750000, tot_gold = 2712500000},
[141] = {qp = 2900, tot_qp = 211500, gold = 37000000, tot_gold = 2749500000},
[142] = {qp = 2920, tot_qp = 214420, gold = 37250000, tot_gold = 2786750000},
[143] = {qp = 2940, tot_qp = 217360, gold = 37500000, tot_gold = 2824250000},
[144] = {qp = 2960, tot_qp = 220320, gold = 37750000, tot_gold = 2862000000},
[145] = {qp = 2980, tot_qp = 223300, gold = 38000000, tot_gold = 2900000000},
[146] = {qp = 3000, tot_qp = 226300, gold = 38250000, tot_gold = 2938250000},
[147] = {qp = 3020, tot_qp = 229320, gold = 38500000, tot_gold = 2976750000},
[148] = {qp = 3040, tot_qp = 232360, gold = 38750000, tot_gold = 3015500000},
[149] = {qp = 3060, tot_qp = 235420, gold = 39000000, tot_gold = 3054500000},
[150] = {qp = 3080, tot_qp = 238500, gold = 39250000, tot_gold = 3093750000},
[151] = {qp = 3100, tot_qp = 241600, gold = 39500000, tot_gold = 3133250000},
[152] = {qp = 3120, tot_qp = 244720, gold = 39750000, tot_gold = 3173000000},
[153] = {qp = 3140, tot_qp = 247860, gold = 40000000, tot_gold = 3213000000},
[154] = {qp = 3160, tot_qp = 251020, gold = 40250000, tot_gold = 3253250000},
[155] = {qp = 3180, tot_qp = 254200, gold = 40500000, tot_gold = 3293750000},
[156] = {qp = 3200, tot_qp = 257400, gold = 40750000, tot_gold = 3334500000},
[157] = {qp = 3220, tot_qp = 260620, gold = 41000000, tot_gold = 3375500000},
[158] = {qp = 3240, tot_qp = 263860, gold = 41250000, tot_gold = 3416750000},
[159] = {qp = 3260, tot_qp = 267120, gold = 41500000, tot_gold = 3458250000},
[160] = {qp = 3280, tot_qp = 270400, gold = 41750000, tot_gold = 3500000000},
[161] = {qp = 3300, tot_qp = 273700, gold = 42000000, tot_gold = 3542000000},
[162] = {qp = 3320, tot_qp = 277020, gold = 42250000, tot_gold = 3584250000},
[163] = {qp = 3340, tot_qp = 280360, gold = 42500000, tot_gold = 3626750000},
[164] = {qp = 3360, tot_qp = 283720, gold = 42750000, tot_gold = 3669500000},
[165] = {qp = 3380, tot_qp = 287100, gold = 43000000, tot_gold = 3712500000},
[166] = {qp = 3400, tot_qp = 290500, gold = 43250000, tot_gold = 3755750000},
[167] = {qp = 3420, tot_qp = 293920, gold = 43500000, tot_gold = 3799250000},
[168] = {qp = 3440, tot_qp = 297360, gold = 43750000, tot_gold = 3843000000},
[169] = {qp = 3460, tot_qp = 300820, gold = 44000000, tot_gold = 3887000000},
[170] = {qp = 3480, tot_qp = 304300, gold = 44250000, tot_gold = 3931250000},
[171] = {qp = 3500, tot_qp = 307800, gold = 44500000, tot_gold = 3975750000},
[172] = {qp = 3520, tot_qp = 311320, gold = 44750000, tot_gold = 4020500000},
[173] = {qp = 3540, tot_qp = 314860, gold = 45000000, tot_gold = 4065500000},
[174] = {qp = 3560, tot_qp = 318420, gold = 45250000, tot_gold = 4110750000},
[175] = {qp = 3580, tot_qp = 322000, gold = 45500000, tot_gold = 4156250000},
[176] = {qp = 3600, tot_qp = 325600, gold = 45750000, tot_gold = 4202000000},
[177] = {qp = 3620, tot_qp = 329220, gold = 46000000, tot_gold = 4248000000},
[178] = {qp = 3640, tot_qp = 332860, gold = 46250000, tot_gold = 4294250000},
[179] = {qp = 3660, tot_qp = 336520, gold = 46500000, tot_gold = 4340750000},
[180] = {qp = 3680, tot_qp = 340200, gold = 46750000, tot_gold = 4387500000},
[181] = {qp = 3700, tot_qp = 343900, gold = 47000000, tot_gold = 4434500000},
[182] = {qp = 3720, tot_qp = 347620, gold = 47250000, tot_gold = 4481750000},
[183] = {qp = 3740, tot_qp = 351360, gold = 47500000, tot_gold = 4529250000},
[184] = {qp = 3760, tot_qp = 355120, gold = 47750000, tot_gold = 4577000000},
[185] = {qp = 3780, tot_qp = 358900, gold = 48000000, tot_gold = 4625000000},
[186] = {qp = 3800, tot_qp = 362700, gold = 48250000, tot_gold = 4673250000},
[187] = {qp = 3820, tot_qp = 366520, gold = 48500000, tot_gold = 4721750000},
[188] = {qp = 3840, tot_qp = 370360, gold = 48750000, tot_gold = 4770500000},
[189] = {qp = 3860, tot_qp = 374220, gold = 49000000, tot_gold = 4819500000},
[190] = {qp = 3880, tot_qp = 378100, gold = 49250000, tot_gold = 4868750000},
[191] = {qp = 3900, tot_qp = 382000, gold = 49500000, tot_gold = 4918250000},
[192] = {qp = 3920, tot_qp = 385920, gold = 49750000, tot_gold = 4968000000},
[193] = {qp = 3940, tot_qp = 389860, gold = 50000000, tot_gold = 5018000000},
[194] = {qp = 3960, tot_qp = 393820, gold = 50250000, tot_gold = 5068250000},
[195] = {qp = 3980, tot_qp = 397800, gold = 50500000, tot_gold = 5118750000},
[196] = {qp = 4000, tot_qp = 401800, gold = 50750000, tot_gold = 5169500000},
[197] = {qp = 4020, tot_qp = 405820, gold = 51000000, tot_gold = 5220500000},
[198] = {qp = 4040, tot_qp = 409860, gold = 51250000, tot_gold = 5271750000},
[199] = {qp = 4060, tot_qp = 413920, gold = 51500000, tot_gold = 5323250000},
[200] = {qp = 4080, tot_qp = 418000, gold = 51750000, tot_gold = 5375000000},
[201] = {qp = 4100, tot_qp = 422100, gold = 52000000, tot_gold = 5427000000},
[202] = {qp = 4120, tot_qp = 426220, gold = 52250000, tot_gold = 5479250000},
[203] = {qp = 4140, tot_qp = 430360, gold = 52500000, tot_gold = 5531750000},
[204] = {qp = 4160, tot_qp = 434520, gold = 52750000, tot_gold = 5584500000},
[205] = {qp = 4180, tot_qp = 438700, gold = 53000000, tot_gold = 5637500000},
[206] = {qp = 4200, tot_qp = 442900, gold = 53250000, tot_gold = 5690750000},
[207] = {qp = 4220, tot_qp = 447120, gold = 53500000, tot_gold = 5744250000},
[208] = {qp = 4240, tot_qp = 451360, gold = 53750000, tot_gold = 5798000000},
[209] = {qp = 4260, tot_qp = 455620, gold = 54000000, tot_gold = 5852000000},
[210] = {qp = 4280, tot_qp = 459900, gold = 54250000, tot_gold = 5906250000},
[211] = {qp = 4300, tot_qp = 464200, gold = 54500000, tot_gold = 5960750000},
[212] = {qp = 4320, tot_qp = 468520, gold = 54750000, tot_gold = 6015500000},
[213] = {qp = 4340, tot_qp = 472860, gold = 55000000, tot_gold = 6070500000},
[214] = {qp = 4360, tot_qp = 477220, gold = 55250000, tot_gold = 6125750000},
[215] = {qp = 4380, tot_qp = 481600, gold = 55500000, tot_gold = 6181250000},
[216] = {qp = 4400, tot_qp = 486000, gold = 55750000, tot_gold = 6237000000},
[217] = {qp = 4420, tot_qp = 490420, gold = 56000000, tot_gold = 6293000000},
[218] = {qp = 4440, tot_qp = 494860, gold = 56250000, tot_gold = 6349250000},
[219] = {qp = 4460, tot_qp = 499320, gold = 56500000, tot_gold = 6405750000},
[220] = {qp = 4480, tot_qp = 503800, gold = 56750000, tot_gold = 6462500000},
[221] = {qp = 4500, tot_qp = 508300, gold = 57000000, tot_gold = 6519500000},
[222] = {qp = 4520, tot_qp = 512820, gold = 57250000, tot_gold = 6576750000},
[223] = {qp = 4540, tot_qp = 517360, gold = 57500000, tot_gold = 6634250000},
[224] = {qp = 4560, tot_qp = 521920, gold = 57750000, tot_gold = 6692000000},
[225] = {qp = 4580, tot_qp = 526500, gold = 58000000, tot_gold = 6750000000},
[226] = {qp = 4600, tot_qp = 531100, gold = 58250000, tot_gold = 6808250000},
[227] = {qp = 4620, tot_qp = 535720, gold = 58500000, tot_gold = 6866750000},
[228] = {qp = 4640, tot_qp = 540360, gold = 58750000, tot_gold = 6925500000},
[229] = {qp = 4660, tot_qp = 545020, gold = 59000000, tot_gold = 6984500000},
[230] = {qp = 4680, tot_qp = 549700, gold = 59250000, tot_gold = 7043750000},
[231] = {qp = 4700, tot_qp = 554400, gold = 59500000, tot_gold = 7103250000},
[232] = {qp = 4720, tot_qp = 559120, gold = 59750000, tot_gold = 7163000000},
[233] = {qp = 4740, tot_qp = 563860, gold = 60000000, tot_gold = 7223000000},
[234] = {qp = 4760, tot_qp = 568620, gold = 60250000, tot_gold = 7283250000},
[235] = {qp = 4780, tot_qp = 573400, gold = 60500000, tot_gold = 7343750000},
[236] = {qp = 4800, tot_qp = 578200, gold = 60750000, tot_gold = 7404500000},
[237] = {qp = 4820, tot_qp = 583020, gold = 61000000, tot_gold = 7465500000},
[238] = {qp = 4840, tot_qp = 587860, gold = 61250000, tot_gold = 7526750000},
[239] = {qp = 4860, tot_qp = 592720, gold = 61500000, tot_gold = 7588250000},
[240] = {qp = 4880, tot_qp = 597600, gold = 61750000, tot_gold = 7650000000},
[241] = {qp = 4900, tot_qp = 602500, gold = 62000000, tot_gold = 7712000000},
[242] = {qp = 4920, tot_qp = 607420, gold = 62250000, tot_gold = 7774250000},
[243] = {qp = 4940, tot_qp = 612360, gold = 62500000, tot_gold = 7836750000},
[244] = {qp = 4960, tot_qp = 617320, gold = 62750000, tot_gold = 7899500000},
[245] = {qp = 4980, tot_qp = 622300, gold = 63000000, tot_gold = 7962500000},
[246] = {qp = 5000, tot_qp = 627300, gold = 63250000, tot_gold = 8025750000},
[247] = {qp = 5020, tot_qp = 632320, gold = 63500000, tot_gold = 8089250000},
[248] = {qp = 5040, tot_qp = 637360, gold = 63750000, tot_gold = 8153000000},
[249] = {qp = 5060, tot_qp = 642420, gold = 64000000, tot_gold = 8217000000},
[250] = {qp = 5080, tot_qp = 647500, gold = 64250000, tot_gold = 8281250000}
}
instinct = {
[1] = {trains = 200, tot_trains = 200, gold = 2000000, tot_gold = 2000000},
[2] = {trains = 225, tot_trains = 425, gold = 2100000, tot_gold = 4100000},
[3] = {trains = 250, tot_trains = 675, gold = 2200000, tot_gold = 6300000},
[4] = {trains = 275, tot_trains = 950, gold = 2300000, tot_gold = 8600000},
[5] = {trains = 300, tot_trains = 1250, gold = 2400000, tot_gold = 11000000},
[6] = {trains = 325, tot_trains = 1575, gold = 2500000, tot_gold = 13500000},
[7] = {trains = 350, tot_trains = 1925, gold = 2600000, tot_gold = 16100000},
[8] = {trains = 375, tot_trains = 2300, gold = 2700000, tot_gold = 18800000},
[9] = {trains = 400, tot_trains = 2700, gold = 2800000, tot_gold = 21600000},
[10] = {trains = 425, tot_trains = 3125, gold = 2900000, tot_gold = 24500000},
[11] = {trains = 450, tot_trains = 3575, gold = 3000000, tot_gold = 27500000},
[12] = {trains = 475, tot_trains = 4050, gold = 3100000, tot_gold = 30600000},
[13] = {trains = 500, tot_trains = 4550, gold = 3200000, tot_gold = 33800000},
[14] = {trains = 525, tot_trains = 5075, gold = 3300000, tot_gold = 37100000},
[15] = {trains = 550, tot_trains = 5625, gold = 3400000, tot_gold = 40500000},
[16] = {trains = 575, tot_trains = 6200, gold = 3500000, tot_gold = 44000000},
[17] = {trains = 600, tot_trains = 6800, gold = 3600000, tot_gold = 47600000},
[18] = {trains = 625, tot_trains = 7425, gold = 3700000, tot_gold = 51300000},
[19] = {trains = 650, tot_trains = 8075, gold = 3800000, tot_gold = 55100000},
[20] = {trains = 675, tot_trains = 8750, gold = 3900000, tot_gold = 59000000},
[21] = {trains = 700, tot_trains = 9450, gold = 4000000, tot_gold = 63000000},
[22] = {trains = 725, tot_trains = 10175, gold = 4100000, tot_gold = 67100000},
[23] = {trains = 750, tot_trains = 10925, gold = 4200000, tot_gold = 71300000},
[24] = {trains = 775, tot_trains = 11700, gold = 4300000, tot_gold = 75600000},
[25] = {trains = 800, tot_trains = 12500, gold = 4400000, tot_gold = 80000000},
[26] = {trains = 825, tot_trains = 13325, gold = 4500000, tot_gold = 84500000},
[27] = {trains = 850, tot_trains = 14175, gold = 4600000, tot_gold = 89100000},
[28] = {trains = 875, tot_trains = 15050, gold = 4700000, tot_gold = 93800000},
[29] = {trains = 900, tot_trains = 15950, gold = 4800000, tot_gold = 98600000},
[30] = {trains = 925, tot_trains = 16875, gold = 4900000, tot_gold = 103500000},
[31] = {trains = 950, tot_trains = 17825, gold = 5000000, tot_gold = 108500000},
[32] = {trains = 975, tot_trains = 18800, gold = 5100000, tot_gold = 113600000},
[33] = {trains = 1000, tot_trains = 19800, gold = 5200000, tot_gold = 118800000},
[34] = {trains = 1025, tot_trains = 20825, gold = 5300000, tot_gold = 124100000},
[35] = {trains = 1050, tot_trains = 21875, gold = 5400000, tot_gold = 129500000},
[36] = {trains = 1075, tot_trains = 22950, gold = 5500000, tot_gold = 135000000},
[37] = {trains = 1100, tot_trains = 24050, gold = 5600000, tot_gold = 140600000},
[38] = {trains = 1125, tot_trains = 25175, gold = 5700000, tot_gold = 146300000},
[39] = {trains = 1150, tot_trains = 26325, gold = 5800000, tot_gold = 152100000},
[40] = {trains = 1175, tot_trains = 27500, gold = 5900000, tot_gold = 158000000},
[41] = {trains = 1200, tot_trains = 28700, gold = 6000000, tot_gold = 164000000},
[42] = {trains = 1225, tot_trains = 29925, gold = 6100000, tot_gold = 170100000},
[43] = {trains = 1250, tot_trains = 31175, gold = 6200000, tot_gold = 176300000},
[44] = {trains = 1275, tot_trains = 32450, gold = 6300000, tot_gold = 182600000},
[45] = {trains = 1300, tot_trains = 33750, gold = 6400000, tot_gold = 189000000},
[46] = {trains = 1325, tot_trains = 35075, gold = 6500000, tot_gold = 195500000},
[47] = {trains = 1350, tot_trains = 36425, gold = 6600000, tot_gold = 202100000},
[48] = {trains = 1375, tot_trains = 37800, gold = 6700000, tot_gold = 208800000},
[49] = {trains = 1400, tot_trains = 39200, gold = 6800000, tot_gold = 215600000},
[50] = {trains = 1425, tot_trains = 40625, gold = 6900000, tot_gold = 222500000},
[51] = {trains = 1450, tot_trains = 42075, gold = 7000000, tot_gold = 229500000},
[52] = {trains = 1475, tot_trains = 43550, gold = 7100000, tot_gold = 236600000},
[53] = {trains = 1500, tot_trains = 45050, gold = 7200000, tot_gold = 243800000},
[54] = {trains = 1525, tot_trains = 46575, gold = 7300000, tot_gold = 251100000},
[55] = {trains = 1550, tot_trains = 48125, gold = 7400000, tot_gold = 258500000},
[56] = {trains = 1575, tot_trains = 49700, gold = 7500000, tot_gold = 266000000},
[57] = {trains = 1600, tot_trains = 51300, gold = 7600000, tot_gold = 273600000},
[58] = {trains = 1625, tot_trains = 52925, gold = 7700000, tot_gold = 281300000},
[59] = {trains = 1650, tot_trains = 54575, gold = 7800000, tot_gold = 289100000},
[60] = {trains = 1675, tot_trains = 56250, gold = 7900000, tot_gold = 297000000},
[61] = {trains = 1700, tot_trains = 57950, gold = 8000000, tot_gold = 305000000},
[62] = {trains = 1725, tot_trains = 59675, gold = 8100000, tot_gold = 313100000},
[63] = {trains = 1750, tot_trains = 61425, gold = 8200000, tot_gold = 321300000},
[64] = {trains = 1775, tot_trains = 63200, gold = 8300000, tot_gold = 329600000},
[65] = {trains = 1800, tot_trains = 65000, gold = 8400000, tot_gold = 338000000},
[66] = {trains = 1825, tot_trains = 66825, gold = 8500000, tot_gold = 346500000},
[67] = {trains = 1850, tot_trains = 68675, gold = 8600000, tot_gold = 355100000},
[68] = {trains = 1875, tot_trains = 70550, gold = 8700000, tot_gold = 363800000},
[69] = {trains = 1900, tot_trains = 72450, gold = 8800000, tot_gold = 372600000},
[70] = {trains = 1925, tot_trains = 74375, gold = 8900000, tot_gold = 381500000},
[71] = {trains = 1950, tot_trains = 76325, gold = 9000000, tot_gold = 390500000},
[72] = {trains = 1975, tot_trains = 78300, gold = 9100000, tot_gold = 399600000},
[73] = {trains = 2000, tot_trains = 80300, gold = 9200000, tot_gold = 408800000},
[74] = {trains = 2025, tot_trains = 82325, gold = 9300000, tot_gold = 418100000},
[75] = {trains = 2050, tot_trains = 84375, gold = 9400000, tot_gold = 427500000},
[76] = {trains = 2075, tot_trains = 86450, gold = 9500000, tot_gold = 437000000},
[77] = {trains = 2100, tot_trains = 88550, gold = 9600000, tot_gold = 446600000},
[78] = {trains = 2125, tot_trains = 90675, gold = 9700000, tot_gold = 456300000},
[79] = {trains = 2150, tot_trains = 92825, gold = 9800000, tot_gold = 466100000},
[80] = {trains = 2175, tot_trains = 95000, gold = 9900000, tot_gold = 476000000},
[81] = {trains = 2200, tot_trains = 97200, gold = 10000000, tot_gold = 486000000},
[82] = {trains = 2225, tot_trains = 99425, gold = 10100000, tot_gold = 496100000},
[83] = {trains = 2250, tot_trains = 101675, gold = 10200000, tot_gold = 506300000},
[84] = {trains = 2275, tot_trains = 103950, gold = 10300000, tot_gold = 516600000},
[85] = {trains = 2300, tot_trains = 106250, gold = 10400000, tot_gold = 527000000},
[86] = {trains = 2325, tot_trains = 108575, gold = 10500000, tot_gold = 537500000},
[87] = {trains = 2350, tot_trains = 110925, gold = 10600000, tot_gold = 548100000},
[88] = {trains = 2375, tot_trains = 113300, gold = 10700000, tot_gold = 558800000},
[89] = {trains = 2400, tot_trains = 115700, gold = 10800000, tot_gold = 569600000},
[90] = {trains = 2425, tot_trains = 118125, gold = 10900000, tot_gold = 580500000},
[91] = {trains = 2450, tot_trains = 120575, gold = 11000000, tot_gold = 591500000},
[92] = {trains = 2475, tot_trains = 123050, gold = 11100000, tot_gold = 602600000},
[93] = {trains = 2500, tot_trains = 125550, gold = 11200000, tot_gold = 613800000},
[94] = {trains = 2525, tot_trains = 128075, gold = 11300000, tot_gold = 625100000},
[95] = {trains = 2550, tot_trains = 130625, gold = 11400000, tot_gold = 636500000},
[96] = {trains = 2575, tot_trains = 133200, gold = 11500000, tot_gold = 648000000},
[97] = {trains = 2600, tot_trains = 135800, gold = 11600000, tot_gold = 659600000},
[98] = {trains = 2625, tot_trains = 138425, gold = 11700000, tot_gold = 671300000},
[99] = {trains = 2650, tot_trains = 141075, gold = 11800000, tot_gold = 683100000},
[100] = {trains = 2675, tot_trains = 143750, gold = 11900000, tot_gold = 695000000},
[101] = {trains = 2700, tot_trains = 146450, gold = 12000000, tot_gold = 707000000},
[102] = {trains = 2725, tot_trains = 149175, gold = 12100000, tot_gold = 719100000},
[103] = {trains = 2750, tot_trains = 151925, gold = 12200000, tot_gold = 731300000},
[104] = {trains = 2775, tot_trains = 154700, gold = 12300000, tot_gold = 743600000},
[105] = {trains = 2800, tot_trains = 157500, gold = 12400000, tot_gold = 756000000},
[106] = {trains = 2825, tot_trains = 160325, gold = 12500000, tot_gold = 768500000},
[107] = {trains = 2850, tot_trains = 163175, gold = 12600000, tot_gold = 781100000},
[108] = {trains = 2875, tot_trains = 166050, gold = 12700000, tot_gold = 793800000},
[109] = {trains = 2900, tot_trains = 168950, gold = 12800000, tot_gold = 806600000},
[110] = {trains = 2925, tot_trains = 171875, gold = 12900000, tot_gold = 819500000},
[111] = {trains = 2950, tot_trains = 174825, gold = 13000000, tot_gold = 832500000},
[112] = {trains = 2975, tot_trains = 177800, gold = 13100000, tot_gold = 845600000},
[113] = {trains = 3000, tot_trains = 180800, gold = 13200000, tot_gold = 858800000},
[114] = {trains = 3025, tot_trains = 183825, gold = 13300000, tot_gold = 872100000},
[115] = {trains = 3050, tot_trains = 186875, gold = 13400000, tot_gold = 885500000},
[116] = {trains = 3075, tot_trains = 189950, gold = 13500000, tot_gold = 899000000},
[117] = {trains = 3100, tot_trains = 193050, gold = 13600000, tot_gold = 912600000},
[118] = {trains = 3125, tot_trains = 196175, gold = 13700000, tot_gold = 926300000},
[119] = {trains = 3150, tot_trains = 199325, gold = 13800000, tot_gold = 940100000},
[120] = {trains = 3175, tot_trains = 202500, gold = 13900000, tot_gold = 954000000},
[121] = {trains = 3200, tot_trains = 205700, gold = 14000000, tot_gold = 968000000},
[122] = {trains = 3225, tot_trains = 208925, gold = 14100000, tot_gold = 982100000},
[123] = {trains = 3250, tot_trains = 212175, gold = 14200000, tot_gold = 996300000},
[124] = {trains = 3275, tot_trains = 215450, gold = 14300000, tot_gold = 1010600000},
[125] = {trains = 3300, tot_trains = 218750, gold = 14400000, tot_gold = 1025000000},
[126] = {trains = 3325, tot_trains = 222075, gold = 14500000, tot_gold = 1039500000},
[127] = {trains = 3350, tot_trains = 225425, gold = 14600000, tot_gold = 1054100000},
[128] = {trains = 3375, tot_trains = 228800, gold = 14700000, tot_gold = 1068800000},
[129] = {trains = 3400, tot_trains = 232200, gold = 14800000, tot_gold = 1083600000},
[130] = {trains = 3425, tot_trains = 235625, gold = 14900000, tot_gold = 1098500000},
[131] = {trains = 3450, tot_trains = 239075, gold = 15000000, tot_gold = 1113500000},
[132] = {trains = 3475, tot_trains = 242550, gold = 15100000, tot_gold = 1128600000},
[133] = {trains = 3500, tot_trains = 246050, gold = 15200000, tot_gold = 1143800000},
[134] = {trains = 3525, tot_trains = 249575, gold = 15300000, tot_gold = 1159100000},
[135] = {trains = 3550, tot_trains = 253125, gold = 15400000, tot_gold = 1174500000},
[136] = {trains = 3575, tot_trains = 256700, gold = 15500000, tot_gold = 1190000000},
[137] = {trains = 3600, tot_trains = 260300, gold = 15600000, tot_gold = 1205600000},
[138] = {trains = 3625, tot_trains = 263925, gold = 15700000, tot_gold = 1221300000},
[139] = {trains = 3650, tot_trains = 267575, gold = 15800000, tot_gold = 1237100000},
[140] = {trains = 3675, tot_trains = 271250, gold = 15900000, tot_gold = 1253000000},
[141] = {trains = 3700, tot_trains = 274950, gold = 16000000, tot_gold = 1269000000},
[142] = {trains = 3725, tot_trains = 278675, gold = 16100000, tot_gold = 1285100000},
[143] = {trains = 3750, tot_trains = 282425, gold = 16200000, tot_gold = 1301300000},
[144] = {trains = 3775, tot_trains = 286200, gold = 16300000, tot_gold = 1317600000},
[145] = {trains = 3800, tot_trains = 290000, gold = 16400000, tot_gold = 1334000000},
[146] = {trains = 3825, tot_trains = 293825, gold = 16500000, tot_gold = 1350500000},
[147] = {trains = 3850, tot_trains = 297675, gold = 16600000, tot_gold = 1367100000},
[148] = {trains = 3875, tot_trains = 301550, gold = 16700000, tot_gold = 1383800000},
[149] = {trains = 3900, tot_trains = 305450, gold = 16800000, tot_gold = 1400600000},
[150] = {trains = 3925, tot_trains = 309375, gold = 16900000, tot_gold = 1417500000},
[151] = {trains = 3950, tot_trains = 313325, gold = 17000000, tot_gold = 1434500000},
[152] = {trains = 3975, tot_trains = 317300, gold = 17100000, tot_gold = 1451600000},
[153] = {trains = 4000, tot_trains = 321300, gold = 17200000, tot_gold = 1468800000},
[154] = {trains = 4025, tot_trains = 325325, gold = 17300000, tot_gold = 1486100000},
[155] = {trains = 4050, tot_trains = 329375, gold = 17400000, tot_gold = 1503500000},
[156] = {trains = 4075, tot_trains = 333450, gold = 17500000, tot_gold = 1521000000},
[157] = {trains = 4100, tot_trains = 337550, gold = 17600000, tot_gold = 1538600000},
[158] = {trains = 4125, tot_trains = 341675, gold = 17700000, tot_gold = 1556300000},
[159] = {trains = 4150, tot_trains = 345825, gold = 17800000, tot_gold = 1574100000},
[160] = {trains = 4175, tot_trains = 350000, gold = 17900000, tot_gold = 1592000000},
[161] = {trains = 4200, tot_trains = 354200, gold = 18000000, tot_gold = 1610000000},
[162] = {trains = 4225, tot_trains = 358425, gold = 18100000, tot_gold = 1628100000},
[163] = {trains = 4250, tot_trains = 362675, gold = 18200000, tot_gold = 1646300000},
[164] = {trains = 4275, tot_trains = 366950, gold = 18300000, tot_gold = 1664600000},
[165] = {trains = 4300, tot_trains = 371250, gold = 18400000, tot_gold = 1683000000},
[166] = {trains = 4325, tot_trains = 375575, gold = 18500000, tot_gold = 1701500000},
[167] = {trains = 4350, tot_trains = 379925, gold = 18600000, tot_gold = 1720100000},
[168] = {trains = 4375, tot_trains = 384300, gold = 18700000, tot_gold = 1738800000},
[169] = {trains = 4400, tot_trains = 388700, gold = 18800000, tot_gold = 1757600000},
[170] = {trains = 4425, tot_trains = 393125, gold = 18900000, tot_gold = 1776500000},
[171] = {trains = 4450, tot_trains = 397575, gold = 19000000, tot_gold = 1795500000},
[172] = {trains = 4475, tot_trains = 402050, gold = 19100000, tot_gold = 1814600000},
[173] = {trains = 4500, tot_trains = 406550, gold = 19200000, tot_gold = 1833800000},
[174] = {trains = 4525, tot_trains = 411075, gold = 19300000, tot_gold = 1853100000},
[175] = {trains = 4550, tot_trains = 415625, gold = 19400000, tot_gold = 1872500000},
[176] = {trains = 4575, tot_trains = 420200, gold = 19500000, tot_gold = 1892000000},
[177] = {trains = 4600, tot_trains = 424800, gold = 19600000, tot_gold = 1911600000},
[178] = {trains = 4625, tot_trains = 429425, gold = 19700000, tot_gold = 1931300000},
[179] = {trains = 4650, tot_trains = 434075, gold = 19800000, tot_gold = 1951100000},
[180] = {trains = 4675, tot_trains = 438750, gold = 19900000, tot_gold = 1971000000},
[181] = {trains = 4700, tot_trains = 443450, gold = 20000000, tot_gold = 1991000000},
[182] = {trains = 4725, tot_trains = 448175, gold = 20100000, tot_gold = 2011100000},
[183] = {trains = 4750, tot_trains = 452925, gold = 20200000, tot_gold = 2031300000},
[184] = {trains = 4775, tot_trains = 457700, gold = 20300000, tot_gold = 2051600000},
[185] = {trains = 4800, tot_trains = 462500, gold = 20400000, tot_gold = 2072000000},
[186] = {trains = 4825, tot_trains = 467325, gold = 20500000, tot_gold = 2092500000},
[187] = {trains = 4850, tot_trains = 472175, gold = 20600000, tot_gold = 2113100000},
[188] = {trains = 4875, tot_trains = 477050, gold = 20700000, tot_gold = 2133800000},
[189] = {trains = 4900, tot_trains = 481950, gold = 20800000, tot_gold = 2154600000},
[190] = {trains = 4925, tot_trains = 486875, gold = 20900000, tot_gold = 2175500000},
[191] = {trains = 4950, tot_trains = 491825, gold = 21000000, tot_gold = 2196500000},
[192] = {trains = 4975, tot_trains = 496800, gold = 21100000, tot_gold = 2217600000},
[193] = {trains = 5000, tot_trains = 501800, gold = 21200000, tot_gold = 2238800000},
[194] = {trains = 5025, tot_trains = 506825, gold = 21300000, tot_gold = 2260100000},
[195] = {trains = 5050, tot_trains = 511875, gold = 21400000, tot_gold = 2281500000},
[196] = {trains = 5075, tot_trains = 516950, gold = 21500000, tot_gold = 2303000000},
[197] = {trains = 5100, tot_trains = 522050, gold = 21600000, tot_gold = 2324600000},
[198] = {trains = 5125, tot_trains = 527175, gold = 21700000, tot_gold = 2346300000},
[199] = {trains = 5150, tot_trains = 532325, gold = 21800000, tot_gold = 2368100000},
[200] = {trains = 5175, tot_trains = 537500, gold = 21900000, tot_gold = 2390000000}
}
]]>
</script>
</muclient>