content
stringlengths 5
1.05M
|
---|
local M = {}
function M.config()
require'nvim-treesitter.configs'.setup {
ensure_installed = {
'bash',
'dockerfile',
'json',
'lua',
'make',
'markdown',
'python',
'vim',
'yaml',
},
highlight = {
enable = true,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<Leader>i",
node_incremental = "<Leader>n",
scope_incremental = "<Leader>N",
node_decremental = "<Leader>p",
}
},
indent = {
enable = false,
},
refactor = {
highlight_definitions = {
enable = true
},
highlight_current_scope = {
enable = false
},
},
rainbow = {
enable = true,
disable = {'bash'}
},
textobjects = {
select = {
enable = true,
lookahead = true,
keymaps = {
["ab"] = "@block.outer",
["ib"] = "@block.inner",
["ac"] = "@call.outer",
["ic"] = "@call.inner",
["af"] = "@function.outer",
["if"] = "@function.inner",
["ap"] = "@parameter.outer",
["ip"] = "@parameter.inner",
}
}
},
}
end
return M
|
object_tangible_furniture_all_frn_amidala_bookcase = object_tangible_furniture_all_shared_frn_amidala_bookcase:new {
}
ObjectTemplates:addTemplate(object_tangible_furniture_all_frn_amidala_bookcase, "object/tangible/furniture/all/frn_amidala_bookcase.iff")
|
local heart = require("heart")
local M = heart.class.newClass()
function M:init(game, config)
self.game = assert(game)
self.physicsDomain = assert(self.game.domains.physics)
self.waterEntities = assert(self.game.componentEntitySets.water)
end
function M:handleEvent(viewportId)
local r, g, b, a = love.graphics.getColor()
love.graphics.setColor(0.25, 0.5, 0.75, 0.5)
local rectangleFixtures = self.physicsDomain.rectangleFixtures
for id in pairs(self.waterEntities) do
local fixture = rectangleFixtures[id]
local body = fixture:getBody()
local shape = fixture:getShape()
love.graphics.polygon("fill", body:getWorldPoints(shape:getPoints()))
end
love.graphics.setColor(r, g, b, a)
end
return M
|
-- This file allows the module to be in a subdirectory,
-- to match the pattern "?/init.lua".
local name = ...
return require(name..".kminser")
|
--[[
Licensed under GNU General Public License v2
* (c) 2014, Luke Bonham
--]]
local helpers = require("lain.helpers")
local textbox = require("wibox.widget.textbox")
-- Template for asynchronous watcher widgets
-- lain.widget.watch
local function factory(args)
local watch = { widget = args.widget or textbox() }
local args = args or {}
local timeout = args.timeout or 5
local nostart = args.nostart or false
local stoppable = args.stoppable or false
local cmd = args.cmd
local settings = args.settings or function() widget:set_text(output) end
function watch.update()
helpers.async(cmd, function(f)
output = f
if output ~= watch.prev then
widget = watch.widget
settings()
watch.prev = output
end
end)
end
watch.timer = helpers.newtimer(cmd, timeout, watch.update, nostart, stoppable)
return watch
end
return factory
|
require 'torch'
require 'util.queue'
require 'fn'
seq = {}
-- A boolean predicate returning true if s can be treated
-- as a sequence (i.e. an iterator function, table, or tensor)
function seq.is_seq(s)
return util.is_fn(s) or (util.is_table(s) and #s > 0)
end
---------------------------------------------
-- sequences to and from tables and tensors
---------------------------------------------
-- Return a sequence of the keys of table t.
function seq.keys(t)
local k, v
return function()
k, v = next(t, k)
return k
end
end
-- Return a sequence of the values in table or tensor t. If a tensor is passed
-- then only the first dimension is indexed, so you might need to flatten it if
-- you want to iterate of items of a multi-dimensional tensor.
function seq.vals(t)
local k, v
if util.is_table(t) then
local has_ended = false
return function()
if has_ended then
return nil
else
k, v = next(t, k)
if k == nil then
has_ended = true
end
return v
end
end
elseif util.is_tensor(t) then
local i = 0
local n = (#t)[1]
return function()
i = i + 1
if i <= n then
return t[i]
else
return nil
end
end
end
end
-- Returns a sequence iterator function that will return the successive values
-- of s. If passed a function (e.g. an existing iterator), it just returns it
-- back, and if passed nil returns an empty iterator (returns nil on first
-- call.)
function seq.seq(s)
if type(s) == 'function' then
return s
elseif s == nil then
return function()
return nil
end
else
return seq.vals(s)
end
end
-- Returns the elements of sequence s in a table.
function seq.table(s)
local tbl = {}
for elem in s do
fn.append(tbl, elem)
end
return tbl
end
-- Returns a tensor containing the sequence s.
-- NOTE: since a tensor must be allocated in advance, we have to first
-- realize the sequence in a table, and then write it into a tensor.
function seq.tensor(s)
return torch.Tensor(seq.table(s))
end
--------------------------------
-- sequence operators
--------------------------------
-- Returns a seq of the first n values of s.
function seq.take(n, s)
local i = 0
s = seq.seq(s)
return function()
i = i + 1
if i <= n then
return s()
end
end
end
-- Returns successive elements of s as long as pred(element) returns true.
function seq.take_while(pred, s)
s = seq.seq(s)
return function()
local v = s()
if pred(v) then
return v
end
end
end
-- Returns every nth element of s.
function seq.take_nth(n, s)
s = seq.seq(s)
return function()
local v
for i=1,n do
v = s()
end
return v
end
end
-- Returns a seq without the first n elements of s.
function seq.drop(n, s)
s = seq.seq(s)
for i=1,n do s() end
return s
end
-- Drops successive elements of s as long as pred(element) returns true,
-- and then returns the rest of the sequence.
function seq.drop_while(pred, s)
s = seq.seq(s)
local dropped_all = false
return function()
if dropped_all then
return s()
else
local v
repeat
v = s()
until not pred(v)
dropped_all = true
return v
end
end
end
-- Returns successive pairs of (index, element), starting with one.
function seq.indexed(s)
local i = 0
s = seq.seq(s)
return function()
local elem = s()
if elem then
i = i + 1
return i, elem
else
return nil
end
end
end
-- Successively returns n elements of an indexable object (table, tensor,
-- dataset) in shuffled order. The object must either support the # operator
-- or have a .size() function available to get the full size.
function seq.shuffle(s)
local n
-- TODO: This is a bit of a hack because Lua doesn't currently support
-- the __len method on tables. With Lua 5.2 this can be removed.
if type(s.size) == 'function' then
n = s.size()
else
n = #s
end
local shuffle = torch.randperm(n)
local i = 0
return function()
i = i + 1
if i <= n then
return s[shuffle[i]]
end
end
end
-- Returns the elements of s in groups of partition size n.
function seq.partition(n, s)
s = seq.seq(s)
return function()
local i = 0
local vals = {}
repeat
local v = s()
if v == nil then
break
else
fn.append(vals, v)
i = i + 1
end
until i == n
if i == 0 then
return nil
else
return vals
end
end
end
-- Returns a table with the elements of s grouped by the result of
-- calling fn(elem).
function seq.group_by(f, s)
return seq.reduce(
function(res, v)
local k = f(v)
if res[k] == nil then
res[k] = {}
end
fn.append(res[k], v)
return res
end,
{}, s)
end
-- Concatenate two or more sequences.
function seq.concat(...)
local args = seq.seq({...})
local cur = seq.seq(args())
local concatter
concatter = function()
local v = cur()
if v then
return v
else
local new = args()
if new then
cur = seq.seq(new)
return concatter()
end
end
end
return concatter
end
-- Return the contents of a nested sequence.
function seq.flatten(s)
local stack = {}
local cur = seq.seq(s)
local flattener
flattener = function()
local v = cur()
if seq.is_seq(v) then
table.insert(stack, cur)
cur = seq.seq(v)
return flattener()
elseif v == nil then
if #stack == 0 then
return nil
else
cur = table.remove(stack)
return flattener()
end
else
return v
end
end
return flattener
end
-- Return a new sequence of f applied to each value of s.
function seq.map(f, s)
s = seq.seq(s)
return function()
local v = s()
if v then
return f(v)
end
end
end
-- Returns a sequence of the concatenation of applying f to each value
-- in s. (Expects that f returns a seq.)
function seq.mapcat(f, s)
s = seq.map(f, s)
local cur = seq.seq(s())
local catter
catter = function()
local v = cur()
if v then
return v
else
local new = s()
if new then
cur = seq.seq(new)
return catter()
end
end
end
return catter
end
-- Filter out values of s for which pred(v) returns false.
function seq.filter(pred, s)
s = seq.seq(s)
return function()
local v
while true do
v = s()
if v == nil then
return nil
elseif pred(v) then
return v
end
end
end
end
-- Reduce sequence s using function f(mem, v), which should be a function of two args,
-- the memory and the next value. The mem argument is the initial value of
-- mem passed to f.
function seq.reduce(f, mem, s)
s = seq.seq(s)
for v in s do
mem = f(mem, v)
end
return mem
end
-- Creates a new sequence by interleaving elements from multiple sequences.
-- e.g.
-- interleave({1,1,1}, {2,2,2}) -- => {1,2,1,2,1,2}
function seq.interleave(...)
local args = {...}
local n = #args
args = seq.cycle(seq.table(seq.map(seq.seq, args)))
return function()
local s = args()
if s then
return s()
end
end
end
-- Return a sequence with the elements of s separated by sep.
function seq.interpose(sep, s)
s = seq.seq(s)
local toggle = false
local next_val = s()
return function()
if next_val then
if toggle then
toggle = false
return sep
else
toggle = true
local v = next_val
next_val = s()
return v
end
end
end
end
--------------------------------
-- sequence generators
--------------------------------
-- Return an infinite sequence of the elements in s, starting
-- back at the beginning when reaching the end. Note that the whole
-- sequence will be resident in memory.
-- e.g.
-- seq.take(10, seq.cycle({1,2,3})) -- => {1,2,3,1,2,3,1,2,3,1}
function seq.cycle(s)
local head = s
local cur = seq.seq(head)
return function()
local v = cur()
if v then
return v
else
cur = seq.seq(head)
return cur()
end
end
end
-- seq.repeat_val(v)
-- seq.repeat_val(n, v)
--
-- Repeat v infinitely, or n times if n is passed.
-- e.g.
-- seq.repeat_val(10) -- => {10, 10, 10, 10, ...}
-- seq.repeat_val(3, 42) -- => {42, 42, 42}
function seq.repeat_val(...)
local args = {...}
if #args == 2 then
local n = args[1]
local v = args[2]
return seq.take(n, function()
return v
end)
else
local v = args[1]
return function()
return v
end
end
end
-- Takes a function of no args, and returns an infinite (or size n) sequence
-- of f()s.
-- repeatedly(f), repeatedly(n, f)
-- e.g.
-- seq.repeatedly(function() return math.random() end)
-- seq.repeatedly(10, function() return math.random() end)
function seq.repeatedly(...)
local args = {...}
local f, n
if #args == 1 then
f = args[1]
elseif #args == 2 then
n = args[1]
f = args[2]
else
error("Invalid number of args to seq.repeatedly.")
end
local res = function() return f() end
if n then
return seq.take(n, res)
else
return res
end
end
-- Returns a sequences of f(x), f(f(x)), ...
function seq.iterate(f, x)
local v = x
return function()
v = f(v)
return v
end
end
-- Replicate a sequence across n identical sequences. Note, that if one of the
-- replicas pulls data faster than others it can result in growing amounts of
-- memory.
-- e.g.
-- tee({1,2,3,4}) -- => {1,2,3,4}, {1,2,3,4}
-- tee({1,2,3,4}, 4) -- => {1,2,3,4}, {1,2,3,4}, {1,2,3,4}, {1,2,3,4}
function seq.tee(s, n)
s = seq.seq(s)
n = n or 2
local queues = seq.table(seq.repeatedly(n, function() return queue.new() end))
local feeder = function(my_q)
if queue.is_empty(my_q) then
local v = s()
if v then
for q in seq.seq(queues) do
queue.push_right(q, v)
end
end
end
return queue.pop_left(my_q)
end
return unpack(seq.table(seq.map(function(q) return fn.partial(feeder, q) end, queues)))
end
--------------------------------
-- generating numeric sequences
--------------------------------
-- Returns a sequence beginning at one or start, incrementing by step until
-- reaching the end.
-- e.g.
-- range(), range(end), range(start, end), range(start, end, step)
function seq.range(...)
local start = 1
local n = nil
local step = 1
local args = {...}
if #args == 1 then
n = args[1]
elseif #args == 2 then
start = args[1]
n = args[2]
elseif #args == 3 then
start = args[1]
n = args[2]
step = args[3]
end
return function()
local v = start
start = start + step
if n == nil or v <= n then
return v
end
end
end
-- Returns a linear seq from start to stop with n steps.
function seq.lin(start, stop, n)
local step = (stop - start) / (n - 1)
local stepper = seq.range(start, stop, step)
return seq.take(n, stepper)
end
-- Returns an exponential (powers of 2) seq from start to stop with n steps.
function seq.exp(start, stop, n)
local dist = stop - start
local step = 10.0 / (n - 2)
local scale = dist / math.pow(2, 10.0)
local stepper = seq.map(function(x) return start + scale * math.pow(2, x * step) end, seq.range(n))
return seq.concat({start}, seq.take(n-2, stepper))
end
-- Returns a logarithmic (base 2) seq from start to stop with n steps.
function seq.log(start, stop, n)
local dist = stop - start
local step = 10.0 / (n - 2)
local scale = dist / (math.log(10.0) / math.log(2))
local stepper = seq.map(function(x) return start + scale * (math.log(x * step) / math.log(2)) end, seq.range(n))
return seq.concat({start}, seq.take(n-2, stepper))
end
|
------------------------------------------------------------------------
-- This class contains the Option objects. There is one of these objects
-- for each option specified by Optiks:add_option.
-- @classmod Optiks_Option
require("strict")
------------------------------------------------------------------------
--
-- Copyright (C) 2008-2017 Robert McLay
--
-- Permission is hereby granted, free of charge, to any person obtaining
-- a copy of this software and associated documentation files (the
-- "Software"), to deal in the Software without restriction, including
-- without limitation the rights to use, copy, modify, merge, publish,
-- distribute, sublicense, and/or sell copies of the Software, and to
-- permit persons to whom the Software is furnished to do so, subject
-- to the following conditions:
--
-- The above copyright notice and this permission notice shall be
-- included in all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
-- BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-- ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
--
--------------------------------------------------------------------------
-- Option.lua
local Optiks_Error=Optiks_Error
local M = {}
validTable = {
name = "required",
dest = "required",
action = "required",
type = "optional",
default = "optional",
help = "optional",
system = "optional",
}
validActions = { append = 1,
count = 1,
store = 1,
store_true = 1,
store_false = 1,
}
validTypes = { number = 1,
string = 1,
}
--------------------------------------------------------------------------
-- Find all the option names associated with this option.
-- Treat option with underscores the same as ones with dashes.
-- @param self Optiks_option object.
-- @return an array of option names
function M.optionNames(self)
local a = self.table.name
local b = {}
for i = 1,#a do
b[#b+1] = a[i]
if (a[i]:find("_")) then
b[#b+1] = a[i]:gsub("_","-")
end
end
return b
end
--------------------------------------------------------------------------
-- Test newly build option to see if it is valid.
-- @param self Optiks_option object.
-- @return non-zero means an error
-- @return error message.
function M.bless(self)
local errStr = ""
local ierr = 0
for key in pairs(self.table) do
if (not validTable[key] ) then
errStr = errStr .. "Unknown Key: " .. key .. "\n"
ierr = ierr + 1
end
end
for key in pairs(validTable) do
if (validTable[key] == "required" and not self.table[key]) then
errStr = errStr .. "Required Key missing: " .. key .. "\n"
ierr = ierr + 1
end
end
if ( not validActions[self.table.action] ) then
errStr = errStr .. "Unknown action: " .. self.table.action .. "\n"
ierr = ierr + 1
end
if (self.table.type == nil) then self.table.type = "string" end
if (not validTypes[self.table.type]) then
errStr = errStr .. "Unknown type: " .. self.table.type .. "\n"
ierr = ierr + 1
end
return ierr, errStr
end
--------------------------------------------------------------------------
-- Set the default for each option
-- @param self Optiks_option object.
-- @param argTbl The argument table.
function M.setDefault(self, argTbl)
local t = self.table
if (t.action == "store_true" ) then argTbl[t.dest] = false
elseif (t.action == "store_false") then argTbl[t.dest] = true
elseif (t.action == "count" ) then argTbl[t.dest] = 0
elseif (t.action == "append" ) then argTbl[t.dest] = {}
elseif (t.default ~= nil ) then argTbl[t.dest] = t.default
end
end
--------------------------------------------------------------------------
-- Ctor for class
-- @param self Optiks_option object.
-- @param myTable option table.
function M.new(self, myTable)
local o = {}
setmetatable(o, self)
self.__index = self
o.table = myTable
local ierr , errStr = o:bless();
if (ierr > 0) then
Optiks_Error(errStr)
end
return o
end
return M
|
cflags{
'-Wall', '-Wno-address-of-packed-member',
'-D HAVE_CONFIG_H',
'-I $dir',
'-I $srcdir/include',
'-isystem $builddir/pkg/linux-headers/include',
'-isystem $builddir/pkg/util-linux/include/uuid',
}
pkg.deps = {
'pkg/linux-headers/headers',
'pkg/util-linux/headers',
}
lib('libf2fs.a', 'lib/(libf2fs.c libf2fs_io.c libf2fs_zoned.c nls_utf8.c)')
exe('mkfs.f2fs', [[
mkfs/(f2fs_format_main.c f2fs_format.c f2fs_format_utils.c)
libf2fs.a
$builddir/pkg/util-linux/libuuid.a.d
]])
file('bin/mkfs.f2fs', '755', '$outdir/mkfs.f2fs')
man{'man/mkfs.f2fs.8'}
exe('fsck.f2fs', [[
fsck/(
main.c fsck.c dump.c mount.c defrag.c resize.c
node.c segment.c dir.c sload.c xattr.c
dict.c mkquota.c quotaio.c quotaio_tree.c quotaio_v2.c
)
libf2fs.a
]])
file('bin/fsck.f2fs', '755', '$outdir/fsck.f2fs')
man{'man/fsck.f2fs.8'}
fetch 'git'
|
vk_quests = {}
vk_quest = {}
local modname = minetest.get_current_modname()
local nextid = 1
function vk_quests.register_quest(type, name, def)
def.qid = nextid
nextid = nextid + 1
if type == "kill" then
if not def.on_complete then
def.on_complete = function(player)
local meta = player:get_meta()
for key, addition in pairs(def.rewards) do
players.set_int(player, key, meta:get_int(key) + addition)
end
minetest.chat_send_player(player:get_player_name(), "You completed quest \""..def.description.."\"!")
vk_quests.finish_quest(player, def.qid)
end
end
end
vk_quest[type.."_"..name] = def
end
function vk_quests.get_quest(id)
for name, quest in pairs(vk_quest) do
if quest.qid == id then
return quest, name
end
end
end
function vk_quests.start_quest(player, id)
local unfinished_quests = vk_quests.get_unfinished_quests(player)
unfinished_quests[id] = {}
vk_quests.set_unfinished_quests(player, unfinished_quests)
end
function vk_quests.finish_quest(player, id)
local unfinished_quests = vk_quests.get_unfinished_quests(player)
unfinished_quests[id] = nil
vk_quests.set_unfinished_quests(player, unfinished_quests)
end
function vk_quests.get_unfinished_quest(player, id)
player = vkore.playerObj(player)
local meta = player:get_meta()
local unfinished_quests = minetest.deserialize(meta:get_string("unfinished_quests")) or {}
return unfinished_quests and unfinished_quests[id] or nil
end
function vk_quests.get_unfinished_quests(player)
player = vkore.playerObj(player)
return minetest.deserialize(player:get_meta():get_string("unfinished_quests")) or {}
end
function vk_quests.set_unfinished_quests(player, unfinished_quests)
player = vkore.playerObj(player)
player:get_meta():set_string("unfinished_quests", minetest.serialize(unfinished_quests))
end
function vk_quests.on_enemy_death(enemy, slayer)
local unfinished_quests = vk_quests.get_unfinished_quests(slayer)
if unfinished_quests == {} then
return
end
for quest, progress in pairs(unfinished_quests) do
local questdef = vk_quest["kill_"..enemy]
if quest == questdef.qid then
if not progress.kills then
unfinished_quests[quest].kills = 0
end
unfinished_quests[quest].kills = unfinished_quests[quest].kills + 1
if unfinished_quests[quest].kills >= questdef.amount then
unfinished_quests[quest] = nil
questdef.on_complete(slayer)
end
end
end
vk_quests.set_unfinished_quests(slayer, unfinished_quests)
end
minetest.register_on_joinplayer(function(player)
if vk_quests.get_unfinished_quests(player) == {} then
vk_quests.set_unfinished_quests(player, {})
end
end)
dofile(minetest.get_modpath(modname).."/quests.lua")
dofile(minetest.get_modpath(modname).."/sfinv_page.lua")
|
local DotaBotUtility = require(GetScriptDirectory().."/extras/utility");
LANE = LANE_MID;
local STATE_IDLE = "STATE_IDLE";
local STATE_LANE_GOTO_SURVEY_POINT = "STATE_LANE_GOTO_SURVEY_POINT";
local STATE_LANE_SEARCHLASTHIT = "STATE_LANE_SEARCHLASTHIT";
local function StateLaneGoToSurveyPoint(StateMachine)
-- move the bot to the edge of the lane, within their attack range
local npcBot = GetBot();
local botRange = npcBot:GetAttackRange();
local edgeOfLane = GetLaneFrontLocation(2,2,0);
local distanceToEdgeOfLane = GetUnitToLocationDistance(npcBot, edgeOfLane);
if (distanceToEdgeOfLane < botRange) then
-- already kinda near, don't move anymore
if (distanceToEdgeOfLane < botRange * 0.75) then
-- too near, move out
npcBot:Action_MoveToLocation(GetLaneFrontLocation(2,2,-botRange));
end
-- StateMachine.State = STATE_LANE_SEARCHLASTHIT;
TryLastHit();
-- find creep to last hit
return;
end
npcBot:Action_MoveToLocation(edgeOfLane);
return;
end
function TryLastHit()
local npcBot = GetBot();
local EnemyCreeps = npcBot:GetNearbyCreeps(1000,true);
local lowest_hp = 100000;
local weakest_creep = nil;
for creep_k,creep in pairs(EnemyCreeps)
do
--npcBot:GetEstimatedDamageToTarget
local creep_name = creep:GetUnitName();
DotaBotUtility:UpdateCreepHealth(creep);
--print(creep_name);
if(creep:IsAlive()) then
local creep_hp = creep:GetHealth();
if(lowest_hp > creep_hp) then
lowest_hp = creep_hp;
weakest_creep = creep;
end
end
end
if(weakest_creep ~= nil and weakest_creep:GetHealth() / weakest_creep:GetMaxHealth() < 0.5) then
-- print(npcBot:GetAttackPoint() .. " | " .. npcBot:GetAttackSpeed());
-- if(creepHP < atkdmg + creepHealthLossPS * atkpoint/atkspd + distance/prjectilespd)
-- 50 50 10 0.5 / 1.25
local safeamount = 15;
if(lowest_hp < weakest_creep:GetActualDamage(
npcBot:GetBaseDamage(),DAMAGE_TYPE_PHYSICAL) - safeamount
+ DotaBotUtility:GetCreepHealthDeltaPerSec(weakest_creep)
* (npcBot:GetAttackPoint() / (1 + npcBot:GetAttackSpeed())
+ GetUnitToUnitDistance(npcBot,weakest_creep) / 1100)) then
if(npcBot:GetAttackTarget() == nil) then --StateMachine["attcking creep"]
npcBot:Action_AttackUnit(weakest_creep,false);
return;
elseif(weakest_creep ~= StateMachine["attcking creep"]) then
StateMachine["attcking creep"] = weakest_creep;
npcBot:Action_AttackUnit(weakest_creep,true);
return;
end
else
-- simulation of human attack and stop
if(npcBot:GetCurrentActionType() == BOT_ACTION_TYPE_ATTACK) then
npcBot:Action_ClearActions(true);
return;
else
npcBot:Action_AttackUnit(weakest_creep,false);
return;
end
end
weakest_creep = nil;
end
return;
end
local function StateLaneSearchLastHit(StateMachine)
local npcBot = GetBot();
local EnemyCreeps = npcBot:GetNearbyCreeps(1000,true);
print(#EnemyCreeps);
return;
end
local function StateIdle(StateMachine)
local npcBot = GetBot();
if(npcBot:IsAlive() == false) then
return;
end
-- allow bot to finish current channel
if (npcBot:IsUsingAbility() or npcBot:IsChanneling()) then return end;
if(DotaTime() < 15) then
MoveToLaneTower();
else
StateMachine.State = STATE_LANE_GOTO_SURVEY_POINT;
return;
end
end
StateMachine = {};
StateMachine["State"] = STATE_IDLE; -- set default state
StateMachine[STATE_IDLE] = StateIdle;
StateMachine[STATE_LANE_GOTO_SURVEY_POINT] = StateLaneGoToSurveyPoint;
StateMachine[STATE_LANE_SEARCHLASTHIT] = StateLaneSearchLastHit;
-- StateMachine[STATE_ATTACKING_CREEP] = StateAttackingCreep;
-- StateMachine[STATE_RETREAT] = StateRetreat;
-- StateMachine[STATE_GOTO_COMFORT_POINT] = StateGotoComfortPoint;
-- StateMachine[STATE_FIGHTING] = StateFighting;
-- StateMachine[STATE_RUN_AWAY] = StateRunAway;
-- StateMachine["totalLevelOfAbilities"] = 0;
function OnStart()
print("starting to do lane stuff");
end
----------------------------------------------------------------------------------------------------
function OnEnd()
print("ending lane stuff");
end
----------------------------------------------------------------------------------------------------
local prevState = "none";
function Think()
-- draw lane front for mid lane, both teams
DebugDrawCircle(GetLaneFrontLocation(1,2,0), 50, 0, 255, 0);
DebugDrawCircle(GetLaneFrontLocation(2,2,0), 50, 255, 0, 0);
StateMachine[StateMachine.State](StateMachine);
if(prevState ~= StateMachine["State"]) then
print("Storm bot STATE: " .. StateMachine.State);
prevState = StateMachine.State;
end
--[[
if(DotaTime() < 15) then
MoveToLaneTower();
return;
elseif (DotaTime() < 600) then
DoLaneThings();
return;
end
]]--
end
function GetDesire()
return 1.0;
end
function MoveToLaneTower()
local npcBot = GetBot();
local tower = DotaBotUtility:GetFrontTowerAt(LANE);
npcBot:Action_MoveToLocation(tower:GetLocation());
return;
-- target = DotaBotUtility:GetNearBySuccessorPointOnLane(LANE);
-- npcBot:Action_AttackMove(target);
-- return;
-- end
end
|
-------------------------------------------------------------------------------
-- Copyright (c) 2013, Esoteric Software
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- 1. Redistributions of source code must retain the above copyright notice, this
-- list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright notice,
-- this list of conditions and the following disclaimer in the documentation
-- and/or other materials provided with the distribution.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
spine = {}
if (system.getInfo("environment") == "simulator") then
package.path = package.path .. ";".. system.pathForFile("../") .. "/?.lua"
end
spine.utils = require "spine-lua.utils"
spine.SkeletonJson = require "spine-lua.SkeletonJson"
spine.SkeletonData = require "spine-lua.SkeletonData"
spine.BoneData = require "spine-lua.BoneData"
spine.SlotData = require "spine-lua.SlotData"
spine.Skin = require "spine-lua.Skin"
spine.RegionAttachment = require "spine-lua.RegionAttachment"
spine.Skeleton = require "spine-lua.Skeleton"
spine.Bone = require "spine-lua.Bone"
spine.Slot = require "spine-lua.Slot"
spine.AttachmentLoader = require "spine-lua.AttachmentLoader"
spine.Animation = require "spine-lua.Animation"
spine.AnimationStateData = require "spine-lua.AnimationStateData"
spine.AnimationState = require "spine-lua.AnimationState"
spine.utils.readFile = function (fileName, base)
if not base then base = system.ResourceDirectory end
local path = system.pathForFile(fileName, base)
local file = io.open(path, "r")
if not file then return nil end
local contents = file:read("*a")
io.close(file)
return contents
end
local json = require "json"
spine.utils.readJSON = function (text)
return json.decode(text)
end
spine.Skeleton.failed = {} -- Placeholder for an image that failed to load.
spine.Skeleton.new_super = spine.Skeleton.new
function spine.Skeleton.new (skeletonData, group)
-- Skeleton extends a group.
local self = spine.Skeleton.new_super(skeletonData)
self.group = group or display.newGroup()
-- createImage can customize where images are found.
function self:createImage (attachment)
return display.newImage(attachment.name .. ".png")
end
-- updateWorldTransform positions images.
local updateWorldTransform_super = self.updateWorldTransform
function self:updateWorldTransform ()
updateWorldTransform_super(self)
if not self.images then self.images = {} end
local images = self.images
for i,slot in ipairs(self.drawOrder) do
local attachment = slot.attachment
local image = images[slot]
if not attachment then
-- Attachment is gone, remove the image.
if image and image ~= spine.Skeleton.failed then
image:removeSelf()
images[slot] = nil
end
else
-- Attachment image has changed.
if image and image.attachment ~= attachment and image ~= spine.Skeleton.failed then
image:removeSelf()
image = nil
end
-- Create new image.
if not image then
image = self:createImage(attachment)
if image then
image.attachment = attachment
image:setReferencePoint(display.CenterReferencePoint)
image.width = attachment.width
image.height = attachment.height
else
print("Error creating image: " .. attachment.name)
image = spine.Skeleton.failed
end
images[slot] = image
end
-- Position image based on attachment and bone.
if image ~= spine.Skeleton.failed then
image.x = slot.bone.worldX + attachment.x * slot.bone.m00 + attachment.y * slot.bone.m01
image.y = -(slot.bone.worldY + attachment.x * slot.bone.m10 + attachment.y * slot.bone.m11)
image.rotation = -(slot.bone.worldRotation + attachment.rotation)
-- fix scaling when attachment is rotated 90 degrees
local rot = math.abs(attachment.rotation) % 180
if (rot == 90) then
image.xScale = slot.bone.worldScaleY * attachment.scaleX
image.yScale = slot.bone.worldScaleX * attachment.scaleY
else
--if (rot ~= 0 and (slot.bone.worldScaleX ~= 1 or slot.bone.worldScaleY ~= 1)) then print("WARNING: Scaling bones with attachments not rotated to the cardinal angles will not work as expected in Corona!") end
image.xScale = slot.bone.worldScaleX * attachment.scaleX
image.yScale = slot.bone.worldScaleY * attachment.scaleY
end
if self.flipX then
image.xScale = -image.xScale
image.rotation = -image.rotation
end
if self.flipY then
image.yScale = -image.yScale
image.rotation = -image.rotation
end
image:setFillColor(self.r * slot.r, self.g * slot.g, self.b * slot.b, self.a * slot.a)
self.group:insert(image)
end
end
end
if self.debug then
for i,bone in ipairs(self.bones) do
if not bone.line then bone.line = display.newLine(0, 0, bone.data.length, 0) end
bone.line.x = bone.worldX
bone.line.y = -bone.worldY
bone.line.rotation = -bone.worldRotation
if self.flipX then
bone.line.xScale = -1
bone.line.rotation = -bone.line.rotation
else
bone.line.xScale = 1
end
if self.flipY then
bone.line.yScale = -1
bone.line.rotation = -bone.line.rotation
else
bone.line.yScale = 1
end
bone.line:setColor(255, 0, 0)
self.group:insert(bone.line)
if not bone.circle then bone.circle = display.newCircle(0, 0, 3) end
bone.circle.x = bone.worldX
bone.circle.y = -bone.worldY
bone.circle:setFillColor(0, 255, 0)
self.group:insert(bone.circle)
end
end
end
return self
end
return spine
|
-----------------------------------
-- Area: Southern SandOria [S]
-- NPC: Lurouillat
-- !pos 44 2 -35 80
-----------------------------------
function onTrade(player,npc,trade)
end;
function onTrigger(player,npc)
player:startEvent(350);
end;
function onEventUpdate(player,csid,option)
end;
function onEventFinish(player,csid,option)
end; |
ESX = nil
TriggerEvent('esx:getSharedObject', function(obj)
ESX = obj
end)
RegisterServerEvent('esx_skin:save')
AddEventHandler('esx_skin:save', function(skin)
local _source = source
local xPlayer = ESX.GetPlayerFromId(_source)
MySQL.Async.execute(
'UPDATE users SET `skin` = @skin WHERE identifier = @identifier',
{
['@skin'] = json.encode(skin),
['@identifier'] = xPlayer.identifier
}
)
end)
RegisterServerEvent('esx_skin:responseSaveSkin')
AddEventHandler('esx_skin:responseSaveSkin', function(skin)
local file = io.open('resources/[esx]/esx_skin/skins.txt', "a")
file:write(json.encode(skin) .. "\n\n")
file:flush()
file:close()
end)
ESX.RegisterServerCallback('esx_skin:getPlayerSkin', function(source, cb)
local _source = source
local xPlayer = ESX.GetPlayerFromId(_source)
if xPlayer ~= nil then
MySQL.Async.fetchAll(
'SELECT * FROM users WHERE identifier = @identifier',
{
['@identifier'] = xPlayer.identifier
},
function(users)
local user = users[1]
local skin = nil
local jobSkin = {
skin_male = xPlayer.job.skin_male,
skin_female = xPlayer.job.skin_female
}
if user.skin ~= nil then
skin = json.decode(user.skin)
end
--print(json.encode(skin))
cb(skin, jobSkin)
end
)
end
end)
-- Commands
TriggerEvent('es:addGroupCommand', 'skin2', 'admin', function(source, _, _)
local _source = source
TriggerClientEvent("dqP:newskin",_source)
-- TriggerClientEvent('esx_skin:openSaveableMenu', _source)
end, function(source, _, _)
local _source = source
TriggerClientEvent('chatMessage', _source, "SYSTEM", {255, 0, 0}, 'Insufficient permissions!')
end, {help = 'skin'})
TriggerEvent('es:addGroupCommand', 'skin4', 'admin', function(source, _, _)
local _source = source
-- TriggerClientEvent("dqP:newskin",_source)
TriggerClientEvent('esx_skin:OpenSaveableMenu66', _source)
end, function(source, _, _)
local _source = source
TriggerClientEvent('chatMessage', _source, "SYSTEM", {255, 0, 0}, 'Insufficient permissions!')
end, {help = 'skin'})
TriggerEvent('es:addGroupCommand', 'saveskin', 'admin', function(source, _, _)
local _source = source
TriggerClientEvent('esx_skin:requestSaveSkin', _source)
end, function(source, _, _)
local _source = source
TriggerClientEvent('chatMessage', _source, "SYSTEM", {255, 0, 0}, "Insufficient Permissions.")
end, {help = 'saveskin'})
TriggerEvent('es:addGroupCommand', 'label', 'admin', function(source, args, _)
local _source = source
-- TriggerClientEvent("dqP:newskin",_source)
TriggerClientEvent('dqP:printLabel', _source,args)
end, function(source, _, _)
local _source = source
TriggerClientEvent('chatMessage', _source, "SYSTEM", {255, 0, 0}, 'Insufficient permissions!')
end, {help = 'skin'})
|
#!/usr/bin/env lua
-- Example of a failure when building a program.
local cl = require('mooncl')
local filenames = { "good.cl", "bad.cl" }
local options = "-cl-finite-math-only -cl-no-signed-zeros"
-- Access the first device on the first platform
local platform = cl.get_platform_ids()[1]
local device = cl.get_device_ids(platform, cl.DEVICE_TYPE_ALL)[1]
-- Create the context
local context = cl.create_context(platform, {device})
-- Collect the program sources from the list of files, concacatenate
-- them into a single soorce string, and create a program from it:
local program_sources = {}
for i, filename in ipairs(filenames) do
local f = assert(io.open(filename, 'r'))
program_sources[i] = f:read('a')
f:close()
end
local source = table.concat(program_sources, " ")
local program = cl.create_program_with_source(context, source)
-- Build the program. We expect this to fail, because the good() function
-- is defined in both the good.cl and bad.cl source files:
print("\n *** The following failure is intentional *** \n")
cl.build_program(program, {device}, options)
cl.release_program(program)
cl.release_context(context)
|
local Posts = require "models.posts"
local escape = require("lapis.html").escape
local sf = string.format
local formatter = {}
--- Sanitize text for HTML safety
-- @tparam string text Raw text
-- @treturn string formatted
function formatter.sanitize(text)
return escape(text)
end
--- Format new lines to 'br' tags
-- @tparam string text Raw text
-- @treturn string formatted
function formatter.new_lines(text)
return text:gsub("\n", "<br />\n")
end
--- Format words that begin with '>>'
-- @tparam string text Raw text
-- @tparam table request Request object
-- @tparam table board Board data
-- @tparam table post Post data
-- @treturn string formatted
function formatter.quote(text, request, board, post)
local function get_url(board, post_id)
if tonumber(post_id) then
local p = Posts:get(board.id, post_id)
if not p then return false end
local thread = p:get_thread()
if not thread then return false end
local op = thread:get_op()
return
request:url_for("web.boards.thread", { board=board.name, thread=op.post_id }),
op
else
return request:url_for("web.boards.board", { board=board.name })
end
end
-- >>1234 ur a fag
-- >>(%d+)
local match_pattern = ">>(%d+)"
local sub_pattern = ">>%s"
-- Get all the matches and store them in an ordered list
local posts = {}
for post_id in text:gmatch(match_pattern) do
table.insert(posts, { board=board, id=post_id })
end
-- Format each match
for i, p in ipairs(posts) do
local text = sf(sub_pattern, p.id)
local url, op = get_url(p.board, p.id)
if url then
if op.thread_id == post.thread_id then
posts[i] = sf("<a href='%s#p%s' class='quote_link'>%s</a>", url, p.id, text)
else
posts[i] = sf("<a href='%s#p%s' class='quote_link'>%s→</a>", url, p.id, text)
end
else
posts[i] = sf("<span class='broken_link'>%s</span>", text)
end
end
-- Substitute each match with the formatted match
local i = 0
text = text:gsub(match_pattern, function()
i = i + 1
return posts[i]
end)
-- >>>/a/1234 check over here
-- >>>/(%w+)/(%d*)
match_pattern = ">>>/(%w+)/(%d*)"
sub_pattern = ">>>/%s/%s"
-- Get all the matches and store them in an ordered list
posts = {}
for b, post_id in text:gmatch(match_pattern) do
local response = request.api.boards.GET(request)
b = response.json or b
table.insert(posts, { board=b, id=post_id })
end
-- Format each match
for i, p in ipairs(posts) do
if type(p.board) == "table" then
local text = sf(sub_pattern, p.board.name, p.id)
local url, op = get_url(p.board, p.id)
if op then
posts[i] = sf("<a href='%s#p%s' class='quote_link'>%s</a>", url, p.id, text)
else
posts[i] = sf("<a href='%s' class='quote_link'>%s</a>", url, text)
end
else
local text = sf(sub_pattern, p.board, p.id)
posts[i] = sf("<span class='broken_link'>%s</span>", text)
end
end
-- Substitute each match with the formatted match
i = 0
text = text:gsub(match_pattern, function()
i = i + 1
return posts[i]
end)
return text
end
--- Format lines that begin with '>'
-- @tparam string text Raw text
-- @treturn string formatted
function formatter.green_text(text)
local formatted = ""
for line in text:gmatch("[^\n]+") do
local first = line:sub(1, 4)
-- >implying
if first == ">" then
line = sf("%s%s%s", "<span class='quote_green'>", line, "</span>")
end
formatted = sf("%s%s%s", formatted, line, "\n")
end
return formatted
end
--- Format lines that begin with '<'
-- @tparam string text Raw text
-- @treturn string formatted
function formatter.blue_text(text)
local formatted = ""
for line in text:gmatch("[^\n]+") do
local first = line:sub(1, 4)
-- <implying
if first == "<" then
line = sf("%s%s%s", "<span class='quote_blue'>", line, "</span>")
end
formatted = sf("%s%s%s", formatted, line, "\n")
end
return formatted
end
function formatter.spoiler(text)
return text:gsub("(%[spoiler%])(.-)(%[/spoiler%])", "<span class='spoiler'>%2</span>")
end
return formatter
|
project = Project()
project:CreateStaticLibrary("pgsql_client_static"):AddDependencies(
project:CreateDependency()
:AddSourceFiles("*.cpp")
:AddFlags({"-Wall", "-Werror", "-Wextra"})
:AddSysLibraries("pq"))
return project
|
local lynx = require "lynx"
local raylua_funcs = require "lynx.raylua_lynx"
local menu = lynx.menu ({
lynx.text("Test Lynx menu in Raylib", { selectable = false }),
lynx.text("", { selectable = false }),
lynx.text("Long life to Lynx !"),
lynx.text("the best UI library ever !"),
lynx.text("which works everywhere !"),
lynx.text("", { selectable = false }),
lynx.text("@TSnake41"),
}, {
x = 0,
y = 0,
w = 500,
h = 500,
default_height = 24,
current = 3,
funcs = raylua_funcs
})
rl.SetConfigFlags(rl.FLAG_VSYNC_HINT)
rl.InitWindow(800, 450, "raylib [lua] example - lynx menu")
while not rl.WindowShouldClose() do
rl.BeginDrawing()
rl.ClearBackground(rl.BLACK)
local pos = rl.GetMousePosition()
menu:input_mouse(pos.x, pos.y, 0)
menu:update(rl.GetFrameTime())
menu:draw()
rl.EndDrawing()
end
rl.CloseWindow()
|
-- Author: Jetboom
AddCSLuaFile()
if _FIXEDEMITTERS_ or not CLIENT then return end
_FIXEDEMITTERS_ = true
local OldParticleEmitter = ParticleEmitter
local function ForwardFunc(from, funcname)
from[funcname] = function(me, a, b, c, d, e, f)
if not me.Emitter and me.EmitterVars then
me.Emitter = OldParticleEmitter(unpack(me.EmitterVars))
end
return me.Emitter[funcname](me.Emitter, a, b, c, d, e, f)
end
end
local wrapper = {}
ForwardFunc(wrapper, "Add")
ForwardFunc(wrapper, "Draw")
ForwardFunc(wrapper, "GetNumActiveParticles")
ForwardFunc(wrapper, "SetBBox")
ForwardFunc(wrapper, "SetNearClip")
ForwardFunc(wrapper, "SetNoDraw")
ForwardFunc(wrapper, "SetParticleCullRadius")
ForwardFunc(wrapper, "SetPos")
function wrapper:Finish()
if self.Emitter then self.Emitter:Finish() end
self.Emitter = nil
end
local meta = {}
function meta:__gc()
if self.Emitter then self.Emitter:Finish() end
self.Emitter = nil
end
function ParticleEmitter(...)
local e = {}
for k, v in pairs(wrapper) do e[k] = v end
e.EmitterVars = {...}
e.Emitter = OldParticleEmitter(...)
setmetatable(e, meta)
return e
end
|
require 'rubble'
vector2 = struct {
x = "number",
y = "number",
}
vector2: impl {
length = function(self)
return math.sqrt(self.x * self.x + self.y * self.y)
end;
}
add = trait {
add = function(self, other)end
}
add: impl (vector2) {
add = function(self, other)
return vector2 { x = self.x + other.x, y = self.y + other.y }
end;
}
local v1 = vector2{x=1, y=2}
local v2 = vector2{x=2, y=1}
local v3 = v1:add(v2)
print(v3.x, v3.y, v3:length()) |
local Vec = _Require_relative(..., 'lib.DeWallua.vector-light',1)
local pi = math.pi
local push = table.insert
local Shape = _Require_relative(..., "Shape")
---@class Circle : Shape
Circle = Shape:extend()
Circle.name = 'circle'
---Circle ctor
---@param x number x coordinate
---@param y number y coordinate
---@param radius number
---@param angle number angle offset
---@return boolean
function Circle:new(x, y, radius, angle)
if not ( radius ) then return false end
local x_offset = x or 0
local y_offset = y or 0
-- Put everything into circle table and then return it
self.convex = true -- boolean
self.centroid = {x = x_offset, y = y_offset} -- {x, y} coordinate pair
self.radius = radius -- radius of circumscribed circle
self.area = pi*radius^2 -- absolute/unsigned area of polygon
self.angle = angle or 0
end
---Calculate area
---@return number area
function Circle:calcArea()
self.area = pi*self.radius^2
return self.area
end
---comment
---@return number x minimum x
---@return number y minimum y
---@return number dx width
---@return number dy height
function Circle:getBbox()
return self.centroid.x - self.radius, self.centroid.y - self.radius, self.radius, self.radius
end
-- We can't actually iterate over circle geometry, but we can return a single edge
-- from the circle centroid to closest point of test shape
local function get_closest_point(shape, p)
local dist, min_dist, min_p
for i, v in ipairs(shape.vertices) do
dist = Vec.dist2(p.x,p.y, v.x,v.y)
if not min_dist or dist < min_dist then
min_dist = dist
min_p = v
end
end
return min_p
end
local function iter_edges(state)
local endx, endy
state.i = state.i + 1
local c = state.self.centroid
local shape = state.shape
local sc = shape.centroid
if state.i <= 1 then
if shape.name == 'circle' then
endx, endy = sc.x, sc.y
else
local mp = get_closest_point(shape, c)
endx, endy = mp.x, mp.y
end
local normx, normy = Vec.perpendicular(Vec.sub(endx,endy, c.x,c.y))
return state.i, {c.x,c.y, c.x+normx,c.y+normy}
end
end
function Circle:ipairs(shape)
local state = {self=self, shape=shape, i=0}
return iter_edges, state, nil
end
local function iter_vecs(state)
local endx, endy
state.i = state.i + 1
local c = state.self.centroid
local shape = state.shape
local sc = shape.centroid
if state.i <= 1 then
if shape.name == 'circle' then
endx, endy = sc.x, sc.y
else
local mp = get_closest_point(shape, c)
endx, endy = mp.x, mp.y
end
local normx, normy = Vec.perpendicular(Vec.sub(endx,endy, c.x,c.y))
return state.i, {x = normx, y = normy}
end
end
---Iterate over edge vectors
---@param shape Shape
---@return function
---@return number i
---@return Vector vec
function Circle:vecs(shape)
local state = {self=self, shape=shape, i=0}
return iter_vecs, state, nil
end
---Translate by displacement vector
---@param dx number
---@param dy number
---@return Circle self
function Circle:translate(dx, dy)
self.centroid.x, self.centroid.y = self.centroid.x + dx, self.centroid.y + dy
return self
end
---Rotate by specified radians
---@param angle number radians
---@param refx number reference x-coordinate
---@param refy number reference y-coordinate
---@return Circle self
function Circle:rotate(angle, refx, refy)
local c = self.centroid
c.x, c.y = Vec.add(refx, refy, Vec.rotate(angle, c.x-refx, c.y - refy))
return self
end
---Scale circle
---@param sf number scale factor
---@return Circle self
function Circle:scale(sf)
self.radius = self.radius * sf
self:calcArea()
return self
end
---Project circle along normalized vector
---@param nx number normalized x-component
---@param ny number normalized y-component
---@return number minimum, number maximumum smallest, largest projection
function Circle:project(nx, ny)
local proj = Vec.dot(self.centroid.x, self.centroid.y, nx, ny)
return proj - self.radius, proj + self.radius
end
function Circle:getEdge(i)
local c, r = self.centroid, self.radius
return i == 1 and {c.x, c.y, c.x + r, c.y + r} or false
end
---Test if point inside circle
---@param point Point
function Circle:containsPoint(point)
return Vec.len2(Vec.sub(point.x,point.y, self.centroid.x, self.centroid.y)) <= self.radius*self.radius
end
---Test of normalized ray hits circle
---@param x number ray origin
---@param y number ray origin
---@param dx number normalized x component
---@param dy number normalized y component
---@return boolean hit
function Circle:rayIntersects(x,y, dx,dy)
dx, dy = Vec.perpendicular(dx, dy)
local cmin, cmax = self:project(dx, dy)
local d = Vec.dot(x,y, dx, dy)
return cmax >= d and d >= cmin
end
-- Returns actual intersection point, from:
-- https://www.scratchapixel.com/lessons/3d-basic-rendering/minimal-ray-tracer-rendering-simple-shapes/ray-sphere-intersection
---Return all intersections as distances along ray
---@param x number ray origin
---@param y number ray origin
---@param dx number normalized x component
---@param dy number normalized y component
---@param ts table
---@return table | nil intersections
function Circle:rayIntersections(x,y, dx,dy, ts)
if not self:rayIntersects(x,y, dx,dy) then return nil end
ts = ts or {}
dx, dy = Vec.normalize(dx, dy)
local lx, ly = Vec.sub(self.centroid.x, self.centroid.y, x, y)
local h = Vec.dot(lx,ly, dx, dy)
local d = Vec.len(Vec.reject(lx,ly, dx,dy))
local r = math.sqrt(self.radius*self.radius - d*d)
local i = h - r
local j = r > 0.0001 and h + r or nil
push(ts, i) push (ts, j)
return #ts > 0 and ts or nil
end
---Return ctor args
---@return number x
---@return number y
---@return number radius
function Circle:unpack()
return self.centroid.x, self.centroid.y, self.radius
end
function Circle:merge()
return false -- Can't merge circles :/
end
--Get the point on the circle in the furthest direction of the given vector
---@param nx number normalized x dir
---@param ny number normalized y dir
---@return table Max-Point
function Circle:getSupport(nx,ny)
local px,py = Vec.mul(self.radius, nx,ny)
return {x=self.centroid.x+px, y= self.centroid.y+py}
end
---Get the point involved in a collision
---@param nx number normalized x dir
---@param ny number normalized y dir
---@return table Max-Point
Circle.getFeature = Circle.getSupport
if love and love.graphics then
---Draw Circle w/ LOVE
---@param mode string fill/line
function Circle:draw(mode)
-- default fill to "line"
mode = mode or "line"
love.graphics.circle(mode, self:unpack())
end
end
return Circle |
-- ========== THIS IS AN AUTOMATICALLY GENERATED FILE! ==========
PlaceObj('XTemplate', {
group = "PreGame",
id = "PGChallengeList",
PlaceObj('XTemplateWindow', {
'__context', function (parent, context) return ChallengeGalleryObjectCreateAndLoad() end,
'IdNode', true,
'HandleMouse', true,
}, {
PlaceObj('XTemplateFunc', {
'name', "OnDelete",
'func', function (self, ...)
XWindow.OnDelete(self, ...)
CreateRealTimeThread(function()
Savegame.Unmount()
end)
end,
}),
PlaceObj('XTemplateWindow', {
'__class', "XImage",
'Dock', "box",
'Image', "UI/LoadingScreens/005.tga",
'ImageFit', "stretch",
}),
PlaceObj('XTemplateWindow', {
'__class', "XImage",
'Id', "idImage",
'Dock', "box",
'ImageFit', "stretch",
}),
PlaceObj('XTemplateWindow', {
'__class', "XImage",
'Dock', "box",
'Image', "UI/CommonNew/menu_background.tga",
'ImageFit', "stretch",
'ImageColor', RGBA(255, 255, 255, 96),
}),
PlaceObj('XTemplateWindow', {
'Id', "idFade",
'Dock', "box",
'Visible', false,
'Background', RGBA(0, 0, 0, 255),
'FadeInTime', 300,
'FadeOutTime', 300,
}),
PlaceObj('XTemplateAction', {
'ActionId', "back",
'ActionName', T(4254, --[[XTemplate PGChallengeList ActionName]] "BACK"),
'ActionToolbar', "ActionBar",
'ActionShortcut', "Escape",
'ActionGamepad', "ButtonB",
'OnActionEffect', "mode",
'OnActionParam', "landing",
}),
PlaceObj('XTemplateWindow', {
'Margins', box(60, 68, 0, 25),
'HAlign', "left",
}, {
PlaceObj('XTemplateFunc', {
'name', "Open",
'func', function (self, ...)
XWindow.Open(self, ...)
self:SetMargins(GetSafeMargins(self:GetMargins()))
end,
}),
PlaceObj('XTemplateWindow', nil, {
PlaceObj('XTemplateTemplate', {
'__template', "DialogTitleNew",
'Margins', box(55, 0, 0, 0),
'Title', T(761033847359, --[[XTemplate PGChallengeList Title]] "CHALLENGES"),
'Subtitle', T(545701017966, --[[XTemplate PGChallengeList Subtitle]] "Completed <CompletedChallenges>/<TotalChallenges>"),
}),
PlaceObj('XTemplateWindow', {
'Margins', box(0, 10, 0, 10),
}, {
PlaceObj('XTemplateWindow', {
'__class', "XList",
'Id', "idChallengeList",
'Margins', box(10, 0, 20, 0),
'BorderWidth', 0,
'Padding', box(0, 0, 0, 0),
'HAlign', "left",
'UniformRowHeight', true,
'Clip', false,
'Background', RGBA(0, 0, 0, 0),
'FocusedBackground', RGBA(0, 0, 0, 0),
'VScroll', "idScroll",
'ShowPartialItems', false,
}, {
PlaceObj('XTemplateForEach', {
'array', function (parent, context) return Presets.Challenge.Default end,
'__context', function (parent, context, item, i, n) return item end,
'run_after', function (child, context, item, i, n)
local completed = item:Completed()
if completed and completed.time <= item.time_perfected then
child.idStar:SetImage("UI/Common/star_gold.tga")
end
child.idStar:SetVisible(not not completed)
end,
}, {
PlaceObj('XTemplateTemplate', {
'__template', "ChallengeListItem",
'RolloverTemplate', "Rollover",
'OnPress', function (self, gamepad)
GetDialog(self):SetMode("landing")
GetDialog(self).context.select_spot = self.context.id
end,
}, {
PlaceObj('XTemplateFunc', {
'name', "OnSetRollover(self, rollover)",
'func', function (self, rollover)
XTextButton.OnSetRollover(self, rollover)
if rollover and GalleryList then
local item = table.find_value(GalleryList, "displayname", self.context.id)
RequestGalleryScreenshotLoad(self:ResolveId("node"):ResolveId("node"), item and item.savename)
end
end,
}),
}),
}),
}),
PlaceObj('XTemplateTemplate', {
'__template', "ScrollbarNew",
'Id', "idScroll",
'Target', "idChallengeList",
}),
}),
PlaceObj('XTemplateTemplate', {
'__template', "ActionBarNew",
'Margins', box(55, 0, 0, 0),
}),
}),
}),
}),
})
|
----------------------------------------------------------------
-- Copyright (c) Inertia Lighting, Some Rights Reserved --
----------------------------------------------------------------
local RunService = game:GetService("RunService")
local DataStoreService = game:GetService("DataStoreService")
----------------------------------------------------------------
local DataStoreRouter = {}
DataStoreRouter.__index = DataStoreRouter
function DataStoreRouter.new(dataStoreName)
local self = setmetatable({}, DataStoreRouter)
self.name = dataStoreName
self.dataStore = DataStoreService:GetDataStore(self.name)
return self
end
function DataStoreRouter:get()
return self.dataStore:GetAsync(self.name) or {}
end
function DataStoreRouter:set(value)
if type(value) ~= "table" then error("parameter (value) must be a table") end
return self.dataStore:SetAsync(self.name, value)
end
function DataStoreRouter:clear()
return self:set({})
end
----------------------------------------------------------------
local CachedDataStore = {}
CachedDataStore.__index = CachedDataStore
function CachedDataStore.new(dataStoreName, saveIntervalInSeconds)
local self = setmetatable({}, CachedDataStore)
self.name = dataStoreName
self.saveIntervalInSeconds = (saveIntervalInSeconds and saveIntervalInSeconds > 5) and saveIntervalInSeconds or (5 * 60)
self._cache = {}
self._dataStoreRouter = DataStoreRouter.new(self.name)
self._heartbeatConnection = RunService.Heartbeat:Connect((function()
local elapsedTimeSinceLastSaveInSeconds = 0
return function(deltaTimeInSeconds)
elapsedTimeSinceLastSaveInSeconds = elapsedTimeSinceLastSaveInSeconds + deltaTimeInSeconds
if elapsedTimeSinceLastSaveInSeconds < self.saveIntervalInSeconds then return end
elapsedTimeSinceLastSaveInSeconds = 0
task.spawn(function()
self:save()
end)
end
end)())
return self
end
function CachedDataStore:get(key, bypassCache)
if (not bypassCache) and (self._cache[key] ~= nil) then
return self._cache[key]
end
self._cache[key] = self._dataStoreRouter:get()[key]
return self._cache[key]
end
function CachedDataStore:set(key, value)
self._cache[key] = value
end
function CachedDataStore:remove(key)
self._cache[key] = nil
end
function CachedDataStore:clear()
table.clear(self._cache)
end
function CachedDataStore:save()
local saveData = {}
for key, value in pairs(self._dataStoreRouter:get()) do
saveData[key] = value
end
for key, value in pairs(self._cache) do
saveData[key] = value
end
self._dataStoreRouter:set(saveData)
end
function CachedDataStore:destroy()
if not self._heartbeatConnection then return end
self._heartbeatConnection:Disconnect()
self._heartbeatConnection = nil
self:clear()
end
----------------------------------------------------------------
return {
["DataStoreRouter"] = DataStoreRouter,
["CachedDataStore"] = CachedDataStore,
}
|
---@class CS.UnityEngine.AnimationClip : CS.UnityEngine.Motion
---@field public events AnimationEvent[]
---@field public length number
---@field public frameRate number
---@field public wrapMode number
---@field public localBounds CS.UnityEngine.Bounds
---@field public legacy boolean
---@field public humanMotion boolean
---@field public empty boolean
---@field public hasGenericRootTransform boolean
---@field public hasMotionFloatCurves boolean
---@field public hasMotionCurves boolean
---@field public hasRootCurves boolean
---@type CS.UnityEngine.AnimationClip
CS.UnityEngine.AnimationClip = { }
---@return CS.UnityEngine.AnimationClip
function CS.UnityEngine.AnimationClip.New() end
---@param evt CS.UnityEngine.AnimationEvent
function CS.UnityEngine.AnimationClip:AddEvent(evt) end
---@param go CS.UnityEngine.GameObject
---@param time number
function CS.UnityEngine.AnimationClip:SampleAnimation(go, time) end
---@param relativePath string
---@param t string
---@param propertyName string
---@param curve CS.UnityEngine.AnimationCurve
function CS.UnityEngine.AnimationClip:SetCurve(relativePath, t, propertyName, curve) end
function CS.UnityEngine.AnimationClip:EnsureQuaternionContinuity() end
function CS.UnityEngine.AnimationClip:ClearCurves() end
return CS.UnityEngine.AnimationClip
|
local Random = BrickColor.Random()
local asin = math.asin
local atan2 = math.atan2
local rad = math.rad
local sin = math.sin
local abs = math.abs
local ceil = math.ceil
local cos = math.cos
local pi = math.pi
local rclcount = 0
local rcl = 0
local rclcounttime = 50
local rclcountspeed = 1
local player = game.Players.LocalPlayer
local pchar = player.Character
local torso = pchar.Torso
local mouse = player:GetMouse()
local attack = false
local combo = 0
pchar.Archivable=true
Cols={"Black","Really black","Royal purple","Alder","Magenta"}
function stick(x, y)
weld = Instance.new("Motor")
weld.Name='mot'
weld.Part0 = x
weld.Part1 = y
local HitPos = x.Position
local CJ = CFrame.new(HitPos)
local C0 = x.CFrame:inverse() *CJ
local C1 = y.CFrame:inverse() * CJ
weld.C0 = C0
weld.C1 = C1
weld.Parent = x
end
do
local function QuaternionFromCFrame(cf) local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() local trace = m00 + m11 + m22 if trace > 0 then local s = math.sqrt(1 + trace) local recip = 0.5/s return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 else local i = 0 if m11 > m00 then i = 1 end if m22 > (i == 0 and m00 or m11) then i = 2 end if i == 0 then local s = math.sqrt(m00-m11-m22+1) local recip = 0.5/s return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip elseif i == 1 then local s = math.sqrt(m11-m22-m00+1) local recip = 0.5/s return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip elseif i == 2 then local s = math.sqrt(m22-m00-m11+1) local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip end end end
local function QuaternionToCFrame(px, py, pz, x, y, z, w) local xs, ys, zs = x + x, y + y, z + z local wx, wy, wz = w*xs, w*ys, w*zs local xx = x*xs local xy = x*ys local xz = x*zs local yy = y*ys local yz = y*zs local zz = z*zs return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy)) end
local function QuaternionSlerp(a, b, t) local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] local startInterp, finishInterp; if cosTheta >= 0.0001 then if (1 - cosTheta) > 0.0001 then local theta = math.acos(cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((1-t)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = 1-t finishInterp = t end else if (1+cosTheta) > 0.0001 then local theta = math.acos(-cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((t-1)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = t-1 finishInterp = t end end return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp end
function clerp(a,b,t)
local qa = {QuaternionFromCFrame(a)}
local qb = {QuaternionFromCFrame(b)}
local ax, ay, az = a.x, a.y, a.z
local bx, by, bz = b.x, b.y, b.z
local _t = 1-t
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
end
end
Part = function(x,y,z,color,tr,cc,an,parent)
local p = Instance.new('Part',parent or Weapon)
p.formFactor = 'Custom'
p.Size = Vector3.new(x,y,z)
p.BrickColor = BrickColor.new(color)
p.CanCollide = cc
p.Transparency = tr
p.Anchored = an
p.TopSurface,p.BottomSurface = 0,0
p.Locked=true
p:BreakJoints()
return p
end
wPart = function(x,y,z,color,tr,cc,an,parent)
local wp = Instance.new('WedgePart',parent or Weapon)
wp.formFactor = 'Custom'
wp.Size = Vector3.new(x,y,z)
wp.BrickColor = BrickColor.new(color)
wp.CanCollide = cc
wp.Transparency = tr
wp.Anchored = an
wp.TopSurface,wp.BottomSurface = 0,0
return wp
end
local function CFrameFromTopBack(at, top, back)
local right = top:Cross(back)
return CFrame.new(at.x, at.y, at.z,
right.x, top.x, back.x,
right.y, top.y, back.y,
right.z, top.z, back.z)
end
function Triangle(a, b, c)
local edg1 = (c-a):Dot((b-a).unit)
local edg2 = (a-b):Dot((c-b).unit)
local edg3 = (b-c):Dot((a-c).unit)
if edg1 <= (b-a).magnitude and edg1 >= 0 then
a, b, c = a, b, c
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
a, b, c = b, c, a
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
a, b, c = c, a, b
else
print("unreachable")
end
local len1 = (c-a):Dot((b-a).unit)
local len2 = (b-a).magnitude - len1
local width = (a + (b-a).unit*len1 - c).magnitude
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
local list = {}
if len1 > 0.01 then
local w1 = wPart(0,0,0,'Really black',0.5,false,true,pchar)
local sz = Vector3.new(0.2, width, len1)
w1.Size = sz
local sp = Mesh(w1,2,0,0,0)
sp.MeshType='Wedge'
sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
w1:BreakJoints()
w1.Anchored = true
w1.Transparency = 0.7
Spawn(function()
for i=0,1,0.1 do
wait()
w1.Transparency=w1.Transparency+0.03
end
end)
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
table.insert(list,w1)
end
if len2 > 0.01 then
local w2 = wPart(0,0,0,'Really black',0.5,false,true,pchar)
local sz = Vector3.new(0.2, width, len2)
w2.Size = sz
local sp = Mesh(w2,2,0,0,0)
sp.MeshType='Wedge'
sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
w2:BreakJoints()
w2.Anchored = true
w2.Transparency = 0.7
Spawn(function()
for i=0,1,0.1 do
wait()
w2.Transparency=w2.Transparency+0.03
end
end)
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
table.insert(list,w2)
end
return unpack(list)
end
function mgblock(pa,cfr,tm,col1,col2,sz,wa)
local cols={col1,col2}
Spawn(function()
for i=1,tm do
local a= Part(1,1,1,cols[math.random(1,2)],0,false,true,pchar)
curre=a
v1,v2,v3=sz.x,sz.y,sz.z
local m= Mesh(a,3,v1,v2,v3)
a.CFrame=pa.CFrame*cfr*CFrame.Angles(math.random(),math.random(),math.random())
Spawn(function()
while wait() do
if a.Transparency >= 1 then a:Destroy() break end
m.Scale=m.Scale-Vector3.new(.1,0.1,0.1)
a.CFrame=a.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.1,0)
a.Transparency=a.Transparency+0.05
end
end)
wait(wa)
end
end)
return curre
end
function trail(p,t,h)
Spawn(function()
local blcf = p.CFrame
local scfr = blcf
for i=1,t do
local blcf = p.CFrame
if scfr and (p.Position-scfr.p).magnitude > .1 then
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
if a then game.Debris:AddItem(a,1) end
if b then game.Debris:AddItem(b,1) end
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
if a then game.Debris:AddItem(a,1) end
if b then game.Debris:AddItem(b,1) end
scfr = blcf
elseif not scfr then
scfr = blcf
end
game:service'RunService'.RenderStepped:wait()
end
scfr=nil
end)
end
function cloneefx()
for _,v in pairs(pchar:GetChildren()) do
if v.ClassName=="Part" then
local efx=v:Clone()
efx.CanCollide=true
efx.Anchored=true
efx.Parent=workspace
efx.BrickColor=BrickColor.new("Really black")
efx:BreakJoints()
Spawn(function()
for i=1,10 do wait(.05)
efx.Transparency=efx.Transparency+.1
end
efx:Destroy()
end)
end
end
end
so = function(id,par,lo,pi,tm)
local s = Instance.new("Sound",par)
s.Looped=lo
s.Pitch=pi
s.SoundId = "http://roblox.com/asset/?id="..id
s:play()
s.Volume=10
game.Debris:AddItem(s,tm)
return s
end
function posfix(nom)
Spawn(function()
local bg=Instance.new("BodyGyro",pchar.Torso)
bg.maxTorque=Vector3.new(0,math.huge,0)
bg.P=5000
bg.D=100
bg.cframe=workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(0,nom,0)
wait(.5)
bg:Destroy()
end)
end
Weld = function(p0,p1,x,y,z,rx,ry,rz,par)
local w = Instance.new('Motor',par or p0)
w.Part0 = p0
w.Part1 = p1
w.C1 = CFrame.new(x,y,z)*CFrame.Angles(rx,ry,rz)
return w
end
Mesh = function(par,num,x,y,z)
local msh = _
if num == 1 then
msh = Instance.new("CylinderMesh",par)
elseif num == 2 then
msh = Instance.new("SpecialMesh",par)
msh.MeshType = 3
elseif num == 3 then
msh = Instance.new("BlockMesh",par)
elseif num == 4 then
msh = Instance.new("SpecialMesh",par)
msh.MeshType = "Torso"
elseif type(num) == 'string' then
msh = Instance.new("SpecialMesh",par)
msh.MeshId = num
end
msh.Scale = Vector3.new(x,y,z)
return msh
end
anglespeed = 1
angle = 0
local function getAngles(cf)
local sx,sy,sz,m00,m01,m02,m10,m11,m12,m20,m21,m22 = cf:components()
return atan2(-m12,m22),asin(m02),atan2(-m01,m00)
end
function explosion(col1,col2,cfr,sz,rng,dmg)
local a= Part(1,1,1,col1,.5,false,true,pchar)
local a2= Part(1,1,1,col2,.5,false,true,pchar)
local a3= Part(1,1,1,col2,.5,false,true,pchar)
v1,v2,v3=sz.x,sz.y,sz.z
local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
a.CFrame=cfr
a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
for i,v in pairs(workspace:children()) do
if v:IsA("Model") and v:findFirstChild("Humanoid") then
if v:findFirstChild("Head") and v:findFirstChild("Torso") then
if (v:findFirstChild("Torso").Position - a.Position).magnitude < rng and v.Name ~= pchar.Name then
v.Humanoid.Health=v.Humanoid.Health-dmg
v.Torso.Velocity=Vector3.new(math.random(-dmg*2,dmg*2),dmg*3,math.random(-dmg*2,dmg*2))
end
end
end
end
Spawn(function()
while true do
wait()
if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
a2.CFrame=a2.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))
a3.CFrame=a3.CFrame*CFrame.Angles(-math.rad(2),-math.rad(2),-math.rad(2))
a.Transparency=a.Transparency+0.05
a2.Transparency=a2.Transparency+0.05
a3.Transparency=a3.Transparency+0.05
end
end)
end
function tmdmg(tm,pa,dmg,rng)
Spawn(function()
for i=1,tm do wait()
for i,v in pairs(workspace:children()) do
if v:IsA("Model") and v:findFirstChild("Humanoid") then
if v:findFirstChild("Head") and v:findFirstChild("Torso") then
if (v:findFirstChild("Torso").Position - pa.Position).magnitude < rng and v.Name ~= pchar.Name then
v.Humanoid.Health=v.Humanoid.Health-dmg
end
end
end
end
end
end)
end
Lerp = {
Number = function(C1,C2,inc)
return C1 + (C2 - C1) * inc
end;
CFrame = function(a,b,m)
local c,d={a:components()},{b:components()}
table.foreach(c,function(a,b)c[a]=c[a]+(d[a]-c[a])*m end)
return CFrame.new(unpack(c))
end;
}
local function genWeld(a,b)
local w = Instance.new("Weld",a)
w.Part0 = a
w.Part1 = b
return w
end
local Neck = genWeld(pchar.Torso,pchar.Head)
Neck.C0 = CFrame.new(0,1,0)
Neck.C1 = CFrame.new(0,-0.5,0)
local LeftShoulder = genWeld(pchar.Torso,pchar['Left Arm'])
LeftShoulder.C0 = CFrame.new(-1,0.5,0)
LeftShoulder.C1 = CFrame.new(0.5,0.5,0)
local RightShoulder = genWeld(pchar.Torso,pchar['Right Arm'])
RightShoulder.C0 = CFrame.new(1,0.5,0)
RightShoulder.C1 = CFrame.new(-0.5,0.5,0)
local LeftHip = genWeld(pchar.Torso,pchar['Left Leg'])
LeftHip.C0 = CFrame.new(-1,-1,0)
LeftHip.C1 = CFrame.new(-0.5,1,0)
local RightHip = genWeld(pchar.Torso,pchar['Right Leg'])
RightHip.C0 = CFrame.new(1,-1,0)
RightHip.C1 = CFrame.new(0.5,1,0)
local RootJoint = genWeld(pchar.HumanoidRootPart,pchar.Torso)
RootJoint.C0 = CFrame.new(0,0,0) * CFrame.Angles(-math.pi/2,0,math.pi)
RootJoint.C1 = CFrame.new(0,0,0) * CFrame.Angles(-math.pi/2,0,math.pi)
local m = Instance.new("Model")
m.Name = "Model"
p1 = Instance.new("Part", m)
p1.BrickColor = Random --BrickColor.new("Royal purple")
p1.FormFactor = Enum.FormFactor.Custom
p1.Size = Vector3.new(0.200000003, 0.400000006, 0.400000006)
p1.CFrame = CFrame.new(-4.38250017, 5.90899992, 11.0679998, -3.24902021e-006, 9.58114477e-010, -0.999992907, -7.26728331e-006, -0.999994278, -8.0171958e-010, -0.999992251, 7.50569825e-006, 3.24877897e-006)
p1.Anchored = true
p1.CanCollide = false
b1 = Instance.new("SpecialMesh", p1)
b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
b1.TextureId = ""
b1.MeshType = Enum.MeshType.FileMesh
b1.Name = "Mesh"
b1.Scale = Vector3.new(0.0900000036, 1.5, 0.200000003)
p2 = Instance.new("Part", m)
p2.BrickColor = BrickColor.new("Really black")
p2.FormFactor = Enum.FormFactor.Custom
p2.Size = Vector3.new(0.200000003, 0.400000006, 0.200000003)
p2.CFrame = CFrame.new(-4.78348494, 1.20046949, 11.0674896, 2.03024854e-007, 0.999994814, 2.68895456e-005, -6.45878536e-005, -2.68897929e-005, 0.999998271, 0.999994814, -2.04498548e-007, 6.45876353e-005)
p2.Anchored = true
p2.CanCollide = false
b2 = Instance.new("SpecialMesh", p2)
b2.MeshId = "http://www.roblox.com/Asset/?id=9756362"
b2.TextureId = ""
b2.MeshType = Enum.MeshType.FileMesh
b2.Name = "Mesh"
b2.Scale = Vector3.new(0.100000001, 0.25999999, 0.100000001)
p3 = Instance.new("Part", m)
p3.BrickColor = Random --BrickColor.new("Royal purple")
p3.FormFactor = Enum.FormFactor.Custom
p3.Size = Vector3.new(0.200000003, 0.400000006, 0.400000006)
p3.CFrame = CFrame.new(-4.78348494, 1.20046949, 11.0674896, 1.35292976e-005, 0.999994814, 2.33750106e-005, 0.499945492, -2.70082237e-005, 0.866054654, 0.866051197, -3.0624193e-008, -0.499943763)
p3.Anchored = true
p3.CanCollide = false
b3 = Instance.new("SpecialMesh", p3)
b3.MeshId = "http://www.roblox.com/Asset/?id=9756362"
b3.TextureId = ""
b3.MeshType = Enum.MeshType.FileMesh
b3.Name = "Mesh"
b3.Scale = Vector3.new(0.100000001, 0.25999999, 0.100000001)
p4 = Instance.new("Part", m)
p4.BrickColor = Random --BrickColor.new("Royal purple")
p4.FormFactor = Enum.FormFactor.Custom
p4.Size = Vector3.new(0.200000003, 0.200000003, 0.400000006)
p4.CFrame = CFrame.new(-3.9834733, 1.20044112, 11.0675144, 1.90376704e-005, 0.999994814, 1.91206054e-005, 0.707060516, -2.69822558e-005, 0.707149625, 0.707147956, 5.72263765e-008, -0.707058728)
p4.Anchored = true
p4.CanCollide = false
b4 = Instance.new("SpecialMesh", p4)
b4.MeshId = "http://www.roblox.com/Asset/?id=9756362"
b4.TextureId = ""
b4.MeshType = Enum.MeshType.FileMesh
b4.Name = "Mesh"
b4.Scale = Vector3.new(0.100000001, 0.25999999, 0.100000001)
p5 = Instance.new("Part", m)
p5.BrickColor = BrickColor.new("Really black")
p5.FormFactor = Enum.FormFactor.Custom
p5.Size = Vector3.new(0.200000003, 0.400000006, 0.200000003)
p5.CFrame = CFrame.new(-3.9834733, 1.20044112, 11.0675144, 2.03024854e-007, 0.999994814, 2.68895456e-005, -6.45878536e-005, -2.68897929e-005, 0.999998271, 0.999994814, -2.04498548e-007, 6.45876353e-005)
p5.Anchored = true
p5.CanCollide = false
b5 = Instance.new("SpecialMesh", p5)
b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
b5.TextureId = ""
b5.MeshType = Enum.MeshType.FileMesh
b5.Name = "Mesh"
b5.Scale = Vector3.new(0.100000001, 0.25999999, 0.100000001)
p6 = Instance.new("Part", m)
p6.BrickColor = Random --BrickColor.new("Royal purple")
p6.Material = Enum.Material.SmoothPlastic
p6.FormFactor = Enum.FormFactor.Custom
p6.Size = Vector3.new(0.200000003, 0.600000143, 1)
p6.CFrame = CFrame.new(-4.38349676, 0.700476408, 11.0674639, 2.03024811e-007, 2.68621734e-005, -0.999994993, -6.45878681e-005, 0.999998331, 2.68624135e-005, 0.999994993, 6.45876644e-005, 2.04505866e-007)
p6.Anchored = true
p6.CanCollide = false
b6 = Instance.new("CylinderMesh", p6)
b6.Name = "Mesh"
b6.Scale = Vector3.new(1, 1.5, 0.100000001)
p7 = Instance.new("Part", m)
p7.BrickColor = Random --BrickColor.new("Royal purple")
p7.Material = Enum.Material.SmoothPlastic
p7.FormFactor = Enum.FormFactor.Custom
p7.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p7.CFrame = CFrame.new(-4.38347578, 0.100488186, 11.0674219, 0.999994993, 2.68598014e-005, -2.10421803e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, 2.08939497e-007, 6.46425033e-005, 0.999994993)
p7.Anchored = true
p7.CanCollide = false
b7 = Instance.new("SpecialMesh", p7)
b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
b7.TextureId = ""
b7.MeshType = Enum.MeshType.FileMesh
b7.Name = "Mesh"
b7.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p8 = Instance.new("Part", m)
p8.BrickColor = BrickColor.new("Really black")
p8.Material = Enum.Material.SmoothPlastic
p8.FormFactor = Enum.FormFactor.Custom
p8.Size = Vector3.new(0.200000003, 0.80000037, 0.200000003)
p8.CFrame = CFrame.new(-4.44335222, 6.31963682, 11.0678616, -2.03024811e-007, 2.68621734e-005, 0.999994993, 6.45878681e-005, 0.999998331, -2.68624135e-005, -0.999994993, 6.45876644e-005, -2.04505866e-007)
p8.Anchored = true
p8.CanCollide = false
b8 = Instance.new("SpecialMesh", p8)
b8.MeshType = Enum.MeshType.Wedge
b8.Name = "Mesh"
b8.Scale = Vector3.new(0.400000006, 1, 0.600000024)
p9 = Instance.new("Part", m)
p9.BrickColor = BrickColor.new("Really black")
p9.Material = Enum.Material.SmoothPlastic
p9.FormFactor = Enum.FormFactor.Custom
p9.Size = Vector3.new(0.200000003, 0.600000024, 0.200000003)
p9.CFrame = CFrame.new(-4.38343573, 1.70038664, 11.0675249, 2.03024811e-007, 2.68621734e-005, -0.999994993, -6.45878681e-005, 0.999998331, 2.68624135e-005, 0.999994993, 6.45876644e-005, 2.04505866e-007)
p9.Anchored = true
p9.CanCollide = false
b9 = Instance.new("BlockMesh", p9)
b9.Name = "Mesh"
b9.Scale = Vector3.new(0.449999988, 1.10000002, 0.150000006)
handl = Instance.new("Part", m)
handl.BrickColor = BrickColor.new("Really black")
handl.Material = Enum.Material.SmoothPlastic
handl.Name = "handle"
handl.FormFactor = Enum.FormFactor.Custom
handl.Size = Vector3.new(0.200000003, 0.600000024, 0.200000003)
handl.CFrame = CFrame.new(-4.38349676, 0.700476408, 11.0674639, 2.03024811e-007, 2.68621734e-005, -0.999994993, -6.45878681e-005, 0.999998331, 2.68624135e-005, 0.999994993, 6.45876644e-005, 2.04505866e-007)
handl.Anchored = true
handl.CanCollide = false
b10 = Instance.new("BlockMesh", handl)
b10.Name = "Mesh"
b10.Scale = Vector3.new(0.5, 1.5, 0.150000006)
p11 = Instance.new("Part", m)
p11.BrickColor = BrickColor.new("Really black")
p11.Material = Enum.Material.SmoothPlastic
p11.FormFactor = Enum.FormFactor.Custom
p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
p11.CFrame = CFrame.new(-4.3834815, 1.20045376, 11.0674934, 0.000361636019, 0.000304358749, -0.999994814, -0.999998271, -0.000127056977, -0.000361675629, -0.000127166844, 0.999994755, 0.000304312387)
p11.Anchored = true
p11.CanCollide = false
p11.BottomSurface = Enum.SurfaceType.Smooth
p11.TopSurface = Enum.SurfaceType.Smooth
b11 = Instance.new("SpecialMesh", p11)
b11.MeshId = "http://www.roblox.com/asset/?id=16606212"
b11.TextureId = ""
b11.MeshType = Enum.MeshType.FileMesh
b11.Name = "Mesh"
b11.Scale = Vector3.new(0.0500000007, 0.0599999987, 0.219999999)
p12 = Instance.new("Part", m)
p12.BrickColor = Random --BrickColor.new("Royal purple")
p12.Material = Enum.Material.SmoothPlastic
p12.FormFactor = Enum.FormFactor.Custom
p12.Size = Vector3.new(0.600000024, 0.400000036, 0.400000006)
p12.CFrame = CFrame.new(-4.38352394, 0.900473356, 11.0674744, 0.999994993, -2.10422286e-007, -2.68598014e-005, -2.68600634e-005, -6.46624612e-005, -0.999998331, 2.08939497e-007, 0.999994993, -6.46621702e-005)
p12.Anchored = true
p12.CanCollide = false
b12 = Instance.new("SpecialMesh", p12)
b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
b12.TextureId = ""
b12.MeshType = Enum.MeshType.FileMesh
b12.Name = "Mesh"
b12.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
p13 = Instance.new("Part", m)
p13.BrickColor = BrickColor.new("Really black")
p13.Material = Enum.Material.SmoothPlastic
p13.FormFactor = Enum.FormFactor.Custom
p13.Size = Vector3.new(0.200000003, 1.79999995, 0.200000003)
p13.CFrame = CFrame.new(-4.38342142, 3.50038433, 11.0676756, 2.03024811e-007, 2.68621734e-005, -0.999994993, -6.45878681e-005, 0.999998331, 2.68624135e-005, 0.999994993, 6.45876644e-005, 2.04505866e-007)
p13.Anchored = true
p13.CanCollide = false
b13 = Instance.new("BlockMesh", p13)
b13.Name = "Mesh"
b13.Scale = Vector3.new(0.400000006, 2.70000005, 1.25)
p14 = Instance.new("Part", m)
p14.BrickColor = Random --BrickColor.new("Royal purple")
p14.Material = Enum.Material.SmoothPlastic
p14.FormFactor = Enum.FormFactor.Custom
p14.Size = Vector3.new(0.200000003, 0.800000012, 0.200000003)
p14.CFrame = CFrame.new(-4.3834815, 1.20045376, 11.0674934, 2.03024854e-007, 0.999994814, 2.68895456e-005, -6.45878536e-005, -2.68897929e-005, 0.999998271, 0.999994814, -2.04498548e-007, 6.45876353e-005)
p14.Anchored = true
p14.CanCollide = false
b14 = Instance.new("CylinderMesh", p14)
b14.Name = "Mesh"
b14.Scale = Vector3.new(1, 0.860000014, 0.349999994)
p15 = Instance.new("Part", m)
p15.BrickColor = Random --BrickColor.new("Royal purple")
p15.Material = Enum.Material.SmoothPlastic
p15.FormFactor = Enum.FormFactor.Custom
p15.Size = Vector3.new(0.200000003, 0.400000006, 0.200000003)
p15.CFrame = CFrame.new(-4.38351488, 1.00045681, 11.067482, 0.999994993, -2.10422286e-007, -2.68598014e-005, -2.68600634e-005, -6.46624612e-005, -0.999998331, 2.08939497e-007, 0.999994993, -6.46621702e-005)
p15.Anchored = true
p15.CanCollide = false
b15 = Instance.new("SpecialMesh", p15)
b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
b15.TextureId = ""
b15.MeshType = Enum.MeshType.FileMesh
b15.Name = "Mesh"
b15.Scale = Vector3.new(0.200000003, 0.200000003, 0.400000006)
p16 = Instance.new("Part", m)
p16.BrickColor = Random --BrickColor.new("Royal purple")
p16.Material = Enum.Material.SmoothPlastic
p16.FormFactor = Enum.FormFactor.Custom
p16.Size = Vector3.new(1, 0.200000003, 0.400000036)
p16.CFrame = CFrame.new(-4.3834815, 1.20045376, 11.0674934, 0.999994993, 2.10420296e-007, 2.68598014e-005, -2.68600634e-005, 6.45879554e-005, 0.999998331, 2.08939497e-007, -0.999994993, 6.45876644e-005)
p16.Anchored = true
p16.CanCollide = false
b16 = Instance.new("CylinderMesh", p16)
b16.Name = "Mesh"
b16.Scale = Vector3.new(1, 0.899999976, 0.899999976)
p17 = Instance.new("Part", m)
p17.BrickColor = Random --BrickColor.new("Royal purple")
p17.Material = Enum.Material.SmoothPlastic
p17.FormFactor = Enum.FormFactor.Custom
p17.Size = Vector3.new(0.200000033, 0.200000003, 0.400000006)
p17.CFrame = CFrame.new(-4.3834815, 1.20045376, 11.0674934, 0.999994993, 1.22376412e-006, 2.79684682e-005, -2.79687956e-005, 6.45115288e-005, 0.999998331, 1.22221331e-006, -0.999994993, 6.45113687e-005)
p17.Anchored = true
p17.CanCollide = false
b17 = Instance.new("CylinderMesh", p17)
b17.Name = "Mesh"
b17.Scale = Vector3.new(1, 1.10000002, 0.25)
p18 = Instance.new("Part", m)
p18.BrickColor = BrickColor.new("Really black")
p18.Material = Enum.Material.SmoothPlastic
p18.FormFactor = Enum.FormFactor.Custom
p18.Size = Vector3.new(0.600000024, 0.200000003, 0.400000006)
p18.CFrame = CFrame.new(-4.3834815, 1.20045376, 11.0674934, 0.999994993, 2.10420296e-007, 2.68598014e-005, -2.68600634e-005, 6.45879554e-005, 0.999998331, 2.08939497e-007, -0.999994993, 6.45876644e-005)
p18.Anchored = true
p18.CanCollide = false
b18 = Instance.new("CylinderMesh", p18)
b18.Name = "Mesh"
b18.Scale = Vector3.new(1, 1, 0.5)
p19 = Instance.new("Part", m)
p19.BrickColor = BrickColor.new("Really black")
p19.Material = Enum.Material.SmoothPlastic
p19.FormFactor = Enum.FormFactor.Custom
p19.Size = Vector3.new(0.200000003, 0.80000037, 0.200000003)
p19.CFrame = CFrame.new(-4.32335329, 6.31963253, 11.0678616, 1.78813934e-007, 2.67998621e-005, -0.999994993, -6.46066765e-005, 0.999998331, 2.68001022e-005, 0.999994993, 6.46064655e-005, 1.78813934e-007)
p19.Anchored = true
p19.CanCollide = false
b19 = Instance.new("SpecialMesh", p19)
b19.MeshType = Enum.MeshType.Wedge
b19.Name = "Mesh"
b19.Scale = Vector3.new(0.400000006, 1, 0.600000024)
blade = Instance.new("Part", m)
blade.BrickColor = Random --BrickColor.new("Royal purple")
blade.Material = Enum.Material.SmoothPlastic
blade.Name = "blade"
blade.FormFactor = Enum.FormFactor.Custom
blade.Size = Vector3.new(0.200000003, 1.79999995, 0.200000003)
blade.CFrame = CFrame.new(-4.38342142, 3.50038433, 11.0676756, 2.03024811e-007, 2.68621734e-005, -0.999994993, -6.45878681e-005, 0.999998331, 2.68624135e-005, 0.999994993, 6.45876644e-005, 2.04505866e-007)
blade.Anchored = true
blade.CanCollide = false
b20 = Instance.new("BlockMesh", blade)
b20.Name = "Mesh"
b20.Scale = Vector3.new(0.419999987, 2.70000005, 0.5)
p21 = Instance.new("Part", m)
p21.BrickColor = Random --BrickColor.new("Royal purple")
p21.Material = Enum.Material.SmoothPlastic
p21.FormFactor = Enum.FormFactor.Custom
p21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p21.CFrame = CFrame.new(-4.87347412, 1.20048833, 11.067421, 0.999994993, 2.68597978e-005, -1.63912773e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, 1.63912773e-007, 6.46424742e-005, 0.999994993)
p21.Anchored = true
p21.CanCollide = false
b21 = Instance.new("SpecialMesh", p21)
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
b21.TextureId = ""
b21.MeshType = Enum.MeshType.FileMesh
b21.Name = "Mesh"
b21.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p22 = Instance.new("Part", m)
p22.BrickColor = BrickColor.new("Really black")
p22.Material = Enum.Material.SmoothPlastic
p22.FormFactor = Enum.FormFactor.Custom
p22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p22.CFrame = CFrame.new(-4.6434741, 1.36048794, 11.0674219, 0.999994993, 2.68597978e-005, -1.63912773e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, 1.63912773e-007, 6.46424742e-005, 0.999994993)
p22.Anchored = true
p22.CanCollide = false
b22 = Instance.new("SpecialMesh", p22)
b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
b22.TextureId = ""
b22.MeshType = Enum.MeshType.FileMesh
b22.Name = "Mesh"
b22.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p23 = Instance.new("Part", m)
p23.BrickColor = BrickColor.new("Really black")
p23.Material = Enum.Material.SmoothPlastic
p23.FormFactor = Enum.FormFactor.Custom
p23.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p23.CFrame = CFrame.new(-4.6434741, 1.05048847, 11.0674219, 0.999994993, 2.68597978e-005, -1.63912773e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, 1.63912773e-007, 6.46424742e-005, 0.999994993)
p23.Anchored = true
p23.CanCollide = false
b23 = Instance.new("SpecialMesh", p23)
b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
b23.TextureId = ""
b23.MeshType = Enum.MeshType.FileMesh
b23.Name = "Mesh"
b23.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p24 = Instance.new("Part", m)
p24.BrickColor = BrickColor.new("Really black")
p24.FormFactor = Enum.FormFactor.Custom
p24.Size = Vector3.new(0.200000003, 0.400000006, 0.400000006)
p24.CFrame = CFrame.new(-4.38800001, 3.43899989, 11.0679998, -3.24902021e-006, 9.58114477e-010, -0.999992907, -7.26728331e-006, -0.999994278, -8.0171958e-010, -0.999992251, 7.50569825e-006, 3.24877897e-006)
p24.Anchored = true
p24.CanCollide = false
b24 = Instance.new("SpecialMesh", p24)
b24.MeshId = "http://www.roblox.com/Asset/?id=9756362"
b24.TextureId = ""
b24.MeshType = Enum.MeshType.FileMesh
b24.Name = "Mesh"
b24.Scale = Vector3.new(0.100000001, 1.5, 0.100000001)
p25 = Instance.new("Part", m)
p25.BrickColor = BrickColor.new("Really black")
p25.Material = Enum.Material.SmoothPlastic
p25.FormFactor = Enum.FormFactor.Custom
p25.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p25.CFrame = CFrame.new(-4.12346935, 1.36048794, 11.0674219, -0.999994993, -2.6859796e-005, 1.78813934e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, -1.78813934e-007, -6.46425033e-005, -0.999994993)
p25.Anchored = true
p25.CanCollide = false
b25 = Instance.new("SpecialMesh", p25)
b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
b25.TextureId = ""
b25.MeshType = Enum.MeshType.FileMesh
b25.Name = "Mesh"
b25.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p26 = Instance.new("Part", m)
p26.BrickColor = Random --BrickColor.new("Royal purple")
p26.Material = Enum.Material.SmoothPlastic
p26.FormFactor = Enum.FormFactor.Custom
p26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p26.CFrame = CFrame.new(-3.89346814, 1.20048833, 11.0674229, -0.999994993, -2.6859796e-005, 1.78813934e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, -1.78813934e-007, -6.46425033e-005, -0.999994993)
p26.Anchored = true
p26.CanCollide = false
b26 = Instance.new("SpecialMesh", p26)
b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
b26.TextureId = ""
b26.MeshType = Enum.MeshType.FileMesh
b26.Name = "Mesh"
b26.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p27 = Instance.new("Part", m)
p27.BrickColor = BrickColor.new("Really black")
p27.Material = Enum.Material.SmoothPlastic
p27.FormFactor = Enum.FormFactor.Custom
p27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p27.CFrame = CFrame.new(-4.12346935, 1.05048847, 11.0674219, -0.999994993, -2.6859796e-005, 1.78813934e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, -1.78813934e-007, -6.46425033e-005, -0.999994993)
p27.Anchored = true
p27.CanCollide = false
b27 = Instance.new("SpecialMesh", p27)
b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
b27.TextureId = ""
b27.MeshType = Enum.MeshType.FileMesh
b27.Name = "Mesh"
b27.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
p28 = Instance.new("Part", m)
p28.BrickColor = BrickColor.new("Really black")
p28.Material = Enum.Material.SmoothPlastic
p28.FormFactor = Enum.FormFactor.Custom
p28.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
p28.CFrame = CFrame.new(-4.12346935, 1.36048794, 11.0674219, -0.999994993, -2.6859796e-005, 1.78813934e-007, -2.68600634e-005, 0.999998331, -6.46428016e-005, -1.78813934e-007, -6.46425033e-005, -0.999994993)
p28.Anchored = true
p28.CanCollide = false
b28 = Instance.new("SpecialMesh", p28)
b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
b28.TextureId = ""
b28.MeshType = Enum.MeshType.FileMesh
b28.Name = "Mesh"
b28.Scale = Vector3.new(0.280000001, 0.280000001, 0.5)
c = m:children()
for n = 1, #c do
if (c[n].className == "Part") then
if (c[n].Name ~= "handle") then
stick(c[n], m.handle)
wait()
c[n].Anchored = false
end
end
end
for _,v in pairs(pchar:GetChildren()) do if v.ClassName=="Hat" then v:remove() end end
handl.Anchored=false
mwl= Weld(handl,pchar.Torso,-1,0,-1,rad(120),0,0,m)
m.Parent = pchar
hp=Instance.new('HopperBin',player.Backpack)
hp.Name='Despira'
local hat=Part(.5,1,1.02,'Really black',0,false,false,pchar)
Mesh(hat,'http://www.roblox.com/asset/?id=16952952',1.05,1.05,1.05)
Weld(pchar.Head,hat,0,-.25,0,0,0,0,p)
-- cape mesh cause lazy :p
local cpw=Part(.2,.2,.2,'White',1,false,false,pchar)
Weld(torso,cpw,0,-1,-.5,0,0,0,p)
local cp=Part(.1,.1,.1,'Really black',0,false,false,pchar)
Mesh(cp,'http://www.roblox.com/asset/?id=114046169',1.3,1.3,1.3)
cape = Weld(cpw,cp,0,1.2,0,0,0,0,p)
local function newLerpTo(weld)
return {
Weld = weld;
To = weld.C0;
Cache = weld.C0;
Speed = 0.2;
}
end
Used={Head=false,RightArm=false,LeftArm=false,RightLeg=false,LeftLeg=false,Torso=false}
function SetAnimData(IF_DATA_IS_USED)
Used = IF_DATA_IS_USED
end
function CheckAnimData(ANIM_TAB,DO_ANIM)
anglespeed=Anims[ANIM_TAB][DO_ANIM].speed or 1
if Used.Head == true then
LerpTo.Neck.To = LerpTo.Neck.Cache * Anims[ANIM_TAB][DO_ANIM].Head
end
if Used.RightArm == true then
LerpTo.RightArm.To = LerpTo.RightArm.Cache * Anims[ANIM_TAB][DO_ANIM].RightArm
end
if Used.LeftArm == true then
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * Anims[ANIM_TAB][DO_ANIM].LeftArm
end
if Used.RightLeg == true then
LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * Anims[ANIM_TAB][DO_ANIM].RightLeg
end
if Used.LeftLeg == true then
LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * Anims[ANIM_TAB][DO_ANIM].LeftLeg
end
if Used.Torso == true then
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * Anims[ANIM_TAB][DO_ANIM].Torso
end
LerpTo.cape.To = LerpTo.cape.Cache * Anims[ANIM_TAB][DO_ANIM].Cape
end
function UpdateAnims()
Anims = {
["Idle"] = {
["Stance"] = {
speed=.25,
Head = CFrame.Angles(cos(angle)*0.01,0,0),
RightArm = CFrame.Angles(cos(angle)*0.1,0,0),
LeftArm = CFrame.Angles(-cos(angle)*0.1,0,0),
RightLeg = CFrame.Angles(cos(angle)*0.1,0,0),
LeftLeg = CFrame.Angles(-cos(angle)*0.1,0,0),
Torso = CFrame.Angles(0,0,0),
Cape = CFrame.Angles(0,0,0)
},
["Walk"] = {
speed=2,
Head = CFrame.Angles(0,0,cos(angle)*0.05),
RightArm = CFrame.Angles(-cos(angle)*1,0,0),
LeftArm = CFrame.Angles(cos(angle)*1,0,0),
RightLeg = CFrame.Angles(cos(angle)*1,0,0),
LeftLeg = CFrame.Angles(-cos(angle)*1,0,0),
Torso = CFrame.Angles(0,0,0),
Cape =CFrame.Angles(-rad(40)+sin(angle)*.1,0,0)
},
["Jump"] = {
speed=2,
Head = CFrame.Angles(0,0,0),
RightArm = CFrame.Angles(rad(-20),0,0),
LeftArm = CFrame.Angles(rad(-20),0,0),
RightLeg = CFrame.new(0,.5,-.5)*CFrame.Angles(rad(-20),0,0),
LeftLeg = CFrame.Angles(0,0,0),
Torso = CFrame.Angles(rad(10),0,0),
Cape = CFrame.Angles(-rad(70)+sin(angle)*.4,0,0)
}
},
["Holding"] = {
["Stance"] = {
speed=.25,
Head = CFrame.Angles(cos(angle)*0.01,0,0),
RightArm = CFrame.Angles(cos(angle)*0.1,0,rad(10)),
LeftArm = CFrame.Angles(-cos(angle)*0.1,0,-rad(10)),
RightLeg = CFrame.Angles(cos(angle)*0.1,0,0),
LeftLeg = CFrame.Angles(-cos(angle)*0.1,0,0),
Torso = CFrame.Angles(0,0,0),
Cape = CFrame.Angles(0,0,0)
},
["Walk"] = {
speed=2,
Head = CFrame.Angles(0,0,cos(angle)*0.05),
RightArm = CFrame.Angles(-cos(angle)*.3,0,rad(10)),
LeftArm = CFrame.Angles(cos(angle)*.3,0,-rad(10)),
RightLeg = CFrame.Angles(cos(angle)*1,0,0),
LeftLeg = CFrame.Angles(-cos(angle)*1,0,0),
Torso = CFrame.Angles(0,0,0),
Cape =CFrame.Angles(-rad(40)+sin(angle)*.1,0,0)
},
["Jump"] = {
speed=2,
Head = CFrame.Angles(0,0,0),
RightArm = CFrame.Angles(rad(-20),0,0),
LeftArm = CFrame.Angles(rad(-20),0,0),
RightLeg = CFrame.new(0,.5,-.5)*CFrame.Angles(rad(-20),0,0),
LeftLeg = CFrame.Angles(0,0,0),
Torso = CFrame.Angles(rad(10),0,0),
Cape = CFrame.Angles(-rad(70)+sin(angle)*.4,0,0)
}
}
}
end
LerpTo = {
Neck = newLerpTo(Neck);
LeftArm = newLerpTo(LeftShoulder);
RightArm = newLerpTo(RightShoulder);
LeftLeg = newLerpTo(LeftHip);
RightLeg = newLerpTo(RightHip);
RootJoint = newLerpTo(RootJoint);
hndl = newLerpTo(mwl);
cape = newLerpTo(cape);
}
LerpTo.hndl.Cache=CFrame.new(0,-0.3,0)*CFrame.Angles(0,0,rad(90))
hitdeb=false
hp.Selected:connect(function(mouse)
local jmptimer = 0
mouse.Button1Down:connect(function()
if attack == true then return end
if combo==0 then
attack=true
tmdmg(10,blade,5,3)
SetAnimData({Head=false,RightArm=false,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=false})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(120),rad(40),-rad(50))*CFrame.new(0,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(30),0)
wait(.1)
trail(blade,10,5)
so('161006212',torso,false,1)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(0,0,rad(50))*CFrame.new(0,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(30),0)
wait(.2)
attack=false
combo=1
elseif combo==1 then
attack=true
tmdmg(10,blade,5,3)
SetAnimData({Head=false,RightArm=false,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=false})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(150),0,rad(120))*CFrame.new(-.5,0,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(30),0)
wait(.1)
trail(blade,10,5)
so('161006212',torso,false,.8)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(70),0,-rad(50))*CFrame.new(.5,0,-0.5)*CFrame.Angles(0,-rad(90),0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(70))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(70),0)
wait(.2)
attack=false
combo=2
elseif combo==2 then
attack=true
trail(blade,35,5)
tmdmg(10,blade,5,3)
so('160069154',torso,false,1)
SetAnimData({Head=false,RightArm=false,LeftArm=false,RightLeg=true,LeftLeg=true,Torso=false})
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,0,0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,-rad(40))*CFrame.new(0,-.5,0)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(90),0,rad(40))*CFrame.new(0,-.5,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(rad(90),0,0)
local spn=0
for i=1,15 do
spn=spn+30
wait(i/1000)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(spn)+rad(70))
end
attack=false
combo=3
end
Spawn(function()
wait(0.6)
if attack==false then
attack=true
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
wait(.2)
attack=false
combo=0
end
end)
end)
mouse.KeyDown:connect(function(ke)
if attack==true then return end
key=ke:lower()
if key=="e" then attack=true
SetAnimData({Head=false,RightArm=false,LeftArm=false,RightLeg=true,LeftLeg=true,Torso=false})
posfix(-rad(90))
LerpTo.hndl.To = CFrame.new(0,-0.3,0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,rad(30))
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(90))*CFrame.new(0.5,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(90))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(90),0)
wait(.3)
mgblock(pchar['Left Arm'],CFrame.new(0,-1,0),7,'Really black','Royal purple',Vector3.new(1.5,1.5,1.5),.1)
so('28257433',pchar.Torso,false,.8)
local efx= Part(1,1,1,'Black',0,false,true,pchar)
local m= Mesh(efx,'http://www.roblox.com/asset/?id=51177741',2,2,2)
efx.CFrame=pchar['Left Arm'].CFrame*CFrame.Angles(-rad(90),0,rad(90))
local cb=Part(1,1,1,'Black',0,false,true,pchar)
Mesh(cb,1,1,1,1)
for i=1,20 do wait()
efx.CFrame=clerp(efx.CFrame,efx.CFrame*CFrame.new(0,0,-50),.1)
local p=Part(1,1,1,Cols[math.random(1,#Cols)],0,false,true,pchar)
Mesh(p,3,1.5,1.5,1.5)
p.CFrame=efx.CFrame
cb.Size = Vector3.new(.5, (pchar['Left Arm'].Position - efx.Position).magnitude, .5)
cb.CFrame = CFrame.new((pchar['Left Arm'].Position + efx.Position)/2, pchar['Left Arm'].Position) * CFrame.Angles(math.pi/2, 0, 0)
coroutine.resume(coroutine.create(function(part,spin)
for i=1, 15 do
part.Mesh.Scale=part.Mesh.Scale+Vector3.new(.3,.3,.3)
part.Transparency=i/15
part.CFrame=part.CFrame*CFrame.new(math.random(-10,10)/3,math.random(-10,10)/3,math.random(-10,10)/3)*spin
wait()
end
part.Parent=nil
end),p,CFrame.fromEulerAnglesXYZ(math.random(-50,50)/500,math.random(-50,50)/500,math.random(-50,50)/500))
if hitdeb==false then
for i,v in pairs(workspace:children()) do
if v:IsA("Model") and v:findFirstChild("Humanoid") then
if v:findFirstChild("Head") and v:findFirstChild("Torso") then
if (v:findFirstChild("Torso").Position - efx.Position).magnitude < 7 and v.Name ~= pchar.Name then
damg=math.random(5,10)
v.Humanoid:TakeDamage(damg)
v.Humanoid.PlatformStand=true
local lock=Weld(efx,v.Torso,0,0,0,0,0,0,v)
local asd=true
Spawn(function()
while asd do wait()
efx.CFrame=clerp(efx.CFrame,pchar.HumanoidRootPart.CFrame*CFrame.new(0,0,-7),.2)
cb.Size = Vector3.new(.5, (pchar['Left Arm'].Position - efx.Position).magnitude, .5)
cb.CFrame = CFrame.new((pchar['Left Arm'].Position + efx.Position)/2, pchar['Left Arm'].Position) * CFrame.Angles(math.pi/2, 0, 0)
end
end)
wait(.1)
for i=1,10 do wait()
efx.Transparency=efx.Transparency+.1
end
trail(blade,35,5)
tmdmg(10,blade,5,3)
so('160069154',torso,false,1.1)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(90),0,rad(45))
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(90))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(90),0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,rad(90))*CFrame.new(-0.5,-.5,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(rad(90),0,rad(90))
wait(.05)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(90))*CFrame.new(0.5,-.5,0)
mgblock(pchar['Left Arm'],CFrame.new(0,-1,0),7,'Really black','Royal purple',Vector3.new(1.5,1.5,1.5),.1)
local spn=0
for i=1,12 do
spn=spn+30
wait()
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(spn)-rad(90))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(spn)+rad(90),0)
end
wait(.3)
asd=false
so('28144425',torso,false,.265)
so('2697431',torso,false,.2)
local splos= Part(1,1,1,'Really black',.5,false,true,pchar)
local m= Mesh(splos,'http://www.roblox.com/asset/?id=20329976',3,1,3)
splos.CFrame=torso.CFrame*CFrame.new(-3,0,0)*CFrame.Angles(0,0,-pi/2)
Spawn(function()
for i=1,10 do wait(.01)
m.Scale=m.Scale+Vector3.new(1,.2,1)
splos.Transparency=splos.Transparency+.1
end
splos:Destroy()
end)
for i=1,3 do
for i=1,3 do
mgblock(v.Torso,CFrame.new(math.random(-3,3)/2,math.random(-3,3)/2,math.random(-3,3)/2),2,'Really black','Royal purple',Vector3.new(.1,.1,.1),0)
end
end
efx:Destroy()
cb:Destroy()
lock:Destroy()
mgblock(v.Torso,CFrame.new(math.random(-3,3)/2,math.random(-3,3)/2,math.random(-3,3)/2),20,'Really black','Royal purple',Vector3.new(.1,.1,.1),0)
local vs = Instance.new("BodyVelocity",v.Torso)
vs.maxForce = Vector3.new(1,1,1)*9e9
vs.P = 2000
vs.velocity = pchar.HumanoidRootPart.CFrame.lookVector*60+Vector3.new(0,150,0)
wait(.05)
vs:Destroy()
Spawn(function()
wait(2)
v.Humanoid.PlatformStand=false
end)
v.Humanoid.Health=v.Humanoid.Health-30
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
attack=false
return
end
end
end
end
end
end
for i=1,10 do wait()
efx.CFrame=clerp(efx.CFrame,pchar['Left Arm'].CFrame*CFrame.Angles(-rad(90),0,rad(90)),.2)
cb.Size = Vector3.new(.5, (pchar['Left Arm'].Position - efx.Position).magnitude, .5)
cb.CFrame = CFrame.new((pchar['Left Arm'].Position + efx.Position)/2, pchar['Left Arm'].Position) * CFrame.Angles(math.pi/2, 0, 0)
end
efx:Destroy()
cb:Destroy()
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
attack=false
elseif key=="z" then
elseif key=="x" then
attack=true
local tapdeb=false
for i,x in pairs(workspace:children()) do
if x:IsA("Model") and x:findFirstChild("Humanoid") then
if x:findFirstChild("Head") and x:findFirstChild("Torso") then
if (x:findFirstChild("Torso").Position - mouse.Hit.p).magnitude < 4 and x.Name ~= pchar.Name then
if tapdeb==false then
SetAnimData({Head=false,RightArm=false,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=false})
cloneefx()
pchar.Torso.CFrame=x.Torso.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(0,pi/1,0)
tmdmg(10,blade,3,3)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(120),rad(40),-rad(50))*CFrame.new(0,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(30),0)
wait(.1)
trail(blade,3,5)
so('161006212',torso,false,1)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(0,0,rad(50))*CFrame.new(0,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(30),0)
wait(.2)
cloneefx()
pchar.Torso.CFrame=x.Torso.CFrame*CFrame.new(-4,0,0)*CFrame.Angles(0,-pi/2,0)
tmdmg(10,blade,4,3)
SetAnimData({Head=false,RightArm=false,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=false})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(150),0,rad(120))*CFrame.new(-.5,0,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(30),0)
wait(.1)
trail(blade,3,5)
so('161006212',torso,false,.8)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(70),0,-rad(50))*CFrame.new(.5,0,-0.5)*CFrame.Angles(0,-rad(90),0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(70))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(70),0)
wait(.2)
cloneefx()
pchar.Torso.CFrame=x.Torso.CFrame*CFrame.new(0,0,4)*CFrame.Angles(0,0,0)
tmdmg(10,blade,4,3)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(120),rad(40),-rad(50))*CFrame.new(0,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(30),0)
wait(.1)
trail(blade,3,5)
so('161006212',torso,false,1)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(0,0,rad(50))*CFrame.new(0,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(30),0)
wait(.2)
cloneefx()
pchar.Torso.CFrame=x.Torso.CFrame*CFrame.new(4,0,0)*CFrame.Angles(0,pi/2,0)
tmdmg(10,blade,4,3)
SetAnimData({Head=false,RightArm=false,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=false})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(150),0,rad(120))*CFrame.new(-.5,0,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(30),0)
wait(.1)
trail(blade,3,5)
so('161006212',torso,false,.8)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(70),0,-rad(50))*CFrame.new(.5,0,-0.5)*CFrame.Angles(0,-rad(90),0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(70))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(70),0)
wait(.2)
so('161006212',torso,false,.5)
cloneefx()
tmdmg(10,blade,5,3)
trail(blade,3,7)
pchar.Torso.CFrame=x.Torso.CFrame*CFrame.new(0,0,-6)*CFrame.Angles(0,pi/1,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,rad(30))
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(90))*CFrame.new(0.5,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(90))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(90),0)
wait(.1)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,0)
wait(.1)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(rad(90),0,rad(90))
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,rad(90))
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,rad(90))*CFrame.new(-.5,-.5,0)
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(90),0)
wait(.4)
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
attack=false
return
end
end
end
end
end
attack=false
elseif key=="c" then
attack=true
SetAnimData({Head=false,RightArm=false,LeftArm=false,RightLeg=true,LeftLeg=true,Torso=false})
posfix(-rad(90))
LerpTo.hndl.To = CFrame.new(0,-0.3,0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,rad(30))
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(90))*CFrame.new(0.5,-.5,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(90))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(90),0)
wait(.1)
so('62339698',torso,false,.35)
Spawn(function()
for i=1,3 do wait()
local efx= Part(1,1,1,'Really black',.5,false,true,m)
local m= Mesh(efx,'http://www.roblox.com/asset/?id=20329976',3,1,3)
efx.CFrame=torso.CFrame*CFrame.Angles(pi/2,0,-rad(90))
Spawn(function()
for i=1,7 do wait()
m.Scale=m.Scale+Vector3.new(1,.1,1)
end
efx:Destroy()
end)
end
end)
Spawn(function()
for i=1,4 do wait()
mgblock(torso,CFrame.new(0,0,0),4,'Really black','Really black',Vector3.new(2,2,2),.1)
end
end)
local v = Instance.new("BodyVelocity",torso)
v.maxForce = Vector3.new(1,1,1)*9e9
v.P = 2000
local cfx=torso.CFrame*CFrame.Angles(0,rad(90),0)
v.velocity = cfx.lookVector*60
local tapdeb=false
for i=1,10 do wait()
for i,x in pairs(workspace:children()) do
if x:IsA("Model") and x:findFirstChild("Humanoid") then
if x:findFirstChild("Head") and x:findFirstChild("Torso") then
if (x:findFirstChild("Torso").Position - torso.Position).magnitude < 7 and x.Name ~= pchar.Name then
if tapdeb==false then
tmdmg(15,blade,3,5)
v:Destroy()
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(40))*CFrame.new(0.5,-.5,0)
so('10209645',torso,false,.8)
for i=1,3 do wait()
x.Humanoid.PlatformStand=true
x.Torso.CFrame=pchar['Left Arm'].CFrame*CFrame.new(0,-1,0)*CFrame.Angles(rad(90),0,0)
end
so('46153268',torso,false,.5)
wait(.4)
SetAnimData({Head=false,RightArm=false,LeftArm=false,RightLeg=false,LeftLeg=false,Torso=false})
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,0,0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,-rad(40))* CFrame.new(-.2,-.25,0)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(90),0,rad(40))* CFrame.new(.2,-.25,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,0) * CFrame.new(0,0,-1)
LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(0,0,0) * CFrame.new(0,1,-1)
LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(-rad(50),0,0) * CFrame.new(0,0.5,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(0,0,-rad(90))*CFrame.Angles(-rad(130),0,0)
so('169310515',torso,false,.6)
wait(.4)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(150),0,0)
mgblock(pchar['Left Arm'],CFrame.new(0,-1,0),30,'Really black','Really black',Vector3.new(2,2,2),.1)
mgblock(x.Torso,CFrame.new(0,0,0),30,'Really black','Really black',Vector3.new(2,2,2),.1)
local vs = Instance.new("BodyVelocity",x.Torso)
vs.maxForce = Vector3.new(1,1,1)*9e9
vs.P = 2000
vs.velocity = Vector3.new(0,6,0)
local efx= Part(1,1,1,'Really black',1,false,true,m)
local m= Mesh(efx,'http://www.roblox.com/asset/?id=1185246',10,10,10)
Spawn(function()
for i=1,7 do wait()
efx.Transparency=efx.Transparency-.1
end
end)
for i=1,100 do
efx.CFrame=x.Torso.CFrame
wait()
end
vs:Destroy()
x.Torso.Anchored=true
local bp=Instance.new("BodyPosition",torso)
bp.maxForce=Vector3.new(10000,10000,10000)
bp.position=x.Torso.Position+Vector3.new(5,0,0)
so('160069154',torso,false,1.1)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(90),0,rad(45))
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(90))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,-rad(90),0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,rad(90))*CFrame.new(-0.5,-.5,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(rad(90),0,rad(90))
trail(blade,35,5)
local spn=0
for i=1,12 do
spn=spn+30
wait()
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,-rad(spn))
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,rad(spn),0)
end
bp:Destroy()
efx:Destroy()
so('138122923',torso,false,.8)
x.Humanoid.Health=x.Humanoid.Health-20
for i=1,14 do
local efx= Part(1,1,1,'Really black',0,false,false,pchar)
local m= Mesh(efx,3,math.random(1,10)/10,math.random(1,10)/10,math.random(1,10)/10)
efx.CFrame=x.Torso.CFrame
efx.Velocity=Vector3.new(math.random(-20,20),0,math.random(-20,20))
Spawn(function()
for i=1,10 do wait(.1)
efx.Transparency=efx.Transparency+.1
end
end)
end
x.Torso.Anchored=false
x.Humanoid.PlatformStand=false
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
attack=false
return
end
end
end
end
end
end
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
v:Destroy()
attack=false
elseif key=="v" then
elseif key==" " then
tim = game:service'RunService'.Stepped:wait()
if (tim - jmptimer < .2) then
attack=true
Spawn(function()
for i=1,3 do wait()
local efx= Part(1,1,1,'Really black',.5,false,true,m)
local m= Mesh(efx,'http://www.roblox.com/asset/?id=20329976',3,1,3)
efx.CFrame=torso.CFrame
Spawn(function()
for i=1,7 do wait()
m.Scale=m.Scale+Vector3.new(1,.2,1)
efx.Transparency=efx.Transparency+.12
end
efx:Destroy()
end)
end
end)
local vs = Instance.new("BodyVelocity",pchar.Torso)
vs.maxForce = Vector3.new(1,1,1)*9e9
vs.P = 2000
vs.velocity = pchar.Torso.CFrame.lookVector*60+Vector3.new(0,150,0)
wait(.025)
vs:Destroy()
trail(blade,35,5)
so('160069154',torso,false,.8)
SetAnimData({Head=false,RightArm=false,LeftArm=false,RightLeg=true,LeftLeg=true,Torso=false})
LerpTo.Neck.To = LerpTo.Neck.Cache * CFrame.Angles(0,0,0)
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,-rad(40))*CFrame.new(0,-.5,0)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(90),0,rad(40))*CFrame.new(0,-.5,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(0,rad(90),0)*CFrame.Angles(rad(130),0,0)
local spn=0
for i=1,14 do
spn=spn+30
wait(i/1000)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(rad(spn),0,0)
end
SetAnimData({Head=false,RightArm=false,LeftArm=false,RightLeg=false,LeftLeg=false,Torso=false})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(90),0,-rad(40))* CFrame.new(-.2,-.25,0)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(rad(90),0,rad(40))* CFrame.new(.2,-.25,0)
LerpTo.RootJoint.To = LerpTo.RootJoint.Cache * CFrame.Angles(0,0,0) * CFrame.new(0,0,-1)
LerpTo.LeftLeg.To = LerpTo.LeftLeg.Cache * CFrame.Angles(0,0,0) * CFrame.new(0,1,-1)
LerpTo.RightLeg.To = LerpTo.RightLeg.Cache * CFrame.Angles(-rad(50),0,0) * CFrame.new(0,0.5,0)
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(0,0,-rad(90))*CFrame.Angles(-rad(130),0,0)
hitted=false
local hp=blade.Touched:connect(function(hit)
if hitted == true or hit.Parent.Name==pchar.Name then return end
so('157878578',torso,false,1)
hitted=true
explosion('Really black','Royal purple',torso.CFrame,Vector3.new(40,40,40),30,40)
for i=1, 30 do
local p= Part(math.random(2,7),math.random(2,7),math.random(2,7),workspace.Base.BrickColor.Color,0,false,false,m)
p.Material=workspace.Base.Material
p.CFrame=CFrame.new(torso.CFrame.x+math.random(-i,i),0,torso.CFrame.z+math.random(-i,i))*CFrame.Angles(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)*CFrame.Angles(pi/2,0,0)
p.Velocity=Vector3.new(math.random(-100,100),math.random(30,100),math.random(-100,100))
game.Debris:AddItem(p,2)
Spawn(function()
for i=1,10 do wait(.01)
p.Transparency=p.Transparency+.1
end
end)
end
end)
repeat wait() until hitted
hp:disconnect()
wait(.5)
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.hndl.To = LerpTo.hndl.Cache
attack=false
end
else
wait(.2)
end
jmptimer = tim
end)
SetAnimData({Head=true,RightArm=false,LeftArm=false,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(70),rad(20),-rad(70))*CFrame.new(0,-1,0)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(30))
wait(.01)
mwl.Part1=pchar['Right Arm']
mwl.C1=CFrame.new(0,-1,0)*CFrame.Angles(-rad(90),0,rad(90))
wait(.2)
CurrentActiveAnim="Holding"
LerpTo.hndl.To = LerpTo.hndl.Cache
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
end)
hp.Deselected:connect(function()
SetAnimData({Head=true,RightArm=false,LeftArm=false,RightLeg=true,LeftLeg=true,Torso=true})
LerpTo.RightArm.To = LerpTo.RightArm.Cache * CFrame.Angles(rad(70),rad(20),-rad(70))*CFrame.new(0,-1,0)
LerpTo.LeftArm.To = LerpTo.LeftArm.Cache * CFrame.Angles(0,0,-rad(30))
LerpTo.hndl.To = CFrame.new(0,-0.3,0)*CFrame.Angles(0,0,0)
wait(.1)
mwl.Part1=pchar.Torso
mwl.C1=CFrame.new(-1,0,-1)*CFrame.Angles(rad(120),0,0)
wait(.1)
CurrentActiveAnim="Idle"
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
end)
UpdateAnims()
SetAnimData({Head=true,RightArm=true,LeftArm=true,RightLeg=true,LeftLeg=true,Torso=true})
CurrentActiveAnim="Idle"
game:service'RunService'.RenderStepped:connect(function()
UpdateAnims(angle)
for _,v in pairs(LerpTo) do
v.Weld.C0 = Lerp.CFrame(v.Weld.C0,v.To,v.Speed)
end
rclcount = (rclcount%rclcounttime)+rclcountspeed
rcl = math.pi*math.sin((math.pi*2)/rclcounttime*rclcount)
angle = (angle % 100) + anglespeed/10
if Vector3.new(0, torso.Velocity.y, 0).magnitude > 2 then
CheckAnimData(CurrentActiveAnim,"Jump")
elseif Vector3.new(torso.Velocity.x, 0, torso.Velocity.z).magnitude < 2 then
CheckAnimData(CurrentActiveAnim,"Stance")
elseif Vector3.new(torso.Velocity.x, 0, torso.Velocity.z).magnitude > 2 then
CheckAnimData(CurrentActiveAnim,"Walk")
end
end)
|
require "Player"
require "Projectile"
require "Enemies"
local utf8 = require("utf8")
local highscore = require "sick"
Game = {}
-- Defines initial state for when the game is started.
game_state = "menu_screen"
function Game:init()
-- Finds or creates the scoreboard file to be used.
highscore.set("scoreboard", 5, "empty", 0)
Player:init()
Enemies:init()
Projectile:init()
-- Defines the nickname to be associed with the score in highscore board, at the end game screen.
player = "Player"
-- Variable for selecting and sending which spaceship to use during gameplay.
current_ship = 1
-- Tells the game if they should tell the player which key he must press to fire.
tutorial = true
-- Tells the game if the score has been saved once - otherwise the library would save the score indefinitely while the end game screen persisted.
score_saved = false
-- In the end game screen, if the player hasn't started typing the text input will blink and show the nickname value initialized above. Typing empties the nickname and interrupts the blinking for the user - succeding will set this variable to true.
started_typing = false
-- Keeps track of the player's points.
score = 0
-- Reads the values from the scoreboard file into the game, so it can be altered and printed accordingly.
highscore.load()
end
function Game:draw()
if game_state == 'menu_screen' then
-- Draws the game menu background for the specified resolution.
for y=0, WINDOW_H, background_h do
for x=0, WINDOW_W, background_w do
love.graphics.draw(images.background_menu, x, y)
x = x + background_w
end
y = y + background_h
end
-- Game Menu text
love.graphics.setFont(fonts.ken_large)
love.graphics.printf("* Shooting Aliens *", 0, 100, WINDOW_W, 'center')
love.graphics.setFont(fonts.ken_small)
love.graphics.printf("A final project for CS50x", 200, 200, WINDOW_W, 'center')
-- math.cos snippet blinking animation is borrowed from the source of CÖIN, a game made by George Prosser https://bitbucket.org/gprosser/coin/src/master/
if math.cos(2 * math.pi * love.timer.getTime()) > 0 then
love.graphics.printf("Press Start", 0, WINDOW_H - 40, WINDOW_W, 'center')
end
elseif game_state == 'select_ship' then
-- Table that defines the X value to draw the cursor when selecting a spaceship.
selection_x = {
(WINDOW_W/2 - 100 - ship_width/2) + ship_width,
(WINDOW_W/2 - ship_width/2) + ship_width,
(WINDOW_W/2 + ship_width * 1.5) + ship_width
}
-- Draws the selection menu background for the specified resolution.
for y=0, WINDOW_H, background_h do
for x=0, WINDOW_W, background_w do
love.graphics.draw(images.background_menu, x, y)
x = x + background_w
end
y = y + background_h
end
-- Selection Menu text
love.graphics.setFont(fonts.ken_large)
love.graphics.printf("* Shooting Aliens *", 0, 100, WINDOW_W, 'center')
love.graphics.setFont(fonts.ken_small)
love.graphics.printf("A final project for CS50x", 200, 200, WINDOW_W, 'center')
love.graphics.printf("Select your ship", 0, WINDOW_H/2 - 40, WINDOW_W, 'center')
-- Draws the spaceships options
love.graphics.draw(ship.ship1, (WINDOW_W/2 - 100 - ship_width/2), (WINDOW_H/2), 0, 0.5)
love.graphics.draw(ship.ship2, (WINDOW_W/2 - ship_width/2), (WINDOW_H/2), 0, 0.5)
love.graphics.draw(ship.ship3, (WINDOW_W/2 + 100 - ship_width/2), (WINDOW_H/2), 0, 0.5)
-- Draws a blinking cursor
if math.cos(2 * math.pi * love.timer.getTime()) > 0 then
love.graphics.draw(cursor, selection_x[current_ship], (WINDOW_H/2 + ship_height), 0, 0.5)
end
elseif game_state == 'game_screen' then
-- Draws the game screen background for the specified resolution.
for y=0, WINDOW_H, background_h do
for x=0, WINDOW_W, background_w do
love.graphics.draw(images.background_game, x, y)
x = x + background_w
end
y = y + background_h
end
Player:render()
Enemies:render()
Projectile:fire_render()
-- Draws damaged areas in the ship according to the current lifes left.
local life = {life_ui.hp1, life_ui.hp2, life_ui.hp3}
love.graphics.draw(life[current_ship], 20, WINDOW_H - 20 - life_height)
love.graphics.print(Player.hp, 30 + life_width, WINDOW_H - 15 - life_height)
-- Writes the current score and level.
love.graphics.printf("Score: " .. score, -10, 10, WINDOW_W, 'right')
love.graphics.printf("Level: " .. level, 10, 10, WINDOW_W, 'left')
-- Hints what keys to press to fire.
if tutorial then
love.graphics.printf("Press Z or SPACE to shot", 30, WINDOW_H - 20, WINDOW_W, 'center')
end
elseif game_state == 'get_username' then
-- Writes the Get Username screen text.
love.graphics.printf("FINAL SCORE: " .. score, -10, 10, WINDOW_W, 'right')
love.graphics.setFont(fonts.ken_large)
love.graphics.printf("You lost!", 0, 100, WINDOW_W, 'center')
love.graphics.setFont(fonts.ken_small)
love.graphics.printf("Press Start to submit username", 0, WINDOW_H - 40, WINDOW_W, 'center')
love.graphics.printf("USER:", -30, WINDOW_H/2 - 20, WINDOW_W, 'center')
if math.cos(2 * math.pi * love.timer.getTime()) > 0 and started_typing == false then
love.graphics.printf(player, 30, WINDOW_H/2 - 20, WINDOW_W, 'center')
end
-- Writes the username as the player is typing.
if started_typing == true then
love.graphics.printf(player, WINDOW_W/2 + 20, WINDOW_H/2 - 20, WINDOW_W, 'left')
end
-- Prints the highscore board.
for i, score, name in highscore() do
love.graphics.printf(name, -20, WINDOW_H/2 + i * 20, WINDOW_W/2, 'right')
love.graphics.printf(score, WINDOW_W/2 + 20, WINDOW_H/2 + i * 20, WINDOW_W/2, 'left')
end
elseif game_state == 'end_game' then
-- Writes the End Game text.
love.graphics.printf("FINAL SCORE: " .. score, -10, 10, WINDOW_W, 'right')
love.graphics.setFont(fonts.ken_large)
love.graphics.printf("You lost!", 0, 100, WINDOW_W, 'center')
love.graphics.setFont(fonts.ken_small)
if math.cos(2 * math.pi * love.timer.getTime()) > 0 then
love.graphics.printf("Press Start to try again", 0, WINDOW_H - 40, WINDOW_W, 'center')
end
-- Prints the highscore board.
love.graphics.printf("Highscore:", 0, WINDOW_H/2 - 20, WINDOW_W, 'center')
for i, score, name in highscore() do
love.graphics.printf(name, -20, WINDOW_H/2 + i * 20, WINDOW_W/2, 'right')
love.graphics.printf(score, WINDOW_W/2 + 20, WINDOW_H/2 + i * 20, WINDOW_W/2, 'left')
end
end
end
function Game:update(dt)
if game_state == 'menu_screen' then
elseif game_state == 'select_ship' then
elseif game_state == 'game_screen' then
Player:update(dt)
Enemies:update(dt)
Projectile:fire_update(dt)
elseif game_state == 'get_username' then
-- Gives a gloomy feel to the music if you have lost.
music['soundtrack']:setPitch(0.85)
elseif game_state == 'end_game' then
-- Gives a gloomy feel to the music if you have lost.
music['soundtrack']:setPitch(0.85)
-- Guarantees that the score will only be written once in the file.
if score_saved == false then
-- Input the nickname "Player" if the player inputs an invalid value for the highscore board.
if player == "" then
player = "Player"
end
highscore.add(player, score)
highscore.save()
score_saved = true
end
end
end
function Game:keypress(key)
if game_state == 'menu_screen' then
-- Pressing enter in the menu screen will take the player to the selection screen.
if key == 'return' or key == 'space' then
sounds['sfx_twoTone']:play()
game_state = 'select_ship'
end
elseif game_state == 'select_ship' then
-- Keypress will move the cursor and selection between spaceships options.
-- List interation inspired in https://love2d.org/forums/viewtopic.php?t=83237.
if key == 'left' or key == 'a' then
local item = selection_x[current_ship - 1]
if item then
sounds['sfx_zap']:stop()
sounds['sfx_zap']:play()
current_ship = current_ship - 1
end
elseif key == 'right' or key == 'd' then
local item = selection_x[current_ship + 1]
if item then
sounds['sfx_zap']:stop()
sounds['sfx_zap']:play()
current_ship = current_ship + 1
end
end
-- Pressing enter in the selection screen will take the player to the game screen.
if key == 'return' or key == 'space' then
sounds['sfx_twoTone']:stop()
sounds['sfx_twoTone']:play()
game_state = 'game_screen'
end
elseif game_state == 'game_screen' then
Projectile:fire()
elseif game_state == 'get_username' then
-- User text input with backspace feature from https://love2d.org/wiki/love.textinput
if key == "backspace" then
-- get the byte offset to the last UTF-8 character in the string.
local byteoffset = utf8.offset(player, -1)
if byteoffset then
-- remove the last UTF-8 character.
-- string.sub operates on bytes rather than UTF-8 characters, so we couldn't do string.sub(text, 1, -2).
player = string.sub(player, 1, byteoffset - 1)
end
end
-- Pressing enter in the get_username screen will take the player to the game over screen.
if key == 'return' then
game_state = 'end_game'
sounds['sfx_twoTone']:stop()
sounds['sfx_twoTone']:play()
end
elseif game_state == 'end_game' then
-- Pressing enter in the game over screen will restart the game.
if key == 'return' or key == 'space' then
sounds['sfx_twoTone']:stop()
sounds['sfx_twoTone']:play()
Enemies:restart_difficulty()
Game:init()
-- Return the pitch to normal after losing a game.
music['soundtrack']:setPitch(1)
game_state = 'menu_screen'
end
end
end
-- Sends which spaceship was selected to Player.lua, so the right ship can be rendered during gameplay.
function Game:get_ship()
return current_ship
end
-- Adds points to the total when killing an alien. Multiplied by current level.
function Game:update_score()
score = score + (100 * level)
end
-- Adds points to the total when killing an UFO. Multiplied by current level.
function Game:update_bonus_score()
score = score + (1000 * level)
end
-- User text input with backspace feature from https://love2d.org/wiki/love.textinput
function love.textinput(t)
if game_state == "get_username" then
if started_typing == false then
player = ""
started_typing = true
end
if #player < 20 then
player = player .. t
end
end
end |
local FORMSPEC_NAME = "freetouch_edit"
minetest.register_node("freetouch:freetouch", {
description = "Formspec touch node",
groups = {cracky=3},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("channel", "freetouch")
meta:set_string("formspec", "size[10,8]")
end,
drawtype = "nodebox",
tiles = {
"freetouch_back.png",
"freetouch_back.png",
"freetouch_back.png",
"freetouch_back.png",
"freetouch_back.png",
"freetouch_front.png"
},
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{ -0.5, -0.5, 0.4, 0.5, 0.5, 0.5 }
}
},
on_punch = function(pos, _, player)
local meta = minetest.get_meta(pos)
local fs = meta:get_string("formspec")
local playername = player:get_player_name()
local has_freetouch_priv = minetest.check_player_privs(playername, "freetouch")
if minetest.is_protected(pos, playername) or not has_freetouch_priv then
return
end
local formspec = "size[12,10;]" ..
"textarea[0.2,0;12,10;fs;Formspec;" .. minetest.formspec_escape(fs) .. "]" ..
"button_exit[0,9;6,1;remove;Remove]" ..
"button_exit[6,9;6,1;save;Save]" ..
""
minetest.show_formspec(playername,
FORMSPEC_NAME .. ";" .. minetest.pos_to_string(pos),
formspec
)
end,
on_receive_fields = function(pos, _, fields, sender)
local meta = minetest.get_meta(pos)
local channel = meta:get_string("channel")
print(channel)
digilines.receptor_send(pos, digilines.rules.default, channel, {
fields = fields,
pos = pos,
playername = sender:get_player_name()
})
end,
digiline = {
receptor = {}
},
})
minetest.register_on_player_receive_fields(function(player, formname, fields)
local parts = formname:split(";")
local name = parts[1]
if name ~= FORMSPEC_NAME then
return
end
local pos = minetest.string_to_pos(parts[2])
local playername = player:get_player_name()
local has_freetouch_priv = minetest.check_player_privs(playername, "freetouch")
if minetest.is_protected(pos, playername) or not has_freetouch_priv then
return
end
if fields.save then
local meta = minetest.get_meta(pos)
meta:set_string("formspec", fields.fs)
end
if fields.remove then
minetest.set_node(pos, { name = "air" })
end
end)
minetest.register_privilege("freetouch", {
description = "can edit freetouch formspecs",
give_to_singleplayer = true
})
|
local M = {}
local toribio = require 'toribio'
local devices = toribio.devices
local bobot = nil --require('comms/bobot').bobot
local log = require 'log'
table.pack=table.pack or function (...)
return {n=select('#',...),...}
end
local function split_words(s)
local words={}
for p in string.gmatch(s, "%S+") do
words[#words+1]=p
end
return words
end
local process = {}
process["INIT"] = function () --to check the new state of hardware on the fly
--server_init()
toribio.init(nil)
return 'ok'
end
process["REFRESH"] = function () --to check the new state of hardware on the fly
bobot.refresh()
return 'ok'
end
process["LIST"] = function ()
local ret,comma = "", ""
for name, _ in pairs(devices) do
ret = ret .. comma .. name
comma=","
end
return ret
end
--[[
process["LISTI"] = function ()
if baseboards then
for _, bb in ipairs(bobot.baseboards) do
local handler_size=bb:get_handler_size()
for i=1, handler_size do
t_handler = bb:get_handler_type(i)
end
end
end
end
--]]
process["OPEN"] = function (parameters)
local d = parameters[2]
local ep1= tonumber(parameters[3])
local ep2= tonumber(parameters[4])
if not d then
log('BOBOTSRV', 'ERROR', "ls:Missing 'device' parameter")
return
end
return "ok"
end
process["DESCRIBE"] = function (parameters)
local d = parameters[2]
local ep1= tonumber(parameters[3])
local ep2= tonumber(parameters[4])
if not d then
log ('BOBOTSRV', 'ERROR', "ls:Missing \"device\" parameter")
return
end
local device = devices[d]
--if not device.api then
-- return "missing driver"
--end
local skip_fields = {remove=true, name=true, register_callback=true, events=true,
task=true, filename=true, module=true, bobot_metadata=true}
local ret = "{"
for fname, fdef in pairs(device) do
if not skip_fields[fname] then
ret = ret .. fname .. "={"
ret = ret .. " parameters={"
local bobot_metadata = ((device.bobot_metadata or {})[fdef] or {
parameters={}, returns={}
})
local meta_parameters = bobot_metadata.parameters
for i,pars in ipairs(meta_parameters) do
ret = ret .. "[" ..i.."]={"
for k, v in pairs(pars) do
ret = ret .."['".. k .."']='"..tostring(v).."',"
end
ret = ret .. "},"
end
ret = ret .. "}, returns={"
local meta_returns = bobot_metadata.returns
for i,rets in ipairs(meta_returns) do
ret = ret .. "[" ..i.."]={"
for k, v in pairs(rets) do
ret = ret .."['".. k .."']='"..tostring(v).."',"
end
ret = ret .. "},"
end
ret = ret .. "}},"
end
end
ret=ret.."}"
return ret
end
process["CALL"] = function (parameters)
local d = parameters[2]
local call = parameters[3]
if not (d and call) then
log ('BOBOTSRV', 'ERROR', "ls:Missing parameters %s %s", d, call)
return
end
local device = devices[d]
local api_call=device[call];
if not api_call then return "missing call" end
local is_open = device["dev"].handler or device["dev"].name =='pnp'
if not is_open then
device["dev"]:open(1, 1)
end
--local tini=socket.gettime()
--local ok, ret = pcall (api_call.call, unpack(parameters,4))
--if not ok then print ("Error calling", ret) end
local ret = table.pack(pcall(device["dev"].api[call].call, unpack(parameters,4)))
local ok = ret[1]
if ok then
return table.concat(ret, ',', 2)
else
print ("error calling", table.concat(ret, ',', 2))
end
end
process["CLOSEALL"] = function ()
if bobot and bobot.baseboards then
for _, bb in ipairs(bobot.baseboards) do
--this command closes all the open user modules
--it does not have sense with plug and play
bb:force_close_all() --modif andrew
end
end
return "ok"
end
process["BOOTLOADER"] = function ()
if bobot and bobot.baseboards then
for _, bb in ipairs(bobot.baseboards) do
bb:switch_to_bootloader()
end
end
return "ok"
end
process["QUIT"] = function ()
log ('BOBOTSRV', 'INFO', "Requested EXIT...")
os.exit()
return "ok"
end
M.init = function(conf)
local selector = require 'tasks/selector'
local ip = conf.ip or '127.0.0.1'
local port = conf.port or 2009
local tcprecv = selector.new_tcp_server(ip, port, 'line', function( inskt, line, err)
--print("bobot server:", inskt, line, err or '')
if not line then return end
local words=split_words(line)
local command=words[1]
if not command then
log ('BOBOTSRV', 'ERROR', "bs:Error parsing line %s", line)
else
if not process[command] then
log ('BOBOTSRV', 'ERROR', "bs:Command '%s' not supported:", command)
else
local ret = process[command](words) or ""
if ret then
inskt:send(ret.."\n")
else
log ('BOBOTSRV', 'ERROR', "Error calling '%s'", command)
inskt:send("\n")
end
end
end
return true
end)
end
return M
|
function timerCheck (dt)
if timer ~= nil and ALL_RUNNING_TIMERS ~= nil then--can only be run if it has not been defined yet
local currentTime = love.timer.getTime()
for w = #ALL_RUNNING_TIMERS, 1 , -1 do
if currentTime >= timer[ALL_RUNNING_TIMERS[w]].finishes then
timer[ALL_RUNNING_TIMERS[w]].free = true
timer[ALL_RUNNING_TIMERS[w]].running = false
table.remove (ALL_RUNNING_TIMERS, w)
end
end
end
end
return timerCheck
|
local type = type
local metadata
local function update_obj(ttype, name, obj, data)
local parent = obj._parent
local temp = data[parent]
local code = temp._code
obj._code = code
for key, meta in pairs(metadata[ttype]) do
if obj[key] and meta['repeat'] and type(obj[key]) ~= 'table' then
obj[key] = {obj[key]}
end
end
if metadata[code] then
for key, meta in pairs(metadata[code]) do
if obj[key] and meta['repeat'] and type(obj[key]) ~= 'table' then
obj[key] = {obj[key]}
end
end
end
end
local function update_txt(obj)
for k, v in pairs(obj) do
if type(v) ~= 'table' then
obj[k] = {v}
end
end
end
return function(w2l, type, lni, data)
if type == 'txt' then
for _, obj in pairs(lni) do
update_txt(obj)
end
return
end
local has_level = w2l.info.key.max_level[type]
if not has_level then
return
end
metadata = w2l:metadata()
for name, obj in pairs(lni) do
update_obj(type, name, obj, data)
end
end
|
--[[
NPCHealthBar
by: standardcombo
v0.9.0
Works in conjunction with a data provider that is passed into SetDataProvider().
Expects implementation of the interface:
GetHealt()
GetMaxHealth()
GetTeam()
--]]
local FILL_BAR = script:GetCustomProperty("Fill"):WaitForObject()
local LABEL = script:GetCustomProperty("Label"):WaitForObject()
script.parent:LookAtLocalView()
script.parent.visibility = Visibility.FORCE_OFF
local _data = nil
-- Expects a script with specific functions, allowing different scripts to be passed
function SetDataProvider(data)
_data = data
end
function Tick()
if not _data then return end
local hp = _data:GetHealth()
local maxHP = _data:GetMaxHealth()
if hp <= 0 or hp >= maxHP then
script.parent.visibility = Visibility.FORCE_OFF
return
else
script.parent.visibility = Visibility.INHERIT
end
LABEL.text = CoreMath.Round(hp) .. " / " .. CoreMath.Round(maxHP)
local percent = hp / maxHP
percent = CoreMath.Clamp(percent, 0, 1)
local scale = FILL_BAR:GetScale()
scale.z = percent
FILL_BAR:SetScale(scale)
FILL_BAR.team = _data:GetTeam()
end
|
local a, b, c, d, e, g
a = f() or a
b = f() or b
if e then
d = f() or d
e = f() or e
end
|
local s
function IsNearTeleport()
local shortest = 100000
local tpDist = 0
for _, tp in pairs(Config.Teleports) do
if s == nil then
s = Scaleform.Request("MIDSIZED_MESSAGE")
end
local ply = PlayerPedId()
local plyCoords = GetEntityCoords(ply, 0)
local distance = #(vector3(tp.x, tp.y, tp.z) - plyCoords)
if distance < (tp.range * 2) then
DrawMarker(25, tp.x, tp.y, tp.z - 0.99, 0, 0, 0, 0, 0, 0, 0.5, 0.5, 1.0, 139, 16, 20, 250, false, false, 2, false, false, false, false)
if currentTp ~= tp then
s:CallFunction("SHOW_MIDSIZED_MESSAGE", '', tp.text)
currentTp = tp
end
if GetVehiclePedIsIn(ply, false) == 0 then
if distance < tp.range then
s:Render3D(tp.x, tp.y, tp.z - 0.5, 0.0, 0.0, -GetGameplayCamRot().z, 3.5, 3.5, 0.0)
--Print3DText(tp, tp.text)
tpDist = tp.range
else
tpDist = nil
end
else
tpDist = nil
end
else
currentTp = nil
end
if distance < shortest then
shortest = distance
end
end
return shortest, tpDist
end |
--[[
To compile the project files, install
premake4 ( http://industriousone.com/premake ), then:
For windows.
$ premake4 vs2010
For linux.
$ premake4 gmake
For macosx.
$ premake4 xcode3
]]--
--===========================================================================--
-- Globals
--===========================================================================--
local projectname = "waterspout"
local projectkind = "ConsoleApp"
--===========================================================================--
-- Common functions
--===========================================================================--
function setup_solution(projectname, projectkind, platformname)
-- solution
solution(projectname)
platforms { "x32", "x64" }
if platformname == "Linux" then
configurations { "debug", "release" }
elseif platformname == "Windows" then
configurations { "debug", "release" }
elseif platformname == "MacOSX" then
configurations { "debug", "release" }
end
-- project
project(projectname)
kind(projectkind)
language "C++"
-- build/link options
flags {
"EnableSSE",
"EnableSSE2",
"ExtraWarnings",
"FatalWarnings",
"NoImportLib"
}
-- target dirs
configuration { "debug", "x32" }
targetdir("../bin/" .. platformname .. "/debug32")
objdir("../bin/" .. platformname .. "/debug32/obj")
configuration {}
configuration { "debug", "x64" }
targetdir("../bin/" .. platformname .. "/debug64")
objdir("../bin/" .. platformname .. "/debug64/obj")
configuration {}
configuration { "release", "x32" }
targetdir("../bin/" .. platformname .. "/release32")
objdir("../bin/" .. platformname .. "/release32/obj")
configuration {}
configuration { "release", "x64" }
targetdir("../bin/" .. platformname .. "/release64")
objdir("../bin/" .. platformname .. "/release64/obj")
configuration {}
-- specific configurations
configuration { "debug*" }
defines { "DEBUG=1" }
flags { "Symbols" }
configuration {}
configuration { "release*" }
defines { "NDEBUG=1" }
flags { "OptimizeSpeed", "NoFramePointer" }
configuration {}
-- global defines
--defines {
--}
-- include directories
includedirs {
"../include",
"../tests"
}
-- project files
files {
"../src/*.h",
"../src/*.cpp",
"../tests/*.h",
"../tests/*.cpp"
}
end
--===========================================================================--
-- begin specific configurations
--===========================================================================--
--===========================================================================--
if _ACTION == "gmake" then
setup_solution(projectname, projectkind, "Linux")
defines {
"LINUX=1"
}
buildoptions {
"-march=native",
"-std=c++0x", -- should be -std=c++11 (this is needed as we build for old gcc in travis)
"-fPIC",
"-Wno-error"
}
includedirs {
"/usr/include"
}
links {
"m"
}
--===========================================================================--
elseif _ACTION == "vs2010" then
setup_solution(projectname, projectkind, "Windows")
buildoptions {
"/wd4127",
"/wd4146",
"/wd4244",
"/wd4305",
"/wd4310"
}
defines {
"WIN32=1",
"_SCL_SECURE_NO_WARNINGS=1",
"_CRT_SECURE_NO_WARNINGS=1",
"inline=__inline"
}
--===========================================================================--
elseif _ACTION == "xcode3" then
setup_solution(projectname, projectkind, "MacOSX")
defines {
"MACOSX=1",
}
buildoptions {
"-march=native",
"-fPIC",
"-Wno-error"
}
--[[
links {
"AudioToolbox.framework",
}
]]--
end
|
-- Input file for multimomlinear Tool
local Species = require "Tool.LinearSpecies"
local elcMass = 1
local elcCharge = -1
local ionMass = 1836.2
local ionCharge = 1
local E0 = 0.2 -- Electric field in y-direction
local B0 = 1.0 -- Magentic fiels in z-direction
local v0 = E0*B0/B0^2 -- ExB drift speed
local elcTemp = 0.01 -- electron temperature
local ionTemp = 0.01 -- ion temperature
print(string.format("ExB velocity: %g", v0))
print(string.format("Electron cyclotron frequency: %g", math.abs(elcCharge)*B0/elcMass ))
print(string.format("Electron thermal speed %g", math.sqrt(elcTemp/elcMass)))
print(string.format("Ion thermal speed %g", math.sqrt(ionTemp/ionMass)))
-- Electrons
elc = Species.Isothermal {
mass = elcMass, -- mass
charge = elcCharge, -- charge
density = 1.0, -- number density
velocity = {v0, 0.0, 0.0}, -- velocity vector
temperature = elcTemp, -- temperature
}
-- Ions
ion = Species.Isothermal {
mass = ionMass, -- mass
charge = ionCharge, -- charge
density = 1.0, -- number density
velocity = {0.0, 0.0, 0.0}, -- velocity vector
temperature = ionTemp, -- temperature
ignoreBackgroundField = true, -- ions are demagnetized
}
-- EM field
field = Species.Poisson {
epsilon0 = 1.0, mu0 = 1.0,
electricField = {0.0, E0, 0.0}, -- background electric field
magneticField = {0.0, 0.0, B0}, -- background magnetic field
}
-- list of species to include in dispersion relation
speciesList = { elc, ion }
-- List of wave-vectors for which to compute dispersion relation
kvectors = {}
local kcurr, kmax, NK = 0.0, 10.0, 801
dk = (kmax-kcurr)/(NK-1)
for i = 1, NK do
kvectors[i] = {kcurr, 0.0, 0.0} -- each k-vector is 3D
kcurr = kcurr + dk
end
|
function print_point(p)
io.write("("..p.x..", "..p.y..")")
return nil
end
function print_points(pl)
io.write("[")
for i,p in pairs(pl) do
if i>1 then
io.write(", ")
end
print_point(p)
end
io.write("]")
return nil
end
function ccw(a,b,c)
return (b.x - a.x) * (c.y - a.y) > (b.y - a.y) * (c.x - a.x)
end
function pop_back(ta)
table.remove(ta,#ta)
return ta
end
function convexHull(pl)
if #pl == 0 then
return {}
end
table.sort(pl, function(left,right)
return left.x < right.x
end)
local h = {}
-- lower hull
for i,pt in pairs(pl) do
while #h >= 2 and not ccw(h[#h-1], h[#h], pt) do
table.remove(h,#h)
end
table.insert(h,pt)
end
-- upper hull
local t = #h + 1
for i=#pl, 1, -1 do
local pt = pl[i]
while #h >= t and not ccw(h[#h-1], h[#h], pt) do
table.remove(h,#h)
end
table.insert(h,pt)
end
table.remove(h,#h)
return h
end
-- main
local points = {
{x=16,y= 3},{x=12,y=17},{x= 0,y= 6},{x=-4,y=-6},{x=16,y= 6},
{x=16,y=-7},{x=16,y=-3},{x=17,y=-4},{x= 5,y=19},{x=19,y=-8},
{x= 3,y=16},{x=12,y=13},{x= 3,y=-4},{x=17,y= 5},{x=-3,y=15},
{x=-3,y=-9},{x= 0,y=11},{x=-9,y=-3},{x=-4,y=-2},{x=12,y=10}
}
local hull = convexHull(points)
io.write("Convex Hull: ")
print_points(hull)
print()
|
---@meta
---@class cc.Place :cc.ActionInstant
local Place={ }
cc.Place=Place
---* Initializes a Place action with a position
---@param pos vec2_table
---@return boolean
function Place:initWithPosition (pos) end
---* Creates a Place action with a position.<br>
---* param pos A certain position.<br>
---* return An autoreleased Place object.
---@param pos vec2_table
---@return self
function Place:create (pos) end
---*
---@return self
function Place:clone () end
---* param time In seconds.
---@param time float
---@return self
function Place:update (time) end
---*
---@return self
function Place:reverse () end
---*
---@return self
function Place:Place () end |
object_mobile_dressed_tutorial_mentor = object_mobile_shared_dressed_tutorial_mentor:new {
}
ObjectTemplates:addTemplate(object_mobile_dressed_tutorial_mentor, "object/mobile/dressed_tutorial_mentor.iff")
|
local ADDON, MinArch = ...
MinArch.Companion = CreateFrame("Frame", "MinArchCompanion", UIParent)
local Companion = MinArch.Companion
Companion.events = {}
Companion.initialized = false;
local cx, cy, cInstance;
local timer;
local baseHeight = 31;
local function RegisterForDrag(frame)
local function OnDragStart(self)
local f = self:GetParent();
if f:GetName() == "UIParent" then
f = self
end
if not MinArch.db.profile.companion.lock then
f:StartMoving();
end
end
local function OnDragStop(self)
local f = self:GetParent();
if f:GetName() == "UIParent" then
f = self
end
f:StopMovingOrSizing();
if MinArch.db.profile.companion.savePos then
Companion:SavePosition();
end
end
frame:RegisterForDrag("LeftButton"); -- Register for left drag
frame:SetScript("OnDragStart", OnDragStart);
frame:SetScript("OnDragStop", OnDragStop);
end
local function CalculateDistance(ax, ay, bx, by)
local xd = math.abs(ax - bx);
local yd = math.abs(ay - by);
return MinArch:Round(((ax - bx) ^ 2 + (ay - by) ^ 2) ^ 0.5)
end
local function InitDistanceTracker()
Companion.trackerFrame = CreateFrame("Frame", "$parentTracker", Companion)
Companion.trackerFrame:SetPoint("LEFT", 0, 0)
Companion.trackerFrame:SetWidth(40)
Companion.trackerFrame:SetHeight(24)
Companion.trackerFrame:SetFrameStrata("LOW")
Companion.trackerFrame:Show()
Companion.trackerFrame.indicator = CreateFrame("Frame", "$parentIndicator", Companion.trackerFrame)
Companion.trackerFrame.indicator:SetPoint("LEFT", 2, 0)
Companion.trackerFrame.indicator:SetWidth(16)
Companion.trackerFrame.indicator:SetHeight(16)
Companion.trackerFrame:SetScript("OnMouseUp", function(self, button)
if (button == "RightButton") then
InterfaceOptionsFrame_OpenToCategory(MinArch.Options.companionSettings);
InterfaceOptionsFrame_OpenToCategory(MinArch.Options.companionSettings);
MinArch.db.profile.companion.showHelpTip = false;
HelpPlate_TooltipHide();
end
end)
Companion.trackerFrame:SetScript("OnEnter", function(self)
if (MinArch.db.profile.companion.showHelpTip) then
HelpPlate_TooltipHide();
HelpPlateTooltip.ArrowUP:Show();
HelpPlateTooltip.ArrowGlowUP:Show();
HelpPlateTooltip:SetPoint("BOTTOM", MinArchCompanion, "TOP", 0, 20);
HelpPlateTooltip.Text:SetText("This is the Mininimal Archaeology Companion frame with distance tracker and more."
.. "|n|n"
.. "|cFFFFD100[Right-Click]|r to disable this tutorial tooltip and to show customization settings.");
HelpPlateTooltip:Show();
end
end)
Companion.trackerFrame:SetScript("OnLeave", function()
if (MinArch.db.profile.companion.showHelpTip) then
HelpPlate_TooltipHide();
end
end)
RegisterForDrag(Companion.trackerFrame);
local tex = Companion.trackerFrame.indicator:CreateTexture("IndicatorTexture", "BACKGROUND")
tex:SetAllPoints(true)
tex:SetWidth(16)
tex:SetHeight(16)
tex:SetTexture("Interface\\Addons\\MinimalArchaeology\\Textures\\Indicator.tga")
tex:SetBlendMode("ADD")
tex:SetTexCoord(0.5, 1, 0.5, 1)
Companion.trackerFrame.indicator.texture = tex
Companion.trackerFrame.indicator:Show()
local fontString = Companion.trackerFrame.indicator:CreateFontString("$parentDistanceText", "OVERLAY")
fontString:SetFont("Fonts\\ARIALN.TTF", 12, "OUTLINE, MONOCHROME")
fontString:SetText("")
fontString:SetTextColor(0.0, 1.0, 0.0, 1.0)
fontString:SetPoint("LEFT", Companion.trackerFrame.indicator, "LEFT", 19, -1)
fontString:Show()
Companion:SetScript("OnEvent", Companion.EventHandler)
Companion.trackerFrame.fontString = fontString;
end
function Companion:SavePosition()
local point, _, relativePoint, xOfs, yOfs = MinArchCompanion:GetPoint();
MinArch.db.profile.companion.point = point;
MinArch.db.profile.companion.relativePoint = relativePoint;
MinArch.db.profile.companion.posX = xOfs;
MinArch.db.profile.companion.posY = yOfs;
end
function Companion:RegisterEvents()
Companion:RegisterEvent("PLAYER_STARTED_MOVING")
Companion:RegisterEvent("ARCHAEOLOGY_SURVEY_CAST")
Companion:RegisterEvent("PLAYER_STOPPED_MOVING")
Companion:RegisterEvent("PLAYER_ENTERING_WORLD")
Companion:RegisterEvent("RESEARCH_ARTIFACT_DIG_SITE_UPDATED")
end
function Companion:UnregisterEvents()
Companion:UnregisterEvent("PLAYER_STARTED_MOVING")
Companion:UnregisterEvent("ARCHAEOLOGY_SURVEY_CAST")
Companion:UnregisterEvent("PLAYER_STOPPED_MOVING")
Companion:UnregisterEvent("PLAYER_ENTERING_WORLD")
Companion:UnregisterEvent("RESEARCH_ARTIFACT_DIG_SITE_UPDATED")
end
local function InitSurveyButton()
-- Survey button
local surveyButton = CreateFrame("Button", "$parentSurveyButton", Companion, "InSecureActionButtonTemplate");
surveyButton:SetAttribute("type", "spell");
surveyButton:SetAttribute("spell", SURVEY_SPELL_ID);
surveyButton:SetPoint("LEFT", 44, 0);
surveyButton:SetWidth(28);
surveyButton:SetHeight(28);
surveyButton:SetNormalTexture("Interface/Icons/inv_misc_shovel_01")
surveyButton:SetHighlightTexture("Interface/Icons/inv_misc_shovel_01")
surveyButton:SetPushedTexture("Interface/Icons/inv_misc_shovel_01")
surveyButton:SetScript("OnEnter", function(self)
GameTooltip:SetOwner(self, "ANCHOR_BOTTOMRIGHT");
GameTooltip:SetSpellByID(SURVEY_SPELL_ID);
GameTooltip:Show();
end)
surveyButton:SetScript("OnLeave", function()
GameTooltip:Hide();
end)
RegisterForDrag(surveyButton);
Companion.surveyButton = surveyButton;
end
local function InitProjectFrame()
-- Project Solve button
local solveButton = CreateFrame("Button", "$parentSolveButton", Companion);
solveButton:SetPoint("LEFT", 74, 2);
solveButton:SetWidth(28);
solveButton:SetHeight(28);
RegisterForDrag(solveButton);
Companion.solveButton = solveButton;
end
local function InitCrateButton()
-- Crate Button
local crateButton = CreateFrame("Button", "$parentCrateButton", Companion, "InsecureActionButtonTemplate");
crateButton:SetAttribute("type", "item");
crateButton:SetPoint("LEFT", 108, 2);
crateButton:SetWidth(28);
crateButton:SetHeight(28);
crateButton:SetNormalTexture("Interface/Icons/inv_crate_04")
crateButton:SetHighlightTexture("Interface/Icons/inv_crate_04")
crateButton:SetPushedTexture("Interface/Icons/inv_crate_04")
MinArch:SetCrateButtonTooltip(crateButton);
RegisterForDrag(crateButton);
Companion.crateButton = crateButton;
end
function Companion:showCrateButton(itemID)
if MinArch.db.profile.companion.enable and MinArch.db.profile.companion.features.crateButton.enabled and MinArch.Companion.initialized then
if itemID then
MinArch.Companion.crateButton:SetAttribute("item", "item:" .. itemID);
end
Companion.crateButton:Show();
Companion:Resize()
end
end
function Companion:hideCrateButton()
if MinArch.db.profile.companion.enable and MinArch.Companion.initialized then
MinArch.Companion.crateButton:Hide();
Companion:Resize()
end
end
function Companion.events:PLAYER_ENTERING_WORLD(...)
if MinArch.db.profile.companion.savePos then
Companion:ClearAllPoints();
Companion:SetPoint(MinArch.db.profile.companion.point, UIParent, MinArch.db.profile.companion.relativePoint, MinArch.db.profile.companion.posX, MinArch.db.profile.companion.posY)
end
Companion:SetFrameScale(MinArch.db.profile.companion.frameScale);
end
function Companion.events:PLAYER_STARTED_MOVING(...)
timer = MinArch.Ace:ScheduleRepeatingTimer(Companion.UpdateDistance, 0.1)
end
function Companion.events:ARCHAEOLOGY_SURVEY_CAST(...)
cx, cy, _, cInstance = UnitPosition("player")
end
function Companion.events:PLAYER_STOPPED_MOVING(...)
MinArch.Companion:AutoToggle();
MinArch.Ace:CancelTimer(timer)
end
function Companion.events:RESEARCH_ARTIFACT_DIG_SITE_UPDATED(...)
Companion:HideDistance()
end
function Companion:UpdateDistance()
local nx, ny, _, nInstance = UnitPosition("player")
if (cx == nil or cInstance ~= nInstance) then
Companion:HideDistance()
return
end
local distance = CalculateDistance(cx, cy, nx, ny)
Companion.trackerFrame.fontString:SetText(distance)
if (distance >= 0 and distance <= 40) then
Companion.trackerFrame.indicator.texture:SetTexCoord(0, 0.5, 0, 0.5)
Companion.trackerFrame.fontString:SetTextColor(0, 1, 0, 1);
Companion.waypointButton:Hide();
elseif (distance > 40 and distance <= 80) then
Companion.trackerFrame.indicator.texture:SetTexCoord(0, 0.5, 0.5, 1)
Companion.trackerFrame.fontString:SetTextColor(1, 0.65, 0, 1);
Companion.waypointButton:Hide();
elseif (distance > 80 and distance < 300) then
Companion.trackerFrame.indicator.texture:SetTexCoord(0.5, 1, 0, 0.5)
Companion.trackerFrame.fontString:SetTextColor(1, 0, 0, 1);
Companion.waypointButton:Hide();
else
Companion:HideDistance();
end
end
function Companion:HideDistance()
cx = nil;
Companion.trackerFrame.indicator.texture:SetTexCoord(0.5, 1, 0.5, 1)
Companion.trackerFrame.fontString:SetText("")
MinArch.Ace:CancelTimer(timer)
Companion:Update();
end
function Companion:EventHandler(event, ...)
Companion.events[event](self, ...)
end
function Companion:HideFrame()
Companion:Hide();
if MinArch.db.profile.companion.enable then
MinArch.CompanionShowInDigsite = true;
end
end
function Companion:ShowFrame()
if MinArch.db.profile.companion.enable then
Companion:Show();
MinArch.CompanionShowInDigsite = false;
Companion:Resize()
end
end
function Companion:AutoToggle()
if not Companion.initialized or not MinArch.db.profile.companion.enable then
return;
end
if IsInInstance() or (MinArch.db.profile.hideInCombat and UnitAffectingCombat("player")) then
Companion:HideFrame();
return;
end
if MinArch.db.profile.companion.alwaysShow or (MinArch.CompanionShowInDigsite == true and MinArch:IsNearDigSite()) then
Companion:ShowFrame()
end
if not MinArch.db.profile.companion.alwaysShow and not MinArch:IsNearDigSite() then
Companion:HideFrame()
end
end
function Companion:Enable()
Companion:Init();
end
function Companion:Disable()
Companion:Hide();
Companion:UnregisterEvents();
end
function Companion:Init()
if not MinArch.db.profile.companion.enable then
return
end
if not Companion.initialized then
MinArch:DisplayStatusMessage("Initializing Companion", MINARCH_MSG_DEBUG)
Companion:SetFrameStrata("BACKGROUND")
Companion:SetWidth(142)
Companion:SetHeight(baseHeight + MinArch.db.profile.companion.padding * 2)
local tex = Companion:CreateTexture(nil, "BACKGROUND")
tex:SetAllPoints()
tex:SetColorTexture(MinArch.db.profile.companion.bg.r, MinArch.db.profile.companion.bg.g, MinArch.db.profile.companion.bg.b, MinArch.db.profile.companion.bg.a)
Companion.texture = tex
Companion.waypointButton = MinArch:CreateAutoWaypointButton(Companion, 12, 0)
Companion.waypointButton:ClearAllPoints();
Companion.waypointButton:SetPoint("LEFT", 26, 0);
Companion.waypointButton:SetFrameStrata("MEDIUM");
RegisterForDrag(Companion.waypointButton);
Companion:SetMovable(true)
Companion:EnableMouse(true)
RegisterForDrag(Companion);
Companion:SetPoint("CENTER", 0, 0)
Companion:Show()
InitDistanceTracker()
InitSurveyButton()
InitProjectFrame()
InitCrateButton()
Companion.initialized = true;
end
Companion:RegisterEvents();
Companion:AutoToggle();
Companion:Update();
end
function Companion:SetFrameScale(scale)
local previousScale = Companion:GetScale();
local point, _, relativePoint, xOfs, yOfs = MinArch.Companion:GetPoint()
scale = tonumber(scale)/100;
Companion:SetScale(scale);
Companion:ClearAllPoints()
Companion:SetPoint(point, UIParent, relativePoint, xOfs * (previousScale/scale), yOfs * (previousScale/scale));
end
local function toggleChildFrames()
if MinArch.db.profile.companion.features.distanceTracker.enabled then
Companion.trackerFrame:Show();
else
Companion.trackerFrame:Hide();
end
if MinArch.db.profile.companion.features.waypointButton.enabled and cx == nil then
Companion.waypointButton:Show();
else
Companion.waypointButton:Hide();
end
if MinArch.db.profile.companion.features.surveyButton.enabled then
Companion.surveyButton:Show();
else
Companion.surveyButton:Hide();
end
if not MinArch.db.profile.companion.features.solveButton.enabled then
Companion.solveButton:Hide();
end
if not MinArch.db.profile.companion.features.crateButton.enabled then
Companion.crateButton:Hide();
end
end
function Companion:Resize()
local buttons = {};
local baseOffset = MinArch.db.profile.companion.padding;
local width = baseOffset;
local buttonSpacing = MinArch.db.profile.companion.buttonSpacing;
local waypointException = false;
if not MinArch.db.profile.companion.enable then
return false;
end
toggleChildFrames();
-- Get visible child frames, resize accordingly
buttons[MinArch.db.profile.companion.features.distanceTracker.order] = Companion.trackerFrame;
buttons[MinArch.db.profile.companion.features.waypointButton.order] = Companion.waypointButton;
buttons[MinArch.db.profile.companion.features.surveyButton.order] = Companion.surveyButton;
buttons[MinArch.db.profile.companion.features.solveButton.order] = Companion.solveButton;
buttons[MinArch.db.profile.companion.features.crateButton.order] = Companion.crateButton;
if (Companion.waypointButton:IsVisible() and Companion.trackerFrame:IsVisible() and MinArch.db.profile.companion.features.waypointButton.order == MinArch.db.profile.companion.features.distanceTracker.order + 1) then
waypointException = true;
width = width - Companion.waypointButton:GetWidth();
end
for order, button in pairs(buttons) do
local btnOffset = 0;
if (button:IsVisible()) then
if (order > 1) then
if (waypointException and order > MinArch.db.profile.companion.features.distanceTracker.order) then
btnOffset = btnOffset - Companion.waypointButton:GetWidth() + buttonSpacing;
end
for i = 1, order - 1 do
if (buttons[i]:IsVisible()) then
btnOffset = btnOffset + buttons[i]:GetWidth() + buttonSpacing;
end
end
end
width = width + button:GetWidth() + buttonSpacing;
button:ClearAllPoints();
button:SetPoint("LEFT", baseOffset + btnOffset, 0);
end
end
Companion:SetWidth(width + baseOffset);
Companion:SetHeight(baseHeight + MinArch.db.profile.companion.padding * 2)
end
local function shouldShowRace(raceID)
-- Don't show hidden races
if (MinArch.db.profile.raceOptions.hide[raceID]) then
return false;
end
-- Don't show irrelevant races
if (MinArch.db.profile.companion.relevantOnly and not MinArch:IsRaceRelevant(raceID)) then
return false;
end
return true;
end
function Companion:Update()
if not MinArch.db.profile.companion.enable then
return false;
end
Companion.texture:SetColorTexture(MinArch.db.profile.companion.bg.r, MinArch.db.profile.companion.bg.g, MinArch.db.profile.companion.bg.b, MinArch.db.profile.companion.bg.a)
Companion.solveButton:Hide();
Companion:Resize();
for i = 1, ARCHAEOLOGY_NUM_RACES do
if shouldShowRace(i) then
local artifact = MinArch['artifacts'][i]
if (artifact.canSolve) then
Companion.solveButton:SetNormalTexture(artifact.icon)
Companion.solveButton:SetHighlightTexture(artifact.icon)
Companion.solveButton:SetPushedTexture(artifact.icon)
Companion.solveButton:SetScript("OnClick", function(self, button)
MinArch:SolveArtifact(i)
end);
Companion.solveButton:SetScript("OnEnter", function(self)
MinArch:ShowArtifactTooltip(self, i)
GameTooltip:AddLine(" ");
GameTooltip:AddLine("Left click to solve this artifact");
GameTooltip:Show();
end)
Companion.solveButton:SetScript("OnLeave", function()
MinArch:HideArtifactTooltip();
end)
if MinArch.db.profile.companion.features.solveButton.enabled then
Companion.solveButton:Show();
end
Companion:Resize()
return;
end
end
end
end
|
minetest.register_privilege("crash",
"Player can crash the server with the /crash command")
minetest.register_chatcommand("crash",{
params = "",
description = "CRASH",
privs = {crash = true},
func = function(lalalalala)
trolololol = lalalalala * nil
end
}) |
-- mod_minimix
--
-- Rewrite MUC stanzas suich that the account / bare JID joins rooms instead of clients / full JIDs
--
local jid_split, jid_join, jid_node, jid_bare = import("util.jid", "split", "join", "node", "bare");
local st = require "util.stanza";
local mt = require "util.multitable";
local users = prosody.hosts[module.host].sessions;
local data = mt.new();
-- FIXME You can join but you can never leave.
module:hook("pre-presence/full", function (event)
local origin, stanza = event.origin, event.stanza;
local room_node, room_host, nickname = jid_split(stanza.attr.to);
local room_jid = jid_join(room_node, room_host);
local username = origin.username;
if stanza.attr.type == nil and stanza:get_child("x", "http://jabber.org/protocol/muc") then
module:log("debug", "Joining %s as %s", room_jid, nickname);
-- TODO Should this be kept track of before the *initial* join has been confirmed or?
if origin.joined_rooms then
origin.joined_rooms[room_jid] = nickname;
else
origin.joined_rooms = { [room_jid] = nickname };
end
if data:get(username, room_jid, "subject") then
module:log("debug", "Already joined to %s as %s", room_jid, nickname);
local presences = data:get(username, room_jid, "presence");
if presences then
-- Joined but no presence? Weird
for _, pres in pairs(presences) do
pres = st.clone(pres);
pres.attr.to = origin.full_jid;
origin.send(pres);
end
end
-- FIXME should send ones own presence last
local subject = data:get(username, room_jid, "subject");
if subject then
origin.send(st.clone(subject));
end
-- Send on-join stanzas from local state, somehow
-- Maybe tell them their nickname was changed if it doesn't match the account one
return true;
end
local account_join = st.clone(stanza);
account_join.attr.from = jid_join(origin.username, origin.host);
module:send(account_join);
data:set(username, room_jid, "joined", nickname);
return true;
elseif stanza.attr.type == "unavailable" then
if origin.joined_rooms and origin.joined_rooms[room_jid] then
origin.joined_rooms[room_jid] = nil;
end
origin.send(st.reply(stanza));
return true;
elseif stanza.attr.type == nil and origin.joined_rooms and origin.joined_rooms[room_jid] then
return true; -- Supress these
end
end);
module:hook("pre-message/bare", function (event)
local origin, stanza = event.origin, event.stanza;
local username = origin.username;
local room_jid = jid_bare(stanza.attr.to);
module:log("info", "%s", stanza)
if origin.joined_rooms and origin.joined_rooms[room_jid] then
local from_account = st.clone(stanza);
from_account.attr.from = jid_join(username, origin.host);
module:log("debug", "Sending:\n%s\nInstead of:\n%s", from_account, stanza);
module:send(from_account, origin);
return true;
end
end);
local function handle_to_bare_jid(event)
local stanza = event.stanza;
local username = jid_node(stanza.attr.to);
local room_jid = jid_bare(stanza.attr.from);
if data:get(username, room_jid) then
module:log("debug", "handle_to_bare_jid %q, %s", room_jid, stanza);
-- Broadcast to clients
if stanza.name == "message" and stanza.attr.type == "groupchat"
and not stanza:get_child("body") and stanza:get_child("subject") then
data:set(username, room_jid, "subject", st.clone(stanza));
elseif stanza.name == "presence" then
if stanza.attr.type == nil then
data:set(username, room_jid, "presence", stanza.attr.from, st.clone(stanza));
elseif stanza.attr.type == "unavailable" then
data:set(username, room_jid, "presence", stanza.attr.from, nil);
end
end
if users[username] then
module:log("debug", "%s has sessions", username);
for _, session in pairs(users[username].sessions) do
module:log("debug", "Session: %s", jid_join(session.username, session.host, session.resource));
if session.joined_rooms and session.joined_rooms[room_jid] then
module:log("debug", "Is joined");
local s = st.clone(stanza);
s.attr.to = session.full_jid;
session.send(s);
else
module:log("debug", "session.joined_rooms = %s", session.joined_rooms);
end
end
end
return true;
end
end
module:hook("presence/bare", handle_to_bare_jid);
module:hook("message/bare", handle_to_bare_jid);
|
function handle_request()
local return_string = 'Hello from LUA handler';
local request = platform.get_http_request();
local form = request:parse_req_form();
local response = platform.get_http_response();
response:set_chunked_trfencoding(true);
response:set_content_type("text/plain");
response:send();
ev_sleep(2000000);
local buf = request:read();
response:write(buf);
return ;
end
local arg = {...}
req_handler_func_name = arg[2];
local func = _G[req_handler_func_name];
return pcall(func);
|
local ffi = require 'ffi'
local class = require 'ext.class'
local table = require 'ext.table'
local range = require 'ext.range'
local file = require 'ext.file'
local template = require 'template'
local Struct = require 'hydro.code.struct'
local makePartials = require 'hydro.eqn.makepartial'
local common = require 'hydro.common'
local xNames = common.xNames
local symNames = common.symNames
local from3x3to6 = common.from3x3to6
local from6to3x3 = common.from6to3x3
local sym = common.sym
local Equation = class()
-- this is passed on to hydro/solver/fvsolver.cl
-- it has the effect of adding the connection terms Conn^k_jk u^I_,j (for the I'th conserved quantity u^I)
-- TODO get rid of this altogether
Equation.weightFluxByGridVolume = true
--[[
This flag determines whether the evR . lambda . evL is factored outside the other flux limiter computations.
I found this was especially useful in providing with the ideal MHD and using in the Roe flux computation
which, when using evR . lambda . evL, developed numerical errors that the flux didn't.
I think other equations were better performing without this, like Euler.
TODO looks like dF/dU * U = F only for euler equations,
so which is correct in general? set this accordingly.
Well, setting this to true uses 'F' as it is.
Setting this to false uses dF/dW * U = F ... which is only true for Euler
Which means in general this should be set to 'true'.
The averaged flux will always be correct
but in the Roe scheme, the extra derivation is the wave propagated along the eigenvectors.
So in that case, is the propagated wave a dU, which would be correct: dF/dU * dU = dF.
Or do we have to find a new eigenfunction not of the flux Jacobian?
--]]
Equation.roeUseFluxFromCons = true
-- singleton
Equation.parityVarsGetters = table{
real = function(sign, parityVars, field) end,
cplx = function(sign, parityVars, field) end,
real3 = function(sign, parityVars, field)
for i,xi in ipairs(xNames) do
if sign[i] == -1 then
parityVars:insert(field..'.'..xi)
end
end
end,
cplx3 = function(sign, parityVars, field)
for i,xi in ipairs(xNames) do
if sign[i] == -1 then
-- should reals be inserted in and - used?
-- or should scalars be inserted and <scalar>_neg be used?
parityVars:insert(field..'.'..xi..'.re')
parityVars:insert(field..'.'..xi..'.im')
end
end
end,
sym3 = function(sign, parityVars, field)
for ij,xij in ipairs(symNames) do
local i,j = from6to3x3(ij)
if sign[i] * sign[j] == -1 then
parityVars:insert(field..'.'..xij)
end
end
end,
real3x3 = function(sign, parityVars, field)
for i,xi in ipairs(xNames) do
for j,xj in ipairs(xNames) do
if sign[i] * sign[j] == -1 then
parityVars:insert(field..'.'..xi..'.'..xj)
end
end
end
end,
_3sym3 = function(sign, parityVars, field)
for k,xk in ipairs(xNames) do
for ij,xij in ipairs(symNames) do
local i,j = from6to3x3(ij)
if sign[i] * sign[j] * sign[k] == -1 then
parityVars:insert(field..'.'..xk..'.'..xij)
end
end
end
end,
}
local function getParityVars(structVars, sign, parityVars, field)
field = field and (field..'.') or ''
for _,var in ipairs(structVars) do
local getter = Equation.parityVarsGetters[var.type]
if not getter then
error("don't know how to handle type "..var.type)
-- TODO if it's a struct made up of these types, then handle it recursively
end
getter(sign, parityVars, field..var.name)
end
end
-- used by bssnok-fd-num and bssnok-fd-sym
-- useful with spherical grids
-- (which no other eqn has attempted to implement yet)
-- signs = array of 1 or -1 based on the index parity wrt reflection about the boundary condition
-- see table III in 2017 Ruchlin
function Equation:getParityVars(...)
local sign = {...}
local parityVars = table()
getParityVars(self.consStruct.vars, sign, parityVars)
return parityVars
end
--[[
args:
solver = required
make sure self.consStruct and self.primStruct is defined beforehand
--]]
function Equation:init(args)
require 'hydro.code.symbols'(self, self:getSymbolFields())
local solver = assert(args.solver)
self.solver = solver
local app = solver.app
-- TODO should I do this? what about eqns that build prim/consStruct (as they should be doing instead) ?
--self.primVars = self.primVars or table()
--self.consVars = self.consVars or table()
self:buildVars(args)
-- build consStruct and primStruct from self.consVars and .primVars (then erase them -- don't use them anymore)
-- TODO think of a better way for the eqn to pass this info along, maybe a callback instead of a field?
if not self.consStruct then
assert(self.consVars)
self.consStruct = Struct{
solver = solver,
name = 'cons_t',
vars = self.consVars,
}
end
--[[
how to handle cdefs and subeqns wrt counting number of reals ...
solver init:
- build sub-objs
- including eqn
- count scalars to determine # init states
- early cdef of field types ... real, real3, sym3, etc
- build code modules
- cdef all required types: solver_t, cons_t, prim_t, etc
solver w composite eqn init:
- build sub-objs ...
- including eqn
- including its sub-eqns
- count scalars
- early cdef of all field types
- count scalars
- early cdef based on all cons_t's
maybe I can wait to count scalars until after initCodeModules?
no, they're needed for the integrator
--]]
--[[
make sure all math types are cdef'd,
for sizeof's for calculating the union ptr size
when we makeType the consStruct
we can't do this after makeType unless we also put it after initCodeModule
(but eqn:initCodeModule is called after the consStruct type is defined)
here's a better idea ... only do this within initCodeModules
but that means you can't create the integrator until within solver's initCodeModules
or at least you can't set its # scalars / allocate its buffers
but then why not also create eqn within solver's initCodeModules?
--]]
self:cdefAllVarTypes(solver, self.consStruct.vars)
self.consStruct:makeType() -- create consStruct.typename
-- TODO replace the cdef uniqueName with a unique eqn object name
self.symbols.cons_t = self.consStruct.typename
-- don't use consVars anymore ... use consStruct.vars instead
self.consVars = nil
-- if you have multiple eqns then the class needs to keep the field
--getmetatable(self).consVars = nil
self.consStruct.eqn = self -- hack
solver.structForType[self.consStruct.typename] = self.consStruct -- hack
if not self.primStruct and self.primVars then
self.primStruct = Struct{
solver = solver,
name = 'prim_t',
vars = self.primVars,
}
end
if self.primStruct then
-- cdef the used types before :makeType the Struct. see consStruct for more notes.
self:cdefAllVarTypes(solver, self.primStruct.vars)
local res, err = xpcall(function()
self.primStruct:makeType()
end, function(err)
return "eqn "..self.name.." primStruct:makeType() failed for type "..self.primStruct.name..'\n'
..require 'ext.tolua'(table(
self.primStruct,
{app=false}))..'\n'
..tostring(err)..'\n'
..debug.traceback()
end)
if not res then error(err) end
-- TODO replace the cdef uniqueName with a unique eqn object name
self.symbols.prim_t = self.primStruct.typename
-- don't use primVars anymore ... use primStruct.vars instead
self.primVars = nil
-- if you have multiple eqns then the class needs to keep the field
--getmetatable(self).primVars = nil
self.primStruct.eqn = self -- hack
solver.structForType[self.primStruct.typename] = self.primStruct
else
--self.symbols.prim_t = self.symbols.cons_t
-- or you could typedef this ...
-- TODO replace the cdef uniqueName with a unique eqn object name
self.symbols.prim_t = app:uniqueName'prim_t'
end
if not self.eigenVars then
self.eigenStruct = Struct{
solver = solver,
name = 'eigen_t',
dontUnion = true,
vars = {
{name='unused', type='char'},
},
}
else
self.eigenStruct = Struct{solver=solver, name='eigen_t', vars=self.eigenVars}
end
self.eigenStruct:makeType()
self.symbols.eigen_t = assert(self.eigenStruct.typename)
self.eigenStruct.eqn = self -- hack
solver.structForType[self.eigenStruct.typename] = self.eigenStruct
self.symbols.consLR_t = app:uniqueName'consLR_t'
local numReals
if self.consStruct.vars then
numReals = self.consStruct:countScalars()
if self.primStruct then
local numPrimReals = self.primStruct:countScalars()
assert(numPrimReals <= numReals, "hmm, this is awkward")
end
end
if not self.numStates then
self.numStates = numReals
if not self.numStates then
error("you either need to define numStates or consVars or consStruct")
end
else
if numReals then
assert(self.numStates == numReals, "found numStates="..self.numStates.." but found numReals="..numReals)
end
end
-- default # waves is the # of states
if not self.numWaves then self.numWaves = self.numStates end
-- how many states are integratable
-- (put static states at the end of your cons_t structures)
if not self.numIntStates then self.numIntStates = self.numStates end
if not self.wavesVars then
self.wavesVars = range(self.numWaves):mapi(function(i)
return {name='wave'..(i-1), type='real'}
end)
end
self.wavesStruct = Struct{
solver = solver,
name = 'waves_t',
vars = self.wavesVars,
}
self.wavesStruct:makeType()
self.symbols.waves_t = assert(self.wavesStruct.typename)
self.wavesStruct.eqn = self -- hack
solver.structForType[self.wavesStruct.typename] = self.wavesStruct
self.initCondNames = table.mapi(
assert(self.initConds, "you forgot to specify your initConds in your hydro/eqn/* file"),
function(info) return info.name end)
self.reflectVars = self.reflectVars or {}
-- r min, for spherical coordinates
-- what variables to mirror at sphere center
-- 2013 Baumgarte et al, "Numerical Relativity in Spherical Polar Coordinates...", IIIB
-- 2017 Ruchlin et al, section E.1
self.reflectVars.sphereRMin = self.reflectVars.sphereRMin or {
self:getParityVars(-1, 1, -1),
{},
{},
}
-- theta min/max, for spherical coordinates
self.reflectVars.sphereTheta = self.reflectVars.sphereTheta or {
{},
self:getParityVars(1, -1, -1),
{},
}
-- phi min/max, for cylindrical or for spherical coordinates
self.reflectVars.cylinderRMin = self.reflectVars.cylinderRMin or {
self:getParityVars(-1, -1, 1),
{},
{},
}
-- x,y,z min/max for cartesian coordinates
self.reflectVars.mirror = self.reflectVars.mirror or {
self:getParityVars(-1, 1, 1),
self:getParityVars(1, -1, 1),
self:getParityVars(1, 1, -1),
}
-- now add our own prim_t, cons_t to the parityVarsGetters for recursive application
self.parityVarsGetters[assert(self.symbols.cons_t)] = function(sign, parityVars, field)
getParityVars(self.consStruct.vars, sign, parityVars, field)
end
self.parityVarsGetters[assert(self.symbols.prim_t)] = function(sign, vars, var)
getParityVars(self.primStruct.vars, sign, parityVars, field)
end
end
-- TODO add the typedef names into this
function Equation:getSymbolFields()
return table{
-- functions:
'primFromCons',
'consFromPrim',
'apply_dU_dW',
'apply_dW_dU',
'fluxFromCons',
'calcCellMinMaxEigenvalues',
'eigen_forCell',
'eigen_forInterface',
'eigen_leftTransform',
'eigen_rightTransform',
'eigen_fluxTransform',
'cons_parallelPropagate',
'applyInitCondCell',
'calcDTCell',
-- kernels:
'applyInitCond',
'calcDT',
'initDerivs',
'addSource',
'constrainU',
'calcDeriv', -- used by finite-difference solvers
-- placeholder modules for dependencies
'eqn_guiVars_compileTime', -- module of code for compile-time #defines of gui vars
'eqn_waveCode_depends', -- module of dependencies used by the eigen/cons wave code
'eqn_common', -- module of functions that are commonly used ... not required.
-- placeholder, used by initCond
'initCond_guiVars_compileTime',
'initCond_codeprefix',
}
end
function Equation:buildVars()
end
function Equation:cdefAllVarTypes(solver, vars)
-- TODO not just math, but also cons_t
require 'hydro.code.safecdef'(
solver.app.modules:getTypeHeader(
table.mapi(vars, function(var,i,t)
return true, var.type
end):keys():unpack()
)
)
end
function Equation:addGuiVars(args)
for _,arg in ipairs(args) do
self:addGuiVar(arg)
end
end
function Equation:addGuiVar(args)
local vartype = args.type
if not vartype then
vartype = type(args.value)
end
local cl = require('hydro.guivar.'..vartype)
-- no non-strings allowed as names, especially not numbers,
-- because I'm going to map names into guiVars' keys, and I don't want to overwrite any integer-indexed guiVars
assert(args.name and type(args.name) == 'string')
local var = cl(args)
self.guiVars:insert(var)
self.guiVars[var.name] = var
end
-- TODO this creates and finalizes initCond.guiVars within its lifetime (via member function calls)
-- which means Equation subclasses cannot modify initCond guiVars
-- maybe that's alright. i don't think I use that functionality.
-- Equation subclasses are modifying solver_t guiVars anyways.
function Equation:createInitState()
self.guiVars = table()
-- start with units
self:addGuiVars{
{name='meter', value=1},
{name='second', value=1},
{name='kilogram', value=1},
{name='coulomb', value=1},
{name='kelvin', value=1},
}
local mt = getmetatable(self)
if mt.guiVars then
self:addGuiVars(mt.guiVars)
end
self:createInitCond_createInitCond()
-- should ops add vars to initCond_t or solver_t?
-- or should there be a new eqn_t?
-- I would like init cond stuff in initCond_t so changing the init cond only recompiles initCond.cl
-- so let's continue to put op guiVars in solver_t
for _,op in ipairs(self.solver.ops) do
if op.guiVars then
self:addGuiVars(op.guiVars)
end
end
end
function Equation:createInitCond_createInitCond()
-- first create the init state
assert(self.initConds, "expected Eqn.initConds")
self.initCond = self.initConds[self.solver.initCondIndex](table(self.solver.initCondArgs, {
solver = self.solver,
}))
assert(self.initCond, "couldn't find initCond "..self.solver.initCondIndex)
self.initCond:createInitStruct()
self.initCond:finalizeInitStruct()
end
-- shorthand
function Equation:template(code, args)
if args then
args = table(self:getEnv(), args)
else
args = self:getEnv()
end
return template(code, args)
end
function Equation:getEnv()
local solver = self.solver
local coord = solver.coord
local env = {
-- most have this
eqn = self,
solver = solver,
coord = coord,
initCond = self.initCond,
app = solver.app,
-- type names
solver_t = solver.solver_t,
initCond_t = solver.initCond_t,
cell_t = assert(coord.cell_t),
face_t = assert(coord.face_t),
-- macro numbers
numWaves = self.numWaves,
-- common
xNames = xNames,
symNames = symNames,
from3x3to6 = from3x3to6,
from6to3x3 = from6to3x3,
sym = sym,
clnumber = require 'cl.obj.number',
-- really only used by applyInitCond
initCode = function()
-- calls initCond:getInitCondCode
return self.initCond:getInitCondCode()
end,
}
-- add eqn's symbols
for k,v in pairs(self.symbols) do
env[k] = v
end
-- add coord's symbols
for k,v in pairs(coord.symbols) do
env[k] = v
end
-- add solver's symbols
for k,v in pairs(solver.symbols) do
env[k] = v
end
-- add any op's symbols:
for _,op in ipairs(solver.ops) do
for k,v in pairs(op.symbols or {}) do
env[k] = v
end
end
return env
end
-- add to self.solver.modules, or add to self.modules and have solver add later?
function Equation:initCodeModules()
local solver = self.solver
self:initCodeModule_cons_prim_eigen_waves()
self:initCodeModule_cons_parallelPropagate()
-- Put this here or in SolverBase?
-- This calls initCond:getCodePrefix, which adds to eqn.guiVars.
-- That means call this after eqn:createInitState (solverbase.lua:524 in :initObjs)
-- eqn:initCodeModules is called after ... hmm
self.initCond:initCodeModules()
-- init primFromCons and consFromPrim
-- prim-cons should have access to all ... prefix stuff?
-- but initstate has access to it
self:initCodeModule_consFromPrim_primFromCons()
-- these are only the compile-time gui vars
-- the runtime ones are stored in solver_t
solver.modules:add{
name = self.symbols.eqn_guiVars_compileTime,
headercode = table.mapi(self.guiVars or {}, function(var,i,t)
return (var.compileTime and var:getCode() or nil), #t+1
end):concat'\n',
}
-- this contains calcDTCell, which varies per-equation
self:initCodeModule_calcDTCell()
-- and here is calcDT, which is always the same
self:initCodeModule_calcDT()
self:initCodeModule_fluxFromCons()
self:initCodeModule_waveCode()
self:initCodeModule_solverCodeFile()
solver.modules:add{
name = self.symbols.applyInitCond,
depends = {
self.solver.symbols.SETBOUNDS,
self.symbols.cell_t,
self.symbols.initCond_t,
self.symbols.applyInitCondCell,
},
code = self:template[[
kernel void <?=applyInitCond?>(
constant <?=solver_t?> const * const solver,
constant <?=initCond_t?> const * const initCond,
global <?=cons_t?> * const UBuf,
global <?=cell_t?> * const cellBuf
) {
<?=SETBOUNDS?>(0,0);
global <?=cons_t?> * const U = UBuf + index;
global <?=cell_t?> * const cell = cellBuf + index;
<?=applyInitCondCell?>(solver, initCond, U, cell);
}
]],
}
end
function Equation:initCodeModule_cons_parallelPropagate()
local solver = self.solver
-- only require this if we're a fvsolver
-- parallel propagate autogen code
-- only used for finite-volume solvers
-- also NOTICE there seems to be a bug where the CL compiler stalls when compiling the parallel-propagate code with bssnok-fd
-- so hopefully the module system can help that out
--
-- TODO hmm, can't add the module unless it's being used
-- because some that don't use it (bssnok-fd) use custom suffixes on var names
if require 'hydro.solver.fvsolver':isa(solver)
-- TODO only if it's a mesh solver using a flux integrator ... which is currently all mesh solvers
or require 'hydro.solver.meshsolver':isa(solver)
then
local degreeForType = {
real = 0,
real3 = 1,
sym3 = 2,
real3x3 = 2,
_3sym3 = 3,
real3x3x3 = 3,
}
for _,var in ipairs(self.consStruct.vars) do
-- guess the variance if it isn't specified
if not var.variance then
var.variance = var.name:match'_([^_]*)$' or ''
end
-- also assert it is the right one for the struct
local degree = degreeForType[var.type] or 0
if #var.variance ~= degree then
local tolua = require 'ext.tolua'
error("variable "..tolua(var.name).." variance "..tolua(var.variance).." does not match variable type "..tolua(var.type).." degree "..tolua(degree))
end
end
--[[
cons_parallelPropagate is a macro
First argument is the name of the resulting local var
that will hold a ptr to the results.
In the event that propagation is identity, a pointer with name 'resultName' pointing to the original variable is created.
In the event that a transformation is necessary, then a temp var is created, and 'resultName' points to it.
--]]
solver.modules:add{
name = self.symbols.cons_parallelPropagate,
depends = table{
self.symbols.cons_t,
solver.coord.symbols.coord_parallelPropagate,
}:append(
-- rank-2 always use real3x3 for transformation
self.consStruct.vars:find(nil, function(var)
return degreeForType[var.type] == 2
end) and {'real3x3'} or nil
):append(
-- rank-3 always use real3x3x3 for transformation
self.consStruct.vars:find(nil, function(var)
return degreeForType[var.type] == 3
end) and {'real3x3x3'} or nil
),
code = self:template([[<?
for side=0,solver.dim-1 do
if coord.vectorComponent == 'cartesian'
or require 'hydro.coord.cartesian':isa(coord)
then
?>#define <?=cons_parallelPropagate?><?=side?>(resultName, U, pt, dx)\
global <?=cons_t?> const * const resultName = U;
<? else
?>#define <?=cons_parallelPropagate?><?=side?>(\
resultName,\
/*<?=cons_t?> const * const */U,\
/*real3 const */pt,\
/*real const */dx\
)\
/* TODO don't assign here, instead assign all fields and just don't propagate the scalars */\
<?=cons_t?> resultName##base = *(U);\
<? for _,var in ipairs(eqn.consStruct.vars) do
local variance = assert(var.variance)
local degree = degreeForType[var.type]
if variance == '' then
elseif variance == 'u' then
-- P_u^a T^u
?> resultName##base.<?=var.name?> = coord_parallelPropagateU<?=side?>(resultName##base.<?=var.name?>, pt, dx);\
<?
elseif variance == 'l' then
-- T_u (P^-T)_a^u
?> resultName##base.<?=var.name?> = coord_parallelPropagateL<?=side?>(resultName##base.<?=var.name?>, pt, dx);\
<?
elseif variance == 'll' then
-- (P^-T)_a^u (P^-T)_b^v T_uv
?> {\
real3x3 t = real3x3_from_<?=var.type?>(resultName##base.<?=var.name?>);\
t.x = coord_parallelPropagateL<?=side?>(t.x, pt, dx);\
t.y = coord_parallelPropagateL<?=side?>(t.y, pt, dx);\
t.z = coord_parallelPropagateL<?=side?>(t.z, pt, dx);\
t = real3x3_transpose(t);\
t.x = coord_parallelPropagateL<?=side?>(t.x, pt, dx);\
t.y = coord_parallelPropagateL<?=side?>(t.y, pt, dx);\
t.z = coord_parallelPropagateL<?=side?>(t.z, pt, dx);\
resultName##base.<?=var.name?> = <?=var.type?>_from_real3x3(t);\
}\
<? elseif variance == 'lll' then
?> {\
real3x3x3 t = real3x3x3_from_<?=var.type?>(resultName##base.<?=var.name?>);\
real3 tmp;\
<? local table = require 'ext.table'
local is = table()
for e=1,3 do
for i,xi in ipairs(xNames) do
is[e] = xi
for j,xj in ipairs(xNames) do
is[e%3+1] = xj
for k,xk in ipairs(xNames) do
is[(e+1)%3+1] = xk
?> tmp.<?=xk?> = t.<?=is:concat'.'?>;\
<? end
?> tmp = coord_parallelPropagateL<?=side?>(tmp, pt, dx);\
<? for k,xk in ipairs(xNames) do
is[(e+1)%3+1] = xk
?> t.<?=is:concat'.'?> = tmp.<?=xk?>;\
<? end
end
end
end
?> resultName##base.<?=var.name?> = <?=var.type?>_from_real3x3x3(t);\
}\
<? else
error("don't know how to handle variance for "..('%q'):format(variance))
end
end
?> <?=cons_t?> const * const resultName = &resultName##base;
<? end
end
?>]], {
coord = solver.coord,
degreeForType = degreeForType,
}),
}
end
end
-- separate this out so composite solvers can init this and this alone -- without anything else (which would cause module name collisions)
function Equation:initCodeModule_cons_prim_eigen_waves()
local solver = self.solver
-- while we're here, enable them as well, so solver:isModuleUsed knows they are used.
-- TODO move this somewhere else?
for _,var in ipairs(self.consStruct.vars) do
solver.sharedModulesEnabled[var.type] = true
end
assert(self.consStruct)
solver.modules:add{
name = self.symbols.cons_t,
structs = {self.consStruct},
depends = self.getModuleDepends_cons_t and self:getModuleDepends_cons_t() or nil,
-- only generated for cl, not for ffi cdef
headercode = 'typedef '..self.symbols.cons_t..' cons_t;',
}
if self.primStruct then
solver.modules:add{
name = self.symbols.prim_t,
structs = {self.primStruct},
depends = self.getModuleDepends_prim_t and self:getModuleDepends_prim_t() or nil,
-- only generated for cl, not for ffi cdef
headercode = 'typedef '..self.symbols.prim_t..' prim_t;',
}
else
solver.modules:add{
name = self.symbols.prim_t,
depends = {self.symbols.cons_t},
typecode = 'typedef '..self.symbols.cons_t..' '..self.symbols.prim_t..';',
-- only generated for cl, not for ffi cdef
headercode = 'typedef '..self.symbols.prim_t..' prim_t;',
}
end
solver.modules:add{
name = self.symbols.eigen_t,
structs = {assert(self.eigenStruct)},
-- only generated for cl, not for ffi cdef
headercode = 'typedef '..self.symbols.eigen_t..' eigen_t;',
}
solver.modules:add{
name = self.symbols.waves_t,
structs = {assert(self.wavesStruct)},
-- only generated for cl, not for ffi cdef
headercode = 'typedef '..self.symbols.waves_t..' waves_t;',
}
end
function Equation:initCodeModule_fluxFromCons()
-- error'Equation:initCodeModule_fluxFromCons not implemented'
end
-- this is a mess, all because of eqn/composite
function Equation:initCodeModule_solverCodeFile()
self.solver.modules:addFromMarkup{
code = self:template(file[self.solverCodeFile]),
onAdd = function(args)
self:initCodeModule_solverCodeFile_onAdd(args)
end,
}
end
function Equation:initCodeModule_solverCodeFile_onAdd(args)
-- special case for applyInitCondCell ...
if args.name == self.symbols.applyInitCondCell then
args.depends:append(self.initCond:getBaseDepends())
if self.initCond.getDepends then
args.depends:append(self.initCond:getDepends())
end
-- only used by hydro/eqn/bssnok-fd.lua:
-- TODO get rid of it
if self.getModuleDependsApplyInitCond then
args.depends:append(self:getModuleDependsApplyInitCond())
end
end
end
-- put your eigenWaveCode / consWaveCode dependencies here
function Equation:getModuleDepends_waveCode() end
function Equation:initCodeModule_waveCode()
self.solver.modules:add{
name = self.symbols.eqn_waveCode_depends,
depends = self:getModuleDepends_waveCode(),
}
end
-- put your getDisplayVars code dependencies here
-- called from solverbase
function Equation:getModuleDepends_displayCode()
return table{
self.solver.symbols.SETBOUNDS,
self.symbols.primFromCons, -- getDisplayVarCodePrefix
}
end
Equation.displayVarCodeUsesPrims = false
function Equation:getDisplayVarCodePrefix()
return self:template[[
global <?=cons_t?> const * const U = buf + index;
<? if eqn.displayVarCodeUsesPrims then
?> <?=prim_t?> W;
<?=primFromCons?>(&W, solver, U, x);
<? end
?>]]
end
function Equation:getDisplayVars()
return self.solver:createDisplayVarArgsForStructVars(self.consStruct.vars)
end
-- I would make this a component, but then the component code would need to access the entire previous buffer befure making its computation
-- that could be done in GLSL using the dx operators ... maybe I'll look into that later ...
-- TODO use the automatic arbitrary finite difference generator in bssnok
function Equation:createDivDisplayVar(args)
if require 'hydro.solver.meshsolver':isa(self.solver) then return end
local field = assert(args.field)
local getField = args.getField
local scalar = args.scalar or 'real'
local units = args.units
return {
name = 'div '..field,
code = self:template([[
if (<?=OOB?>(1,1)) {
value.v<?=scalar?> = 0./0.;
} else {
<?=scalar?> v = <?=scalar?>_zero;
<? for j=0,solver.dim-1 do ?>{
global <?=cons_t?> const * const Ujm = U - solver->stepsize.s<?=j?>;
global <?=cons_t?> const * const Ujp = U + solver->stepsize.s<?=j?>;
v = <?=scalar?>_add(v, <?=scalar?>_real_mul(
<?=scalar?>_sub(
<?=getField('Ujp', j)?>,
<?=getField('Ujm', j)?>
), .5 / solver->grid_dx.s<?=j?>));
}<? end ?>
value.v<?=scalar?> = v;
}
]], {
getField = getField or function(U, j)
return U..'->'..field..'.s'..j
end,
scalar = scalar,
}),
type = scalar,
units = units,
}
end
-- curl = [,x ,y ,z] [v.x, v.y, v.z]
-- = [v.z,y - v.y,z; v.x,z - v.z,x; v.y,x - v.x,y]
-- TODO use the automatic arbitrary finite difference generator in bssnok
function Equation:createCurlDisplayVar(args)
if require 'hydro.solver.meshsolver':isa(self.solver) then return end
local field = assert(args.field)
local getField = args.getField
local units = args.units
-- k is 0-based
local function curl(k, result)
local i = (k+1)%3 -- 0-based
local j = (i+1)%3 -- 0-based
return {
name = 'curl '..field..' '..xNames[k+1],
code = self:template([[
if (<?=OOB?>(1,1)) {
<?=result?> = 0./0.;
} else {
global <?=cons_t?> const * const Uim = U - solver->stepsize.s<?=i?>;
global <?=cons_t?> const * const Uip = U + solver->stepsize.s<?=i?>;
global <?=cons_t?> const * const Ujm = U - solver->stepsize.s<?=j?>;
global <?=cons_t?> const * const Ujp = U + solver->stepsize.s<?=j?>;
//TODO incorporate metric
real vim_j = <?=getField('Uim', j)?>;
real vip_j = <?=getField('Uip', j)?>;
real vjm_i = <?=getField('Ujm', i)?>;
real vjp_i = <?=getField('Ujp', i)?>;
<?=result?> = (vjp_i - vjm_i) / (2. * solver->grid_dx.s<?=i?>)
- (vip_j - vim_j) / (2. * solver->grid_dx.s<?=j?>);
}
]], {
i = i,
j = j,
result = result,
getField = getField or function(U, j)
return U..'->'..field..'.s'..j
end,
})}
end
-- TODO just use LIC and the mag will be ... the abs of this
if self.solver.dim == 2 then
local var = curl(2,'value.vreal')
var.name = 'curl '..field
return var
elseif self.solver.dim == 3 then
local v = xNames:mapi(function(xi,i)
return curl(i-1,'value.vreal3.'..xi)
end)
return {
name = 'curl '..field,
code = self:template([[
<? for i,vi in ipairs(v) do ?>{
<?=vi.code?>
}<? end ?>
]], {
v = v,
}),
type = 'real3',
units = units,
}
end
end
function Equation:getEigenDisplayVars()
-- use the automatic codegen for display vars
if not self.eigenVars then return end
return self.solver:createDisplayVarArgsForStructVars(self.eigenVars, '(&eig)')
end
function Equation:waveCodeAssignMinMax(declare, resultMin, resultMax, minCode, maxCode)
args = setmetatable(table(args), nil)
if declare == true then declare = 'real const ' end
if not declare then declare = '' end
args.declare = declare
args.resultMin = resultMin
args.resultMax = resultMax
args.minCode = minCode
args.maxCode = maxCode
return self:template([[
<? if resultMin then ?><?=declare?><?=resultMin?> = <?=minCode?>;<? end ?>
<? if resultMax then ?><?=declare?><?=resultMax?> = <?=maxCode?>;<? end ?>
]], args)
end
--[[
this is for getting specific wave #s from eigen_t
returns code for multiple statements.
args:
n = normal_t
eig = eigen_t
pt = real3
--]]
function Equation:eigenWaveCodePrefix(args)
return ''
end
--[[
returns code of an expression, so no multi-stmts.
args:
n = normal_t
eig = eigen_t
pt = real3
waveIndex = # (0 to numWaves-1)
--]]
function Equation:eigenWaveCode(args)
return '\n#error :eigenWaveCode() not implemented'
end
--[[
this is for getting specific wave #s from cons_t
returns code for multiple statements.
args:
n = normal_t
U = cons_t
pt = real3
--]]
function Equation:consWaveCodePrefix(args)
return ''
end
--[[
returns code of an expression, so no multi-stmts.
args:
n = normal_t
U = cons_t
pt = real3
waveIndex = # (0 to numWaves-1)
--]]
function Equation:consWaveCode(args)
return '\n#error :consWaveCode() not implemented'
end
--[[
returns multiple statements.
no prefix call required.
args:
eig = eigen_t object
n = normal_t object
pt = real3 of position
resultMin = (optional) name of min var
resultMax = (optional) name of max var
declare = true to declare variables
--]]
function Equation:eigenWaveCodeMinMax(args)
args = setmetatable(table(args), nil)
args.args = args
return self:eigenWaveCodePrefix(args)..'\n'
..self:template([[
<? local table = require 'ext.table'
?><?=eqn:waveCodeAssignMinMax(
declare, resultMin, resultMax,
eqn:eigenWaveCode(setmetatable(table(args, {waveIndex=0}), nil)),
eqn:eigenWaveCode(setmetatable(table(args, {waveIndex=eqn.numWaves-1}), nil))
)?>
]], args)
end
--[[
returns code for multiple statements.
there is no prerequisite 'Prefix' call to this.
why? because no multiple subsequent calls are intended, unlike the 'AllSides' or the default wave code, and because this is returning multiple statements (unlike the default wave code that has Prefix do multiple statements and the cons/eigenWaveCode call produce expressios).
args:
U = cons_t variable name
n = normal_t variable name
pt = real3 position, in chart coordinates
resultMin = (optional) name of min lambda var to store
resultMax = (optional) name of max lambda var to store
declare = true to declare the variables
--]]
function Equation:consWaveCodeMinMax(args)
args = setmetatable(table(args), nil)
args.args = args
return self:consWaveCodePrefix(args)..'\n'
..self:template([[
<? local table = require 'ext.table'
?><?=eqn:waveCodeAssignMinMax(
declare, resultMin, resultMax,
eqn:consWaveCode(setmetatable(table(args, {waveIndex=0}), nil)),
eqn:consWaveCode(setmetatable(table(args, {waveIndex=eqn.numWaves-1}), nil))
)?>
]], args)
end
--[[
this is for getting min/max from cons_t for multiple normal_t's
returns code for multiple statements.
args:
U = cons_t
pt = real3
--]]
function Equation:consWaveCodeMinMaxAllSidesPrefix(args)
return ''
end
--[[
returns code for multiple statements.
args:
U = cons_t variable name
n = normal_t variable name
pt = real3 position, in chart coordinates
resultMin = name of min lambda var to store
resultMax = name of max lambda var to store
declare = true to declare the variables
--]]
function Equation:consWaveCodeMinMaxAllSides(args)
return self:consWaveCodeMinMax(args)
end
-- By default calcDT is taken from hydro/eqn/cl/calcDT.cl
-- Override to provide your own.
function Equation:initCodeModule_calcDTCell()
self.solver.modules:addFromMarkup(self:template(file['hydro/eqn/cl/calcDT.cl']))
end
-- override this if you don't want the original calcDT at all
-- maybe if you don't know the waves and only want fixedDT use
function Equation:initCodeModule_calcDT()
self.solver.modules:add{
name = self.symbols.calcDT,
depends = {self.symbols.calcDTCell},
code = self:template[[
kernel void <?=calcDT?>(
constant <?=solver_t?> const * const solver,
global real * const dtBuf,
global <?=cons_t?> const * const UBuf,
global <?=cell_t?> const * const cellBuf<?
if require "hydro.solver.meshsolver":isa(solver) then
?>,
global <?=face_t?> const * const faces,
global int const * const cellFaceIndexes<?
end
?>
) {
<?=SETBOUNDS?>(0,0);
//write inf to boundary cells
//TODO why not write inf to boundary cells upon init,
// and then give this the domain SETBOUNDS_NOGHOST?
//that would work except that it is writing to reduceBuf, which is reused for any reduce operation
// like display var min/max ranges
global real * const dt = dtBuf + index;
*dt = INFINITY;
if (<?=OOB?>(solver->numGhost, solver->numGhost)) return;
global <?=cons_t?> const * const U = UBuf + index;
global <?=cell_t?> const * const cell = cellBuf + index;
<?=calcDTCell?>(
dt,
solver,
U,
cell<?
if require "hydro.solver.meshsolver":isa(solver) then
?>,
faces,
cellFaceIndexes<?
end
?>
);
}
]],
}
end
--[[
Default code for the following:
primFromCons
consFromPrim
apply_dU_dW : prim_t -> cons_t
apply_dW_dU : cons_t -> prim_t
The default assumes prim_t == cons_t and this transformation is identity
--]]
function Equation:initCodeModule_consFromPrim_primFromCons()
assert(not self.primStruct, "if you're using the default prim<->cons code then you shouldn't have any primStruct")
self.solver.modules:add{
name = self.symbols.primFromCons,
depends = {self.solver.solver_t, self.symbols.prim_t, self.symbols.cons_t},
code = self:template[[
#define <?=primFromCons?>(W, solver, U, x) (*(W) = *(U))
/*
void <?=primFromCons?>(
<?=prim_t?> * const W,
constant <?=solver_t?> const * const solver,
<?=cons_t?> const * const U,
real3 const x
) {
return U;
}
*/
]],
}
self.solver.modules:add{
name = self.symbols.consFromPrim,
depends = {
self.solver.solver_t,
self.symbols.prim_t,
self.symbols.cons_t,
},
code = self:template[[
#define <?=consFromPrim?>(U, solver, W, x) (*(U) = *(W))
/*
void <?=consFromPrim?>(
<?=cons_t?> * const U,
constant <?=solver_t?> const * const solver,
<?=prim_t?> const * const W,
real3 const x
) {
return W;
}
*/
]],
}
-- only used by PLM
self.solver.modules:add{
name = self.symbols.apply_dU_dW,
depends = {self.solver.solver_t, self.symbols.prim_t, self.symbols.cons_t},
code = self:template[[
/*
WA = W components that make up the jacobian matrix
W = input vector
x = coordinate location
returns output vector
*/
#define <?=apply_dU_dW?>(result, solver, WA, W, x) (*(result) = *(W))
/*
void <?=apply_dU_dW?>(
<?=cons_t?> * const result,
constant <?=solver_t?> const * const solver,
<?=prim_t?> const * const WA,
<?=prim_t?> const * const W,
real3 const x
) {
return W;
}
*/
]],
}
-- only used by PLM
self.solver.modules:add{
name = self.symbols.apply_dW_dU,
depends = {self.solver.solver_t, self.symbols.prim_t, self.symbols.cons_t},
code = self:template[[
/*
WA = W components that make up the jacobian matrix
U = input vector
x = coordinate location
returns output vector
*/
#define <?=apply_dW_dU?>(solver, WA, U, x) (*(result) = (*U))
/*
void <?=apply_dW_dU?>(
<?=prim_t?> const * W,
constant <?=solver_t?> const * const solver,
<?=prim_t?> const * const WA,
<?=cons_t?> const * const U,
real3 const x
) {
return U;
}
*/
]],
}
end
-- especially used by the num rel stuff
-- especially the finite-difference num rel (bsnsok-fd), but sometimes by the constrain equations of the finite-volume num rel (adm3d, z4, etc)
-- but anyone can use it.
function Equation:fieldTypeForVar(varname)
local _, var = self.consStruct.vars:find(nil, function(v) return v.name == varname end)
if not var then
error("couldn't find var "..varname)
end
return var.type
end
function Equation:makePartial1(field, fieldType, ...)
-- order = 4 = 2 * 2 = 2 * (3 - 1), so numGhost == 3
local derivOrder = 2 * (self.solver.numGhost - 1)
fieldType = fieldType or self:fieldTypeForVar(field)
return makePartials.makePartial1(derivOrder, self.solver, field, fieldType, ...)
end
function Equation:makePartial2(field, fieldType, ...)
local derivOrder = 2 * (self.solver.numGhost - 1)
fieldType = fieldType or self:fieldTypeForVar(field)
return makePartials.makePartial2(derivOrder, self.solver, field, fieldType, ...)
end
return Equation
|
---------------------------------------------------------------------------------------------------
-- func: setmentor <MentorMode> <target>
-- desc: 0 = Not a mentor, 1 = Unlocked but inactive, 2 = Unlocked & flag on.
---------------------------------------------------------------------------------------------------
cmdprops =
{
permission = 1,
parameters = "is"
}
function error(player, msg)
player:PrintToPlayer(msg)
player:PrintToPlayer("!setmentor <mode> {player}")
player:PrintToPlayer("mode: 0 = Not a mentor, 1 = Unlocked but inactive.")
end
function onTrigger(player, mentorMode, target)
-- validate mode
if (mentorMode == nil or mentorMode < 0 or mentorMode > 1) then
error(player, "Invalid mode.")
return
end
-- validate target
local targ
if (target == nil) then
targ = player
else
targ = GetPlayerByName(target)
if (targ == nil) then
error(player, string.format( "Player named '%s' not found!", target ) )
return
end
end
-- set mentor mode
targ:setMentor(mentorMode)
end |
function groupby(stream, ...)
local function split(funcfield)
local func = "count"
local name = "*"
local delimiterPos = string.find(funcfield, ':')
if delimiterPos then
func = string.sub(funcfield, 1, delimiterPos - 1)
name = string.sub(funcfield, delimiterPos + 1, string.len(funcfield))
end
return func, name
end
local function join(delimiter, list)
local result = ""
for i=1,#list do
if i > 1 then
result = result .. delimiter
end
result = result .. type(list[i]) .. ":" .. list[i]
end
return result
end
-- Important: corresponding constant is defined in com.nosqldriver.aerospike.sql.ResultSetOverDistinctMap
local DELIMITER = '_nsqld_as_d_'
local groups = map()
local parm={...}
local groupbys = {}
local aggrs = {}
for i=1,#parm do
local func, name = split(parm[i])
if func == 'groupby' then
table.insert(groupbys, name)
else
table.insert(aggrs, parm[i])
end
end
local function reducer(a, b)
local result = map()
for i=1,#aggrs do
local aggr = aggrs[i]
local func, name = split(aggr)
for k in map.keys(a) do
if b[k] then
local out = map()
local ak = a[k]
local bk = b[k]
local aggrkey = func .. '(' .. name .. ')'
if func == 'count' and name == '*' then
out[aggrkey] = ak[aggrkey] + bk[aggrkey]
elseif name ~= '*' then
if func == 'count' then
out[aggrkey] = ak[aggrkey] + bk[aggrkey]
elseif func == 'sum' then
out[aggrkey] = ak[aggrkey] + bk[aggrkey]
elseif func == 'min' then
out[aggrkey] = (ak[aggrkey] > bk[aggrkey] and bk[aggrkey]) or ak[aggrkey]
elseif func == 'max' then
out[aggrkey] = (ak[aggrkey] < bk[aggrkey] and bk[aggrkey]) or ak[aggrkey]
elseif func == 'avg' then
local s = ak['sum(' .. name .. ')'] + bk['sum(' .. name .. ')']
local c = ak['count(' .. name .. ')'] + bk['count(' .. name .. ')']
out['avg(' .. name .. ')'] = s / c
end
end
local rk = (result[k] or map())
for k1 in map.keys(out) do
rk[k1] = out[k1]
end
result[k] = rk
else
result[k] = a[k]
end
for k in map.keys(b) do
if not a[k] then
result[k] = b[k]
local out = result[k]
if name ~= '*' and func == 'avg' then
out['avg(' .. name .. ')'] = out['sum(' .. name .. ')'] / out['count(' .. name .. ')']
end
end
end
end
end
return result
end
local function mapper(rec)
local groupbyValues = {}
for i=1,#groupbys do
table.insert(groupbyValues, ((rec and rec[groupbys[i]]) or 'null'))
end
local grp = join(DELIMITER, groupbyValues)
local stats = groups[grp] or map()
for i=1,#aggrs do
local aggr = aggrs[i]
local func, name = split(aggr)
local aggrkey = func .. '(' .. name .. ')'
if func == "count" and name == "*" then
stats[aggrkey] = (stats[aggrkey] or 0) + ((rec and 1 ) or 0)
elseif name ~= '*' then
local val = ((rec and rec[name]) or nil)
local countkey = 'count(' .. name .. ')'
local sumkey = 'sum(' .. name .. ')'
if val then
if func == 'count' or func == 'avg' then
stats[countkey] = (stats[countkey] or 0) + ((val and 1 ) or 0)
elseif func == 'sum' or func == 'avg' then
stats[sumkey] = (stats[sumkey] or 0) + (val or 0)
elseif func == 'sumsqs' then
stats[aggrkey] = (stats[aggrkey] or 0) + (val ^ 2)
elseif func == 'min' then
stats[aggrkey] = (not stats[aggrkey] and val) or (stats[aggrkey] and val < stats[aggrkey] and val) or stats[aggrkey]
elseif func == 'max' then
stats[aggrkey] = (not stats[aggrkey] and val) or (stats[aggrkey] and val > stats[aggrkey] and val) or stats[aggrkey]
end
end
end
end
groups[grp] = stats
return groups
end
return stream : map(mapper) : reduce(reducer)
end
|
EnemySprite = Object:extend()
function EnemySprite:new(obj)
self.currentTime = 0
self.timeBtwFrmae = 0.2
self.currentFrame = 1
self.totalFrames = 2
self.obj = obj
self.x = self.obj.x + self.obj.w/2
self.y = self.obj.y + self.obj.h/2
end
function EnemySprite:update(dt)
self.x = self.obj.x + self.obj.w/2
self.y = self.obj.y + self.obj.h/2
if not self.obj.onGround then
self.currentFrame = 1
else
if self.currentTime >= self.timeBtwFrmae then
if self.currentFrame >= self.totalFrames then
self.currentFrame = 1
else
self.currentFrame = self.currentFrame + 1
end
self.currentTime = 0
else
self.currentTime = self.currentTime + dt
end
end
end
function EnemySprite:draw()
love.graphics.setColor(hex.rgb("ffffff"))
love.graphics.draw(images.spriteSheet, images.enemy[self.currentFrame], self.x, self.y, 0, 2, 2, 16, 16)
end
|
--[[
player.lua
Copyright (C) 2016 Kano Computing Ltd.
License: http://www.gnu.org/licenses/gpl-2.0.txt GNU GPLv2
]]--
local Character = require 'game.gameWorld.characters.character'
local Utils = require 'system.utils'
local love = love
local k = love.keyboard
local Player = {}
Player.__index = Player
-- inherit from base class Character
setmetatable(Player, {__index = Character})
-- constants
local TILE_S = Utils.tileSize()
function Player.create(world)
-- print("CREATING Player") -- DEBUG_TAG
local self = Character.create(world, world.canWalk)
self = setmetatable(self, Player)
-- overriden from base class
self.size = {w = TILE_S, h = TILE_S}
-- alternative directions table
self.alternativeDirections = {
['up'] = self.DIR_UP,
['down'] = self.DIR_DOWN,
['left'] = self.DIR_LEFT,
['right'] = self.DIR_RIGHT,
}
-- command line arg
local speedArg = Utils.getArgs()['-v'] or Utils.getArgs()['--velocity']
if speedArg and type(speedArg) == 'string' then
self.velocity = tonumber(speedArg)
end
return self
end
function Player:load(worldId)
-- print("LOADING Player") -- DEBUG_TAG
if worldId == 'terminalForest' then
self.tileset = g_resMngr.loadImage("noncorporeal.png")
self.idleAnimation = true
elseif worldId == 'overworld' then
-- load file from ~/.local/share/love/kanoOverworld
self.tileset = g_resMngr.loadImage("avatar.png")
-- if it doesn't exist load default one based on the worldId
if not self.tileset then
self.tileset = g_resMngr.loadImage("judoka.png")
-- print("Error: loading default player tileset") -- DEBUG_TAG
end
--[[
else -- DEBUG_TAG_START
assert(
self.tileset ~= nil,
'Loading default Player tileset failed!'
) -- DEBUG_TAG_END
--]]
end
Character.load(self)
end
-- IDLE STATE ---------------------------------------------------------------------------
function Player:updateIdle()
-- TODO: once all characters have an idle animation, move this into character
if self.idleAnimation then
self:updateIdleAnimation()
end
if self:startWalk() then
self:changeState(self.STATE_WALK)
end
end
function Player:startWalk()
if k.isDown('down', 's') then
if self.direction == self.DIR_DOWN then
return Character.startWalk(self, self.world, self.world.canWalk)
else
self.direction = self.DIR_DOWN
self.imgIdx = self.direction - 1
end
elseif k.isDown('up', 'w') then
if self.direction == self.DIR_UP then
return Character.startWalk(self, self.world, self.world.canWalk)
else
self.direction = self.DIR_UP
self.imgIdx = self.direction - 1
end
elseif k.isDown('left', 'a') then
if self.direction == self.DIR_LEFT then
return Character.startWalk(self, self.world, self.world.canWalk)
else
self.direction = self.DIR_LEFT
self.imgIdx = self.direction - 1
end
elseif k.isDown('right', 'd') then
if self.direction == self.DIR_RIGHT then
return Character.startWalk(self, self.world, self.world.canWalk)
else
self.direction = self.DIR_RIGHT
self.imgIdx = self.direction - 1
end
end
end
-- WALK STATE ---------------------------------------------------------------------------
function Player:onDestinationReached(executedCallback)
-- TODO: if in the future the player still needs to continue walking after a
-- postWalkCallback, it needs to be specified here (currently it prevents the
-- player from changing direction after going through a door/portal etc)
if (not k.isDown('down', 's', 'up', 'w', 'left', 'a', 'right', 'd')) or
executedCallback then
self:changeState(self.STATE_IDLE)
else
self:startWalk()
end
end
-- Public -------------------------------------------------------------------------------
function Player:moveInDirection(x, y, altDirection)
-- use an alternative direction if provided (e.g. door orientation property)
self.direction = self.alternativeDirections[altDirection] or self.direction
if self.direction == self.DIR_DOWN then
self.pos = {x = x, y = y + TILE_S}
elseif self.direction == self.DIR_UP then
self.pos = {x = x, y = y - TILE_S}
elseif self.direction == self.DIR_LEFT then
self.pos = {x = x - TILE_S, y = y}
elseif self.direction == self.DIR_RIGHT then
self.pos = {x = x + TILE_S, y = y}
end
end
return Player
|
CustomizableWeaponry:addFireSound("KHRPKM_FIRE", {"weapons/PKM/fire1.wav","weapons/PKM/fire2.wav","weapons/PKM/fire3.wav"}, 1, 125, CHAN_STATIC)
CustomizableWeaponry:addFireSound("KHRPKM_FIRE_SUPPRESSED", {"weapons/PKM/firesil2.wav","weapons/PKM/firesil3.wav"}, 1, 65, CHAN_STATIC)
CustomizableWeaponry:addReloadSound("KHRPKM.Coverup", "weapons/PKM/pkm_coverup.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Bullet", "weapons/PKM/pkm_bullet.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Chain", "weapons/PKM/pkm_chain.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Boxout", "weapons/PKM/pkm_boxout.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Boxin", "weapons/PKM/pkm_boxin.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Coverdown", "weapons/PKM/pkm_coverdown.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Coversmack", "weapons/PKM/pkm_coversmack.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Bolt", "weapons/PKM/pkm_bolt.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Cloth", "weapons/PKM/pkm_cloth.wav")
CustomizableWeaponry:addReloadSound("KHRPKM.Draw", "weapons/PKM/pkm_draw.wav") |
--[[
[guid]={level,{hp,patk,matk,pdef,mdef,pcritres,mcritres},{[dropid,droprate]*15},{zone,x,y}}
]]
return {
[100001]={103,{1282649,24183,19138.0,18216,18164,0,0},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726704,200000,726705,200000,725916,100000,727226,200000},{20,116.2,330.9}},
[100002]={101,{953843,92510,25062.0,117634,118089,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,33.2,87.6}},
[100003]={101,{953843,92510,25062.0,117634,118089,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,34.2,86.1}},
[100004]={15,{946,145,196.0,465,507,0,0},{720011,3000,722350,3296,722452,3296,722554,3296,720093,5000,204531,5000,770341,100,202978,80000,720140,5000,211303,1924,723979,3000},{10,57.3,56.9}},
[100005]={103,{8821044,286956,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100006]={103,{8821044,286956,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100007]={103,{386234,52285,23699.0,42658,39814,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100008]={103,{8821044,286956,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100009]={103,{8821044,286956,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100010]={103,{8952448,287940,23699.0,477299,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100011]={103,{8851992,313201,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100012]={103,{8851992,287940,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100013]={103,{8851992,287940,23699.0,475786,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100014]={103,{8804556,312955,23699.0,476543,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100015]={103,{8804556,338216,23699.0,476543,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100016]={103,{9216547,325831,23699.0,477112,505078,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100017]={103,{8876702,295403,23699.0,489646,497969,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100018]={103,{8804556,287694,23699.0,476543,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100019]={103,{8804556,287694,23699.0,476543,476071,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100020]={103,{2972350,225443,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100021]={103,{2972350,225443,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100022]={103,{386234,52285,23699.0,42658,39814,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100023]={103,{2972350,225443,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100024]={103,{2972350,225443,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100025]={103,{3016628,226217,23699.0,157768,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100026]={103,{2982778,246063,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100027]={103,{2982778,226217,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100028]={103,{2982778,226217,23699.0,157268,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100029]={103,{2966794,245869,23699.0,157518,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[100030]={7,{388,66,94.0,210,212,0,0},{720011,3000,722552,5694,722552,5694,722892,5694,720092,5000,770013,100,720140,5000,222626,2833,723978,3000,721902,2733},{1,16.7,45.4}},
[100031]={19,{1160,228,95.0,652,298,0,0},{720011,3000,722216,2204,723950,2204,720177,2204,720094,5000,770239,100,720140,5000,550259,331,211363,1322,723980,3000,721906,1329},{4,67.1,3.0}},
[100032]={102,{417258394,403460,51709.0,1093815,1092380,3000,3000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721250,200000,721251,200000,721270,100000,726072,200000}},
[100033]={102,{416746785,410665,51709.0,1092098,1092380,3000,3000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721252,200000,721253,200000,721270,100000,726082,200000}},
[100034]={102,{417258394,410988,51709.0,1093815,1092380,3000,3000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721254,200000,721255,200000,721270,100000,726093,200000}},
[100035]={102,{417258394,410988,51709.0,1093815,1092380,3000,3000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721256,200000,721257,200000,721270,100000,727204,200000}},
[100036]={102,{417258394,410988,51709.0,1093815,1092380,3000,3000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721258,200000,721259,200000,721270,100000,727217,200000}},
[100037]={102,{138797357,252915,51709.0,684199,683407,2000,2000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721260,200000,721270,100000,725919,200000}},
[100038]={102,{138627174,260238,51709.0,683125,683407,2000,2000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721261,200000,721270,100000,725921,200000}},
[100039]={102,{138797357,260442,51709.0,684199,683407,2000,2000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721262,200000,721270,100000,725923,200000},{20,116.6,330.5}},
[100040]={102,{138797357,260442,51709.0,684199,683407,2000,2000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721263,200000,721270,100000,725925,200000}},
[100041]={102,{138797357,260442,51709.0,684199,683407,2000,2000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721264,200000,721270,100000,725927,200000}},
[100042]={15,{632,201,73.0,560,494,0,0},{720011,5000,720023,5000}},
[100043]={95,{1637070,45023,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720655,200000,202283,50000,727040,200000},{221,15.7,59.4}},
[100044]={7,{362,74,35.0,214,96,0,0},{720011,3000}},
[100045]={102,{29475616,117425,51709.0,472329,471870,1000,1000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721265,200000,721270,100000,725303,200000}},
[100046]={102,{29439475,124854,51709.0,471588,471870,1000,1000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721266,200000,721270,100000,725305,200000}},
[100047]={102,{29475616,124952,51709.0,500578,500075,1000,1000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721267,200000,721270,100000,725310,200000}},
[100048]={102,{29475616,124952,51709.0,500578,500075,1000,1000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721268,200000,721270,100000,725417,200000}},
[100049]={102,{29475616,124952,51709.0,500578,500075,1000,1000},{720822,5000,720143,60000,723989,100000,721248,70000,721249,70000,721269,200000,721270,100000,725421,200000}},
[100050]={95,{1636828,45304,17031.0,108677,108320,0,0},{720011,5000,720142,10000,726877,10000,720656,200000,202284,50000,727040,100000},{222,74.2,33.1}},
[100051]={7,{422,69,94.0,218,221,0,0},{720011,3000,722926,5694,722960,5694,723028,5694,720092,5000,220349,284,770019,100,720140,5000,222597,2875,723978,3000,721902,2733},{1,74.6,36.4}},
[100052]={1,{111,14,28.0,42,21,0,0},{720011,3000,722278,4167,722652,4167,722686,4167,720091,5000,220149,286,770000,100,201168,80000,720140,5000,211376,2750,723978,3000,721900,2000},{1,32.1,70.9}},
[100053]={9,{488,104,85.0,271,334,0,0},{720011,3000,722484,4907,722790,4907,722926,4907,720092,5000,770231,100,720005,75000,720140,5000,222546,2875,723978,3000,721902,2733},{1,21.6,11.2}},
[100054]={2,{143,17,38.0,61,23,0,0},{720011,3000,722244,4583,722958,4583,723400,4583,720091,5000,770004,100,720140,5000,211408,2750,723978,3000,721900,2000},{1,48.0,65.4}},
[100055]={8,{462,74,106.0,235,205,0,0},{720011,3000,722552,5222,722552,5222,722926,5222,720092,5000,220230,284,770011,100,720140,5000,723978,3000,721902,2733},{1,31.0,12.7}},
[100056]={4,{232,34,60.0,111,68,0,0},{720011,3000,722653,4792,722687,4792,722891,4792,720091,5000,220535,277,770005,100,720063,80000,720140,5000,222472,2750,723978,3000,721901,2300},{1,60.7,51.3}},
[100057]={2,{158,34,13.0,111,109,0,0},{720011,5000}},
[100058]={54,{3381,1008,1008.0,1008,1008,0,0},{720011,5000}},
[100059]={55,{3481,1038,1038.0,1038,1038,0,0},{720011,5000}},
[100060]={56,{3582,1069,1069.0,1069,1069,0,0},{720011,5000}},
[100061]={7,{402,64,94.0,204,174,0,0},{720011,3000,722314,5694,722790,5694,723028,5694,720092,5000,210142,261,770010,100,720061,75000,720140,5000,203466,50000,723978,3000,721902,2733},{1,42.6,20.8}},
[100062]={58,{3792,1132,1132.0,1132,1132,0,0},{720011,5000}},
[100063]={8,{462,74,106.0,235,205,0,0},{720011,3000,722348,5222,722892,5222,723368,5222,720092,5000,770009,100,720063,75000,720140,5000,222618,2750,723978,3000,721902,2733},{1,41.8,18.4}},
[100064]={17,{1114,200,84.0,572,258,0,0},{720011,3000,722283,3206,722419,3206,723507,3206,720094,5000,210183,331,770046,100,201112,80000,720140,5000,204531,5000,211439,1924,723979,3000,721905,1535},{2,40.8,12.7}},
[100065]={17,{1319,200,224.0,601,593,0,0},{720011,3000,722419,3206,722657,3206,723405,3206,720094,5000,220804,446,770047,100,201112,80000,720140,5000,204531,5000,222444,1924,723979,3000,721905,1535},{2,41.8,12.3}},
[100066]={19,{1369,244,182.0,642,792,0,0},{720011,3000,722284,2769,722624,2769,722794,2769,720094,5000,220233,481,770048,100,204531,5000,720140,5000,720210,30000,550784,331,222563,1924,723979,3000,721906,1329},{2,67.6,19.3}},
[100067]={19,{3803,739,635.0,686,686,0,0},{720011,3000,722454,200000,722896,200000,720094,5000,204531,5000,770049,100,720140,5000,222627,1662,723979,3000,721906,1329},{2,39.0,53.4}},
[100068]={20,{5105,824,483.0,675,844,0,0},{720011,3000,723980,3000}},
[100069]={20,{5072,819,483.0,686,844,0,0},{720011,3000,720065,80000,720094,50000,770048,100,723980,3000,721906,1329}},
[100070]={24,{6252,957,391.0,925,1207,0,0},{720011,3000,722285,5149,722421,5149,722523,5149,724922,20000,720094,50000,220041,882,770089,100,724169,10000,550292,207,723980,20000,721907,15000},{102,32.7,30.8}},
[100071]={20,{4148,708,672.0,726,734,0,0},{720011,3000,722216,7713,722658,7713,722692,7713,720065,10000,220046,1442,770090,100,220044,1442,724922,20000,724169,10000,550922,274,723980,20000,721906,15000},{102,12.4,37.2}},
[100072]={22,{4533,666,282.0,786,364,0,0},{720011,3000,722795,6064,723067,6064,723611,6064,720094,50000,220042,1040,770091,100,220040,1040,724922,20000,724169,10000,723980,20000,721907,15000},{102,62.8,42.6}},
[100073]={22,{88128,1116,1651.0,828,837,0,0},{720011,3000,722319,200000,722455,200000,722523,200000,720132,100000,720094,100000,770092,1000,724922,20000,720141,5000,723980,20000,721907,15000}},
[100074]={28,{175593,1607,1587.0,1092,1368,0,0},{720011,3000,722253,200000,722627,200000,723511,200000,720180,200000,720136,100000,720094,100000,770093,1000,724922,20000,720025,200000,720069,100000,240672,200000,723980,20000,721909,15000},{102,90.3,44.1}},
[100075]={70,{1325543,14111,8143.0,6119,6557,0,0},{720011,3000,723619,200000,723687,200000,720104,5000,204531,5000,770050,100,720143,50000,723980,3000,721915,320},{2,41.8,20.2}},
[100076]={20,{1486,242,269.0,780,734,0,0},{720011,3000}},
[100077]={73,{5657,1697,1697.0,5091,5091,0,0},{720011,3000,720104,80000,770039,100}},
[100078]={15,{1011,169,196.0,508,507,0,0},{720011,3000,550741,480}},
[100079]={11,{625,129,133.0,334,412,0,0},{720011,3000,722383,3611,723029,3611,723369,3611,720093,5000,220353,481,770041,100,204531,5000,720140,5000,720210,30000,211395,2169,723979,3000,721903,1967},{2,53.5,58.3}},
[100080]={12,{763,130,156.0,391,389,0,0},{720011,3000,722315,3480,723437,3480,723947,3480,720093,5000,210700,494,770042,100,204531,5000,720140,5000,720210,30000,211429,2169,723979,3000,721903,1967},{2,53.0,58.7}},
[100081]={14,{2277,461,236.0,363,401,0,0},{720011,3000}},
[100082]={10,{613,100,131.0,314,318,0,0},{720011,3000,722553,4097,722553,4097,722757,4097,720092,5000,220539,480,770044,100,720081,80000,720140,5000,204531,5000,203466,20000,211426,2167,723979,3000,721903,1967},{2,57.2,72.4}},
[100083]={10,{613,100,131.0,314,318,0,0},{720011,3000,722349,4097,722485,4097,722723,4097,720092,5000,204531,5000,770045,100,720079,80000,720140,5000,222550,2167,723979,3000,721903,1967},{2,57.1,71.5}},
[100084]={95,{109739,5151,3096.0,109127,108320,0,0},{}},
[100085]={95,{109739,5151,3096.0,109127,108320,0,0},{}},
[100086]={20,{1118,280,139.0,556,610,0,0},{720011,3000,722284,1827,722624,1827,722658,1827,720095,5000,770240,100,720141,5000,550890,274,211399,1322,723980,3000,721906,1329},{4,66.0,3.5}},
[100087]={20,{1509,237,269.0,726,734,0,0},{720011,3000,722964,1827,723372,1827,723406,1827,720095,5000,770058,100,201119,70000,720141,5000,220780,270,211335,1096,723980,3000,721906,1329},{4,69.6,12.8}},
[100088]={20,{1509,237,269.0,726,734,0,0},{720011,3000,722999,1733,723475,1733,723543,1733,720095,5000,770059,100,201119,70000,720141,5000,550349,274,211336,1096,723980,3000,721907,832},{4,70.7,27.9}},
[100089]={21,{1623,253,284.0,776,785,0,0},{720011,3000,722999,1585,723067,1585,723441,1585,720095,5000,770060,100,201119,70000,720141,5000,550743,260,211350,1096,723980,3000,721907,832},{4,70.3,34.5}},
[100090]={20,{1509,237,269.0,726,734,0,0},{720011,3000,722250,1827,722896,1827,722964,1827,720095,5000,770061,100,201266,70000,720141,5000,203466,50000,550546,274,211364,1096,723980,3000,721906,1329},{4,58.0,27.3}},
[100091]={21,{1623,253,284.0,776,785,0,0},{720011,3000,722931,1733,722999,1733,723067,1733,720095,5000,770062,100,201266,70000,720141,5000,203466,50000,211365,1096,723980,3000,721907,832},{4,56.1,30.6}},
[100092]={19,{1399,221,254.0,678,686,0,0},{720011,3000,720024,8310,720034,8310,720141,500,720094,5000,770063,100,720140,0,721906,0}},
[100093]={22,{1447,270,113.0,786,693,0,0},{720011,3000,720024,5200,720034,5200,720142,500,720094,5000,770064,100,720141,0,721907,0}},
[100094]={22,{1743,270,300.0,828,837,0,0},{720011,3000,723373,2378,723407,2378,720095,5000,220798,221,770241,100,201119,70000,720141,5000,550636,238,222495,951,723980,3000,721907,832},{4,42.5,42.3}},
[100095]={23,{1868,288,316.0,882,891,0,0},{720011,3000,723441,1471,723475,1471,723509,1471,720095,5000,770242,100,201119,70000,720141,5000,550636,221,222512,951,723980,3000,721907,832},{4,41.2,41.0}},
[100096]={23,{1868,288,316.0,882,891,0,0},{720011,3000,723033,1471,723067,1471,723373,1471,720095,5000,770243,100,201119,70000,720141,5000,211367,951,723980,3000,721907,832},{4,45.1,47.1}},
[100097]={25,{5951,1067,873.0,995,1005,0,0},{720011,3000,720095,5000,770066,100,201119,70000}},
[100098]={27,{7069,1252,958.0,1160,1162,0,0},{720011,3000,770067,100}},
[100099]={24,{1998,306,332.0,937,947,0,0},{720011,3000,722660,1379,722796,1379,722830,1379,720095,5000,770244,100,201266,70000,720141,5000,203466,50000,550411,207,211443,883,723980,3000,721908,662},{4,48.1,50.9}},
[100100]={25,{2133,325,349.0,995,1005,0,0},{720011,3000,723612,1305,723646,1305,723782,1305,720096,5000,210280,172,770245,100,201266,70000,720141,5000,203466,50000,222461,883,723980,3000,721908,662},{4,51.3,55.3}},
[100101]={23,{1379,340,163.0,674,737,0,0},{720011,3000,722557,1585,722557,1585,722693,1585,720095,5000,210200,221,770068,100,720141,5000,200677,20000,222537,883,723980,3000,721907,832},{4,43.7,22.6}},
[100102]={23,{1542,297,119.0,846,388,0,0},{720011,3000,722217,1585,722387,1585,722761,1585,720095,5000,770069,100,720141,5000,200677,20000,211382,883,723980,3000,721907,832},{4,43.0,21.6}},
[100103]={13,{702,142,63.0,408,186,0,0},{720011,3000,722248,3615,722894,3615,720175,3615,720092,5000,204531,5000,770252,100,720140,5000,720210,30000,222551,2088,723979,3000,721904,1735},{2,70.4,67.0}},
[100104]={21,{4457,740,711.0,776,785,0,0},{720011,3000,723440,6396,723474,6396,723542,6396,720094,60000,220047,1100,770037,100,724922,20000,724169,10000,550500,260,723980,20000,721906,15000},{102,70.9,52.7}},
[100105]={4,{232,34,60.0,111,45,0,0},{720011,3000,722381,4792,722755,4792,722959,4792,720091,5000,210251,277,770004,100,720140,5000,211282,2833,723978,3000,721901,2300},{1,52.5,51.4}},
[100106]={23,{1778,314,287.0,832,1028,0,0},{720011,3000,722285,1585,722421,1585,722727,1585,720095,5000,220157,207,770070,100,720141,5000,550805,221,211383,883,723980,3000,721907,832},{4,39.9,22.1}},
[100107]={4,{204,38,22.0,110,-33,0,0},{720011,3000,722279,4792,722653,4792,723435,4792,720091,5000,770023,100,720140,5000,222619,3133,723978,3000,721901,2300},{1,49.5,85.0}},
[100108]={15,{632,201,73.0,560,494,0,0},{720011,5000,720023,5000}},
[100109]={22,{5893,854,539.0,766,962,0,0},{720011,3000,722285,6064,722965,6064,722999,6064,720094,50000,770038,100,724922,20000,724169,10000,550503,238,723980,20000,721907,15000},{102,42.9,62.7}},
[100110]={15,{632,201,73.0,560,494,0,0},{720011,5000,720023,5000}},
[100111]={15,{632,201,73.0,560,494,0,0},{720011,5000,720023,5000}},
[100112]={15,{632,201,73.0,560,494,0,0},{720011,5000,720023,5000}},
[100113]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100114]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100115]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100116]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100117]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100118]={5,{293,45,71.0,147,117,0,0},{720011,3000,722687,5370,722891,5370,723503,5370,720091,5000,770008,100,720062,75000,720140,5000,211344,2833,723978,3000,721901,2300},{1,27.6,41.1}},
[100119]={31,{10180,1601,1020.0,1272,1695,0,0},{720011,5000,720036,5000,721813,0,723980,3000}},
[100120]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100121]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100122]={5,{11862,208,393.0,205,163,0,0},{720011,3000,722280,200000,722416,200000,722518,200000,720173,200000,720092,5000,220081,1253,770075,5000,240666,200000,720024,50000,201620,100000,220230,16110,210251,16110,723978,3000,721902,2733}},
[100123]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100124]={34,{2837,527,214.0,1523,705,0,0},{720011,3000,722255,805,723071,805,723343,805,720097,5000,220180,142,770106,100,720141,5000,222501,427,723980,3000,721911,387},{5,40.4,23.9}},
[100125]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100126]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100127]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100128]={3,{186,25,49.0,86,42,0,0},{720011,3000,722312,4722,722618,4722,722754,4722,720091,5000,770021,100,720140,5000,550344,719,723978,3000,721900,2000},{1,49.1,84.9}},
[100129]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100130]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722689,3611,722927,3611,723539,3611,720093,5000,204531,5000,770356,100,720140,5000,211317,1978,723979,3000},{10,24.3,50.3}},
[100131]={20,{75234,787,557.0,698,319,0,0},{720011,3000,722216,200000,722386,200000,722896,200000,722964,200000,720094,5000,210117,100000,770049,100,201631,100000,720024,50000,550950,4360,550849,274,211348,1322,723979,3000,721906,1329}},
[100132]={8,{482,79,106.0,249,252,0,0},{720011,3000,722654,5222,722790,5222,723946,5222,720092,5000,204531,5000,770026,100,720077,80000,720140,5000,222452,2944,723978,3000,721902,2733},{2,35.4,93.7}},
[100133]={2,{114,35,27.0,51,109,0,0},{720011,5000,720021,5000}},
[100134]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100135]={1,{117,30,14.0,63,84,0,0},{}},
[100136]={1,{111,14,28.0,42,21,0,0},{720011,3000,722244,4583,722958,4583,723434,4583,720091,5000,770000,100,201168,80000,720140,5000,222492,2750,723978,3000,721900,2000},{1,33.6,78.0}},
[100137]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100138]={41,{241116,2975,3662.0,2246,2237,0,0},{720011,3000,722324,200000,722528,200000,720155,100000,770148,100,720026,200000,724922,20000,550519,100,723980,20000,721914,15000},{104,66.9,24.9}},
[100139]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,722492,1421,723410,1421,720097,5000,770088,100,201463,70000,720141,5000,211308,497,723980,3000,721910,514},{5,66.8,44.1}},
[100140]={27,{295428,1831,1446.0,1069,490,0,0},{720011,3000,722354,200000,722490,200000,723952,200000,720179,200000,720096,5000,210148,100000,770220,5000,240677,200000,720025,100000,211402,783,723980,3000,721909,571}},
[100141]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100142]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100143]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100144]={35,{2700,561,202.0,1598,740,0,0},{720011,3000,770133,100,201533,10,723980,3000,721909,571},{103,57.7,14.2}},
[100145]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100146]={5,{293,45,71.0,147,117,0,0},{720011,3000,722755,5370,723503,5370,722517,5370,720091,5000,220772,278,770006,100,720140,5000,723978,3000,721901,2300},{1,45.2,34.8}},
[100147]={5,{312,50,71.0,160,163,0,0},{720011,3000,722347,5370,722483,5370,723945,5370,720092,5000,210084,261,770020,100,720140,5000,211328,3222,723978,3000,721901,2300},{1,67.2,34.8}},
[100148]={35,{2700,561,202.0,1598,740,0,0},{720011,3000,770133,100,201533,10,723980,3000,721909,571}},
[100149]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100150]={4,{239,38,60.0,116,45,0,0},{720011,3000,722279,4792,722789,4792,723367,4792,720091,5000,770024,100,720140,5000,211378,2944,723978,3000,721901,2300},{1,46.9,85.5}},
[100151]={25,{1328,363,355.0,1059,1059,0,0},{720011,5000,720025,5000,723980,3000}},
[100152]={7,{327,85,48.0,170,191,0,0},{720011,3000,722348,5694,723402,5694,723946,5694,720092,5000,210274,205,770015,100,720005,75000,720140,5000,723978,3000,721902,2733},{1,23.3,12.2}},
[100153]={8,{488,84,106.0,254,252,0,0},{720011,3000,722212,5222,722654,5222,722756,5222,720092,5000,210254,173,770016,100,720005,75000,720140,5000,222547,2875,723978,3000,721902,2733},{1,21.5,12.3}},
[100154]={42,{249461,3107,3790.0,2315,2336,0,0},{720011,3000,722291,200000,720184,200000,720156,100000,770149,100,720026,200000,724922,20000,721238,1320,723980,20000,721914,15000},{104,24.9,37.2}},
[100155]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100156]={5,{293,45,71.0,147,117,0,0},{720011,3000,722211,5370,722789,5370,723027,5370,720091,5000,210180,261,770007,100,720140,5000,222441,2833,723978,3000,721901,2733},{1,29.6,43.3}},
[100157]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100158]={25,{2129,334,349.0,1004,1005,0,0},{720011,3000,722354,1379,722490,1379,722626,1379,720095,5000,210186,260,770071,100,720141,5000,200677,20000,211403,783,723980,3000,721908,662},{4,35.9,17.3}},
[100159]={40,{12651,2322,1954.0,2121,2155,0,0},{720011,3000,722631,3500,722665,3500,724922,20000,720153,20000,770151,100,723980,20000,721913,15000}},
[100160]={60,{1012990,9812,12718.0,4673,4735,0,0},{720011,3000,722534,200000,720189,200000,724260,100000,720099,5000,720137,100000,770182,5000,720010,3220,720027,200000,240700,200000,723982,3000},{105,48.7,39.0}},
[100161]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100162]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100163]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100164]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100165]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100166]={36,{196652,2023,3057.0,1767,1784,0,0},{720011,3000,722357,200000,722493,200000,723615,200000,723683,200000,720023,100000,724922,20000,770134,1000,720025,200000,551183,1000,205845,1000,723980,20000,721911,15000},{103,61.6,91.8}},
[100167]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100168]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100169]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100170]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100171]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100172]={0,{144,28,28.0,28,28,0,0},{720011,5000,723980,3000}},
[100173]={0,{144,28,28.0,28,28,0,0},{720011,5000,723980,3000}},
[100174]={100,{30267754,8549,5847.0,2132,2639,0,0},{720011,5000}},
[100175]={15,{2799,544,491.0,603,507,0,0},{720011,3000,720093,50000},{250,69.6,48.7}},
[100176]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100177]={0,{144,28,28.0,28,28,0,0},{720011,5000,723980,3000}},
[100178]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100179]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100180]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100181]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100182]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100183]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100184]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100185]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100186]={2,{158,34,15.0,111,109,0,0},{720011,5000,720021,5000}},
[100187]={1,{111,22,20.0,57,59,0,0},{720011,5000,720021,5000}},
[100188]={2,{138,30,27.0,80,83,0,0},{720011,5000}},
[100189]={3,{164,39,35.0,103,107,0,0},{720011,5000}},
[100190]={1,{142,24,28.0,84,84,0,0},{720011,5000}},
[100191]={2,{144,42,19.0,87,60,0,0},{720011,5000,720021,5000}},
[100192]={4,{192,48,43.0,126,162,0,0},{720011,5000}},
[100193]={37,{10218,1302,747.0,1397,1532,0,0},{720011,3000,723614,3316,723682,3316,723750,3316,770135,100,724922,20000,724261,10000,550606,100,723980,20000,721910,15000},{103,55.3,62.0}},
[100194]={21,{4466,761,871.0,776,793,0,0},{720011,3000,722352,6396,722896,6396,723406,6396,720093,30000,220045,1100,770094,100,724922,20000,724169,10000,723980,20000,721906,12000},{102,55.6,73.6}},
[100195]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722317,3206,722623,3206,722521,3206,725753,200000,720094,5000,204531,5000,770052,100,720076,80000,720140,5000,550848,446,222657,1924,723979,3000,721905,1535},{2,63.0,49.4}},
[100196]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100197]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100198]={18,{3120,500,533.0,444,539,0,0},{720011,3000,722487,10402,722929,10402,723337,10402,720093,30000,220048,1770,770094,100,724922,20000,724169,10000,723980,20000,721905,15000},{102,7.0,45.4}},
[100199]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100200]={33,{539440,3163,3561.0,1411,1780,0,0},{720011,3000,722288,200000,724179,200000,723716,200000,720181,200000,720097,5000,200744,30000,770223,5000,201463,70000,720025,5000,210451,100000,723980,3000,721911,387}},
[100201]={12,{1945,420,391.0,391,389,0,0},{720011,3000,722315,200000,722417,200000,723437,200000,720174,200000,720093,5000,770017,100,721232,420,720140,5000,723979,3000,721903,1967},{1,18.6,12.2}},
[100202]={22,{4837,808,750.0,828,837,0,0},{720011,3000,722251,6064,722863,6064,723951,6064,220046,1040,720065,10000,770090,100,220044,1040,724922,20000,724169,10000,723980,20000,721907,15000},{102,30.4,57.8}},
[100203]={7,{362,74,35.0,214,96,0,0},{720011,3000,722246,5694,722620,5694,722926,5694,720092,5000,770018,100,720005,75000,720140,5000,723978,3000,721902,2733},{1,24.9,14.7}},
[100204]={6,{346,55,82.0,175,145,0,0},{720011,3000,722449,5555,723027,5555,723503,5555,720092,5000,770009,100,720063,80000,720140,5000,222596,2833,723978,3000,721901,2733}},
[100205]={6,{366,59,82.0,189,191,0,0},{720011,3000,722415,5555,722619,5555,722687,5555,720092,5000,770014,100,720140,5000,211314,2875,723978,3000,721901,2300},{1,15.2,47.1}},
[100206]={38,{14246,1633,1076.0,1783,2251,0,0},{720011,3000,722594,2902,722628,2902,722696,2902,770136,100,724922,20000,724261,10000,550561,100,723980,20000,721910,15000},{103,33.6,41.3}},
[100207]={1,{139,21,28.0,63,60,0,0},{}},
[100208]={6,{366,59,82.0,189,191,0,0},{720011,3000,722551,5555,722551,5555,723401,5555,720092,5000,770013,100,720140,5000,211423,2875,723978,3000,721901,2300},{1,21.0,41.7}},
[100209]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722249,3198,722691,3198,722725,3198,720094,5000,210145,331,770053,100,204531,5000,720140,5000,723979,3000,721905,1535},{2,63.7,32.2}},
[100210]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722793,3198,723439,3198,723507,3198,725753,200000,720094,5000,204531,5000,770054,100,720076,80000,720140,5000,201538,10,211286,1783,723979,3000,721905,1535},{2,64.4,32.6}},
[100211]={9,{546,90,118.0,281,284,0,0},{720011,3000,722212,4907,722892,4907,722960,4907,720092,5000,204531,5000,770027,100,720140,5000,211425,2458,723978,3000,721902,2733},{2,45.8,75.1}},
[100212]={9,{546,90,118.0,281,284,0,0},{720011,3000,722314,4907,722450,4907,723028,4907,725761,200000,720092,5000,204531,5000,770028,100,720078,80000,720140,5000,203466,50000,222560,2944,723978,3000,721902,2733},{2,40.3,82.2}},
[100213]={14,{920,149,183.0,461,466,0,0},{720011,3000,722282,3458,723370,3458,723506,3458,720093,5000,204531,5000,770035,100,720140,5000,211428,2088,723979,3000,721904,1735},{2,40.5,54.5}},
[100214]={25,{2007,353,271.0,933,1159,0,0},{720011,3000,722286,1379,722422,1379,722728,1379,720095,5000,220807,221,770072,100,720141,5000,550903,196,222462,783,723980,3000,721908,662},{4,36.9,13.2}},
[100215]={24,{1995,315,332.0,946,947,0,0},{720011,3000,722557,1471,722557,1471,723951,1471,720095,5000,210121,221,770073,100,720141,5000,200677,20000,222484,783,723980,3000,721907,832},{4,35.5,15.7}},
[100216]={28,{8771,1326,721.0,1122,1398,0,0},{720011,3000,722321,200000,722457,200000,722899,200000,720096,5000,210148,2140,770074,100,720141,5000,222565,2761,723980,3000,721909,571},{4,40.8,14.0}},
[100217]={101,{270231421,399800,51288.0,1056596,1055236,0,0},{}},
[100218]={25,{1768,325,131.0,944,830,0,0},{720011,3000,720025,4140,720035,4140,720142,500,720095,5000,770064,100,720141,0}},
[100219]={26,{1884,345,138.0,1000,879,0,0},{720011,3000,720026,3910,720036,3910,720142,500,720096,5000,770076,100}},
[100220]={27,{2253,394,275.0,1040,1299,0,0},{720011,3000}},
[100221]={30,{7406,1169,412.0,1245,576,0,0},{720011,3000,770078,100}},
[100222]={27,{2273,396,363.0,1028,1313,0,0},{720011,3000,722286,1242,722422,1242,722626,1242,720096,5000,220357,186,770079,100,201120,70000,720141,5000,550806,178,222463,714,723980,3000,721908,662},{4,55.0,73.3}},
[100223]={27,{2007,378,227.0,1058,500,0,0},{720011,3000,723646,1242,723680,1242,723782,1242,720096,5000,770080,100,201120,70000,720141,5000,550785,178,222485,714,723980,3000,721908,662},{4,56.0,72.1}},
[100224]={27,{2432,378,585.0,1116,1137,0,0},{720011,3000,722762,1242,722796,1242,723544,1242,720096,5000,770081,100,201120,70000,720141,5000,201536,10,550744,178,222515,714,723980,3000,721908,662},{4,55.7,68.5}},
[100225]={30,{7615,1186,516.0,1245,587,0,0},{720011,3000},{4,54.9,78.9}},
[100226]={28,{2574,386,401.0,1179,1191,0,0},{720011,3000,722321,1189,722457,1189,722899,1189,720096,5000,770082,100,201259,70000,720141,5000,550380,172,222538,714,723980,3000,721909,571},{4,65.3,76.6}},
[100227]={28,{2574,386,401.0,1179,1191,0,0},{720011,3000,722219,1189,722389,1189,722695,1189,720096,5000,220601,196,770083,100,201260,70000,720141,5000,550878,172,222646,714,723980,3000,721909,571},{4,64.8,79.9}},
[100228]={30,{8107,1409,1094.0,1312,1326,0,0},{720011,3000,722559,200000,722559,200000,722525,200000,720096,5000,770084,100,720141,5000,222629,2247,723980,3000,721909,571},{4,44.2,85.5}},
[100229]={28,{2586,399,612.0,1179,1201,0,0},{720011,3000,722661,1189,722695,1189,722967,1189,720096,5000,770085,100,201121,70000,720141,5000,550766,172,222445,687,723980,3000,721909,571},{4,46.9,64.3}},
[100230]={28,{2586,399,612.0,1179,1201,0,0},{720011,3000,722933,1189,723477,1189,723511,1189,720096,5000,220278,186,770086,100,201121,70000,720141,5000,222469,687,723980,3000,721909,571},{4,49.4,66.3}},
[100231]={35,{9993,1130,1338.0,1685,1702,0,0},{720011,3000,723443,3866,723477,3866,723953,3866,770137,100,724922,20000,724261,10000,723980,20000,721909,15000},{103,33.4,76.7}},
[100232]={35,{9993,1130,1338.0,1685,1702,0,0},{720011,3000,723341,3866,723409,3866,723477,3866,770138,100,724922,20000,724261,10000,723980,20000,721909,15000},{103,21.0,85.4}},
[100233]={38,{214456,2226,3292.0,1939,1957,0,0},{720011,3000,722256,200000,722596,200000,722630,200000,722698,200000,720022,100000,724922,20000,770139,1000,720025,200000,723980,20000,721912,15000},{103,33.2,41.5}},
[100234]={37,{13155,1549,1037.0,1694,2157,0,0},{720011,3000,722730,3316,722764,3316,722798,3316,770140,100,724922,20000,724261,10000,723980,20000,721910,15000},{103,40.4,71.3}},
[100235]={28,{8360,1299,721.0,1092,1368,0,0},{720011,3000,723980,3000}},
[100236]={38,{214815,2242,3292.0,1939,1957,0,0},{720011,3000,722222,200000,722392,200000,723378,200000,723446,200000,720151,100000,724922,20000,770141,1000,550957,1320,720025,200000,723980,20000,721912,15000},{103,73.2,50.3}},
[100237]={53,{655523,5566,8682.0,7027,7016,0,0},{720011,3000,722191,200000,722157,200000,724180,70000,724185,85000,720100,5000,724191,200000,770301,1000,720026,5000,724248,200000,720142,3000,724518,1000,723980,3000,240696,200000}},
[100238]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100239]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100240]={1,{144,28,28.0,28,28,0,0},{720011,5000,720021,5000}},
[100241]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100242]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100243]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100244]={1,{144,28,28.0,28,28,0,0},{720011,5000,720021,5000}},
[100245]={1,{144,28,28.0,28,28,0,0},{720011,5000,720021,5000}},
[100246]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100247]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100248]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100249]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100250]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100251]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100252]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100253]={1,{144,28,28.0,28,28,0,0},{720011,5000,720021,5000}},
[100254]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100255]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100256]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100257]={36,{10037,1581,524.0,1689,776,0,0},{720011,3000,723980,3000}},
[100258]={36,{10446,1915,1389.0,1767,1784,0,0},{720011,3000,723980,3000}},
[100259]={0,{164,91,70.0,84,84,0,0},{720011,3000,723980,3000}},
[100260]={40,{327437,3592,3424.0,2465,3521,0,0},{720011,3000,723980,3000}},
[100261]={39,{223721,1464,3413.0,2029,2047,0,0},{720011,3000,722325,200000,722461,200000,722903,200000,722971,200000,724922,20000,770142,1000,720025,200000,723980,20000,721913,15000},{103,56.0,19.2}},
[100262]={39,{223721,1464,3413.0,2029,2047,0,0},{720011,3000,722291,200000,722427,200000,722869,200000,722937,200000,724922,20000,770143,1000,720025,200000,723980,20000,721913,15000},{103,54.2,17.6}},
[100263]={95,{1639052,45398,17031.0,109127,108320,0,0},{720011,5000,720142,10000,726877,10000,720657,200000,202285,50000,727040,100000},{223,87.0,18.4}},
[100264]={35,{188418,1940,2943.0,1685,1702,0,0},{720011,3000,722561,200000,722561,200000,723003,200000,723037,200000,720021,100000,724922,20000,770144,1000,720025,200000,723980,20000,721911,15000},{103,30.0,80.9}},
[100265]={32,{8012,1454,615.0,1130,1242,0,0},{720011,3000,723980,3000}},
[100266]={40,{231995,2829,3536.0,2121,2141,0,0},{720011,3000,722325,200000,722461,200000,723583,200000,723617,200000,720098,5000,770118,100,720025,50000,202946,25000,222670,400,723980,3000,721913,320}},
[100267]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,770246,100,201463,70000,720141,5000,222639,663,723980,3000,721910,514},{5,59.7,34.7}},
[100268]={30,{2865,430,437.0,1312,1326,0,0},{720011,3000,722627,1105,723613,1105,720180,1105,720096,5000,220109,142,770099,100,720141,5000,222455,663,723980,3000,721909,571},{5,60.9,32.0}},
[100269]={32,{3130,488,475.0,1466,1469,0,0},{720011,3000,722492,1421,723648,1421,720097,5000,210451,161,770100,100,201124,40000,720141,5000,550644,124,222478,497,723980,3000,721910,514},{5,79.8,49.9}},
[100270]={32,{4476,536,475.0,855,798,0,0},{720011,3000,722696,1421,722968,1421,720097,5000,720141,5000,222465,497,723980,3000,721910,514}},
[100271]={34,{2815,539,194.0,1535,705,0,0},{720011,3000,722867,1208,722935,1208,720097,5000,770102,100,200579,70000,720141,5000,211418,427,723980,3000,721911,387},{5,73.3,51.3}},
[100272]={34,{3434,527,514.0,1606,1622,0,0},{720011,3000,722221,805,722391,805,723037,805,720097,5000,770103,100,201463,70000,720141,5000,200744,30000,222490,427,723980,3000,721911,387},{5,66.9,44.3}},
[100273]={0,{117,35,27.0,63,90,0,0},{720011,3000}},
[100274]={42,{249461,3107,3790.0,2315,2336,0,0},{720011,3000,722223,200000,722325,200000,722462,200000,720157,100000,200579,60000,770130,100,720026,200000,724922,20000,723980,20000,721914,15000}},
[100275]={35,{3029,595,385.0,1548,1963,0,0},{720011,3000,723547,667,723649,667,720182,667,720098,5000,770114,100,720141,5000,222592,400,723980,3000,721911,387},{5,28.6,50.0}},
[100276]={35,{3204,799,317.0,1659,1492,0,0},{720011,3000,722290,667,722698,667,722868,667,720098,5000,220820,100,770115,100,720141,5000,204866,200,550668,100,222533,400,723980,3000,721912,320},{5,22.7,47.9}},
[100277]={37,{4143,672,577.0,1980,1869,0,0},{720011,3000}},
[100278]={0,{144,28,28.0,28,28,0,0},{720011,5000,723980,3000}},
[100279]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100280]={11,{684,112,143.0,349,353,0,0},{720011,3000,722213,3611,722621,3611,722757,3611,720093,5000,220776,522,770232,100,720077,80000,720140,5000,203782,80000,550621,522,211333,2167,723979,3000,721903,1967},{2,51.2,53.8}},
[100281]={15,{2563,505,234.0,537,274,0,0},{720011,3000,722214,200000,722520,200000,720093,5000,204531,5000,770029,100,720140,5000,222561,7308,723979,3000,721904,1735},{2,70.6,66.8}},
[100282]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202283,25000,727040,25000},{221,30.8,39.3}},
[100283]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202283,25000,727040,25000},{221,36.2,23.9}},
[100284]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202283,25000,727040,25000},{221,26.3,71.2}},
[100285]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100286]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100287]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100288]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100289]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100290]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100291]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100292]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100293]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100294]={9,{463,95,44.0,273,124,0,0},{720011,3000,722246,4907,723368,4907,723436,4907,720092,5000,210203,519,770030,100,720064,80000,720140,5000,720210,30000,204531,5000,211332,2458,723978,3000,721902,2733},{2,36.5,83.6}},
[100295]={14,{865,168,121.0,440,539,0,0},{720011,3000,722282,3458,722418,3458,722622,3458,720092,5000,210229,494,770229,100,204531,5000,720140,5000,720210,30000,550781,494,222562,2088,723979,3000,721902,2733},{2,35.5,78.1}},
[100296]={14,{920,149,183.0,461,466,0,0},{720011,3000,722384,3458,723404,3458,723472,3458,720093,5000,210737,494,770238,100,204531,5000,720140,5000,222585,2088,723979,3000,721904,1735},{2,55.5,40.6}},
[100297]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722554,3296,722554,3296,722928,3296,720093,5000,204531,5000,770032,100,200406,80000,720140,5000,222511,1919,723979,3000,721904,1735},{2,38.9,69.1}},
[100298]={14,{920,149,183.0,461,466,0,0},{720011,3000,722758,3458,722928,3458,722996,3458,720093,5000,204531,5000,770044,100,720081,80000,720140,5000,203466,20000,222584,2167,723979,3000,721904,1735},{2,54.6,48.5}},
[100299]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722996,3296,723472,3296,723506,3296,720093,5000,204531,5000,770045,100,720079,80000,720140,5000,211427,2088,723979,3000,721904,1735},{2,55.5,45.6}},
[100300]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100301]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100302]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100303]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100304]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100305]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100306]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100307]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100308]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100309]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100310]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100311]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100312]={103,{1282649,24183,19138.0,18216,18164,0,0},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726710,200000,725916,100000,726054,200000}},
[100313]={95,{1639052,45398,17031.0,109127,108320,0,0},{720011,5000,720142,10000,726877,10000,720655,200000,202286,50000,727040,200000}},
[100314]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100315]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100316]={93,{438318,28669,2964.0,103871,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202284,25000,727040,25000},{222,42.3,33.3}},
[100317]={93,{438318,28669,2964.0,103871,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202284,25000,727040,25000},{222,28.2,78.0}},
[100318]={93,{438318,28669,2964.0,103871,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202284,25000,727040,25000},{222,43.9,78.5}},
[100319]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202285,25000,727040,25000},{223,29.2,71.6}},
[100320]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202285,25000,727040,25000},{223,66.2,71.9}},
[100321]={93,{409637,28550,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202285,25000,727040,25000},{223,68.4,29.3}},
[100322]={95,{1637070,45023,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720656,200000,202287,50000,727040,100000},{225,50.7,79.1}},
[100323]={1,{117,30,14.0,63,44,0,0},{}},
[100324]={95,{1639052,45398,17031.0,109127,108320,0,0},{720011,5000,720142,10000,726877,10000,720657,200000,202288,50000,727040,100000}},
[100325]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100326]={1,{127,16,10.0,81,84,0,0},{720011,5000,720021,5000,720087,80000,720091,60000}},
[100327]={4,{257,61,60.0,108,180,0,0},{720011,5000,720021,5000,720087,80000,720091,60000}},
[100328]={46,{6211,901,787.0,2739,2763,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770511,100,201997,65000,720142,5000,723982,3000},{3,34.4,47.0}},
[100329]={47,{6031,973,892.0,2593,3352,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770493,100,202002,35000,720142,5000,203709,35000,723982,3000},{3,26.3,42.5}},
[100330]={2,{158,24,13.0,111,109,0,0},{720011,5000,720021,5000,720087,80000,720091,60000}},
[100331]={46,{6211,901,787.0,2739,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770487,100,720142,5000,723982,3000},{3,43.6,70.2}},
[100332]={48,{19227,3197,2097.0,2970,2995,0,0},{720011,5000,722191,5000,722157,6000,724180,2000,724185,2000,720100,10000,724269,1500,770488,100,720142,5000,723982,3000},{3,39.5,69.7}},
[100333]={48,{6126,990,839.0,2970,2995,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770494,100,201970,65000,720142,5000,723982,3000},{3,27.5,40.2}},
[100334]={47,{18579,3101,2032.0,2870,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,724269,500,770505,100,201994,65000,724712,10000,724519,1000,720142,5000,724712,5000,723982,3000},{3,75.1,38.9}},
[100335]={47,{5957,969,2584.0,2615,3327,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770506,100,201994,65000,724712,5000,724519,100,720142,5000,724710,1000,723982,3000},{3,73.9,40.6}},
[100336]={46,{6175,918,787.0,2756,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,720185,1500,720100,1000,770507,100,201994,65000,724712,5000,724519,100,720142,5000,724710,1000,723982,3000},{3,74.6,39.9}},
[100337]={50,{20443,3494,2233.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,724269,500,770508,5000,201994,65000,724712,10000,724519,1000,720142,5000,724710,5000,723982,3000},{3,77.0,32.1}},
[100338]={46,{6211,901,787.0,2739,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770495,100,720142,5000,723982,3000},{3,47.1,74.9}},
[100339]={0,{144,28,28.0,28,28,0,0},{720011,5000,720017,80000}},
[100340]={47,{6513,962,812.0,2853,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770496,100,720142,5000,723982,3000},{3,45.8,73.9}},
[100341]={46,{6211,901,787.0,2739,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770499,100,201999,65000,720142,5000,723982,3000},{3,25.3,58.4}},
[100342]={47,{6411,939,812.0,2853,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770500,100,720142,5000,723982,3000},{3,28.8,65.7}},
[100343]={46,{5818,922,2566.0,2495,3184,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770497,100,201995,60000,720142,5000,723982,3000},{3,46.2,75.9}},
[100344]={0,{144,28,28.0,28,28,0,0},{720011,5000,720065,80000}},
[100345]={0,{144,28,28.0,28,28,0,0},{720011,5000,720085,80000}},
[100346]={0,{144,28,28.0,28,28,0,0},{720011,5000,720085,80000}},
[100347]={47,{6411,939,812.0,2853,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770512,100,201997,65000,720142,5000,723982,3000}},
[100348]={49,{6932,1042,865.0,3091,3117,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770521,100,720142,5000,723982,3000},{3,42.1,77.5}},
[100349]={49,{6932,1042,865.0,3091,3117,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770522,100,720142,5000,723982,3000},{3,41.1,77.9}},
[100350]={48,{19188,4998,7097.0,2988,2995,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,724269,500,770509,5000,201994,65000,724712,10000,724519,1000,720142,5000,724710,5000,723982,3000},{3,77.5,38.3}},
[100351]={48,{6576,996,839.0,2988,2995,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770518,100,720142,5000,723982,3000},{3,53.2,30.8}},
[100352]={47,{6374,956,812.0,2870,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770519,100,720142,5000,723982,3000},{3,63.6,30.2}},
[100353]={47,{16010,3101,2032.0,2870,2877,0,0},{720011,5000,722191,4000,722157,6000,724180,1600,724185,2000,720100,1000,724269,1000,770502,5000,720142,5000,723982,3000},{3,24.8,84.0}},
[100354]={32,{3322,477,475.0,1577,1469,0,0},{720011,3000,722560,947,722560,947,723954,947,720097,5000,770104,100,201462,70000,720141,5000,222446,497,723980,3000,721910,514},{5,72.2,45.3}},
[100355]={34,{2815,539,254.0,1535,705,0,0},{720011,3000,770105,100}},
[100356]={37,{2862,750,298.0,1410,1532,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,202945,25000,222605,400,723980,3000,721912,320},{5,68.3,64.6}},
[100357]={36,{3725,593,555.0,1780,1784,0,0},{720011,3000,722323,667,723003,667,723071,667,720098,5000,220136,100,770124,100,200579,70000,720141,5000,202945,25000,550855,100,222568,400,723980,3000,721911,387},{5,67.0,62.1}},
[100358]={36,{3498,612,459.0,1636,2051,0,0},{720011,3000,722425,667,723411,667,723445,667,720098,5000,770125,100,200579,70000,720141,5000,202945,25000,222567,400,723980,3000,721911,387},{5,64.1,58.9}},
[100359]={38,{2998,737,310.0,1463,1604,0,0},{720011,5000,770101,100,723980,3000,721912,320}},
[100360]={36,{10698,1922,1389.0,1780,1784,0,0},{720011,3000,722289,200000,722425,200000,723003,200000,720098,5000,770126,100,200579,70000,720141,5000,202945,25000,210540,6,211446,1400,723980,3000,721911,387},{5,63.4,71.5}},
[100361]={36,{10037,1581,524.0,1689,776,0,0},{720011,3000,722459,200000,722799,200000,723479,200000,720098,5000,770127,100,200579,70000,720141,5000,202945,25000,210539,6,211356,1400,723980,3000,721911,387},{5,69.7,69.9}},
[100362]={36,{10698,1922,1389.0,1780,1784,0,0},{720011,3000,722561,200000,722561,200000,720182,200000,720098,5000,770128,100,200579,70000,720141,5000,202945,25000,210538,6,211337,1400,723980,3000,721911,387},{5,54.5,63.3}},
[100363]={38,{11663,2108,1496.0,1952,1957,0,0},{720011,3000,722392,200000,722834,200000,722528,200000,720098,5000,770129,100,200579,70000,720141,5000,202945,25000,210537,6,222502,1400,723980,3000,721912,320},{5,57.5,73.9}},
[100364]={40,{12705,2315,1607.0,2121,2141,0,0},{720011,3000,722359,2333,722495,2333,723957,2333,720099,10000,770130,100,724922,20000,550858,100,723980,20000,721913,15000},{104,23.8,13.9}},
[100365]={35,{3817,639,535.0,1824,1702,0,0},{720011,3000,722357,711,722493,711,723377,711,720097,5000,770247,100,201124,70000,720141,5000,200875,30000,550808,100,222532,427,723980,3000,721911,387},{5,28.7,28.2}},
[100366]={35,{10579,1922,1338.0,1874,1702,0,0},{720011,3000,770107,100}},
[100367]={34,{3443,537,514.0,1606,1622,0,0},{720011,3000,722255,805,722595,805,722731,805,720097,5000,220844,142,770248,100,201462,70000,720141,5000,222575,427,723980,3000,721911,387},{5,39.7,38.6}},
[100368]={35,{3586,553,535.0,1685,1702,0,0},{720011,3000,722663,711,722765,711,723479,711,720097,5000,770108,100,200016,70000,720141,5000,211354,400,723980,3000,721911,387},{5,44.5,44.1}},
[100369]={34,{3226,551,430.0,1479,1864,0,0},{720011,3000,723717,805,723785,805,720182,805,720097,5000,770109,100,720141,5000,222615,427,723980,3000,721911,387}},
[100370]={40,{12316,2298,1607.0,2121,2141,0,0},{720011,3000,722223,667,722393,667,723515,667,720098,5000,770119,100,720141,5000,202946,25000,550881,100,222625,1400,723980,3000,721913,320},{5,24.2,14.5}},
[100371]={0,{112,24,20.0,57,84,0,0},{720011,5000,723980,3000}},
[100372]={37,{3621,617,577.0,1852,1869,0,0},{720011,3000,722562,667,722562,667,722664,667,720098,5000,220239,100,770120,100,720141,5000,202946,25000,222624,400,723980,3000,721912,320},{5,25.2,13.8}},
[100373]={37,{3966,761,237.0,2281,1144,0,0},{720011,3000,722630,667,722902,667,723378,667,720098,5000,220281,100,770121,100,720141,5000,202946,25000,550756,100,222637,400,723980,3000,721912,320},{5,25.1,10.7}},
[100374]={40,{15436,2308,1413.0,1942,2484,0,0},{720011,3000,722291,3500,720184,3500,720154,20000,720098,15000,770152,100,550976,400,724922,20000,723980,20000,721913,15000}},
[100375]={3,{203,37,49.0,95,109,0,0},{720011,3000,722244,4722,722890,4722,723944,4722,720091,5000,770001,100,201168,80000,720140,5000,550288,719,723978,3000,721900,2000}},
[100376]={5,{298,55,71.0,147,163,0,0},{720011,3000,722313,5370,722449,5370,723367,5370,720092,5000,770002,3000,201168,80000,720140,5000,720089,17080,723978,3000,721900,2000}},
[100377]={10,{27615,423,720.0,320,318,0,0},{720011,3000,722213,200000,722383,200000,723437,200000,720174,200000,720092,5000,720088,5000,770003,5000,201168,80000,720024,50000,240669,200000,723978,3000,721903,0}},
[100378]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722248,3296,722690,3296,722724,3296,720093,5000,220153,494,770036,100,204531,5000,720140,5000,211394,2169,723979,3000,721904,1735},{2,30.7,66.6}},
[100379]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722351,3198,722487,3198,723031,3198,720094,5000,204531,5000,770037,100,720140,5000,723979,3000,721905,1535},{2,31.7,66.3}},
[100380]={101,{1057833,77725,20812.0,118339,143858,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,31.7,85.4}},
[100381]={101,{1016487,99120,20812.0,129097,136865,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,31.4,85.4}},
[100382]={101,{1016487,99120,20812.0,129097,136865,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,31.4,83.7}},
[100383]={101,{999875,99027,20812.0,128873,136865,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,59.1,51.3}},
[100384]={101,{956789,92436,20812.0,117634,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,37.2,28.2}},
[100385]={101,{956789,92436,20812.0,117634,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,33.8,84.0}},
[100386]={101,{951444,92350,20812.0,117839,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,63.4,46.0}},
[100387]={101,{953297,92090,20812.0,117634,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,71.9,63.4}},
[100388]={101,{953297,92090,20812.0,117634,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,61.6,79.1}},
[100389]={101,{953297,92090,20812.0,117634,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,37.8,37.0}},
[100390]={101,{951444,92350,20812.0,117839,117884,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{180,44.6,78.1}},
[100391]={18,{1283,229,202.0,590,735,0,0},{720011,3000,722283,2972,722419,2972,722521,2972,720094,5000,204531,5000,770038,100,720140,5000,550775,415,222586,1662,723979,3000,721905,1535},{2,28.9,68.6}},
[100392]={19,{3802,644,635.0,678,686,0,0},{720011,3000,722318,9693,723372,9693,720177,9693,220048,1700,720094,50000,770095,100,220046,1700,724922,20000,724169,10000,723980,20000,721906,15000},{102,24.5,41.1}},
[100393]={20,{4122,691,672.0,726,734,0,0},{720011,3000,722726,7713,722828,7713,723032,7713,720006,80000,720094,60000,770037,100,720141,5000,724169,10000,723980,3000,721906,1329},{102,27.5,35.5}},
[100394]={0,{144,28,28.0,28,28,0,0},{}},
[100395]={0,{144,28,28.0,28,28,0,0},{}},
[100396]={11,{684,112,143.0,349,353,0,0},{720011,3000,722349,3611,722485,3611,722927,3611,720093,5000,204531,5000,770236,100,720140,5000,211334,2167,723979,3000,721903,1967},{2,59.2,57.3}},
[100397]={11,{684,112,143.0,349,353,0,0},{720011,3000,722553,3611,722553,3611,723029,3611,725761,200000,720093,5000,210088,522,770237,100,720078,80000,720140,5000,204531,5000,203466,50000,211360,2167,723979,3000,721903,1967},{2,63.7,56.7}},
[100398]={10,{613,100,131.0,314,318,0,0},{720011,3000,722655,4097,722689,4097,722757,4097,720092,5000,204531,5000,770031,100,720140,5000,211379,2167,723979,3000,721903,1967},{2,68.6,73.0}},
[100399]={13,{702,142,63.0,408,186,0,0},{720011,3000,722214,3615,722928,3615,722962,3615,720093,5000,210117,446,770033,100,204531,5000,720140,5000,720210,30000,222634,2088,723979,3000,721904,1735},{2,44.0,56.5}},
[100400]={0,{144,28,28.0,28,28,0,0},{}},
[100401]={0,{144,28,28.0,28,28,0,0},{}},
[100402]={0,{144,28,28.0,28,28,0,0},{}},
[100403]={0,{144,28,28.0,28,28,0,0},{}},
[100404]={0,{144,28,28.0,28,28,0,0},{}},
[100405]={0,{144,28,28.0,28,28,0,0},{}},
[100406]={0,{144,28,28.0,28,28,0,0},{}},
[100407]={0,{144,28,28.0,28,28,0,0},{}},
[100408]={29,{2605,409,639.0,1207,1230,0,0},{720011,5000,770225,100}},
[100409]={0,{144,28,28.0,28,28,0,0},{}},
[100410]={0,{144,28,28.0,28,28,0,0},{}},
[100411]={0,{144,28,28.0,28,28,0,0},{}},
[100412]={0,{144,28,28.0,28,28,0,0},{}},
[100413]={0,{144,28,28.0,28,28,0,0},{}},
[100414]={0,{144,28,28.0,28,28,0,0},{}},
[100415]={0,{146,32,48.0,84,90,0,0},{}},
[100416]={46,{14187,2728,1079.0,2163,2328,0,0},{}},
[100417]={45,{4076,1023,410.0,2212,2174,0,0},{}},
[100418]={45,{4299,886,330.0,2559,1224,0,0},{}},
[100419]={43,{3967,810,269.0,2306,1060,0,0},{720011,3000,722564,667,722564,667,723006,667,720099,5000,770170,100,720142,5000,550284,100,211310,400,723980,3000,721914,320},{6,65.3,33.4}},
[100420]={44,{4803,860,530.0,2325,2930,0,0},{720011,3000,722292,667,722428,667,722802,667,720099,5000,210215,100,770171,100,720142,5000,211451,400,723980,3000,721914,320},{6,65.5,32.8}},
[100421]={43,{4828,810,712.0,2432,2438,0,0},{720011,3000,722326,667,722462,667,723414,667,720099,5000,210208,100,770172,100,720142,5000,550882,100,222630,400,723980,3000,721914,320},{6,65.5,32.9}},
[100422]={42,{4695,761,689.0,2315,2336,0,0},{720011,3000,722359,667,722971,667,720184,667,720099,5000,770173,100,201426,60000,720142,5000,222543,400,723980,3000,721913,320},{6,66.9,42.0}},
[100423]={42,{4671,776,689.0,2330,2336,0,0},{720011,3000}},
[100424]={45,{4233,881,288.0,2508,1152,0,0},{720011,3000}},
[100425]={43,{4855,795,712.0,2416,2438,0,0},{720011,3000,722734,667,722836,667,722870,667,720099,5000,770249,100,720142,5000,550901,100,211388,400,723980,3000,721914,320},{6,62.4,43.6}},
[100426]={42,{4695,761,689.0,2315,2336,0,0},{720011,3000,723515,667,723549,667,723583,667,720099,5000,770179,100,201430,60000,720142,5000,211358,400,723980,3000,721913,320},{6,59.0,48.8}},
[100427]={43,{4855,795,712.0,2416,2438,0,0},{720011,3000,722224,667,722394,667,723380,667,720099,5000,220642,100,770180,100,201429,60000,720142,5000,211450,400,723980,3000,721914,320},{6,59.3,47.0}},
[100428]={44,{5017,829,737.0,2521,2543,0,0},{720011,3000,722360,667,722496,667,722598,667,720099,5000,220586,100,770250,100,201127,60000,720142,5000,550394,100,222521,400,723980,3000,721914,320},{6,53.0,44.3}},
[100429]={1,{132,17,28.0,59,60,0,0},{720011,5000}},
[100430]={44,{5017,829,737.0,2521,2543,0,0},{720011,3000}},
[100431]={46,{5321,918,787.0,2756,2763,0,0},{720011,3000,722293,667,722429,667,723959,667,720099,5000,770183,100,724712,5000,720142,5000,724519,100,724710,1000,222506,400,723980,3000,721915,320},{6,43.6,61.3}},
[100432]={46,{5321,918,787.0,2756,2763,0,0},{720011,3000,722259,667,723483,667,723959,667,720099,5000,724712,5000,770184,100,724710,1000,720142,5000,724519,100,550813,100,222524,400,723980,3000,721915,320},{6,46.7,56.7}},
[100433]={46,{5321,918,787.0,2756,2763,0,0},{720011,3000,722327,667,722463,667,723619,667,720099,5000,770185,100,724712,5000,720142,5000,724519,100,724710,1000,222544,400,723980,3000,721915,320},{6,44.7,61.8}},
[100434]={47,{4510,956,307.0,2722,1251,0,0},{720011,3000,722259,667,722667,667,720186,667,720099,5000,210129,100,770186,100,204354,200000,720142,5000,724519,100,550733,100,222572,400,723980,3000,721915,320},{6,46.7,55.6}},
[100435]={48,{4193,1130,434.0,2241,2447,0,0},{720011,3000,722225,667,722395,667,723619,667,720099,5000,770187,100,720142,5000,550567,100,222449,400,723980,3000,721915,320},{6,47.8,64.4}},
[100436]={45,{5130,899,548.0,2398,3064,0,0},{720011,3000,720099,5000}},
[100437]={45,{4342,887,288.0,2491,1152,0,0},{720011,3000,722326,667,722462,667,723074,667,720099,5000,220745,100,770203,100,720142,5000,550749,100,222459,400,723980,3000,721914,320},{6,54.1,45.2}},
[100438]={45,{3883,1013,394.0,1983,2167,0,0},{720011,3000,722360,667,722496,667,723040,667,720099,5000,220723,100,770190,100,720142,5000,222479,400,723980,3000,721914,320},{6,51.3,43.8}},
[100439]={41,{4539,729,665.0,2217,2237,0,0},{720011,3000,722733,667,722937,667,723073,667,720099,5000,220137,100,770251,100,201126,60000,720142,5000,211325,400,723980,3000,721914,320},{6,40.6,49.4}},
[100440]={41,{4539,768,665.0,2337,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,770195,100,201427,60000,720142,5000,211374,400,723980,3000,721914,320},{6,41.0,49.1}},
[100441]={41,{4539,729,665.0,2217,2237,0,0},{720011,3000,722393,667,722631,667,723549,667,720099,5000,770196,100,201428,60000,720142,5000,222640,400,723980,3000,721914,320},{6,41.3,51.3}},
[100442]={44,{4861,864,809.0,2305,2952,0,0},{720011,3000}},
[100443]={39,{4236,667,620.0,2029,2047,0,0},{720011,3000,722222,667,722392,667,723718,667,720099,5000,770166,100,720141,5000,222557,400,723980,3000,721912,320},{6,53.5,67.7}},
[100444]={40,{4386,697,642.0,2121,2141,0,0},{720011,3000,722257,667,722597,667,722665,667,720099,5000,770167,100,201126,60000,720141,5000,550789,100,211290,400,723980,3000,721913,320},{6,46.7,56.7}},
[100445]={40,{4386,697,642.0,2121,2141,0,0},{720011,3000,722325,667,722937,667,723413,667,720099,5000,770168,100,201127,60000,720141,5000,211338,400,723980,3000,721913,320},{6,49.5,58.6}},
[100446]={40,{4386,697,642.0,2121,2141,0,0},{720011,3000,723617,667,723651,667,723685,667,720099,5000,770169,100,720141,5000,550769,100,222457,400,723980,3000,721913,320},{6,46.9,55.5}},
[100447]={46,{4370,918,297.0,2613,1201,0,0},{720011,3000,722259,667,723449,667,723483,667,720099,5000,220427,100,770198,100,201431,200000,720142,5000,202947,25000,550673,100,222571,400,723980,3000,721915,320},{6,56.0,24.7}},
[100448]={45,{5154,881,761.0,2645,2651,0,0},{720011,3000,722666,667,722700,667,722836,667,720099,5000,220139,100,770199,100,201431,200000,720142,5000,202947,25000,211437,400,723980,3000,721914,320},{6,57.3,22.5}},
[100449]={45,{4979,896,548.0,2419,3064,0,0},{720011,3000,722428,667,723720,667,720185,667,720099,5000,220618,100,770200,100,201431,200000,720142,5000,202947,25000,222594,400,723980,3000,721914,320},{6,55.3,16.6}},
[100450]={48,{994713,6046,6038.0,2735,3455,0,0},{720011,3000,722293,200000,723381,200000,723449,200000,722531,200000,720099,5000,240692,200000,770201,100,201635,500000,720026,100000,220427,100000,211453,400,723980,3000,721915,320}},
[100451]={47,{5345,969,584.0,2615,3327,0,0},{720011,3000,722769,667,722803,667,723653,667,720099,5000,770192,100,720142,5000,550338,100,222536,400,723980,3000,721915,320}},
[100452]={1,{87,14,10.0,33,29,0,0},{720011,3000,722278,4167,722652,4167,722686,4167,720091,5000,220149,286,770000,100,201168,80000,720140,5000,211376,2750,723978,3000,721900,2000},{1,31.6,61.1}},
[100453]={0,{144,28,28.0,28,28,0,0},{}},
[100454]={18,{1075,213,90.0,607,278,0,0},{720011,3000,722250,2769,722726,2769,722794,2769,720094,5000,770055,100,720140,5000,550921,415,222644,1783,723979,3000,721906,1329},{4,73.5,16.7}},
[100455]={19,{1400,228,254.0,686,686,0,0},{720011,3000,722352,2204,722488,2204,722692,2204,720094,5000,210257,260,770056,100,720140,5000,550864,331,211398,1783,723979,3000,721906,1329},{4,74.7,15.5}},
[100456]={12,{759,124,156.0,384,389,0,0},{720011,3000,722247,3480,722689,3480,722791,3480,720093,5000,204531,5000,770034,100,720140,5000,211301,2169,723979,3000,721903,1967},{2,43.1,58.7}},
[100457]={1,{157,35,14.0,75,84,0,0},{}},
[100458]={4,{232,34,60.0,111,45,0,0},{720011,3000,722381,4792,723401,4792,722517,4792,720091,5000,770022,100,720140,5000,222442,2944,723978,3000,721901,2300},{1,47.6,89.8}},
[100459]={5,{288,47,61.0,143,117,0,0},{720011,3000,723978,3000,721901,2733}},
[100460]={5,{312,50,71.0,160,163,0,0},{720011,5000}},
[100461]={10,{613,100,131.0,314,318,0,0},{720011,5000}},
[100462]={15,{1007,162,196.0,501,507,0,0},{720011,5000}},
[100463]={20,{1509,237,269.0,726,734,0,0},{720011,5000}},
[100464]={25,{2133,325,349.0,995,1005,0,0},{720011,5000}},
[100465]={30,{2865,430,437.0,1312,1326,0,0},{720011,5000}},
[100466]={35,{3586,553,535.0,1685,1702,0,0},{720011,5000}},
[100467]={40,{4386,697,642.0,2121,2141,0,0},{720011,5000}},
[100468]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000}},
[100469]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,724924,200000},{119,57.0,43.3}},
[100470]={52,{6440,1145,949.0,3475,3503,0,0},{720011,5000}},
[100471]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,5000}},
[100472]={57,{7451,1382,1100.0,4192,4225,0,0},{720011,5000}},
[100473]={60,{8108,1541,1198.0,4673,4709,0,0},{720011,5000}},
[100474]={62,{8568,1654,1267.0,5017,5055,0,0},{720011,5000}},
[100475]={65,{9292,1837,1375.0,5569,5610,0,0},{720011,5000}},
[100476]={67,{9800,1967,1450.0,5963,6006,0,0},{720011,5000}},
[100477]={70,{10600,2176,1570.0,6595,6642,0,0},{720011,5000}},
[100478]={72,{11161,2325,1654.0,7046,7095,0,0},{720011,5000}},
[100479]={75,{12044,2564,1785.0,7768,7821,0,0},{720011,5000,720030,100000}},
[100480]={77,{12663,2734,1878.0,8282,8339,0,0},{720011,5000}},
[100481]={80,{13638,3006,2023.0,9106,9167,0,0},{720011,5000}},
[100482]={82,{14321,3200,2125.0,9693,9757,0,0},{720011,5000}},
[100483]={85,{15398,3511,2286.0,10631,10700,0,0},{720011,5000}},
[100484]={87,{16153,3731,2399.0,11299,11371,0,0},{720011,5000}},
[100485]={90,{17342,4085,2576.0,12366,12444,0,0},{720011,5000}},
[100486]={92,{18175,4335,2700.0,13125,13206,0,0},{720011,5000}},
[100487]={95,{19487,4737,2896.0,14338,14425,0,0},{720011,5000}},
[100488]={97,{20407,5021,3033.0,15199,15290,0,0},{720011,5000}},
[100489]={98,{20880,5169,3104.0,15646,15740,0,0},{720011,5000,720030,100000}},
[100490]={99,{21364,5321,3176.0,16105,16200,0,0},{720011,5000}},
[100491]={100,{21856,5476,3250.0,16575,16673,0,0},{720011,5000}},
[100492]={15,{841,162,73.0,476,221,0,0},{720011,5000}},
[100493]={20,{1254,237,101.0,690,319,0,0},{720011,5000}},
[100494]={25,{1768,325,131.0,944,437,0,0},{720011,5000}},
[100495]={30,{2370,430,165.0,1245,576,0,0},{720011,5000}},
[100496]={35,{2962,553,202.0,1598,740,0,0},{720011,5000}},
[100497]={40,{3619,697,242.0,2011,931,0,0},{720011,5000}},
[100498]={45,{4273,865,288.0,2491,1152,0,0},{720011,5000}},
[100499]={50,{4995,1059,337.0,3046,1409,0,0},{720011,5000,720030,100000}},
[100500]={5,{312,50,71.0,160,163,0,0},{720011,5000}},
[100501]={10,{613,100,131.0,314,318,0,0},{720011,5000}},
[100502]={15,{1007,162,196.0,501,507,0,0},{720011,5000}},
[100503]={20,{1509,237,269.0,726,734,0,0},{720011,5000}},
[100504]={25,{2133,325,349.0,995,1005,0,0},{720011,5000}},
[100505]={30,{2865,430,437.0,1312,1326,0,0},{720011,5000}},
[100506]={35,{3586,553,535.0,1685,1702,0,0},{720011,5000}},
[100507]={40,{4386,697,642.0,2121,2141,0,0},{720011,5000}},
[100508]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000}},
[100509]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,720030,100000}},
[100510]={5,{312,50,71.0,160,163,0,0},{720011,5000}},
[100511]={10,{613,100,131.0,314,318,0,0},{720011,5000}},
[100512]={15,{1007,162,196.0,501,507,0,0},{720011,5000}},
[100513]={20,{1509,237,269.0,726,734,0,0},{720011,5000}},
[100514]={25,{2133,325,349.0,995,1005,0,0},{720011,5000}},
[100515]={30,{2865,430,437.0,1312,1326,0,0},{720011,5000}},
[100516]={35,{3586,553,535.0,1685,1702,0,0},{720011,5000}},
[100517]={40,{4386,697,642.0,2121,2141,0,0},{720011,5000}},
[100518]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000}},
[100519]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,720030,100000}},
[100520]={5,{312,50,71.0,160,163,0,0},{720011,5000}},
[100521]={10,{613,100,131.0,314,318,0,0},{720011,5000}},
[100522]={15,{1007,162,196.0,501,507,0,0},{720011,5000}},
[100523]={20,{1509,237,269.0,726,734,0,0},{720011,5000}},
[100524]={25,{2133,325,349.0,995,1005,0,0},{720011,5000}},
[100525]={30,{2865,430,437.0,1312,1326,0,0},{720011,5000}},
[100526]={35,{3586,553,535.0,1685,1702,0,0},{720011,5000}},
[100527]={40,{4386,697,642.0,2121,2141,0,0},{720011,5000}},
[100528]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000}},
[100529]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,720030,100000}},
[100530]={5,{312,50,71.0,160,163,0,0},{720011,5000}},
[100531]={10,{613,100,131.0,314,318,0,0},{720011,5000}},
[100532]={15,{1007,162,196.0,501,507,0,0},{720011,5000}},
[100533]={20,{1509,237,269.0,726,734,0,0},{720011,5000}},
[100534]={25,{2133,325,349.0,995,1005,0,0},{720011,5000}},
[100535]={30,{2865,430,437.0,1312,1326,0,0},{720011,5000}},
[100536]={35,{3586,553,535.0,1685,1702,0,0},{720011,5000}},
[100537]={40,{4386,697,642.0,2121,2141,0,0},{720011,5000}},
[100538]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000}},
[100539]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,720030,100000}},
[100540]={5,{312,50,71.0,160,163,0,0},{720011,5000}},
[100541]={10,{613,100,131.0,314,318,0,0},{720011,5000}},
[100542]={15,{1007,162,196.0,501,507,0,0},{720011,5000}},
[100543]={20,{1509,237,269.0,726,734,0,0},{720011,5000}},
[100544]={25,{2133,325,349.0,995,1005,0,0},{720011,5000}},
[100545]={30,{2865,430,437.0,1312,1326,0,0},{720011,5000}},
[100546]={35,{3586,553,535.0,1685,1702,0,0},{720011,5000}},
[100547]={40,{4386,697,642.0,2121,2141,0,0},{720011,5000}},
[100548]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000}},
[100549]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,720030,100000}},
[100550]={30,{249063,2337,437.0,437,442,0,0},{}},
[100551]={30,{123780,437,165.0,454,363,0,0},{}},
[100552]={30,{123780,437,165.0,454,204,0,0},{}},
[100553]={30,{103272,366,314.0,286,363,0,0},{}},
[100554]={30,{103272,366,314.0,286,388,0,0},{}},
[100555]={30,{277321,503,226.0,901,363,0,0},{}},
[100556]={30,{488246,437,437.0,1757,442,0,0},{}},
[100557]={30,{716,444,165.0,1245,1090,0,0},{}},
[100558]={30,{867,444,437.0,1312,1326,0,0},{}},
[100559]={30,{1273,1428,1094.0,1323,1326,0,0},{}},
[100560]={10,{1487,340,327.0,314,318,0,0},{720011,3000}},
[100561]={25,{108531,1087,1545.0,700,839,0,0},{720011,3000,722218,200000,722388,200000,722762,200000,722524,200000,720135,100000,724922,20000,770096,1000,720025,50000,723980,20000,721908,15000},{102,68.0,72.8}},
[100562]={25,{109196,1198,1920.0,995,1005,0,0},{720011,3000,722218,200000,722388,200000,723714,200000,720179,200000,720134,100000,724922,20000,770097,1000,550956,2730,720025,50000,723980,20000,721908,15000},{102,73.5,53.8}},
[100563]={25,{146057,1366,1381.0,921,1159,0,0},{720011,3000,722286,200000,722422,200000,723680,200000,722524,200000,720133,100000,724922,20000,770098,1000,720025,50000,723980,20000,721908,15000},{102,73.0,33.9}},
[100564]={0,{144,28,28.0,28,28,0,0},{}},
[100565]={0,{150,30,28.0,90,84,0,0},{}},
[100566]={40,{190354,1941,3536.0,1759,1523,0,0},{720011,3000,722563,200000,722223,200000,722427,200000,722257,200000,720152,100000,724922,65000,240680,200000,720026,200000,724172,100000,723982,3000,721913,387},{103,54.8,10.5}},
[100567]={50,{3481,903,893.0,2711,2679,0,0},{721226,10000,721227,100000},{102,24.2,25.8}},
[100568]={21,{1623,253,284.0,776,785,0,0},{720011,3000,723407,1733,723441,1733,720178,1733,720095,5000,770031,100,720141,5000,550823,260,222564,951,723980,3000,721907,832},{4,49.6,43.1}},
[100569]={26,{2274,345,366.0,1054,1065,0,0},{720011,3000,722252,1305,722898,1305,723034,1305,720096,5000,770031,100,720141,5000,211322,745,723980,3000,721908,662},{4,49.9,79.7}},
[100570]={36,{3760,602,555.0,1767,1784,0,0},{720011,3000,723581,667,723683,667,723751,667,720098,5000,770110,100,720141,5000,201537,10,222616,400,723980,3000,721911,387},{5,30.9,25.2}},
[100571]={21,{1815,270,284.0,828,836,0,0},{720011,3000,722217,1733,722387,1733,722761,1733,720095,5000,770065,100,201258,70000,720141,5000,222621,1322,723980,3000,721907,832},{4,62.1,15.5}},
[100572]={0,{144,28,28.0,28,28,0,0},{}},
[100573]={46,{6211,901,787.0,2739,2763,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770489,100,202011,65000,720142,5000,723982,3000},{3,34.5,70.5}},
[100574]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,723444,947,723512,947,723546,947,720097,5000,770111,100,720141,5000,202364,20000,550867,124,211435,497,723980,3000,721910,514},{5,50.0,36.8}},
[100575]={0,{144,28,28.0,28,28,0,0},{}},
[100576]={0,{144,28,28.0,28,28,0,0},{}},
[100577]={0,{144,28,28.0,28,28,0,0},{}},
[100578]={0,{144,28,28.0,28,28,0,0},{}},
[100579]={0,{144,28,28.0,28,28,0,0},{}},
[100580]={0,{144,28,28.0,28,28,0,0},{}},
[100581]={37,{3902,608,577.0,1852,1869,0,0},{720011,3000,722222,667,722392,667,722732,667,720098,5000,220111,100,770122,100,720141,5000,202946,25000,550840,100,222653,400,723980,3000,721912,320},{5,29.3,11.2}},
[100582]={0,{144,28,28.0,28,28,0,0},{}},
[100583]={40,{12635,2282,1607.0,2121,2141,0,0},{720011,3000,722325,3500,720184,3500,720099,5000,770153,100,724922,20000,550916,100,723980,20000,721913,15000},{104,51.6,53.7}},
[100584]={0,{144,28,28.0,28,28,0,0},{723980,3000}},
[100585]={0,{144,28,28.0,28,28,0,0},{}},
[100586]={12,{763,130,156.0,391,389,0,0},{720011,3000,720093,10000,550845,542},{250,28.9,82.5}},
[100587]={38,{11745,2181,1496.0,2029,2047,0,0},{720011,3000,722902,2333,723378,2333,723616,2333,720099,10000,770154,100,724922,20000,723980,20000,721912,15000},{104,54.5,87.8}},
[100588]={26,{2274,345,366.0,1054,1065,0,0},{720011,3000,723612,1305,723714,1305,723748,1305,720096,5000,770222,100,720141,5000,211323,745,723980,3000,721908,0},{4,52.6,69.5}},
[100589]={34,{3525,527,514.0,1669,1622,0,0},{720011,3000,722323,805,722459,805,722901,805,720097,5000,770112,100,720141,5000,222519,483,723980,3000,721911,387},{5,40.1,37.0}},
[100590]={47,{6411,939,812.0,2853,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770501,100,720142,5000,723982,3000}},
[100591]={0,{144,28,28.0,28,28,0,0},{}},
[100592]={36,{3760,602,555.0,1767,1784,0,0},{720011,3000,722221,667,722935,667,723037,667,720098,5000,220605,100,770113,100,200617,70000,720141,5000,222556,400,723980,3000,721911,387},{5,34.3,16.8}},
[100593]={0,{144,28,28.0,28,28,0,0},{723980,3000}},
[100594]={40,{3200,815,333.0,1614,1753,0,0},{720011,3000,722223,667,722597,667,722869,667,720099,10000,770155,100,724922,200000,723980,20000,721913,15000},{104,23.4,21.0}},
[100595]={46,{6211,901,787.0,2739,2763,0,0},{720011,5000,722191,4000,722157,6000,724180,1600,724185,2000,720100,1000,770513,100,201996,65000,720142,5000,723982,3000},{3,32.8,52.1}},
[100596]={0,{144,28,28.0,28,28,0,0},{723980,3000}},
[100597]={36,{3640,553,555.0,1684,1701,0,0},{720011,3000,722697,667,722935,667,723343,667,720099,10000,770156,100,724922,20000,550930,100,723980,20000,721911,15000},{104,66.2,34.7}},
[100598]={0,{144,28,28.0,28,28,0,0},{723980,3000}},
[100599]={0,{150,30,28.0,90,84,0,0},{}},
[100600]={100,{35433,5278,7917.0,94503,15793,0,0},{}},
[100601]={20,{1509,244,269.0,734,734,0,0},{720011,3000,722556,2204,722556,2204,722930,2204,720094,5000,770057,100,201256,70000,720140,5000,201539,10,222460,1662,723980,3000,721906,1329},{4,65.9,2.5}},
[100602]={35,{3600,570,814.0,1685,1714,0,0},{720011,3000,722289,711,722969,711,723343,711,220547,100,770117,100,720141,5000,201540,10,222591,400,723980,3000,721911,387},{5,26.2,43.1}},
[100603]={47,{6433,962,1234.0,2853,2895,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770490,100,720142,5000,723982,3000},{3,39.1,66.5}},
[100604]={0,{144,28,28.0,28,28,0,0},{}},
[100605]={100,{36850517,13813,10625.0,25501,12750,0,0},{}},
[100606]={40,{12613,2307,1607.0,2136,2141,0,0},{720011,3000,722461,2333,723957,2333,722529,2333,720099,10000,770157,100,724922,20000,550829,100,723980,20000,721913,15000},{104,35.1,9.5}},
[100607]={40,{11836,1897,607.0,2026,931,0,0},{720011,3000,722257,2333,722393,2333,723039,2333,720099,10000,770158,100,724922,10000,723980,20000,721913,15000},{104,59.5,51.9}},
[100608]={0,{144,28,28.0,28,28,0,0},{723980,3000}},
[100609]={42,{11974,2248,892.0,1747,1911,0,0},{720011,3000,722325,3500,720184,3500,720099,10000,770159,100,724922,20000,550950,100,723980,20000,721913,15000},{104,64.3,37.8}},
[100610]={40,{12316,2298,1607.0,2121,2141,0,0},{720011,3000,722325,3500,720184,3500,720099,10000,770160,100,724922,20000,723980,20000,721913,15000},{104,51.3,36.9}},
[100611]={43,{258257,3243,3921.0,2416,2438,0,0},{720011,3000,722427,200000,722529,200000,720158,100000,770150,100,240682,100000,720026,200000,720072,100000,724922,20000,723980,20000,721913,15000},{104,48.1,11.5}},
[100612]={20,{1509,237,269.0,726,734,0,0},{720011,3000,723576,7713,723780,7713,723950,7713,720094,60000,220047,1442,770037,100,720141,5000,724169,10000,550358,274,723980,3000,721906,1329}},
[100613]={22,{4533,666,282.0,786,364,0,0},{720011,3000,722353,6064,722557,6064,723747,6064,720094,50000,770131,100,720141,5000,724169,10000,550331,238,723980,3000,721907,832}},
[100614]={24,{5794,939,831.0,957,967,0,0},{720011,3000,722319,5149,722455,5149,722557,5149,720094,100000,770132,100,220044,884,720141,5000,724169,10000,550924,207,723980,3000,721907,832},{102,87.4,45.5}},
[100615]={1,{71,24,28.0,84,84,0,0},{}},
[100616]={46,{4370,918,297.0,2613,1201,0,0},{720011,3000,723347,667,723449,667,723517,667,720099,5000,770176,100,720142,5000,550935,100,222448,400,723980,3000,721914,320},{6,65.3,33.3}},
[100617]={43,{3538,929,369.0,1838,1994,0,0},{720011,3000,723720,667,723754,667,723788,667,720099,5000,770177,100,720142,5000,211311,400,723980,3000,721914,320},{6,69.9,34.2}},
[100618]={38,{12620,1150,1076.0,1631,2030,0,0},{720011,3000,723980,3000,721912,320}},
[100619]={1,{186,32,28.0,96,84,0,0},{},{31,30.3,70.6}},
[100620]={45,{276314,3537,4629.0,2628,2668,0,0},{720011,3000,722258,200000,722632,200000,722666,200000,722530,200000,720099,5000,770146,100,720026,100000,240687,200000,550918,100,222505,400,723980,3000,721914,320}},
[100621]={45,{642122,4447,5856.0,1851,2184,0,0},{720011,0,722292,200000,722904,200000,722938,200000,720185,200000,720099,5000,770147,100,720026,100000,240688,200000,550372,100,222522,400,723980,3000,721914,320}},
[100622]={8,{1149,278,333.0,249,257,0,0},{720011,3000,722382,27416,723368,27416,720092,500,240668,200000,720140,5000,723978,3000,721902,2507}},
[100623]={5,{317,56,113.0,160,168,0,0},{720011,3000,722653,8056,722925,8056,720091,500,720140,5000,723978,3000,721901,2578}},
[100624]={10,{518,106,49.0,305,138,0,0},{720011,3000,722383,4097,722995,4097,723471,4097,720092,5000,204531,5000,770025,100,720140,5000,720210,30000,211411,2167,723979,3000,721903,1967},{2,68.9,64.8}},
[100625]={45,{643300,5476,7619.0,2628,2651,0,0},{720011,3000,723688,200000,723756,200000,723960,200000,720187,200000,720100,5000,724175,100000,240685,200000,720026,100000,202946,25000,550780,100,222633,400,723982,3000,721916,320}},
[100626]={49,{731658,6457,8659.0,3109,3117,0,0},{720011,3000,722294,200000,723654,200000,723688,200000,720187,200000,720099,5000,770188,100,720026,100000,724519,1000,222507,400,723980,3000,721915,320},{6,43.1,65.3}},
[100627]={49,{731658,6457,8659.0,3109,3117,0,0},{720011,3000,722226,200000,722736,200000,722770,200000,722532,200000,720099,5000,770189,100,720026,100000,724519,1000,211313,400,723980,3000,721915,320},{6,42.9,64.8}},
[100628]={25,{259863,2056,3492.0,995,1005,0,0},{720011,3000,723612,200000,723680,200000,723952,200000,720179,200000,720095,5000,240679,200000,770221,5000,201119,70000,720025,100000,220798,100000,222483,883,723980,3000,721907,832}},
[100629]={30,{464936,2785,3380.0,1210,1538,0,0},{720011,3000,722321,200000,722627,200000,722525,200000,720180,200000,720096,5000,551176,1000,770224,5000,201120,70000,720025,100000,205695,1000,220357,100000,222635,642,723980,3000,721908,662}},
[100630]={50,{3481,903,893.0,2711,2679,0,0},{721226,10000},{103,47.2,72.1}},
[100631]={27,{2340,372,383.0,1174,1127,0,0},{720011,5000}},
[100632]={27,{6630,1209,958.0,1116,1127,0,0},{720011,5000}},
[100633]={36,{2024,559,555.0,1679,1667,0,0},{720011,5000,200579,60000,770124,100,723980,3000,721911,0}},
[100634]={15,{3159,598,428.0,477,588,0,0},{720011,3000,720093,10000,720278,200000,720278,200000},{250,74.6,67.6}},
[100635]={7,{972,230,236.0,218,221,0,0},{720011,3000,720093,10000},{250,63.0,40.8}},
[100636]={14,{2825,546,378.0,440,539,0,0},{720011,3000,720278,100000,550773,494},{250,54.2,40.4}},
[100637]={1,{71,24,28.0,84,84,0,0},{}},
[100638]={34,{2432,466,254.0,1347,624,0,0},{720011,5000,720143,100}},
[100639]={32,{3322,477,475.0,1577,1469,0,0},{720011,5000,720143,100}},
[100640]={32,{3322,477,475.0,1577,1469,0,0},{720011,5000,720143,100}},
[100641]={35,{9993,1130,1338.0,1685,1702,0,0},{720011,3000,723579,3866,723647,3866,723953,3866,770145,100,724922,20000,724261,10000,723980,20000,721909,15000},{103,26.0,82.0}},
[100642]={34,{3725,548,514.0,1793,1622,0,0},{720011,5000,720143,100,201463,80000,200744,30000}},
[100643]={26,{1121,359,138.0,1042,906,0,0},{720011,5000}},
[100644]={95,{20609,5067,3096.0,15328,15421,0,0},{}},
[100645]={63,{20001508,33997,18163.0,50011,50030,1000,1000},{720011,5000,720102,100000,725254,100000,725251,100000,725324,200000,725325,80000,725326,60000,240722,200000,720143,30000},{121,0,0}},
[100646]={1,{117,30,14.0,63,84,0,0},{}},
[100647]={1,{117,30,14.0,63,84,0,0},{}},
[100648]={1,{117,30,14.0,63,84,0,0},{}},
[100649]={16,{53475,729,1158.0,550,549,0,0},{720011,3000,720282,200000,724169,200000,770210,100,720024,200000,724169,200000}},
[100650]={30,{2258,492,226.0,981,1058,0,0},{}},
[100651]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[100652]={15,{124,19,73.0,56,526,0,0},{720011,3000,202980,1000000}},
[100653]={22,{4533,666,282.0,786,364,0,0},{720011,3000,722251,6064,723645,6064,723951,6064,720094,50000,770091,100,720141,5000,724169,10000,723980,3000,721907,832}},
[100654]={20,{1104,275,269.0,825,807,0,0},{721226,10000,721221,100000},{1,60.1,75.3}},
[100655]={37,{11240,2149,1442.0,1865,1869,0,0},{720011,3000,722256,667,722630,667,722800,667,720098,5000,770124,100,200579,70000,720141,5000,202945,25000,222669,1400,723980,3000,721912,320},{5,51.9,85.0}},
[100656]={35,{2117,543,535.0,1629,1605,0,0},{721226,10000,721227,100000},{2,42.4,53.8}},
[100657]={0,{144,28,28.0,28,28,0,0},{}},
[100658]={40,{4402,716,977.0,2121,2155,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,770163,100,201432,60000,720141,5000,204874,200,211373,400,723980,3000,721913,320},{6,57.9,81.7}},
[100659]={39,{4030,701,682.0,1861,2383,0,0},{720011,3000,722426,667,722630,667,722698,667,720099,5000,770162,100,201433,60000,720141,5000,204874,200,222542,400,723980,3000,721912,320},{6,47.7,67.0}},
[100660]={38,{4082,655,910.0,1939,1971,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,770164,100,201434,60000,720141,5000,204874,200,222520,400,723980,3000,721912,320},{6,48.3,66.7}},
[100661]={46,{4483,924,297.0,2595,1201,0,0},{720011,3000,722973,667,723007,667,720186,667,720099,5000,220728,100,770191,100,720142,5000,202838,60000,222559,400,723980,3000,721915,320},{6,55.0,34.1}},
[100662]={46,{5438,924,787.0,2739,2763,0,0},{720011,3000,723041,667,723755,667,723789,667,720099,5000,770204,100,720142,5000,202838,30000,211390,400,723980,3000,721915,320}},
[100663]={46,{5352,901,787.0,2739,2763,0,0},{720011,3000,722871,667,722973,667,723007,667,720099,5000,770193,100,720142,5000,550298,100,211391,400,723980,3000,721915,320},{6,47.8,45.5}},
[100664]={43,{4855,795,712.0,2416,2438,0,0},{720011,3000,722326,667,723584,667,723618,667,720099,5000,220087,100,770202,100,720142,5000,550796,100,222617,400,723980,3000,721914,320},{6,58.4,19.7}},
[100665]={42,{4695,761,689.0,2315,2336,0,0},{720011,3000,722631,667,722699,667,723957,667,720099,5000,770165,100,204355,200000,720142,5000,222471,400,723980,3000,721913,320},{6,43.7,41.8}},
[100666]={50,{324227,3833,1857.0,3444,1409,0,0},{720011,3000,723654,200000,723960,200000,722532,200000,720099,5000,770178,100,720026,50000,222466,400,723980,3000,721915,320},{6,69.7,24.0}},
[100667]={45,{274928,3201,2171.0,1983,2167,0,0},{720011,3000,722224,200000,723380,200000,723414,200000,722530,200000,720099,5000,770161,100,240689,200000,720026,100000,550736,100,222523,400,723980,3000,721914,320}},
[100668]={48,{16660,2141,2097.0,2970,2995,0,0},{720011,3000}},
[100669]={45,{21914,372,1914.0,1903,979,0,0},{}},
[100670]={43,{4915,799,724.0,2457,2479,0,0},{720011,3000}},
[100671]={40,{14551,257,644.0,2228,543,0,0},{}},
[100672]={41,{4539,729,665.0,2217,2237,0,0},{720011,3000}},
[100673]={40,{12705,2315,1607.0,2121,2141,0,0},{720011,5000,770130,100}},
[100674]={18,{70394,707,495.0,634,293,0,0},{720011,3000}},
[100675]={20,{83043,1011,1480.0,767,775,0,0},{},{4,57.7,11.8}},
[100676]={25,{155232,1431,1545.0,965,1233,0,0},{}},
[100677]={30,{148104,1537,1246.0,1001,1090,0,0},{},{5,54.2,43.0}},
[100678]={35,{251729,2255,2117.0,1564,1963,0,0},{},{5,25.8,53.3}},
[100679]={60,{437692,6765,7267.0,5033,5096,0,0},{720011,3000,720099,5000,723980,3000}},
[100680]={60,{437692,6765,7267.0,5033,5096,0,0},{720011,3000,720099,5000,723980,3000}},
[100681]={60,{436238,5471,2797.0,4767,2231,0,0},{720011,3000,720099,5000,723980,3000}},
[100682]={60,{435518,5918,3805.0,3797,4158,0,0},{720011,3000,720099,5000,723980,3000}},
[100683]={60,{437692,6765,7267.0,5033,5096,0,0},{720011,3000,720099,5000,723980,3000}},
[100684]={60,{437692,6765,7267.0,5033,5096,0,0},{720011,3000,720099,5000,723980,3000}},
[100685]={60,{436238,5471,2797.0,4767,2231,0,0},{720011,3000,720099,5000,723980,3000}},
[100686]={60,{663297,6439,5251.0,4533,5928,0,0},{720011,3000,720099,5000,723980,3000}},
[100687]={12,{1946,427,484.0,384,395,0,0},{720011,3000,722893,18272,722519,18272,720093,500,240668,200000,720140,5000,723979,3000,721903,1671}},
[100688]={9,{551,97,184.0,281,290,0,0},{720011,3000,722620,4907,723028,4907,723504,4907,720092,500,720140,5000,723978,3000,721902,2356}},
[100689]={16,{2933,600,648.0,543,556,0,0},{720011,3000,722453,11194,722691,11194,722793,11194,720094,500,240668,200000,720140,5000,723979,3000,721905,1535}},
[100690]={14,{927,158,282.0,461,473,0,0},{720011,3000,722724,3458,722962,3458,723438,3458,720093,500,720140,5000,723979,3000,721904,1660}},
[100691]={15,{2664,547,491.0,508,507,0,0},{720011,3000,720279,200000,720281,200000},{250,76.6,73.4}},
[100692]={22,{211115,1711,3002.0,828,837,0,0},{720011,3000,722319,200000,722455,200000,723951,200000,720178,200000,720095,5000,720077,80000,770219,5000,210347,3466,720025,100000,210343,3466,210145,100000,220776,100000,723980,3000,204531,5000}},
[100693]={10,{578,135,131.0,407,393,0,0},{}},
[100694]={10,{578,135,131.0,407,393,0,0},{}},
[100695]={10,{578,135,131.0,407,393,0,0},{}},
[100696]={30,{1746,444,437.0,1334,1312,0,0},{720015,10000,721226,10000,721221,100000,721232,1000}},
[100697]={30,{1746,444,437.0,1334,1312,0,0},{720015,10000,721226,10000}},
[100698]={30,{1746,444,437.0,1334,1312,0,0},{720015,10000,721226,10000}},
[100699]={0,{144,28,28.0,28,28,0,0},{}},
[100700]={20,{1006,263,269.0,807,807,0,0},{720011,3000,722794,2204,722896,2204,723508,2204,720094,500,770211,100,202916,10000,720140,5000,201963,50000,202916,1000,723979,3000,721906,1058}},
[100701]={18,{3496,675,598.0,631,639,0,0},{720011,3000,722419,10402,722623,10402,723473,10402,720094,500,770212,100,201962,50000,720140,5000,201963,15000,723979,3000,721905,1427},{201,65.8,73.7}},
[100702]={18,{3496,675,598.0,631,639,0,0},{720011,3000,722657,10402,722929,10402,723439,10402,720094,500,770213,100,201962,50000,720140,5000,201963,15000,723979,3000,721905,1427},{201,64.3,61.7}},
[100703]={20,{4122,778,672.0,726,734,0,0},{720011,3000,722488,7713,722556,7713,723032,7713,720094,500,770214,100,201962,30000,720140,5000,201963,10000,550753,274,723979,3000,721906,1058},{201,35.8,15.1}},
[100704]={20,{4122,778,672.0,726,734,0,0},{720011,3000,722386,7713,722454,7713,722692,7713,720094,500,770215,100,201962,30000,720140,5000,201963,10000,723979,3000,721906,1058},{201,33.9,20.3}},
[100705]={18,{1294,205,239.0,631,639,0,0},{720011,3000,722725,2972,722963,2972,723405,2972,720094,500,770211,100,202916,3000,720140,5000,201963,50000,723979,3000,721905,1427}},
[100706]={20,{103597,1011,1064.0,675,844,0,0},{720011,3000,722760,15000,722522,15000,722420,15000,720094,15000,770216,200,720024,100000,720066,100000,723979,3000,721906,1058},{201,45.4,16.2}},
[100707]={23,{89456,1127,1739.0,853,863,0,0},{720011,3000,722999,15000,723373,15000,722387,15000,720095,15000,770217,200,720025,100000,720067,100000,240673,200000,723980,3000,721907,761},{201,48.0,38.8}},
[100708]={0,{144,28,28.0,28,28,0,0},{}},
[100709]={1,{186,32,28.0,96,84,0,0},{}},
[100710]={0,{144,28,28.0,28,28,0,0},{}},
[100711]={0,{144,28,28.0,28,28,0,0},{}},
[100712]={1,{117,30,14.0,63,84,0,0},{}},
[100713]={1,{117,30,14.0,63,84,0,0},{}},
[100714]={1,{117,30,14.0,63,84,0,0},{}},
[100715]={1,{117,30,14.0,63,84,0,0},{}},
[100716]={1,{117,30,14.0,63,84,0,0},{},{14,32.9,24.6}},
[100717]={1,{117,30,14.0,63,84,0,0},{}},
[100718]={1,{117,30,14.0,63,84,0,0},{}},
[100719]={1,{117,30,14.0,63,84,0,0},{}},
[100720]={1,{117,30,14.0,63,84,0,0},{}},
[100721]={1,{117,30,14.0,63,84,0,0},{}},
[100722]={1,{117,30,14.0,63,84,0,0},{}},
[100723]={1,{117,30,14.0,63,84,0,0},{}},
[100724]={0,{144,28,28.0,28,28,0,0},{}},
[100725]={22,{1742,279,300.0,837,837,0,0},{720011,3000,201539,10,201256,80000,550893,238,723980,3000,721906,0}},
[100726]={22,{211114,1734,3002.0,837,837,0,0},{720011,3000,722251,200000,722319,200000,722455,200000,720178,200000,720095,5000,551175,1000,770218,5000,210693,260,720025,200000,205694,1000,240674,200000,721234,5200,723980,3000,721906,0}},
[100727]={0,{144,28,28.0,28,28,0,0},{}},
[100728]={1,{372,17,28.0,96,0,0,0},{}},
[100729]={1,{2981,85,154.0,68,72,0,0},{}},
[100730]={0,{144,28,28.0,84,84,0,0},{}},
[100731]={0,{144,28,28.0,84,84,0,0},{}},
[100732]={0,{144,28,28.0,84,84,0,0},{}},
[100733]={0,{144,28,28.0,84,84,0,0},{}},
[100734]={0,{144,28,28.0,84,84,0,0},{}},
[100735]={0,{144,28,28.0,84,84,0,0},{}},
[100736]={20,{1392,256,269.0,242,239,0,0},{723979,3000}},
[100737]={38,{11682,1892,1496.0,1939,1957,0,0},{720011,5000,770226,100}},
[100738]={38,{3818,669,430.0,1800,2251,0,0},{720011,3000,770227,100}},
[100739]={29,{2724,418,419.0,1255,1257,0,0},{720011,3000,723341,1105,723375,1105,723545,1105,720096,5000,770466,100,203350,70000,720141,5000,222477,828,723980,3000,550940,166},{11,51.4,36.3}},
[100740]={5,{312,50,71.0,160,163,0,0},{720011,3000,722211,5555,722381,5555,722619,5555,720091,5000,204531,5000,770397,100,202970,80000,720140,5000,211315,3333,723978,3000,550534,833},{10,47.6,9.7}},
[100741]={4,{262,41,60.0,133,135,0,0},{720011,3000,722245,5370,722551,5370,722891,5370,720091,5000,204531,5000,770398,100,202971,80000,720140,5000,211316,3333,723978,3000},{10,53.5,14.0}},
[100742]={28,{2116,396,151.0,1129,518,0,0},{720011,3000,722253,1105,722865,1105,723069,1105,720096,5000,770467,100,203350,70000,720141,5000,222590,828,723980,3000},{11,53.5,38.0}},
[100743]={5,{287,71,71.0,71,71,0,0},{}},
[100744]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722691,3206,722963,3206,723439,3206,720094,5000,204531,5000,770369,100,720140,5000,222509,2169,723979,3000},{10,66.5,75.9}},
[100745]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722589,3206,722657,3206,722725,3206,720094,5000,204531,5000,770370,100,720140,5000,222476,1783,723979,3000,550875,446},{10,64.0,88.0}},
[100746]={9,{546,90,118.0,281,284,0,0},{720011,3000,722314,4907,722450,4907,723368,4907,720092,5000,204531,5000,770401,100,720140,5000,211331,3133,723978,3000},{10,23.7,6.7}},
[100747]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722996,3296,723948,3296,720175,3296,720093,5000,204531,5000,770342,100,202975,80000,720140,5000,211346,1924,723979,3000},{10,56.3,58.9}},
[100748]={18,{1296,213,239.0,639,639,0,0},{720011,3000,722215,2972,722351,2972,722487,2972,720094,5000,204531,5000,770374,100,720140,5000,211287,1322,723979,3000},{10,46.3,77.2}},
[100749]={7,{422,69,94.0,218,221,0,0},{720011,3000,722280,5694,722416,5694,722722,5694,720092,5000,204531,5000,720140,5000,222582,3333,723978,3000}},
[100750]={3,{216,32,49.0,108,109,0,0},{720011,3000,722346,4722,722482,4722,722992,4722,720091,5000,204531,5000,770403,100,202969,80000,720140,5000,211299,3333,723978,3000,550577,719},{10,54.2,24.4}},
[100751]={6,{366,59,82.0,189,191,0,0},{720011,3000,722551,5555,723469,5555,720172,5555,720092,5000,204531,5000,770382,100,720140,5000,222598,3333,723978,3000},{10,45.9,17.8}},
[100752]={5,{312,50,71.0,160,163,0,0},{720011,3000,722211,5555,722585,5555,722653,5555,720091,5000,204531,5000,770399,100,720140,5000,211329,3333,723978,3000},{10,48.1,9.4}},
[100753]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722249,3198,722827,3198,723405,3198,720094,5000,204531,5000,770353,100,202977,80000,720140,5000,222600,2169,723979,3000},{10,46.2,54.3}},
[100754]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722861,3206,723031,3206,723371,3206,720094,5000,204531,5000,770371,100,720140,5000,203137,30000,723979,3000},{10,64.9,67.7}},
[100755]={9,{546,90,118.0,281,284,0,0},{720011,3000,722246,4907,722620,4907,722892,4907,720092,5000,204531,5000,770383,100,720140,5000,222599,3333,723978,3000},{10,36.4,25.8}},
[100756]={5,{287,71,71.0,71,71,0,0},{202970,80000}},
[100757]={0,{144,28,28.0,28,28,0,0},{}},
[100758]={0,{144,28,28.0,28,28,0,0},{}},
[100759]={7,{422,69,94.0,218,221,0,0},{720011,3000,722688,5694,722756,5694,722518,5694,720092,5000,204531,5000,770384,100,720140,5000,211300,3417,723978,3000},{10,41.0,20.6}},
[100760]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722861,3198,722963,3198,723949,3198,720094,5000,204531,5000,770343,100,720140,5000,211361,1924,723979,3000,550909,481},{10,65.6,53.7}},
[100761]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722316,3296,722452,3296,722520,3296,720093,5000,204531,5000,770344,100,720140,5000,211397,1924,723979,3000,550802,480},{10,50.2,62.8}},
[100762]={15,{840,169,73.0,483,425,0,0},{720011,3000,722554,3615,722622,3615,723370,3615,720093,5000,204531,5000,770357,100,720140,5000,211396,1978,723979,3000},{10,25.6,45.0}},
[100763]={15,{840,169,73.0,483,221,0,0},{720011,3000,722247,3480,722825,3480,722893,3480,720093,5000,204531,5000,770358,100,720140,5000,222510,1978,723979,3000,550490,480},{10,25.3,45.4}},
[100764]={16,{53475,729,1158.0,550,549,0,0},{720011,3000,722554,200000,722520,200000,720093,5000,204531,5000,770359,1000,202280,200000,720140,5000,222601,1978,723979,3000},{10,25.4,61.6}},
[100765]={10,{693,108,131.0,325,318,0,0},{720011,3000,723369,4097,723437,4097,723505,4097,720092,5000,204531,5000,770345,100,720140,5000,222451,3133,723978,3000},{10,31.0,7.9}},
[100766]={15,{1118,171,196.0,515,507,0,0},{720011,3000,722214,3296,722384,3296,723540,3296,720093,5000,204531,5000,770346,100,202976,80000,720140,5000,222443,1919,723979,3000},{10,67.9,60.5}},
[100767]={10,{693,108,131.0,325,318,0,0},{720011,3000,722315,4097,722349,4097,723403,4097,720092,5000,204531,5000,770347,100,720140,5000,222473,3133,723978,3000,550919,542},{10,30.7,8.6}},
[100768]={15,{1118,171,196.0,515,507,0,0},{720011,3000,722452,3296,722486,3296,723438,3296,720093,5000,204531,5000,770348,100,202976,80000,720140,5000,222475,1919,723979,3000,550626,480},{10,67.5,61.5}},
[100769]={10,{693,108,131.0,325,318,0,0},{720011,3000,722281,4097,722621,4097,722689,4097,720092,5000,204531,5000,770349,100,720140,5000,222549,3133,723978,3000},{10,31.4,7.5}},
[100770]={7,{422,69,94.0,218,221,0,0},{720011,3000,722824,5694,722926,5694,723334,5694,720092,5000,204531,5000,770385,100,720140,5000,211345,3417,723978,3000},{10,39.0,26.9}},
[100771]={8,{491,91,106.0,249,252,0,0},{720011,3000,722858,5222,723402,5222,720173,5222,720092,5000,204531,5000,770386,100,720140,5000,211392,3417,723978,3000},{10,33.5,17.3}},
[100772]={8,{491,91,106.0,249,252,0,0},{720011,3000,723470,5222,723504,5222,720173,5222,720092,5000,204531,5000,770387,100,720140,5000,211424,3417,723978,3000},{10,29.7,28.8}},
[100773]={0,{144,28,28.0,28,28,0,0},{}},
[100774]={0,{144,28,28.0,28,28,0,0},{}},
[100775]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722657,3206,722793,3206,720176,3206,720094,5000,204531,5000,770372,100,202979,80000,720140,5000,222527,1783,723979,3000},{10,66.1,85.0}},
[100776]={18,{1257,228,172.0,600,735,0,0},{720011,3000,722997,2972,723065,2972,723541,2972,720094,5000,204531,5000,770375,100,720140,5000,211381,1322,723979,3000,550820,415},{10,39.6,75.7}},
[100777]={19,{1369,244,182.0,642,792,0,0},{720011,3000,722386,2769,722590,2769,722760,0,720094,5000,204531,5000,770376,100,720140,5000,222494,1322,723979,3000},{10,39.6,75.6}},
[100778]={19,{1369,244,182.0,642,706,0,0},{720011,3000,722284,2769,722420,2769,722828,2769,720094,5000,204531,5000,770377,100,720140,5000,222587,1322,723979,3000},{10,38.6,73.4}},
[100779]={0,{144,28,28.0,28,28,0,0},{}},
[100780]={18,{1302,215,367.0,631,646,0,0},{720011,3000,722929,2972,723065,2972,723949,2972,720094,5000,204531,5000,770378,100,720140,5000,211362,1322,723979,3000},{10,37.0,75.1}},
[100781]={0,{144,28,28.0,28,28,0,0},{}},
[100782]={19,{1400,228,254.0,686,686,0,0},{720011,3000,722386,2769,722556,2769,722896,2769,720094,5000,204531,5000,770379,100,720140,5000,211304,1322,723979,3000},{10,49.4,79.0}},
[100783]={20,{1118,280,139.0,556,610,0,0},{720011,3000,722216,3306,722522,3306,720094,5000,204531,5000,770380,100,720140,5000,211347,1322,723979,3000,550631,274},{10,49.9,78.7}},
[100784]={15,{840,169,73.0,483,221,0,0},{720011,3000,722214,3615,722486,3615,720175,3615,720093,5000,204531,5000,770360,100,720140,5000,211284,1919,723979,3000},{10,34.3,56.6}},
[100785]={16,{820,209,108.0,416,459,0,0},{720011,3000,722315,5221,722961,5221,720093,5000,204531,5000,770361,100,720140,5000,211302,1919,723979,3000,550834,481},{10,37.6,60.3}},
[100786]={15,{840,169,73.0,483,221,0,0},{720011,3000,722247,3611,722451,3611,723947,3611,720093,5000,204531,5000,770362,100,720140,5000,211318,1919,723979,3000,550790,480},{10,34.3,56.1}},
[100787]={17,{1194,190,224.0,586,593,0,0},{720011,3000,723031,4810,722521,4810,720094,5000,204531,5000,770373,100,720140,5000,723979,3000,550588,446},{10,64.2,88.7}},
[100788]={15,{48423,543,406.0,483,221,0,0},{720011,3000,722520,200000,720175,200000,720093,5000,204531,5000,770363,1000,720140,5000,211413,1919,723979,3000},{10,35.4,59.1}},
[100789]={0,{144,28,28.0,28,28,0,0},{}},
[100790]={12,{572,149,80.0,296,329,0,0},{720011,3000,722349,4097,722383,4097,723335,4097,720092,5000,204531,5000,770364,100,720140,5000,222643,2167,723978,3000,550818,542},{10,19.5,26.9}},
[100791]={13,{842,142,169.0,428,427,0,0},{720011,3000,722791,3480,723471,3480,723505,3480,720093,5000,204531,5000,770365,100,720140,5000,211380,2088,723979,3000,550751,519},{10,19.2,30.7}},
[100792]={1,{144,28,28.0,28,28,0,0},{}},
[100793]={0,{144,28,28.0,28,28,0,0},{}},
[100794]={45,{276267,3485,4190.0,2645,2651,0,0},{720011,3000,722225,200000,722395,200000,723619,200000,720186,200000,720100,5000,720248,200000,724923,200000,720026,5000,723982,3000,550874,100},{106,76.3,16.7}},
[100795]={9,{551,97,184.0,281,290,0,0},{720011,3000,722280,4907,723062,4907,720173,4907,720092,5000,204531,5000,770402,100,720140,5000,211410,3133,723978,3000},{10,24.2,6.6}},
[100796]={4,{262,41,60.0,133,135,0,0},{720011,3000,722415,8056,723503,8056,720091,5000,204531,5000,770400,100,720140,5000,211330,3333,723978,3000},{10,53.1,14.3}},
[100797]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722861,3198,722929,3198,723031,3198,720094,5000,204531,5000,770354,100,720140,5000,222620,2169,723979,3000},{10,38.9,43.0}},
[100798]={16,{747,210,210.0,210,210,0,0},{}},
[100799]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722214,3296,722384,3296,722656,3296,720093,5000,204531,5000,770355,100,720140,5000,222482,2075,723979,3000,550908,480},{10,47.0,52.1}},
[100800]={7,{422,69,94.0,218,221,0,0},{720011,3000,723538,8542,720173,8542,720092,5000,204531,5000,770388,100,720140,5000,222450,3417,723978,3000},{10,45.6,16.1}},
[100801]={8,{513,88,166.0,255,264,0,0},{720011,3000,722450,7833,723028,7833,720092,5000,204531,5000,770389,100,720140,5000,222493,3417,723978,3000},{10,32.0,24.3}},
[100802]={1,{132,17,28.0,59,60,0,0},{720011,3000,722618,4167,722754,4167,722788,4167,720091,5000,204531,5000,770340,100,720140,5000,222650,3222,723978,3000},{6,20.0,90.9}},
[100803]={4,{262,41,60.0,133,135,0,0},{}},
[100804]={1,{135,22,48.0,59,64,0,0},{720011,3000,722244,4167,722788,4167,723060,4167,720091,5000,204531,5000,770404,100,720140,5000,211298,2750,723978,3000},{10,59.5,30.9}},
[100805]={7,{429,74,94.0,223,221,0,0},{}},
[100806]={6,{372,64,82.0,194,191,0,0},{}},
[100807]={1,{135,16,28.0,68,73,0,0},{}},
[100808]={10,{518,106,49.0,305,138,0,0},{720011,3000,722315,3611,722553,3611,722723,3611,720093,5000,204531,5000,770366,100,720140,5000,211393,2088,723979,3000},{10,22.4,30.4}},
[100809]={11,{689,118,143.0,354,353,0,0},{720011,3000,722451,5221,723947,5221,720093,5000,204531,5000,770367,100,720140,5000,211412,2088,723979,3000},{10,22.5,29.6}},
[100810]={20,{4122,778,672.0,726,734,0,0},{720011,3000,722420,100000,723338,100000,720177,100000,720094,5000,204531,5000,770350,100,720140,5000,723979,3000},{10,50.6,66.9}},
[100811]={5,{287,71,71.0,71,71,0,0},{720011,5000}},
[100812]={10,{484,131,131.0,131,131,0,0},{720011,5000}},
[100813]={15,{701,196,196.0,196,196,0,0},{720011,5000}},
[100814]={1,{144,28,28.0,28,28,0,0},{}},
[100815]={34,{180026,2126,2832.0,1606,1622,0,0},{}},
[100816]={27,{124088,1307,1091.0,851,929,0,0},{720011,3000,722354,100000,722490,100000,723680,100000,722524,100000,720096,5000,770419,1000,720141,5000,202329,50000,222665,714,723980,3000},{11,94.0,67.5}},
[100817]={17,{3003,526,211.0,565,258,0,0},{720011,3000,722351,200000,723371,200000,720094,5000,204531,5000,770230,100,720140,5000,211349,4627,723979,3000,721902,2733},{2,31.0,73.1}},
[100818]={34,{180026,2126,2832.0,1606,1622,0,0},{720011,3000,723581,200000,722527,200000,720182,200000,720097,5000,770408,1000,720141,5000,211419,400,723981,3000},{11,79.8,28.5}},
[100819]={14,{924,155,183.0,467,466,0,0},{720011,3000,722316,6000,723404,6000,723438,6000,720094,5000,204531,5000,770228,100,720064,80000,720140,5000,720210,30000,222508,2088,723979,3000,721903,2733},{2,32.9,84.3}},
[100820]={8,{482,79,106.0,249,252,0,0},{720011,3000,722280,5222,722382,5222,722552,5222,720092,5000,204531,5000,770390,100,720140,5000,222548,3417,723978,3000},{10,32.8,16.7}},
[100821]={11,{31392,504,951.0,358,398,0,0},{720011,3000,722247,200000,722621,200000,722893,200000,720093,5000,204531,5000,770391,1000,720140,5000,222656,3417,723979,3000},{10,36.0,28.3}},
[100822]={21,{1623,253,284.0,776,785,0,0},{720011,3000,723338,2769,723474,2769,723950,2769,720094,5000,770435,100,203344,70000,720140,5000,211400,1322,723979,3000},{11,41.5,49.6}},
[100823]={20,{1509,237,269.0,726,734,0,0},{720011,3000,722896,2769,722930,2769,723032,2769,720094,5000,770436,100,720140,5000,211414,1322,723979,3000},{11,44.6,32.3}},
[100824]={21,{1623,253,284.0,776,785,0,0},{720011,3000,723474,3306,723508,3306,720094,5000,770437,100,203345,70000,720140,5000,222467,1096,723979,3000,550836,260},{11,38.9,56.3}},
[100825]={22,{1743,270,300.0,828,837,0,0},{720011,3000,722625,1733,722659,1733,722761,1733,720095,5000,770433,100,203346,70000,720141,5000,222610,828,723980,3000},{11,26.2,60.6}},
[100826]={23,{1868,288,316.0,882,891,0,0},{720011,3000,722591,1585,722727,1585,722829,1585,720095,5000,770460,100,720141,5000,211430,1040,723980,3000,550309,221},{11,61.5,71.0}},
[100827]={23,{1868,288,316.0,882,891,0,0},{720011,3000,722863,1471,722999,1471,723067,1471,720095,5000,770461,100,203348,70000,720141,5000,211401,883,723980,3000},{11,55.6,76.0}},
[100828]={24,{1995,315,332.0,946,947,0,0},{720011,3000,722218,1379,722388,1379,723374,1379,720095,5000,770420,100,203347,70000,720141,5000,222662,783,723980,3000,550792,207},{11,66.3,81.2}},
[100829]={25,{2129,334,349.0,1004,1005,0,0},{720011,3000,722320,1305,722456,1305,723680,1305,720096,5000,770421,100,203347,70000,720141,5000,202324,20000,222671,745,723980,3000,550939,196},{11,85.3,68.2}},
[100830]={25,{2007,353,251.0,933,1159,0,0},{720011,3000,722286,1305,722422,1305,722694,1305,720096,5000,770422,100,203347,70000,720141,5000,222497,745,723980,3000},{11,89.5,67.2}},
[100831]={26,{1873,354,138.0,1010,463,0,0},{720011,3000,722558,1305,722558,1305,723000,1305,720096,5000,770474,100,203349,70000,720141,5000,211384,828,723980,3000,550866,186},{11,74.0,61.8}},
[100832]={26,{2269,354,366.0,1064,1065,0,0},{720011,3000,722218,1242,722728,1242,722830,1242,720096,5000,770475,100,203349,70000,720141,5000,211385,828,723980,3000,550598,186},{11,78.3,56.8}},
[100833]={26,{2269,354,366.0,1064,1065,0,0},{720011,3000,722320,1242,722456,1242,723374,1242,720096,5000,770476,100,203349,70000,720141,5000,211416,828,723980,3000,550824,186},{11,78.1,61.6}},
[100834]={27,{2415,375,383.0,1125,1127,0,0},{720011,3000,722286,1242,722864,1242,722966,1242,720096,5000,203349,70000,720141,5000,222453,828,723980,3000}},
[100835]={27,{2415,375,383.0,1125,1127,0,0},{720011,3000,722252,1242,722558,1242,723578,1242,720096,5000,770462,100,203349,70000,720141,5000,222514,745,723980,3000,550776,178},{11,71.9,44.4}},
[100836]={27,{1992,375,144.0,1069,490,0,0},{720011,3000,722456,1242,722490,1242,722830,1242,720096,5000,770463,100,203349,70000,720141,5000,222611,745,723980,3000},{11,70.1,47.2}},
[100837]={28,{2567,396,401.0,1189,1191,0,0},{720011,3000,722865,1189,722933,1189,723001,1189,720096,5000,203349,70000,720141,5000,211368,714,723980,3000}},
[100838]={27,{1992,375,144.0,1069,490,0,0},{720011,3000,722559,1189,722559,1189,723953,1189,720096,5000,770464,100,203349,70000,720141,5000,222645,745,723980,3000},{11,69.2,46.9}},
[100839]={28,{2567,396,401.0,1189,1191,0,0},{720011,3000,722219,1189,722389,1189,723953,1189,720096,5000,770465,100,203349,70000,720141,5000,723980,3000},{11,65.9,49.7}},
[100840]={28,{2567,396,401.0,1189,1191,0,0},{720011,3000,722899,1189,722933,1189,722967,1189,720096,5000,203349,70000,720141,5000,222496,745,723980,3000}},
[100841]={28,{2116,396,151.0,1129,518,0,0},{720011,3000,722559,1144,722559,1144,722695,1144,720096,5000,770468,100,203350,70000,720141,5000,222464,663,723980,3000},{11,57.1,51.6}},
[100842]={28,{2116,396,151.0,1129,518,0,0},{720011,3000,722253,1144,722967,1144,723035,1144,720096,5000,770469,100,203350,70000,720141,5000,222529,663,723980,3000,550904,172},{11,56.6,50.4}},
[100843]={29,{2006,479,217.0,949,1035,0,0},{720011,3000,722219,1144,722389,1144,723409,1144,720096,5000,770470,100,203350,70000,720141,5000,222566,663,723980,3000,550778,166},{11,58.2,50.2}},
[100844]={28,{2116,396,151.0,1129,518,0,0},{720011,3000,722559,1144,722559,1144,723443,1144,720096,5000,770471,100,203350,70000,720141,5000,222554,663,723980,3000,550794,172},{11,53.3,37.8}},
[100845]={30,{2102,505,226.0,1001,1090,0,0},{720011,3000,722322,1070,723342,1070,723954,1070,720097,5000,770472,100,203350,70000,720141,5000,211289,642,723981,3000},{11,50.7,36.5}},
[100846]={30,{2353,441,165.0,1256,576,0,0},{720011,3000,722356,1070,723580,1070,1070,1070,720097,5000,770473,100,203350,70000,720141,5000,211369,642,723981,3000},{11,58.1,50.7}},
[100847]={29,{2246,418,158.0,1191,547,0,0},{720011,3000,722559,1105,722559,1105,723647,1105,720096,5000,770481,100,203351,70000,720141,5000,222486,642,723980,3000,550911,166},{11,64.6,40.3}},
[100848]={29,{2724,418,419.0,1255,1257,0,0},{720011,3000,722423,1105,722899,1105,722933,1105,720096,5000,770482,100,203351,70000,720141,5000,222498,642,723980,3000},{11,64.6,43.0}},
[100849]={30,{2353,441,165.0,1256,576,0,0},{720011,3000,722254,1070,722628,1070,722662,1070,720097,5000,770483,100,203351,70000,720141,5000,222530,642,723981,3000},{11,64.8,40.4}},
[100850]={31,{2200,532,236.0,1054,1148,0,0},{720011,3000,722356,947,722492,947,723750,947,720097,5000,770484,100,203351,70000,720141,5000,222539,642,723981,3000},{11,66.1,43.3}},
[100851]={31,{2991,464,456.0,1393,1396,0,0},{720011,3000,202416,200000},{11,66.6,43.2}},
[100852]={30,{2353,441,165.0,1256,576,0,0},{720011,3000,722560,1070,722560,1070,723036,1070,720097,5000,770477,100,203351,70000,720141,5000,222500,568,723981,3000},{11,69.0,38.0}},
[100853]={30,{2102,505,226.0,1001,1090,0,0},{720011,3000,722458,1070,723614,1070,723682,1070,720097,5000,770478,100,203351,70000,720141,5000,222516,568,723981,3000},{11,69.2,36.0}},
[100854]={31,{2464,464,172.0,1322,607,0,0},{720011,3000,722390,947,722798,947,723954,947,720097,5000,770479,100,203351,70000,720141,5000,222531,568,723981,3000,550943,142},{11,71.9,35.0}},
[100855]={32,{3130,488,475.0,1466,1469,0,0},{720011,3000,722220,829,722662,829,720181,829,720097,5000,770480,100,203351,70000,720141,5000,222612,568,723981,3000,550745,124},{11,70.7,36.6}},
[100856]={33,{3286,502,495.0,1529,1544,0,0},{720011,3000,722934,829,722968,829,723036,829,720097,5000,770427,100,720141,5000,222517,483,723981,3000},{11,87.6,37.1}},
[100857]={33,{3286,502,495.0,1529,1544,0,0},{720011,3000,723614,829,723716,829,723784,829,720097,5000,770428,100,203361,70000,720141,5000,222518,483,723981,3000,550787,121},{11,87.1,36.9}},
[100858]={49,{17071,3359,2164.0,3109,3117,0,0},{720011,3000,722294,3500,722872,4500,724185,2500,720187,2000,770438,100,720142,5000,723982,3000},{11,9.4,15.3}},
[100859]={34,{3434,527,514.0,1606,1622,0,0},{720011,3000,723343,805,723411,805,723547,805,720097,5000,770429,100,203352,70000,720141,5000,222613,483,723981,3000},{11,93.0,35.5}},
[100860]={34,{3434,527,514.0,1606,1622,0,0},{720011,3000,722289,805,722425,805,720182,805,720097,5000,770430,100,203352,70000,720141,5000,222614,483,723981,3000,550511,107},{11,92.3,37.0}},
[100861]={34,{3434,527,514.0,1606,1622,0,0},{720011,3000,722357,711,722493,711,723649,711,720097,5000,770431,100,203352,70000,720141,5000,222604,497,723981,3000},{11,92.9,44.4}},
[100862]={32,{3155,492,724.0,1455,1480,0,0},{720011,3000,722594,947,722696,947,722798,947,720097,5000,770409,100,203353,70000,720141,5000,222574,497,723981,3000},{11,86.9,18.9}},
[100863]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,723410,947,723512,947,723954,947,720097,5000,770410,100,720141,5000,222675,568,723981,3000,550912,124},{11,88.8,22.2}},
[100864]={33,{3286,502,495.0,1529,1544,0,0},{720011,3000,722730,947,722764,947,722832,947,720097,5000,770411,100,720141,5000,211353,497,723981,3000},{11,85.7,28.0}},
[100865]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,723410,829,723444,829,720181,829,720097,5000,770412,100,203360,70000,720141,5000,222555,497,723981,3000},{11,80.9,26.9}},
[100866]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,723002,829,723036,829,723070,829,720097,5000,770413,100,720141,5000,222541,497,723981,3000,550827,124},{11,89.2,21.2}},
[100867]={34,{180026,2126,2832.0,1606,1622,0,0},{720011,3000,723411,200000,723445,200000,723547,200000,720097,5000,770414,1000,720141,5000,222489,483,723981,3000}},
[100868]={35,{10250,1812,1338.0,1685,1702,0,0},{723980,3000}},
[100869]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,722900,829,722934,829,722968,829,720097,5000,770415,100,720141,5000,222447,483,723981,3000,550927,142},{11,73.1,21.6}},
[100870]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,722628,829,722696,829,722764,829,720097,5000,770416,100,720141,5000,222488,483,723981,3000},{11,74.0,27.2}},
[100871]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,723377,805,723479,805,720182,805,720097,5000,770417,100,720141,5000,211372,427,723981,3000,550279,142},{11,73.8,23.4}},
[100872]={32,{8929,1563,1188.0,1455,1469,0,0},{720011,3000,723615,3866,723751,3866,722527,3866,720097,5000,770418,100,203359,90000,720141,5000,551177,1000,205696,1000,222623,1400,723981,3000,550929,124},{11,82.5,12.2}},
[100873]={32,{164022,1925,2615.0,1455,1469,0,0},{}},
[100874]={32,{2903,480,475.0,480,485,0,0},{}},
[100875]={20,{4122,778,672.0,726,734,0,0},{720011,3000,722556,100000,722522,100000,720094,5000,204531,5000,770351,100,720140,5000,723979,3000,550306,274},{10,48.5,65.3}},
[100876]={20,{4122,778,672.0,726,734,0,0},{720011,3000,722556,100000,723440,100000,720094,5000,204531,5000,770352,100,720140,5000,723979,3000,550763,274},{10,49.2,67.3}},
[100877]={0,{144,28,28.0,28,28,0,0},{}},
[100878]={95,{20657,5151,4683.0,15328,15485,0,0},{}},
[100879]={93,{19772,4872,4484.0,14497,14647,0,0},{}},
[100880]={43,{4828,810,712.0,2432,2438,0,0},{720011,3000,722564,667,722564,667,722904,667,720099,5000,770185,100,720142,5000,222579,400,723980,3000,721914,320},{6,33.2,43.6}},
[100881]={47,{4064,1086,421.0,2152,2351,0,0},{720011,3000,722259,667,723687,667,723959,667,720099,5000,770187,100,720142,5000,211297,400,723980,3000,721915,320},{6,45.7,55.9}},
[100882]={43,{3967,810,269.0,2306,1060,0,0},{720011,3000,722496,667,723414,667,723482,667,720099,5000,220609,100,720142,5000,550917,100,222631,400,723980,3000,721914,320},{6,61.4,68.5}},
[100883]={44,{4099,845,278.0,2406,1105,0,0},{720011,3000,722462,667,722904,667,722938,667,720099,5000,720142,5000,211293,1400,723980,3000,721914,320}},
[100884]={43,{3797,724,269.0,2061,948,0,0},{720011,3000}},
[100885]={43,{14011,2627,1782.0,2432,2438,0,0},{720011,3000}},
[100886]={46,{14544,2449,743.0,2613,1201,0,0},{720011,3000}},
[100887]={43,{12721,2353,923.0,1838,1994,0,0},{720011,3000}},
[100888]={50,{15591,3121,1157.0,752,882,0,0},{}},
[100889]={50,{17204,3483,2233.0,1071,1080,0,0},{}},
[100890]={49,{16024,2763,818.0,2948,1355,0,0},{720011,3000}},
[100891]={46,{5321,918,787.0,2756,2763,0,0},{720011,3000}},
[100892]={50,{17204,3483,2233.0,1071,1080,0,0},{}},
[100893]={9,{24063,378,652.0,286,284,0,0},{720011,3000,722212,200000,722382,200000,722620,200000,720092,5000,204531,5000,770393,1000,720140,5000,723978,3000},{10,59.6,5.7}},
[100894]={6,{372,64,82.0,194,191,0,0},{720011,3000,722347,8333,722483,8333,720092,5000,204531,5000,770394,100,720140,5000,211377,3333,723978,3000},{10,60.6,10.5}},
[100895]={7,{327,85,48.0,170,191,0,0},{720011,3000,722416,5694,722586,5694,722756,5694,720092,5000,204531,5000,770395,100,720140,5000,723978,3000},{10,59.5,10.0}},
[100896]={7,{362,74,35.0,214,191,0,0},{720011,3000,722552,5694,722552,5694,722960,5694,720092,5000,204531,5000,770396,100,720140,5000,211409,3333,723978,3000},{10,61.8,13.4}},
[100897]={11,{684,112,143.0,349,353,0,0},{720011,3000,722281,3611,722417,3611,722723,3611,720093,5000,204531,5000,770406,100,720140,5000,222474,2088,723979,3000},{10,28.1,44.4}},
[100898]={11,{684,112,143.0,349,353,0,0},{720011,3000,722553,3611,723471,3611,720174,3611,720093,5000,204531,5000,770407,100,720140,5000,222481,2088,723979,3000,550906,522},{10,29.7,43.1}},
[100899]={33,{3286,502,495.0,1529,1544,0,0},{720011,3000,722594,947,722764,947,722798,947,720097,5000,770432,100,720141,5000,222668,497,723981,3000,721910,514},{11,89.7,51.0}},
[100900]={1,{120,21,28.0,46,60,0,0},{}},
[100901]={2,{172,24,38.0,83,84,0,0},{720011,3000,722278,4583,722414,4583,722992,4583,720091,5000,204531,5000,770405,100,202969,80000,720140,5000,222492,2750,723978,3000},{10,57.4,27.0}},
[100902]={1,{120,21,28.0,46,60,0,0},{}},
[100903]={1,{120,21,28.0,46,60,0,0},{}},
[100904]={8,{20715,339,585.0,249,252,0,0},{720011,3000,722211,200000,722551,200000,722517,200000,720172,200000,770233,30000,720024,100000,222480,2875,723978,3000},{1,16.8,48.8}},
[100905]={7,{17618,284,520.0,273,221,0,0},{720011,3000,722449,200000,722483,200000,722517,200000,720172,200000,770234,30000,720024,100000,240667,200000,222649,3222,723978,3000},{1,73.1,30.1}},
[100906]={9,{29429,407,468.0,264,334,0,0},{720011,3000,722280,200000,722416,200000,722518,200000,720173,200000,770235,30000,720024,100000,222581,2875,723978,3000},{1,21.7,15.2}},
[100907]={5,{297,67,71.0,214,214,0,0},{723978,3000}},
[100908]={13,{2178,473,424.0,422,427,0,0},{720011,3000,720276,200000},{250,63.9,14.3}},
[100909]={65,{996036,1866,1375.0,5598,5610,0,0},{721856,200000}},
[100910]={5,{532,51,71.0,30,50,0,0},{210009,100000}},
[100911]={5,{532,51,71.0,30,50,0,0},{210009,100000}},
[100912]={0,{1,0,28.0,0,0,0,0},{}},
[100913]={16,{2939,616,526.0,550,549,0,0},{720011,3000,720277,200000,720281,50000,550752,481},{250,66.4,31.2}},
[100914]={14,{2825,529,328.0,440,475,0,0},{720011,3000,720278,200000},{250,74.0,69.3}},
[100915]={14,{2412,503,457.0,467,466,0,0},{720011,3000,720279,200000},{250,63.6,13.7}},
[100916]={15,{2664,547,491.0,508,507,0,0},{720011,3000,720094,50000,720280,200000,550902,480,550887,480},{250,35.3,41.9}},
[100917]={15,{124,19,73.0,56,526,0,0},{720011,3000,202980,1000000}},
[100918]={16,{53650,756,1158.0,598,581,0,0},{720011,3000,722997,200000,723371,200000,722385,200000,720094,500,720036,200000,720024,200000,723979,3000,721905,1535}},
[100919]={16,{53619,759,1202.0,577,586,0,0},{720011,3000,722555,200000,723031,200000,722895,200000,720094,500,720037,200000,720024,200000,723979,3000,721905,1535}},
[100920]={16,{53621,773,1169.0,572,554,0,0},{720011,3000,720176,200000,722691,200000,722793,200000,720094,500,720038,200000,720024,200000,723979,3000,721905,1535}},
[100921]={16,{53637,744,1224.0,593,654,0,0},{720011,3000,722623,200000,722521,200000,722419,200000,720094,500,720039,200000,720024,200000,723979,3000,721905,1535}},
[100922]={16,{53648,752,1202.0,598,591,0,0},{720011,3000,720176,200000,722521,200000,722419,200000,720094,500,720040,200000,720024,200000,723979,3000,721905,1535}},
[100923]={14,{970,166,183.0,481,487,0,0},{720011,3000}},
[100924]={15,{2719,557,501.0,532,507,0,0},{720011,3000}},
[100925]={16,{57149,800,1213.0,614,606,0,0},{720011,3000,722215,200000,722249,200000,722317,200000,720094,500,720205,200000,240671,200000,720024,200000,723979,3000,721905,1535}},
[100926]={14,{2426,517,457.0,477,471,0,0},{720011,3000,722214,6458,722384,6458,722928,6458,720094,500,720140,5000,723979,3000,721904,1735},{251,41.7,84.8}},
[100927]={14,{2451,509,457.0,497,487,0,0},{720011,3000,722248,6458,722520,6458,723370,6458,720094,500,720140,5000,723979,3000,721904,1735},{251,34.8,79.7}},
[100928]={15,{2709,548,506.0,537,517,0,0},{720011,3000,723370,6458,723030,6458,723506,6458,720094,500,720140,5000,723979,3000,721904,1735},{251,37.3,33.7}},
[100929]={15,{2674,553,506.0,511,512,0,0},{720011,3000,722554,6458,722452,6458,722690,6458,720094,500,720140,5000,723979,3000,721904,1735},{251,38.3,30.5}},
[100930]={15,{2737,545,491.0,557,512,0,0},{720011,3000,723030,6458,722724,6458,722452,6458,720094,500,720140,5000,723979,3000,721904,1735},{251,43.4,47.5}},
[100931]={0,{150,30,28.0,90,84,0,0},{}},
[100932]={0,{150,30,28.0,90,84,0,0},{}},
[100933]={0,{150,30,28.0,90,84,0,0},{}},
[100934]={0,{150,30,28.0,90,84,0,0},{}},
[100935]={0,{150,30,28.0,90,84,0,0},{}},
[100936]={0,{150,30,28.0,90,84,0,0},{}},
[100937]={0,{150,30,28.0,90,84,0,0},{}},
[100938]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[100939]={50,{403400,5583,8932.0,893,893,0,0},{724047,100000}},
[100940]={25,{1571,383,180.0,760,830,0,0},{720011,3000,722320,1305,722456,1305,723782,1305,720096,5000,770423,100,203347,70000,720141,5000,222628,745,723980,3000,550755,196},{11,86.7,69.9}},
[100941]={1,{117,30,14.0,63,84,0,0},{}},
[100942]={1,{117,30,14.0,63,84,0,0},{}},
[100943]={5,{316,54,71.0,55,56,0,0},{210009,100000}},
[100944]={15,{483,165,141.0,414,436,0,0},{}},
[100945]={15,{483,165,141.0,414,436,0,0},{}},
[100946]={75,{4502962,33484,17858.0,5357,10715,0,0},{},{1,52.4,19.4}},
[100947]={75,{4502962,33484,17858.0,5357,10715,0,0},{},{1,52.9,17.9}},
[100948]={75,{4502962,33484,17858.0,5357,10715,0,0},{},{4,39.0,80.8}},
[100949]={75,{4502962,33484,17858.0,5357,10715,0,0},{},{4,38.9,81.0}},
[100950]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[100951]={75,{4502962,33799,18458.0,5357,10715,0,0},{}},
[100952]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[100953]={60,{3721227,41417,41984.0,15542,44209,0,0},{}},
[100954]={60,{1607701,11285,6866.0,15542,12396,0,0},{}},
[100955]={52,{1231542,20905,29495.0,7748,25041,0,0},{}},
[100956]={52,{345669,4607,5222.0,3475,3503,0,0},{}},
[100957]={50,{1157759,12716,18932.0,1965,4941,0,0},{}},
[100958]={50,{324408,4287,4913.0,1071,1080,0,0},{}},
[100959]={40,{543045,8313,17342.0,3086,11415,0,0},{}},
[100960]={40,{232330,2857,3909.0,2121,2155,0,0},{}},
[100961]={55,{2285260,24896,30383.0,10123,27891,0,0},{}},
[100962]={55,{378473,5162,5710.0,3893,3924,0,0},{}},
[100963]={57,{2422197,35903,41004.0,12446,40348,0,0},{}},
[100964]={57,{1474847,10164,6327.0,14096,11320,0,0},{}},
[100965]={62,{3934711,46322,42670.0,18321,47748,0,0},{}},
[100966]={62,{1701105,11927,7243.0,16420,13157,0,0},{}},
[100967]={67,{5817937,68573,54509.0,25681,68354,0,0},{}},
[100968]={67,{3370342,17273,8530.0,27868,25032,0,0},{}},
[100969]={65,{5513928,52564,43751.0,22185,51977,0,0},{}},
[100970]={65,{1847769,13195,7838.0,18038,14365,0,0},{}},
[100971]={70,{7721716,76345,55703.0,30452,73695,0,0},{}},
[100972]={70,{3655684,18887,9186.0,30452,27109,0,0},{}},
[100973]={48,{20820,3167,1509.0,2735,3455,0,0},{720011,3000,723346,3500,723380,4500,723550,2500,720099,1500,770439,100,720142,5000,222641,1400,723982,3000},{11,18.4,47.2}},
[100974]={49,{21577,3291,1557.0,2841,3607,0,0},{720011,3000,722258,3500,722870,2500,723074,4500,720099,5000,770440,100,720142,5000,222525,1400,723982,3000,550938,100},{11,21.5,29.8}},
[100975]={47,{5525,939,812.0,2853,2877,0,0},{720011,3000,722564,3500,722564,4000,722700,2500,720099,5000,770441,100,720142,5000,222545,400,723982,3000},{11,14.3,47.0}},
[100976]={48,{5701,978,839.0,2970,2995,0,0},{720011,3000,722259,3500,722973,4000,723041,2500,720100,5000,770442,100,720142,5000,222580,400,723982,3000,550419,100},{11,12.1,36.0}},
[100977]={49,{5880,1018,865.0,3091,3117,0,0},{720011,3000,722225,3500,722395,4500,723415,2500,720100,5000,720142,5000,222595,400,723982,3000,550937,100}},
[100978]={49,{16024,2763,818.0,2948,1355,0,0},{720011,3000,722565,4500,722565,5500,723449,3500,720100,5000,770444,100,720142,5000,222609,1400,723982,3000},{11,17.5,18.5}},
[100979]={48,{15521,2655,793.0,2833,2447,0,0},{720011,3000,722327,4500,723347,5500,723959,4000,720100,5000,770445,100,720142,5000,222655,1400,723982,3000,550428,100},{11,26.3,26.5}},
[100980]={47,{15028,2551,768.0,2722,1251,0,0},{720011,3000,722360,5500,723584,4500,723720,4000,720099,5000,770446,100,720142,5000,222664,1400,723982,3000,550656,100},{11,13.3,43.6}},
[100981]={48,{15016,2891,1087.0,2258,2447,0,0},{720011,3000,722565,4500,722565,5000,723007,3500,720100,5000,770447,100,720142,5000,723982,3000,550772,100},{11,17.3,33.4}},
[100982]={48,{15521,2655,793.0,2833,2447,0,0},{720011,3000,722224,4500,722734,5500,722836,4000,720099,5000,770448,100,720142,5000,202430,20000,222666,1400,723982,3000},{11,11.7,44.8}},
[100983]={49,{15503,3009,1122.0,2350,2546,0,0},{720011,3000,722327,4500,722463,5500,723381,4000,720100,5000,770449,100,720142,5000,222678,1400,723982,3000,550616,100},{11,17.6,25.4}},
[100984]={47,{16010,3101,2032.0,2870,2877,0,0},{720011,3000,722292,5500,722870,4500,722972,4000,720099,5000,770450,100,720142,5000,211295,1400,723982,3000,550843,100},{11,14.9,47.5}},
[100985]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,5500,723516,4500,723550,3500,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100},{11,27.0,30.2}},
[100986]={49,{21577,3291,1557.0,2841,3607,0,0},{720011,3000,722258,5500,722870,4500,723074,3500,720099,5000,770452,100,720142,5000,211454,1400,723982,3000},{11,9.8,31.2}},
[100987]={49,{21577,3291,1557.0,2841,3607,0,0},{720011,3000,722258,3500,722870,2500,723074,4500,720099,5000,770453,100,720142,5000,211455,1400,723982,3000},{11,25.5,18.2}},
[100988]={48,{20820,3167,1509.0,2735,3455,0,0},{720011,3000,722258,3500,722870,4500,723074,2500,720099,5000,770454,100,720142,5000,211438,1400,723982,3000},{11,28.2,30.8}},
[100989]={1,{71,24,28.0,84,84,0,0},{}},
[100990]={1,{71,24,28.0,84,84,0,0},{}},
[100991]={1,{71,24,28.0,84,84,0,0},{}},
[100992]={4,{166,36,60.0,68,128,0,0},{720011,3000,722210,4167,722618,4167,723366,4167,720091,5000,770000,100,201168,80000,720140,5000,723978,3000,721900,2000},{301,57.8,41.7}},
[100993]={3,{131,28,49.0,44,105,0,0},{720011,3000,722210,4167,722618,4167,723366,4167,720091,5000,770000,100,201168,80000,720140,5000,723978,3000,721900,2000},{301,57.5,41.9}},
[100994]={75,{4502962,33484,17858.0,5357,10715,0,0},{},{10,60.2,32.2}},
[100995]={75,{4502962,33484,17858.0,5357,10715,0,0},{},{10,47.8,11.4}},
[100996]={5,{532,51,71.0,30,50,0,0},{210009,100000}},
[100997]={14,{2825,562,428.0,440,539,0,0},{720011,3000,720093,10000,720278,200000},{250,74.4,68.3}},
[100998]={17,{58247,653,999.0,419,547,0,0},{720011,3000,240676,200000,720282,200000,724169,200000,724169,200000,720024,200000,724169,200000},{250,35.4,40.0}},
[100999]={15,{2664,547,491.0,508,507,0,0},{720011,3000,720093,15000,720280,200000,720281,50000,550541,480},{250,76.9,18.5}},
[101000]={13,{1035,142,169.0,578,427,0,0},{720011,3000,720094,200000},{250,38.1,13.2}},
[101001]={13,{1035,142,169.0,578,427,0,0},{720011,3000,720094,200000},{250,39.3,17.1}},
[101002]={17,{1255,179,161.0,169,273,0,0},{}},
[101003]={0,{144,28,28.0,28,28,0,0},{}},
[101004]={0,{144,28,28.0,28,28,0,0},{}},
[101005]={0,{144,28,28.0,28,28,0,0},{}},
[101006]={24,{1995,315,332.0,946,947,0,0},{720011,3000,722286,1379,722422,1379,723714,1379,720095,5000,770424,100,203347,70000,720141,5000,222454,745,723980,3000},{11,83.5,71.0}},
[101007]={10,{1051,110,94.0,85,111,0,0},{}},
[101008]={0,{144,28,28.0,28,28,0,0},{}},
[101009]={15,{840,169,73.0,483,221,0,0},{}},
[101010]={1,{133,19,28.0,19,20,0,0},{}},
[101011]={1,{120,21,28.0,46,60,0,0},{}},
[101012]={27,{2421,365,383.0,1116,1127,0,0},{720011,3000,723579,1189,723647,1189,723681,1189,720096,5000,770485,100,720141,5000,222659,714,723980,3000,550896,178},{11,56.9,45.8}},
[101013]={27,{2421,365,383.0,1116,1127,0,0},{720011,3000,723713,1585,723747,1585,723781,1585,720095,5000,770486,100,720141,5000,211320,828,723980,3000},{11,79.9,46.7}},
[101014]={32,{8918,1582,1188.0,1466,1469,0,0},{}},
[101015]={32,{8365,1302,448.0,1391,1207,0,0},{}},
[101016]={31,{8502,1504,1140.0,1393,1396,0,0},{}},
[101017]={70,{5757,1586,1570.0,4711,4711,0,0},{}},
[101018]={45,{276267,3485,4190.0,2645,2651,0,0},{720011,3000,722565,200000,722565,200000,722905,200000,722939,200000,720100,5000,720209,200000,212148,7000,720026,5000,723982,3000},{106,79.4,40.5}},
[101019]={45,{276267,3485,4190.0,2645,2651,0,0},{720011,3000,722259,200000,722871,200000,722973,200000,723041,200000,720100,5000,720208,200000,212149,7000,720026,5000,723982,3000},{106,80.0,44.2}},
[101020]={45,{276267,3485,4190.0,2645,2651,0,0},{720011,3000,722361,200000,723381,200000,723449,200000,723959,200000,720100,5000,720207,200000,212150,7000,720026,5000,723982,3000},{106,59.0,55.4}},
[101021]={45,{276267,3485,4190.0,2645,2651,0,0},{720011,3000,722293,200000,722429,200000,722633,200000,722531,200000,720100,5000,720206,200000,212151,7000,240691,200000,720026,5000,551178,1000,205699,1000,723982,3000},{106,29.1,45.6}},
[101022]={40,{232384,3392,3646.0,2121,2141,0,0},{720011,3000,722430,1000,722532,1000,720026,200000,723982,3000,721913,320}},
[101023]={50,{916220,6717,8932.0,3234,3242,0,0},{720011,3000,722191,200000,722157,200000,724180,200000,724185,200000,720099,5000,724256,200000,720026,200000,240694,200000,723982,3000}},
[101024]={36,{3498,612,439.0,1636,2321,0,0},{720011,3000,722425,667,723411,667,723445,667,720098,5000,220994,100,770125,100,200579,70000,720141,5000,550414,100,723980,3000,721911,387},{5,51.8,86.0}},
[101025]={50,{329083,2501,4913.0,2271,1564,0,0},{}},
[101026]={50,{329083,2501,4913.0,2271,1564,0,0},{}},
[101027]={40,{112248,516,3536.0,3762,2411,0,0},{550898,100}},
[101028]={50,{521102,3404,4913.0,16174,16079,0,0},{}},
[101029]={0,{144,28,28.0,28,28,0,0},{}},
[101030]={0,{144,28,28.0,28,28,0,0},{}},
[101031]={10,{578,135,131.0,407,393,0,0},{}},
[101032]={10,{578,135,131.0,407,393,0,0},{}},
[101033]={10,{578,135,131.0,407,393,0,0},{}},
[101034]={10,{578,135,131.0,407,393,0,0},{}},
[101035]={1,{372,17,28.0,96,0,0,0},{}},
[101036]={0,{144,28,28.0,28,28,0,0},{}},
[101037]={0,{144,28,28.0,28,28,0,0},{}},
[101038]={0,{144,28,28.0,28,28,0,0},{}},
[101039]={43,{14011,2627,1782.0,2432,2438,0,0},{720011,3000,722258,15000,723584,20000,723754,20000,720099,10000,720142,10000,723982,8000,550871,100}},
[101040]={0,{144,28,28.0,28,28,0,0},{}},
[101041]={0,{144,28,28.0,28,28,0,0},{}},
[101042]={0,{144,28,28.0,84,84,0,0},{}},
[101043]={0,{144,28,28.0,28,28,0,0},{}},
[101044]={14,{2257,433,171.0,445,203,0,0},{720011,3000,720094,50000,720280,200000,550862,494},{250,73.4,17.8}},
[101045]={42,{13536,2517,1722.0,2330,2336,0,0},{720011,3000,722224,15000,722394,20000,723074,20000,720099,10000,720142,8000,723982,8000}},
[101046]={0,{144,28,28.0,28,28,0,0},{}},
[101047]={0,{144,28,28.0,28,28,0,0},{}},
[101048]={41,{13070,2410,1664.0,2231,2237,0,0},{720011,3000,722258,15000,722598,20000,722700,20000,720099,10000,720142,10000,723982,8000}},
[101049]={41,{13070,2410,1664.0,2231,2237,0,0},{720011,3000,722292,15000,722428,15000,722734,20000,720099,10000,720142,10000,723982,8000}},
[101050]={0,{144,28,28.0,28,28,0,0},{}},
[101051]={32,{1745,468,475.0,1426,1426,0,0},{}},
[101052]={42,{13536,2517,1722.0,2330,2336,0,0},{720011,3000,722360,15000,722496,15000,723414,20000,720099,10000,720142,10000,723982,8000,550832,100}},
[101053]={41,{13070,2410,1664.0,2231,2237,0,0},{720011,3000,723346,20000,723482,20000,723516,20000,720099,10000,720142,10000,723982,8000}},
[101054]={0,{144,28,28.0,28,28,0,0},{}},
[101055]={32,{1745,468,475.0,1426,1426,0,0},{}},
[101056]={0,{144,28,28.0,28,28,0,0},{}},
[101057]={50,{752519,6284,6427.0,2642,3085,0,0},{720011,5000,722294,200000,722634,200000,724180,8000,724185,15000,240693,200000}},
[101058]={52,{5252,1165,359.0,3313,1523,0,0},{720011,3000,722248,3615,722894,3615,720175,3615,720092,5000,770252,100,720140,5000,720210,30000,723979,3000,721904,1735}},
[101059]={50,{6063,1059,893.0,3215,3242,0,0},{720011,3000,722654,5222,722790,5222,723946,5222,720092,5000,770026,100,720077,80000,720140,5000,723978,3000,721902,2733}},
[101060]={50,{6063,1059,893.0,3215,3242,0,0},{720011,3000,722212,4907,722892,4907,722960,4907,720092,5000,770027,100,720140,5000,723978,3000,721902,2733}},
[101061]={50,{6063,1059,893.0,3215,3242,0,0},{720011,3000,722314,4907,722450,4907,723028,4907,720092,5000,770028,100,201534,10,720140,5000,723978,3000,721902,2733}},
[101062]={51,{6250,1101,921.0,3343,3371,0,0},{720011,3000,722213,3611,722621,3611,722757,3611,720093,5000,220776,522,770232,100,720077,80000,720140,5000,723979,3000,721903,1967}},
[101063]={53,{18236,3307,975.0,3520,1659,0,0},{720011,3000,722214,200000,722520,200000,720093,5000,770029,100,720140,5000,723979,3000,721904,1735}},
[101064]={50,{4946,1078,337.0,3066,1409,0,0},{720011,3000,722246,4907,723368,4907,723436,4907,720092,5000,210203,519,770030,100,720064,80000,720140,5000,720210,30000,723978,3000,721902,2733}},
[101065]={53,{4573,1010,704.0,2563,2711,0,0},{720011,3000,722282,3458,722418,3458,722622,3458,720092,5000,210229,494,770229,100,720140,5000,720210,30000,723979,3000,721902,2733}},
[101066]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722384,3458,723404,3458,723472,3458,720093,5000,210737,494,770238,100,720014,70000,720140,5000,723979,3000,721904,1735}},
[101067]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722554,3296,722554,3296,722928,3296,720093,5000,770032,100,200406,80000,720140,5000,723979,3000,721904,1735}},
[101068]={51,{6250,1101,921.0,3343,3371,0,0},{720011,3000,722349,3611,722485,3611,722927,3611,720093,5000,770236,100,720140,5000,723979,3000,721903,1967}},
[101069]={51,{6250,1101,921.0,3343,3371,0,0},{720011,3000,722553,3611,722553,3611,723029,3611,720093,5000,210088,522,770237,100,720078,80000,720140,5000,723979,3000,721903,1967}},
[101070]={51,{6250,1101,921.0,3343,3371,0,0},{720011,3000,722655,4097,722689,4097,722757,4097,720092,5000,770031,100,720140,5000,723979,3000,721903,1967}},
[101071]={51,{5098,1121,348.0,3188,1465,0,0},{720011,3000,722383,4097,722995,4097,723471,4097,720092,5000,770025,100,720140,5000,720210,30000,723979,3000,721903,1967}},
[101072]={54,{18694,3352,953.0,3575,1643,0,0},{720011,3000,722351,200000,723371,200000,720094,5000,770230,100,720140,5000,723979,3000,721902,2733}},
[101073]={53,{4759,905,978.0,2480,2847,0,0},{720011,3000,722316,6000,723404,6000,723438,6000,720094,5000,770228,100,720064,80000,720140,5000,720210,30000,723979,3000,721903,2733}},
[101074]={54,{19913,4075,2520.0,3771,3780,0,0},{720011,3000,722454,200000,722896,200000,720094,5000,770049,100,720140,5000,723979,3000,721906,1329}},
[101075]={55,{377171,4205,2159.0,3711,1706,0,0},{720011,3000,722216,200000,722386,200000,722896,200000,722964,200000,720094,5000,210117,100000,770049,100,201631,100000,720024,50000,550950,4360,723979,3000,721906,1329}},
[101076]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722282,3458,723370,3458,723506,3458,720093,5000,770035,100,720140,5000,723979,3000,721904,1735}},
[101077]={52,{5252,1165,359.0,3313,1523,0,0},{720011,3000,722214,3615,722928,3615,722962,3615,720093,5000,210117,446,770033,100,720140,5000,720210,30000,723979,3000,721904,1735}},
[101078]={52,{6440,1145,949.0,3475,3503,0,0},{720011,3000,722247,3480,722689,3480,722791,3480,720093,5000,770034,100,720140,5000,723979,3000,721903,1967}},
[101079]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722248,3296,722690,3296,722724,3296,720093,5000,220153,494,770036,100,720140,5000,723979,3000,721904,1735}},
[101080]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722351,3198,722487,3198,723031,3198,720094,5000,770037,100,720140,5000,723979,3000,721905,1535}},
[101081]={54,{6987,1265,725.0,3408,4367,0,0},{720011,3000,722283,2972,722419,2972,722521,2972,720094,5000,770038,100,720140,5000,723979,3000,721905,1535}},
[101082]={51,{6132,1129,662.0,3061,3902,0,0},{720011,3000,722383,3611,723029,3611,723369,3611,720093,5000,220353,481,770041,100,720140,5000,720210,30000,723979,3000,721903,1967}},
[101083]={52,{6400,1165,949.0,3495,3503,0,0},{720011,3000,722315,3480,723437,3480,723947,3480,720093,5000,210700,494,770042,100,720140,5000,720210,30000,723979,3000,721903,1967}},
[101084]={51,{6250,1101,921.0,3343,3371,0,0},{720011,3000,722553,4097,722553,4097,722757,4097,720092,5000,220539,480,770044,100,720081,80000,720140,5000,723979,3000,721903,1967}},
[101085]={51,{6250,1101,921.0,3343,3371,0,0},{720011,3000,722349,4097,722485,4097,722723,4097,720092,5000,770045,100,720079,80000,720140,5000,723979,3000,721903,1967}},
[101086]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722758,3458,722928,3458,722996,3458,720093,5000,770044,100,720081,80000,720140,5000,723979,3000,721904,1735}},
[101087]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722996,3296,723472,3296,723506,3296,720093,5000,770045,100,720079,80000,720140,5000,723979,3000,721904,1735}},
[101088]={54,{6105,1264,381.0,3597,1643,0,0},{720011,3000,722283,3206,722419,3206,723507,3206,720094,5000,210183,331,770046,100,201112,80000,720140,5000,723979,3000,721905,1535}},
[101089]={54,{7328,1264,1008.0,3792,3780,0,0},{720011,3000,722419,3206,722657,3206,723405,3206,720094,5000,220804,446,770047,100,201112,80000,720140,5000,723979,3000,721905,1535}},
[101090]={54,{6987,1265,725.0,3408,4367,0,0},{720011,3000,722284,2769,722624,2769,722794,2769,720094,5000,220233,481,770048,100,720140,5000,720210,30000,723979,3000,721906,1329}},
[101091]={70,{32749,9496,4275.0,8802,8774,0,0},{720011,3000,723619,200000,723687,200000,720104,5000,201112,50000,770050,100,720143,50000,723980,3000,721915,320}},
[101092]={54,{6833,1235,1008.0,3750,3780,0,0},{720011,3000,722317,3206,722623,3206,722521,3206,720094,5000,770052,100,720076,80000,720140,5000,723979,3000,721905,1535}},
[101093]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722249,3198,722691,3198,722725,3198,720094,5000,210145,331,770053,100,720140,5000,723979,3000,721905,1535}},
[101094]={53,{6635,1189,978.0,3610,3640,0,0},{720011,3000,722793,3198,723439,3198,723507,3198,720094,5000,770054,100,720076,80000,720140,5000,201538,10,723979,3000,721905,1535}},
[101095]={57,{930084,8692,11004.0,4192,4225,0,0},{720011,3000,722319,200000,722455,200000,723951,200000,720178,200000,720095,5000,720077,80000,770219,5000,210347,3466,720025,100000,210343,3466,210145,100000,220776,100000,723980,3000}},
[101096]={54,{5570,1257,381.0,3575,1643,0,0},{720011,3000,722216,2204,723950,2204,720177,2204,720094,5000,220047,260,770239,100,720065,80000,720140,5000,723980,3000,721906,1329}},
[101097]={55,{5110,1496,538.0,2958,3201,0,0},{720011,3000,722284,1827,722624,1827,722658,1827,720095,5000,220045,260,770240,100,720065,80000,720141,5000,723980,3000,721906,1329}},
[101098]={55,{6989,1305,1038.0,3915,3924,0,0},{720011,3000,722556,2204,722556,2204,722930,2204,720094,5000,220587,221,770057,100,201256,70000,720140,5000,201539,10,723980,3000,721906,1329}},
[101099]={56,{903485,8439,10690.0,4063,4073,0,0},{720011,3000,722251,200000,722319,200000,722455,200000,720178,200000,720095,5000,770218,5000,210693,260,720025,100000,220047,100000,721234,5200,723980,3000,721906,0}},
[101100]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,722964,1827,723372,1827,723406,1827,720095,5000,770058,100,201119,70000,720141,5000,220780,270,723980,3000,721906,1329}},
[101101]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,722999,1733,723475,1733,723543,1733,720095,5000,770059,100,201119,70000,720141,5000,723980,3000,721907,832}},
[101102]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,722999,1585,723067,1585,723441,1585,720095,5000,221070,238,770060,100,201119,70000,720141,5000,723980,3000,721907,832}},
[101103]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,722250,1827,722896,1827,722964,1827,720095,5000,770061,100,201266,70000,720141,5000,723980,3000,721906,1329}},
[101104]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,722931,1733,722999,1733,723067,1733,720095,5000,770062,100,201266,70000,720141,5000,723980,3000,721907,832}},
[101105]={54,{5570,1257,381.0,3575,1643,0,0},{720011,3000,722250,2769,722726,2769,722794,2769,720094,5000,220048,260,770055,100,720140,5000,723979,3000,721906,1329}},
[101106]={54,{6789,1257,1008.0,3771,3780,0,0},{720011,3000,722352,2204,722488,2204,722692,2204,720094,5000,210257,260,770056,100,720140,5000,550549,207,723979,3000,721906,1329}},
[101107]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,722217,1733,722387,1733,722761,1733,720095,5000,770065,100,201258,70000,720141,5000,723980,3000,721907,832}},
[101108]={56,{7241,1332,1069.0,4041,4073,0,0},{720011,3000,723373,2378,723407,2378,720095,5000,220798,221,770241,100,201119,70000,720141,5000,723980,3000,721907,832}},
[101109]={56,{7241,1332,1069.0,4041,4073,0,0},{720011,3000,723441,1471,723475,1471,723509,1471,720095,5000,221076,221,770242,100,201119,70000,720141,5000,723980,3000,721907,832}},
[101110]={56,{7241,1332,1069.0,4041,4073,0,0},{720011,3000,723033,1471,723067,1471,723373,1471,720095,5000,220043,221,770243,100,201119,70000,720141,5000,723980,3000,721907,832}},
[101111]={57,{21808,4515,2751.0,4192,4225,0,0},{720011,3000,723374,200000,723952,200000,722524,200000,720095,5000,770066,100,201119,70000,720141,5000,723980,3000,721908,662}},
[101112]={56,{7241,1332,1069.0,4041,4073,0,0},{720011,3000,722660,1379,722796,1379,722830,1379,720095,5000,220042,221,770244,100,201266,70000,720141,5000,723980,3000,721908,662}},
[101113]={57,{7451,1382,1100.0,4192,4225,0,0},{720011,3000,723612,1305,723646,1305,723782,1305,720096,5000,210280,172,770245,100,201266,70000,720141,5000,723980,3000,721908,662}},
[101114]={57,{928766,6806,4162.0,3971,1836,0,0},{720011,3000,723612,200000,723680,200000,723952,200000,720179,200000,720095,5000,770221,5000,201119,70000,720025,100000,220043,100000,220798,100000,723980,3000,721907,832}},
[101115]={56,{5258,1552,554.0,3070,3321,0,0},{720011,3000,722557,1585,722557,1585,722693,1585,720095,5000,210200,221,770068,100,720141,5000,200677,20000,723980,3000,721907,832}},
[101116]={56,{5901,1354,404.0,3851,1770,0,0},{720011,3000,722217,1585,722387,1585,722761,1585,720095,5000,210458,238,770069,100,720141,5000,200677,20000,723980,3000,721907,832}},
[101117]={56,{7229,1355,769.0,3688,4708,0,0},{720011,3000,722285,1585,722421,1585,722727,1585,720095,5000,220157,207,770070,100,720141,5000,723980,3000,721907,832}},
[101118]={57,{928703,6869,4162.0,3996,1836,0,0},{720011,3000,722354,200000,722490,200000,723952,200000,720179,200000,720096,5000,210148,100000,770220,5000,720025,100000,723980,3000,721909,571}},
[101119]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,3000,723407,1733,723441,1733,720178,1733,720095,5000,770031,100,720141,5000,723980,3000,721907,832}},
[101120]={57,{7402,1405,1100.0,4215,4225,0,0},{720011,3000,722354,1379,722490,1379,722626,1379,720095,5000,210186,260,770071,100,720141,5000,200677,20000,723980,3000,721908,662}},
[101121]={57,{7465,1404,791.0,3819,4899,0,0},{720011,3000,722286,1379,722422,1379,722728,1379,720095,5000,220807,221,770072,100,720141,5000,723980,3000,721908,662}},
[101122]={56,{7193,1354,1069.0,4063,4073,0,0},{720011,3000,722557,1471,722557,1471,723951,1471,720095,5000,210121,221,770073,100,720141,5000,200677,20000,723980,3000,721907,832}},
[101123]={58,{29719,4782,2112.0,4172,5319,0,0},{720011,3000,722321,200000,722457,200000,722899,200000,720096,5000,210148,2140,770074,100,720141,5000,723980,3000,721909,571}},
[101124]={57,{7451,1382,1100.0,4192,4225,0,0},{720011,3000,722252,1305,722898,1305,723034,1305,720096,5000,770031,100,720141,5000,723980,3000,721908,662}},
[101125]={57,{7451,1382,1100.0,4192,4225,0,0},{720011,3000,723612,1305,723714,1305,723748,1305,720096,5000,210465,207,770222,100,720141,5000,723980,3000,721908,0}},
[101126]={57,{7563,1408,1205.0,3791,4932,0,0},{720011,3000,722286,1242,722422,1242,722626,1242,720096,5000,220357,186,770079,100,201120,70000,720141,5000,723980,3000,721908,662}},
[101127]={57,{6139,1412,642.0,3971,1860,0,0},{720011,3000,723646,1242,723680,1242,723782,1242,720096,5000,220489,221,770080,100,201120,70000,720141,5000,723980,3000,721908,662}},
[101128]={57,{7474,1412,1668.0,4192,4249,0,0},{720011,3000,722762,1242,722796,1242,723544,1242,720096,5000,220292,207,770081,100,201120,70000,720141,5000,201536,10,723980,3000,721908,662}},
[101129]={58,{7666,1433,1132.0,4348,4382,0,0},{720011,3000,722321,1189,722457,1189,722899,1189,720096,5000,220046,221,770082,100,201259,70000,720141,5000,723980,3000,721909,571}},
[101130]={58,{7666,1433,1132.0,4348,4382,0,0},{720011,3000,722219,1189,722389,1189,722695,1189,720096,5000,220601,196,770083,100,201260,70000,720141,5000,723980,3000,721909,571}},
[101131]={60,{23773,5034,2996.0,4673,4709,0,0},{720011,3000,722559,200000,722559,200000,722525,200000,720096,5000,770084,100,720141,5000,723980,3000,721909,571}},
[101132]={58,{7689,1465,1717.0,4348,4406,0,0},{720011,3000,722661,1189,722695,1189,722967,1189,720096,5000,220561,207,770085,100,201121,70000,720141,5000,723980,3000,721909,571}},
[101133]={58,{7689,1465,1717.0,4348,4406,0,0},{720011,3000,722933,1189,723477,1189,723511,1189,720096,5000,220278,186,770086,100,201121,70000,720141,5000,723980,3000,721909,571}},
[101134]={60,{1486049,9412,9189.0,4230,5486,0,0},{720011,3000,722321,200000,722627,200000,722525,200000,720180,200000,720096,5000,770224,5000,201120,70000,720025,100000,220357,100000,220489,100000,723980,3000,721908,662}},
[101135]={58,{7666,1433,1132.0,4348,4382,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,770246,100,201463,70000,720141,5000,723980,3000,721910,514}},
[101136]={58,{7666,1433,1132.0,4348,4382,0,0},{720011,3000,722627,1105,723613,1105,720180,1105,720096,5000,220109,142,770099,100,720141,5000,723980,3000,721909,571}},
[101137]={59,{4216,1152,1165.0,3495,3495,0,0},{720011,3000,722492,1421,723410,1421,720097,5000,770088,100,201463,70000,720141,5000,723980,3000,721910,514}},
[101138]={59,{1439453,8971,8383.0,4087,5271,0,0},{720011,3000,722288,200000,722424,200000,723716,200000,720181,200000,720097,5000,200744,30000,770223,5000,201463,70000,720025,5000,210451,100000,723980,3000,721911,387}},
[101139]={59,{7831,1511,1165.0,4533,4543,0,0},{720011,3000,722492,1421,723648,1421,720097,5000,210451,161,770100,100,201124,70000,720141,5000,723980,3000,721910,514}},
[101140]={59,{10777,1289,1165.0,2097,1957,0,0},{720011,3000,722696,1421,722968,1421,720097,5000,770101,100,720141,5000,723980,3000,721910,514}},
[101141]={59,{6426,1536,440.0,4296,1975,0,0},{720011,3000,722867,1208,722935,1208,720097,5000,770102,100,200579,70000,720141,5000,723980,3000,721911,387}},
[101142]={59,{8184,1512,1165.0,4741,4543,0,0},{720011,3000,722221,805,722391,805,723037,805,720097,5000,770103,100,201463,70000,720141,5000,200744,30000,723980,3000,721911,387}},
[101143]={59,{8072,1486,1165.0,4663,4543,0,0},{720011,3000,722560,947,722560,947,723954,947,720097,5000,770104,100,201462,70000,720141,5000,723980,3000,721910,514}},
[101144]={59,{6490,1486,460.0,4271,1975,0,0},{720011,3000,722255,805,723071,805,723343,805,720097,5000,220180,142,770106,100,720141,5000,723980,3000,721911,387}},
[101145]={60,{8305,1657,1198.0,4854,4709,0,0},{720011,3000,722357,711,722493,711,723377,711,720097,5000,770247,100,201124,10000,720141,5000,200875,30000,723980,3000,721911,387}},
[101146]={59,{7941,1564,1165.0,4508,4543,0,0},{720011,3000,722255,805,722595,805,722731,805,720097,5000,220844,142,770248,100,201462,70000,720141,5000,723980,3000,721911,387}},
[101147]={60,{8108,1541,1198.0,4673,4709,0,0},{720011,3000,722663,711,722765,711,723479,711,720097,5000,770108,100,200016,70000,720141,5000,723980,3000,721911,387}},
[101148]={59,{8053,1491,838.0,4087,5271,0,0},{720011,3000,723717,805,723785,805,720182,805,720097,5000,770109,100,720141,5000,723980,3000,721911,387}},
[101149]={60,{8127,1567,1198.0,4673,4709,0,0},{720011,3000,723581,667,723683,667,723751,667,720098,5000,770110,100,720141,5000,201537,10,723980,3000,721911,387}},
[101150]={59,{7903,1512,1165.0,4508,4543,0,0},{720011,3000,723444,947,723512,947,723546,947,720097,5000,220530,124,770111,100,720141,5000,723980,3000,721910,514}},
[101151]={59,{7978,1486,1165.0,4586,4543,0,0},{720011,3000,722323,805,722459,805,722901,805,720097,5000,770112,100,720141,5000,723980,3000,721911,387}},
[101152]={60,{8127,1567,1198.0,4673,4709,0,0},{720011,3000,722221,667,722935,667,723037,667,720098,5000,220605,100,770113,100,200617,70000,720141,5000,723980,3000,721911,387}},
[101153]={60,{7404,1569,902.0,4230,5785,0,0},{720011,3000,723547,667,723649,667,720182,667,720098,5000,770114,100,720141,5000,723980,3000,721911,387}},
[101154]={60,{7844,2134,661.0,4529,3732,0,0},{720011,3000,722290,667,722698,667,722868,667,720098,5000,220820,100,770115,100,720141,5000,723980,3000,721912,320}},
[101155]={60,{8351,1619,1198.0,4829,4709,0,0},{720011,3000}},
[101156]={60,{8132,1574,1816.0,4673,4735,0,0},{720011,3000,722289,711,722969,711,723343,711,220547,100,770117,100,720141,5000,201540,10,723980,3000,721911,387}},
[101157]={61,{659836,6208,4877.0,4376,5664,0,0},{720011,3000,722325,200000,722461,200000,723583,200000,723617,200000,720098,5000,770118,100,720025,50000,723980,3000,721913,320}},
[101158]={61,{23826,5246,3080.0,4843,4880,0,0},{720011,3000,722223,667,722393,667,723515,667,720098,5000,770119,100,720141,5000,723980,3000,721913,320}},
[101159]={60,{7498,1557,1198.0,4673,4709,0,0},{720011,3000,722562,667,722562,667,722664,667,720098,5000,220239,100,770120,100,720141,5000,723980,3000,721912,320}},
[101160]={60,{8902,1857,453.0,5687,2906,0,0},{720011,3000,722630,667,722902,667,723378,667,720098,5000,220281,100,770121,100,720141,5000,723980,3000,721912,320}},
[101161]={60,{8164,1619,1258.0,4673,4709,0,0},{720011,3000,722222,667,722392,667,722732,667,720098,5000,220111,100,770122,100,720141,5000,723980,3000,721912,320}},
[101162]={65,{1161826,11603,13751.0,5569,5610,0,0},{720011,3000,723686,200000,723754,200000,723958,200000,720185,200000,720099,5000,720025,100000,723980,3000,721914,320}},
[101163]={60,{5894,1842,621.0,3550,3838,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,723980,3000,721912,320}},
[101164]={60,{8052,1566,1198.0,4698,4709,0,0},{720011,3000,722323,667,723003,667,723071,667,720098,5000,220136,100,770124,100,200579,70000,720141,5000,723980,3000,721911,387}},
[101165]={60,{8207,1559,902.0,4261,5785,0,0},{720011,3000,722425,667,723411,667,723445,667,720098,5000,220994,100,770125,100,200579,70000,720141,5000,723980,3000,721911,387}},
[101166]={60,{23717,5077,2996.0,4698,4709,0,0},{720011,3000,722289,200000,722425,200000,723003,200000,720098,5000,770126,100,200579,70000,720141,5000,723980,3000,721911,387}},
[101167]={60,{22268,4176,1133.0,4453,2047,0,0},{720011,3000,722459,200000,722799,200000,723479,200000,720098,5000,770127,100,200579,70000,720141,5000,723980,3000,721911,387}},
[101168]={60,{23717,5077,2996.0,4698,4709,0,0},{720011,3000,722561,200000,722561,200000,720182,200000,720098,5000,770128,100,200579,70000,720141,5000,723980,3000,721911,387}},
[101169]={61,{24396,5261,3080.0,4869,4880,0,0},{720011,3000,722392,200000,722834,200000,722528,200000,720098,5000,770129,100,200579,70000,720141,5000,723980,3000,721912,320}},
[101170]={60,{12719,4032,2996.0,3614,3595,0,0},{720011,3000,722256,667,722630,667,722800,667,720098,5000,220268,100,770124,100,200579,70000,720141,5000,723980,3000,721912,320}},
[101171]={63,{1100946,10907,13818.0,5196,5262,0,0},{720011,3000,722258,200000,722632,200000,722666,200000,722530,200000,720099,5000,770146,100,220269,100000,723980,3000,721914,320}},
[101172]={63,{1098255,8775,9983.0,3661,4292,0,0},{720011,0,722292,200000,722904,200000,722938,200000,720185,200000,720099,5000,770147,100,220511,100000,723980,3000,721914,320}},
[101173]={63,{1098579,9328,6753.0,3920,4265,0,0},{720011,3000,722224,200000,723380,200000,723414,200000,722530,200000,720099,5000,770161,100,220511,100000,723980,3000,721914,320}},
[101174]={61,{8360,1631,1868.0,4843,4906,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,220269,100,770163,100,201432,60000,720141,5000,723980,3000,721913,320}},
[101175]={61,{8580,1618,1349.0,4376,5701,0,0},{720011,3000,722426,667,722630,667,722698,667,720099,5000,770162,100,201433,60000,720141,5000,723980,3000,721912,320}},
[101176]={61,{8360,1631,1868.0,4843,4906,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,220511,100,770164,100,201434,60000,720141,5000,723980,3000,721912,320}},
[101177]={62,{8568,1654,1267.0,5017,5055,0,0},{720011,3000,722631,667,722699,667,723957,667,720099,5000,770165,100,720142,5000,723980,3000,721913,320}},
[101178]={61,{6860,1597,466.0,4587,3976,0,0},{720011,3000,722222,667,722392,667,723718,667,720099,5000,220859,100,770166,100,720141,5000,723980,3000,721912,320}},
[101179]={61,{8335,1597,1232.0,4843,4880,0,0},{720011,3000,722257,667,722597,667,722665,667,720099,5000,220344,100,770167,100,201126,60000,720141,5000,723980,3000,721913,320}},
[101180]={61,{8335,1597,1232.0,4843,4880,0,0},{720011,3000,722325,667,722937,667,723413,667,720099,5000,770168,100,201127,60000,720141,5000,723980,3000,721913,320}},
[101181]={61,{8335,1597,1232.0,4843,4880,0,0},{720011,3000,723617,667,723651,667,723685,667,720099,5000,220588,100,770169,100,720141,5000,723980,3000,721913,320}},
[101182]={62,{6975,1681,479.0,4780,2197,0,0},{720011,3000,722564,667,722564,667,723006,667,720099,5000,210461,100,770170,100,720142,5000,723980,3000,721914,320}},
[101183]={63,{9004,1726,937.0,4741,6079,0,0},{720011,3000,722292,667,722428,667,722802,667,720099,5000,210215,100,770171,100,720142,5000,723980,3000,721914,320}},
[101184]={62,{8508,1681,1267.0,5043,5055,0,0},{720011,3000,722326,667,722462,667,723414,667,720099,5000,210208,100,770172,100,720142,5000,723980,3000,721914,320}},
[101185]={62,{8568,1654,1267.0,5017,5055,0,0},{720011,3000,722359,667,722971,667,720184,667,720099,5000,770173,100,201426,55000,720142,5000,723980,3000,721913,320}},
[101186]={63,{7167,1741,492.0,4950,2275,0,0},{720011,3000,723347,667,723449,667,723517,667,720099,5000,220644,100,770176,100,720142,5000,723980,3000,721914,320}},
[101187]={62,{6215,1927,656.0,3810,4119,0,0},{720011,3000,723720,667,723754,667,723788,667,720099,5000,220463,100,770177,100,720142,5000,723980,3000,721914,320}},
[101188]={65,{501781,6418,2861.0,5730,2438,0,0},{720011,3000,723654,200000,723960,200000,722532,200000,720099,5000,770178,100,723980,3000,721915,320}},
[101189]={62,{8568,1654,1267.0,5017,5055,0,0},{720011,3000,722734,667,722836,667,722870,667,720099,5000,220309,100,770166,100,720142,5000,723980,3000,721914,320}},
[101190]={62,{8568,1654,1267.0,5017,5055,0,0},{720011,3000,723515,667,723549,667,723583,667,720099,5000,770179,100,201430,60000,720142,5000,723980,3000,721913,320}},
[101191]={62,{6289,1911,656.0,3785,4119,0,0},{720011,3000,722224,667,722394,667,723380,667,720099,5000,220642,100,770180,100,201429,60000,720142,5000,723980,3000,721914,320}},
[101192]={63,{8804,1713,1302.0,5196,5235,0,0},{720011,3000,722360,667,722496,667,722598,667,720099,5000,220586,100,770168,100,201127,60000,720142,5000,723980,3000,721914,320}},
[101193]={63,{8743,1741,1302.0,5223,5235,0,0},{720011,3000,722293,667,722429,667,723959,667,720099,5000,770183,100,720142,5000,723980,3000,721915,320}},
[101194]={63,{8743,1741,1302.0,5223,5235,0,0},{720011,3000,722259,667,723483,667,723959,667,720099,5000,220345,100,770184,100,720142,5000,723980,3000,721915,320}},
[101195]={63,{8743,1741,1302.0,5223,5235,0,0},{720011,3000,722327,667,722463,667,723619,667,720099,5000,770185,100,720142,5000,723980,3000,721915,320}},
[101196]={64,{7363,1802,506.0,5125,2356,0,0},{720011,3000,722259,667,722667,667,720186,667,720099,5000,210129,100,770186,100,720142,5000,723980,3000,721915,320}},
[101197]={64,{6639,2049,694.0,4059,4415,0,0},{720011,3000,722225,667,722395,667,723619,667,720099,5000,770187,100,720142,5000,723980,3000,721915,320}},
[101198]={65,{1162462,11629,13751.0,5598,5610,0,0},{720011,3000,722294,200000,723654,200000,723688,200000,720187,200000,720099,5000,770188,100,723980,3000,721915,320}},
[101199]={65,{1162462,11629,13751.0,5598,5610,0,0},{720011,3000,722226,200000,722736,200000,722770,200000,722532,200000,720099,5000,770189,100,723980,3000,721915,320}},
[101200]={63,{8743,1741,1302.0,5223,5235,0,0},{720011,3000,722565,667,722565,667,722905,667,720099,5000,770185,100,720142,5000,723980,3000,721915,320}},
[101201]={64,{6639,2049,694.0,4059,4415,0,0},{720011,3000,722259,667,723687,667,723959,667,720099,5000,770187,100,720142,5000,723980,3000,721915,320}},
[101202]={63,{7362,1750,492.0,4922,2275,0,0},{720011,3000,722326,667,722462,667,723074,667,720099,5000,220745,100,770190,100,720142,5000,723980,3000,721914,320}},
[101203]={63,{6581,2001,675.0,3920,4265,0,0},{720011,3000,722360,667,722496,667,723040,667,720099,5000,220723,100,770190,100,720142,5000,723980,3000,721914,320}},
[101204]={64,{9283,1785,963.0,4900,6279,0,0},{720011,3000,722769,667,722803,667,723653,667,720099,5000,770192,100,720142,5000,723980,3000,721915,320}},
[101205]={63,{7362,1750,492.0,4922,2275,0,0},{720011,3000,722973,667,723007,667,720186,667,720099,5000,220728,100,770191,100,720142,5000,723980,3000,721915,320}},
[101206]={63,{8943,1750,1302.0,5196,5235,0,0},{720011,3000,723041,667,723755,667,723789,667,720099,5000,220701,100,770204,100,720142,5000,723980,3000,721915,320}},
[101207]={63,{8804,1713,1302.0,5196,5235,0,0},{720011,3000,722871,667,722973,667,723007,667,720099,5000,770193,100,720142,5000,723980,3000,721915,320}},
[101208]={63,{8804,1713,1302.0,5196,5235,0,0},{720011,3000,722733,667,722937,667,723073,667,720099,5000,220137,100,770251,100,201126,60000,720142,5000,723980,3000,721914,320}},
[101209]={62,{7050,1730,479.0,4968,4304,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,770195,100,201427,60000,720142,5000,723980,3000,721914,320}},
[101210]={62,{6289,1911,656.0,3785,4119,0,0},{720011,3000,722393,667,722631,667,723549,667,720099,5000,220462,100,770196,100,201428,60000,720142,5000,723980,3000,721914,320}},
[101211]={63,{7167,1741,492.0,4950,2275,0,0},{720011,3000,722259,667,723449,667,723483,667,720099,5000,220427,100,770198,100,201431,60000,720142,5000,723980,3000,721915,320}},
[101212]={63,{8743,1741,1302.0,5223,5235,0,0},{720011,3000,722666,667,722700,667,722836,667,720099,5000,220139,100,770199,100,201431,100,720142,5000,723980,3000,721914,320}},
[101213]={63,{9004,1726,937.0,4741,6079,0,0},{720011,3000,722428,667,723720,667,720185,667,720099,5000,220618,100,770200,100,201431,60000,720142,5000,723980,3000,721914,320}},
[101214]={64,{1683841,10716,9631.0,4900,6279,0,0},{720011,3000,722293,200000,723381,200000,723449,200000,722531,200000,720099,5000,770201,100,201635,100000,220427,100000,723980,3000,721915,320}},
[101215]={62,{8568,1654,1267.0,5017,5055,0,0},{720011,3000,722326,667,723584,667,723618,667,720099,5000,220087,100,770202,100,720142,5000,723980,3000,721914,320}},
[101216]={62,{6975,1681,479.0,4780,2197,0,0},{720011,3000,722496,667,723414,667,723482,667,720099,5000,220609,100,720142,5000,723980,3000,721914,320}},
[101217]={63,{23623,4627,1231.0,1796,807,0,0},{720011,3000,722462,667,722904,667,722938,667,720099,5000,720142,5000,723980,3000,721914,320}},
[101218]={45,{18172,2807,1370.0,744,1021,0,0},{}},
[101219]={45,{273574,4140,4190.0,510,2651,0,0},{720011,3000,722430,1000,722532,1000,720026,200000,723982,3000,721913,320}},
[101220]={42,{13536,2517,1722.0,2330,2336,0,0},{720011,3000,722326,15000,722462,15000,723686,20000,720099,10000,720142,10000,723982,8000,550655,100}},
[101221]={45,{1729,637,548.0,499,622,0,0},{}},
[101222]={50,{916220,6717,8932.0,3234,3242,0,0},{720011,3000,722191,200000,722157,200000,724180,200000,724185,200000,720099,5000,211706,30000,720026,200000,240695,200000,723982,3000}},
[101223]={34,{239641,2146,2037.0,459,621,0,0},{}},
[101224]={50,{329083,2501,4913.0,2271,1080,0,0},{}},
[101225]={50,{329083,2501,4913.0,2271,1564,0,0},{}},
[101226]={50,{329083,2501,4913.0,2271,1564,0,0},{}},
[101227]={0,{146,32,28.0,84,84,0,0},{}},
[101228]={0,{146,32,28.0,84,84,0,0},{}},
[101229]={72,{374953,45893,4135.0,27390,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000}},
[101230]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771260,100,241288,60000,241296,60000},{23,39.3,33.8}},
[101231]={72,{374953,40442,4135.0,27638,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,720103,10000,725783,1000,725784,1000},{23,34.3,27.1}},
[101232]={72,{374953,40442,4135.0,27638,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,720103,10000,725783,1000,725784,1000}},
[101233]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771261,100,241297,60000},{23,40.7,25.7}},
[101234]={72,{374953,40442,4135.0,27390,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,720103,10000,725783,1000,725784,1000,241297,80000},{23,40.8,23.4}},
[101235]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771262,100},{23,20.2,31.1}},
[101236]={1,{133,19,28.0,59,60,0,0},{}},
[101237]={1,{142,24,28.0,84,84,0,0},{},{23,35.9,45.1}},
[101238]={0,{144,28,28.0,28,28,0,0},{}},
[101239]={49,{17106,3327,2164.0,3091,3117,0,0},{720011,3000,722294,3500,722872,4500,723484,2500,720187,2000,770455,100,720142,5000,723982,3000},{11,9.2,15.4}},
[101240]={0,{144,28,28.0,28,28,0,0},{}},
[101241]={0,{144,28,28.0,28,28,0,0},{}},
[101242]={0,{144,28,28.0,28,28,0,0},{}},
[101243]={0,{144,28,28.0,28,28,0,0},{}},
[101244]={0,{144,28,28.0,28,28,0,0},{}},
[101245]={28,{2567,396,401.0,1189,1191,0,0},{720011,3000,722865,1189,722933,1189,723001,1189,720096,5000,203349,70000,720141,5000,211368,714,723980,3000},{11,70.0,43.3}},
[101246]={47,{5525,939,812.0,2853,2877,0,0},{770456,100},{11,16.2,44.4}},
[101247]={48,{20820,3167,1509.0,2735,3455,0,0},{720011,3000,722258,3500,722870,2500,723074,4500,720099,5000,770457,100,720142,5000,222677,1400,723982,3000},{11,31.2,34.6}},
[101248]={48,{20820,3167,1509.0,2735,3455,0,0},{720011,3000,722258,3500,722870,4500,723074,2500,720099,5000,770458,100,720142,5000,211327,1400,723982,3000},{11,22.1,38.1}},
[101249]={79,{724570,12027,10957.0,9000,8938,0,0},{}},
[101250]={45,{18920,2904,1465.0,2592,3222,0,0},{}},
[101251]={45,{5005,905,614.0,2436,2823,0,0},{}},
[101252]={45,{5096,908,574.0,2497,3133,0,0},{}},
[101253]={46,{19491,2979,1525.0,2603,3343,0,0},{}},
[101254]={52,{500972,4674,5763.0,9172,9254,0,0},{}},
[101255]={50,{41482,4382,2233.0,4019,4046,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770328,100,720142,5000,723982,3000},{108,49.7,91.2}},
[101256]={50,{46228,4382,2233.0,4153,4180,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770329,100,720142,5000,723982,3000},{108,47.5,93.6}},
[101257]={52,{72007,4875,2373.0,5612,5640,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770330,100,720142,5000,223806,3000,223718,3000,723982,3000},{108,47.2,93.2}},
[101258]={51,{60030,4549,2302.0,4863,4891,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770331,100,720142,5000,723982,3000},{108,49.6,33.6}},
[101259]={51,{52587,4549,2302.0,4863,4891,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770332,100,720142,5000,223718,3000,723982,3000},{108,48.7,89.2}},
[101260]={51,{57483,4549,2302.0,4863,4891,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770333,100,720142,5000,723982,3000},{108,45.8,84.9}},
[101261]={52,{86146,5341,2373.0,5526,5555,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770334,100,720142,5000,223806,3000,723982,3000},{108,53.6,79.9}},
[101262]={52,{59282,4720,2373.0,5042,5070,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,3000,770335,100,720142,5000,723982,3000},{108,48.9,88.8}},
[101263]={51,{65206,4221,2302.0,5001,5029,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770336,100,720142,5000,723982,3000}},
[101264]={51,{65206,4221,2302.0,5001,5029,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770337,100,720142,5000,723982,3000}},
[101265]={50,{12748,1084,893.0,3215,3242,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770338,100,720142,5000,723982,2000},{108,57.9,33.2}},
[101266]={50,{12748,1084,893.0,3215,3242,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,770339,100,720142,5000,723982,3000},{108,57.6,33.2}},
[101267]={53,{356521,4998,5569.0,3749,3781,0,0},{}},
[101268]={53,{850718,5519,5382.0,10010,10040,0,0},{720011,3000,724180,10000,724185,20000,720100,10000,724469,200000,770648,1000,720477,200000,720142,5000,723982,3000},{114,67.8,62.9}},
[101269]={15,{1118,171,196.0,515,507,0,0},{}},
[101270]={15,{3300,577,353.0,485,588,0,0},{}},
[101271]={15,{2771,551,491.0,515,507,0,0},{}},
[101272]={20,{4270,796,672.0,742,734,0,0},{}},
[101273]={10,{484,131,131.0,131,131,0,0},{},{354,0,0}},
[101274]={0,{129,19,28.0,19,19,0,0},{720011,5000},{17,63.5,5.1}},
[101275]={5,{33394,305,715.0,138,163,0,0},{720091,20000}},
[101276]={10,{1538,0,407.0,78,408,0,0},{}},
[101277]={50,{753165,5825,4630.0,12630,2647,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,202945,25000,222605,400,723980,3000,721912,320},{354,0,0}},
[101278]={1,{2457,73,154.0,59,60,0,0},{}},
[101279]={1,{2457,73,154.0,59,60,0,0},{}},
[101280]={8,{16165,325,585.0,249,252,0,0},{720011,3000,722348,200000,722892,200000,723368,200000,720092,50000,770077,100,720063,75000,720140,5000,222618,27500,723978,3000,721902,1967}},
[101281]={7,{1034,88,236.0,218,275,0,0},{}},
[101282]={9,{73938,284,326.0,94,158,0,0},{}},
[101283]={6,{18447,177,207.0,64,152,0,0},{}},
[101284]={10,{35677,426,720.0,345,436,0,0},{}},
[101285]={4,{17306,176,142.0,112,185,0,0},{}},
[101286]={5,{22148,185,128.0,151,242,0,0},{}},
[101287]={5,{17148,156,178.0,160,199,0,0},{}},
[101288]={8,{67131,255,292.5,74,140,0,0},{}},
[101289]={15,{1215228,607,491.0,8330,10030,0,0},{}},
[101290]={15,{1215228,607,491.0,8330,10030,0,0},{}},
[101291]={1,{120,21,28.0,46,60,0,0},{}},
[101292]={8,{482,79,106.0,249,252,0,0},{720011,3000,722246,4907,722620,4907,722892,4907,720092,5000,204531,5000,770392,100,720140,5000,211283,3133,723978,3000}},
[101293]={45,{4802,876,761.0,876,883,0,0},{}},
[101294]={17,{1194,190,224.0,586,593,0,0},{720011,3000,723337,4810,723405,4810,720094,5000,204531,5000,720140,5000,723979,3000}},
[101295]={34,{1886,507,514.0,1544,1544,0,0},{},{11,76.9,21.6}},
[101296]={10,{520,135,131.0,393,393,0,0},{}},
[101297]={0,{144,28,28.0,28,28,0,0},{}},
[101298]={0,{146,32,28.0,84,84,0,0},{}},
[101299]={0,{144,28,28.0,28,28,0,0},{}},
[101300]={0,{144,28,28.0,28,28,0,0},{}},
[101301]={0,{144,28,28.0,28,28,0,0},{}},
[101302]={10,{578,135,131.0,407,393,0,0},{}},
[101303]={20,{1104,275,269.0,825,807,0,0},{}},
[101304]={30,{1746,444,437.0,1334,1312,0,0},{}},
[101305]={40,{2528,651,642.0,1954,1928,0,0},{}},
[101306]={50,{3481,903,893.0,2711,2679,0,0},{}},
[101307]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[101308]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[101309]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[101310]={70,{6060,1586,1570.0,4758,4711,0,0},{}},
[101311]={75,{6881,1803,1785.0,5409,5357,0,0},{}},
[101312]={10,{578,135,131.0,407,393,0,0},{}},
[101313]={20,{1104,275,269.0,825,807,0,0},{}},
[101314]={30,{1746,444,437.0,1334,1312,0,0},{}},
[101315]={40,{2528,651,642.0,1954,1928,0,0},{}},
[101316]={50,{3481,903,893.0,2711,2679,0,0},{}},
[101317]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[101318]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[101319]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[101320]={70,{6060,1586,1570.0,4758,4711,0,0},{}},
[101321]={75,{6881,1803,1785.0,5409,5357,0,0},{}},
[101322]={1,{129,21,14.0,45,72,0,0},{}},
[101323]={25,{2129,334,349.0,1004,1005,0,0},{}},
[101324]={50,{3002,893,893.0,893,893,0,0},{}},
[101325]={45,{13612,2626,987.0,2051,2223,0,0},{720011,3000,723584,677,723754,677,720099,5000,204531,5000,770368,100,720142,5000,723982,3000,550758,100},{10,12.6,30.4}},
[101326]={1,{117,30,14.0,63,84,0,0},{}},
[101327]={1,{117,30,14.0,63,84,0,0},{}},
[101328]={70,{1325543,14111,8143.0,6119,6557,0,0},{720011,3000,723619,200000,723687,200000,720104,5000,201112,50000,770434,1000,720143,50000,222667,400,723980,3000,721915,320}},
[101329]={26,{6360,1148,915.0,1064,1065,0,0},{720011,3000,722320,1305,722456,1305,723680,1305,720096,5000,203347,70000,720141,5000,202324,20000,222671,2607,723980,3000}},
[101330]={0,{144,28,28.0,28,28,0,0},{}},
[101331]={20,{4148,796,672.0,726,734,0,0},{}},
[101332]={25,{146057,1366,1381.0,921,1159,0,0},{720011,3000,722286,1035,722422,1035,723680,1035,722524,1035,723980,3000,721908,662}},
[101333]={0,{142,24,28.0,84,84,0,0},{}},
[101334]={0,{150,30,28.0,90,84,0,0},{}},
[101335]={0,{142,24,28.0,84,84,0,0},{}},
[101336]={0,{142,24,28.0,84,84,0,0},{}},
[101337]={0,{146,32,48.0,84,90,0,0},{}},
[101338]={0,{146,32,48.0,84,90,0,0},{}},
[101339]={0,{146,32,28.0,84,84,0,0},{}},
[101340]={15,{160047,321,491.0,896,885,0,0},{}},
[101341]={1,{12150,21,28.0,63,72,0,0},{}},
[101342]={45,{643699,7135,16500.0,2628,2668,0,0},{720011,3000,722294,100000,722974,100000,723348,100000,720100,100000,724174,100000,551185,1000,205697,1000,720026,5000,240686,200000,550799,100,222573,400,723982,3000,721916,387}},
[101343]={9,{546,90,118.0,281,284,0,0},{720011,3000,722246,4907,722620,4907,722892,4907,720092,5000,204531,5000,720140,5000,222599,3333,723978,3000}},
[101344]={45,{643681,5446,7619.0,2628,2651,0,0},{720011,3000,722668,100000,722770,100000,723484,100000,720100,100000,724173,100000,720026,100000,240684,100000,550528,100,211343,100000,723982,100000,721916,38700}},
[101345]={37,{10511,1634,544.0,1755,813,0,0},{720011,3000,722664,711,722766,711,723480,711,720098,5000,720141,5000,211357,1400,723981,3000,721912,387}},
[101346]={51,{335383,4643,5231.0,3537,3495,0,0},{720011,3000,722328,200000,723654,200000,723756,200000,722566,200000,720100,5000,720270,100000,770318,1000,724242,5000,720026,5000,723982,3000},{252,48.6,57.7}},
[101347]={52,{345712,4788,5453.0,3546,3658,0,0},{}},
[101348]={52,{18804,3933,2413.0,3510,3614,0,0},{}},
[101349]={52,{345804,5052,6322.0,3598,3681,0,0},{720011,3000,722430,200000,722702,200000,722804,200000,720100,5000,720272,100000,770319,1000,724243,5000,720026,5000,723982,3000}},
[101350]={51,{335533,4546,5099.0,3668,3393,0,0},{720011,3000,722599,200000,722837,200000,722497,200000,720100,5000,720273,100000,770320,1000,724244,5000,720026,5000,723982,3000}},
[101351]={52,{345789,4725,5387.0,3612,3688,0,0},{720011,3000,722429,200000,723891,200000,723075,200000,722701,200000,720100,5000,720274,100000,770321,1000,724245,5000,720026,5000,723982,3000}},
[101352]={53,{547174,4998,5569.0,5273,3781,0,0},{720011,3000,723585,200000,723619,200000,722463,200000,720186,200000,720100,5000,720275,100000,770322,1000,720074,100000,720026,5000,724518,1000,551182,1000,205844,1000,723982,3000,240698,200000}},
[101353]={50,{17337,3584,2253.0,3287,3395,0,0},{}},
[101354]={50,{9732,3041,2253.0,2747,2751,0,0},{722259,200000,723823,200000,720100,5000,720271,100000,770317,1000,724246,3000,720026,5000,723925,3000}},
[101355]={49,{17334,3464,2199.0,3288,3275,0,0},{720011,3000,722191,10000,722157,20000,724180,3000,724185,11000,720100,5000,770302,100,720142,5000,550574,100},{252,46.4,60.7}},
[101356]={51,{16684,3471,1323.0,2667,2862,0,0},{720011,3000,722191,10000,722157,20000,724180,3000,724185,11000,720100,5000,770303,100,720142,5000}},
[101357]={50,{16556,3084,844.0,3066,1409,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770304,100,720142,5000}},
[101358]={50,{17710,3704,2233.0,3234,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,3000,724185,11000,720100,5000,770305,100,720142,5000}},
[101359]={50,{17710,3704,2233.0,3234,3242,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770306,100,720142,5000}},
[101360]={51,{18268,3845,2302.0,3363,3371,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770307,100,720142,5000}},
[101361]={50,{17841,3578,2233.0,3378,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,3000,724185,11000,720100,5000,770308,100,720142,5000}},
[101362]={51,{18174,3633,2302.0,3363,3371,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770309,100,720142,5000}},
[101363]={50,{17654,3551,2233.0,3215,3242,0,0},{720011,3000,722157,20000,724180,3000,722191,10000,724185,11000,720100,5000,770310,100,720142,5000}},
[101364]={50,{22353,3853,2606.0,2949,3741,0,0},{720011,3000,722191,10000,722157,20000,724180,3000,724185,11000,720100,5000,770311,100,720142,5000}},
[101365]={50,{17897,3494,2233.0,6326,3242,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770312,100,720142,5000}},
[101366]={50,{22353,3418,1606.0,2949,3741,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770313,100,720142,5000}},
[101367]={53,{356345,5417,5382.0,4074,4080,0,0},{100001,3000,100005,200000,212188,200000}},
[101368]={18,{1296,213,239.0,639,639,0,0},{}},
[101369]={18,{1296,213,239.0,639,639,0,0},{}},
[101370]={23,{1618,324,267.0,821,1264,0,0},{}},
[101371]={24,{5975,1160,921.0,1061,1072,0,0},{720011,3000,722319,500,722455,200000,722523,500,720132,100000,720094,100000,770092,1000,720141,5000,723980,3000,721907,832}},
[101372]={28,{175593,1607,1587.0,1092,1368,0,0},{720011,3000,722253,200000,722627,200000,723511,200000,720180,200000,720136,100000,720094,100000,770093,1000,720025,200000,723980,3000,721909,571}},
[101373]={25,{146024,1374,1545.0,921,1172,0,0},{720011,3000,722218,1035,722388,1035,722762,1035,722524,1035,720135,100000,770096,1000,720025,50000,723980,3000,721908,662}},
[101374]={25,{109196,1339,1920.0,995,1005,0,0},{720011,3000,722218,1035,722388,1035,723714,1035,720179,1035,720134,100000,770097,1000,550956,2730,720025,50000,723980,3000,721908,662}},
[101375]={25,{146057,1366,1381.0,921,1159,0,0},{720011,3000,722286,1035,722422,1035,723680,1035,722524,1035,720133,100000,770098,1000,550951,2730,720025,50000,723980,3000,721908,662}},
[101376]={40,{2175,642,642.0,642,642,0,0},{720011,3000,720312,200000,720098,5000,720141,5000,203529,3000,223059,30,723981,3000}},
[101377]={47,{20081,3046,1462.0,2615,3327,0,0},{720011,3000,723448,3500,723516,4500,723550,2500,720099,5000,770459,100,720142,5000,211312,1400,723982,3000,550524,100},{11,26.6,38.0}},
[101378]={103,{71056,19655,8699.0,18216,18164,0,0},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,725988,200000,725989,200000,721899,100000,726068,200000}},
[101379]={7,{388,66,94.0,210,212,0,0},{720011,3000,722552,5694,722552,5694,722892,5694,720092,5000,770013,100,720140,5000,222626,2833,723978,3000,721902,2733}},
[101380]={37,{13817,2034,544.0,2281,1144,0,0},{720011,3000,722630,667,722902,667,723378,667,720098,5000,220281,100,770121,100,720141,5000,222637,1400,723980,3000,721912,320}},
[101381]={37,{3966,761,217.0,2281,1144,0,0},{720011,3000,722630,667,722902,667,723378,667,720098,5000,220281,100,770121,100,720141,5000,222637,400,723980,3000,721912,320}},
[101382]={35,{12163,2026,693.0,1659,1210,0,0},{720011,3000,722290,667,722698,667,722868,667,720098,5000,220820,100,770115,100,720141,5000,222533,1400,723980,3000,721912,320}},
[101383]={36,{10698,1922,1389.0,1780,1784,0,0},{720011,3000,722323,667,723003,667,723071,667,720098,5000,220136,100,770124,100,200579,70000,720141,5000,222568,1400,723980,3000,721911,387}},
[101384]={0,{144,28,28.0,28,28,0,0},{}},
[101385]={43,{4631,826,512.0,2233,2816,0,0},{}},
[101386]={48,{305348,5225,4670.0,3779,3769,0,0},{}},
[101387]={50,{22353,3853,2606.0,2949,3741,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770315,100,720142,5000}},
[101388]={50,{22353,3418,1606.0,2949,3412,0,0},{720011,3000,722157,20000,722191,10000,724180,3000,724185,11000,720100,5000,770316,100,720142,5000}},
[101389]={37,{10911,2006,1442.0,1852,1869,0,0},{720011,3000,722222,1750,722392,1750,723582,1750,720183,1750,720098,5000,770260,100,720141,5000,203527,10000,223053,1400,723981,3000,550354,100}},
[101390]={36,{3802,597,555.0,1767,1784,0,0},{720011,3000,722629,667,722833,667,722527,667,720098,5000,770261,100,720141,5000,203527,1000,723981,3000}},
[101391]={35,{3644,570,535.0,1685,1702,0,0},{720011,3000,722425,711,722901,711,723003,711,720097,5000,770262,100,720141,5000,203527,1000,723981,3000,550946,100}},
[101392]={36,{3802,597,555.0,1767,1784,0,0},{720011,3000,722289,667,722697,667,722765,667,720098,5000,770263,100,720141,5000,203527,1000,723981,3000}},
[101393]={35,{3644,570,535.0,1685,1702,0,0},{720011,3000,722561,711,722561,711,722969,711,720097,5000,770264,100,720141,5000,203527,1000,723981,3000}},
[101394]={37,{3965,626,577.0,1852,1869,0,0},{720011,3000,722392,667,723378,667,723446,667,720098,5000,770265,100,720141,5000,203527,1000,723981,3000,550948,100}},
[101395]={37,{3965,626,577.0,1852,1869,0,0},{720011,3000,722358,667,723344,667,723514,667,720098,5000,770266,100,720141,5000,203527,1000,723981,3000}},
[101396]={35,{3009,570,202.0,1598,740,0,0},{720011,3000,722255,711,722867,711,723037,711,720097,5000,770267,100,720141,5000,203527,1000,723981,3000,550295,100}},
[101397]={39,{11878,2688,3051.0,2029,2047,0,0},{720011,3000,722290,2333,722426,2333,720183,2333,720098,5000,770268,100,720141,5000,203528,10000,723981,3000,550869,100}},
[101398]={38,{3773,646,2198.0,1939,1957,0,0},{720011,3000,722664,667,722732,667,722800,667,720098,5000,770269,100,720141,5000,203528,1000,723981,3000,550779,100}},
[101399]={38,{3773,646,2198.0,1939,1957,0,0},{720011,3000,723650,667,723752,667,723786,667,720098,5000,770270,100,720141,5000,203528,1000,723981,3000,550316,100}},
[101400]={39,{15257,2203,1116.0,1896,2363,0,0},{720011,3000,722290,2333,722426,2333,722596,2333,720098,5000,770271,100,720141,5000,203528,1000,723981,3000,550905,100}},
[101401]={38,{4388,655,598.0,1966,1957,0,0},{720011,3000,722222,2333,722392,2333,723548,2333,720098,5000,770272,100,720141,5000,203528,1000,723981,3000}},
[101402]={39,{12517,2214,1551.0,2057,2047,0,0},{720011,3000,722562,2333,722562,2333,722936,2333,720098,5000,770273,100,720141,5000,203528,1000,723981,3000,550933,100}},
[101403]={38,{3773,646,598.0,1939,1957,0,0},{720011,3000,722324,2333,722460,2333,723956,2333,720098,5000,770274,100,720141,5000,203528,1000,723981,3000,550915,100}},
[101404]={38,{3773,646,598.0,1939,1957,0,0},{720011,3000,722324,2333,722460,2333,723956,2333,720098,5000,770275,100,720141,5000,203528,1000,723981,3000}},
[101405]={39,{12424,1860,1551.0,2057,2047,0,0},{720011,3000,720098,5000,770276,100,720141,5000,723981,3000}},
[101406]={39,{4252,685,943.0,2029,2061,0,0},{720011,3000,720098,5000,720141,5000,203529,1000,723981,3000}},
[101407]={40,{12976,2315,1607.0,2150,2141,0,0},{720011,3000,722223,2333,722393,2333,723515,2333,720098,5000,770277,100,720141,5000,203529,3000,723981,3000,550747,100}},
[101408]={40,{12976,2315,1607.0,2150,2141,0,0},{720011,3000,722563,2333,722563,2333,722665,2333,720098,5000,770278,100,720141,5000,203529,3000,723981,3000}},
[101409]={40,{12705,2315,1607.0,2121,2141,0,0},{720011,3000,722359,2333,722495,2333,722903,2333,720098,5000,770279,100,720141,5000,203529,3000,723981,3000}},
[101410]={40,{232655,2848,3536.0,2150,2141,0,0},{720011,3000,722291,200000,722427,200000,722733,200000,720098,5000,770280,100,720141,5000,203529,30000,223068,30,723981,3000}},
[101411]={5,{25732,311,393.0,89,85,0,0},{}},
[101412]={5,{25732,311,393.0,89,85,0,0},{}},
[101413]={0,{144,28,28.0,28,28,0,0},{}},
[101414]={5,{309,73,71.0,227,214,0,0},{203484,100000,203484,10000},{1,26.3,64.0}},
[101415]={30,{1754,441,437.0,1503,1312,0,0},{203484,100000,203484,50000},{4,67.3,13.3}},
[101416]={30,{1767,444,667.0,1492,1323,0,0},{203484,60000}},
[101417]={0,{144,28,28.0,28,28,0,0},{}},
[101418]={20,{5689,1011,672.0,971,1017,0,0},{}},
[101419]={45,{2981,766,761.0,2570,2285,0,0},{203484,100000,203484,100000,203484,50000},{6,54.6,14.0}},
[101420]={0,{144,28,28.0,28,28,0,0},{}},
[101421]={0,{144,28,28.0,28,28,0,0},{}},
[101422]={0,{144,28,28.0,28,28,0,0},{}},
[101423]={0,{144,28,28.0,28,28,0,0},{}},
[101424]={50,{3002,893,893.0,893,893,0,0},{}},
[101425]={0,{144,28,28.0,28,28,0,0},{}},
[101426]={0,{144,28,28.0,28,28,0,0},{}},
[101427]={0,{144,28,28.0,28,28,0,0},{}},
[101428]={0,{144,28,28.0,28,28,0,0},{}},
[101429]={0,{144,28,28.0,28,28,0,0},{}},
[101430]={0,{144,28,28.0,28,28,0,0},{}},
[101431]={38,{214854,2698,3347.0,1958,1963,0,0},{720011,3000,722426,200000,723616,200000,723684,200000,720183,200000,720098,5000,720313,200000,770281,100,720025,5000,723981,3000,223696,5000}},
[101432]={40,{232662,2870,3536.0,2150,2374,0,0},{720011,3000,722324,200000,722460,200000,723582,200000,723616,200000,720098,5000,720314,200000,770282,100,720025,5000,223696,10000,723981,3000,550934,100},{109,0,0}},
[101433]={42,{249286,3107,3812.0,2490,2390,0,0},{720011,3000,723685,200000,723753,200000,723957,200000,720184,200000,720099,5000,720315,200000,770283,100,720068,200000,720026,5000,203530,200000,723982,3000,223696,15000},{109,0,0}},
[101434]={14,{937,158,183.0,461,466,0,0},{}},
[101435]={13,{2183,464,424.0,422,427,0,0},{}},
[101436]={40,{12705,2315,1607.0,2121,2141,0,0},{720011,3000,722359,2333,722495,2333,722767,2333,720098,5000,770284,100,720141,5000,203529,3000,723981,3000,550810,100},{204,59.6,41.5}},
[101437]={40,{12705,2315,1607.0,2121,2141,0,0},{720011,3000,722257,2333,723005,2333,723073,2333,720098,5000,770285,100,720141,5000,203529,3000,723981,3000}},
[101438]={1,{159,19,28.0,19,24,0,0},{}},
[101439]={14,{769,155,68.0,445,203,0,0},{}},
[101440]={15,{840,169,73.0,483,221,0,0},{}},
[101441]={1,{186,32,28.0,96,84,0,0},{}},
[101442]={28,{2567,396,401.0,1189,1191,0,0},{}},
[101443]={26,{2269,354,366.0,1064,1065,0,0},{}},
[101444]={45,{5130,938,552.0,2514,3064,0,0},{720011,3000}},
[101445]={45,{5162,924,568.0,2540,3163,0,0},{720011,3000}},
[101446]={45,{4983,915,562.0,2419,3330,0,0},{720011,3000}},
[101447]={0,{146,32,48.0,84,90,0,0},{}},
[101448]={0,{146,32,48.0,84,90,0,0},{}},
[101449]={0,{146,32,48.0,84,90,0,0},{}},
[101450]={40,{2175,642,642.0,642,642,0,0},{}},
[101451]={40,{2175,642,642.0,642,642,0,0},{}},
[101452]={37,{11255,2022,1442.0,1852,1869,0,0},{}},
[101453]={32,{3119,516,352.0,1481,1688,0,0},{720011,3000}},
[101454]={33,{3126,541,390.0,1473,1807,0,0},{720011,3000}},
[101455]={34,{3373,583,384.0,1604,1881,0,0},{720011,3000}},
[101456]={8,{1158,159,266.0,296,252,0,0},{720011,3000,722314,18277,723402,18277,723470,18277,720092,5000,770253,100,720140,5000,222651,2458,723978,3000,721902,2733},{110,25.7,41.7}},
[101457]={9,{1279,187,296.0,281,284,0,0},{720011,3000,722552,17176,722552,17176,722994,17176,720092,5222,220230,284,770254,100,720140,5000,222619,3133,723978,3000,721902,2733},{110,63.9,63.7}},
[101458]={8,{1073,224,99.0,243,110,0,0},{720011,3000,722552,18277,722552,18277,723028,18277,720092,5000,770255,100,720140,5000,222583,3133,723978,3000,723978,2733},{110,50.5,31.7}},
[101459]={9,{1195,254,152.0,217,243,0,0},{720011,3000,722212,17176,723368,17176,723436,17176,720092,5000,210254,173,770256,100,720140,5000,222451,3133,723978,3000,721902,2733},{110,36.5,36.8}},
[101460]={10,{1644,311,235.0,271,371,0,0},{720011,3000,722281,14340,722621,14340,722689,14340,720092,5000,770257,100,720140,5000,222548,3417,723978,3000,721902,2733},{110,40.8,64.0}},
[101461]={9,{1234,142,110.0,273,124,0,0},{720011,3000,722246,17176,722892,17176,722960,17176,720092,5000,770258,100,720140,5000,211332,2458,723978,3000,721902,2733},{110,33.5,84.5}},
[101462]={10,{34300,449,517.0,302,371,0,0},{720011,3000,722349,30728,722485,30728,722519,30728,720174,30728,720093,5000,724170,100000,770259,1000,720024,5000,240670,200000,211426,2167,723979,3000,721903,1967},{110,17.5,57.1}},
[101463]={40,{3677,716,242.0,2011,931,0,0},{}},
[101464]={0,{144,28,28.0,28,28,0,0},{}},
[101465]={38,{2028,598,598.0,598,598,0,0},{720311,200000,203528,1000,223072,35}},
[101466]={0,{186,32,28.0,96,84,0,0},{}},
[101467]={1,{117,30,14.0,63,84,0,0},{}},
[101468]={1,{117,30,14.0,63,84,0,0},{}},
[101469]={1,{129,21,14.0,45,72,0,0},{}},
[101470]={20,{81079,951,672.0,888,896,0,0},{720291,25000,720289,200000}},
[101471]={0,{144,28,28.0,28,28,0,0},{}},
[101472]={10,{484,131,131.0,131,131,0,0},{}},
[101473]={10,{484,131,131.0,131,131,0,0},{},{351,0,0}},
[101474]={10,{52627,628,720.0,524,157,0,0},{}},
[101475]={10,{52627,628,720.0,524,157,0,0},{}},
[101476]={40,{231995,2829,3536.0,2121,2141,0,0},{720011,3000,722257,200000,722597,200000,722631,200000,722699,200000,770139,1000,720026,200000,723982,3000,721913,320}},
[101477]={20,{103597,1011,1064.0,675,844,0,0},{720011,3000,722284,200000,722420,200000,722522,200000,720177,200000,720025,100000,222581,2875,723980,3000}},
[101478]={24,{136933,1363,1480.0,925,1207,0,0},{720011,3000,722285,1471,722421,1471,722523,1471,720094,50000,220041,5,770089,100,720141,5000,724169,10000,723980,3000,721907,832}},
[101479]={19,{4733,771,456.0,632,792,0,0},{720011,3000,722284,2769,722624,2769,722794,2769,720094,5000,220233,481,770048,100,720140,5000,720210,30000,222563,1924,723979,3000,721906,1329}},
[101480]={24,{136933,1363,1480.0,925,1207,0,0},{720011,3000,722285,1471,722421,1471,722523,1471,720094,50000,220041,5,770089,100,720141,5000,724169,10000,723980,3000,721907,832}},
[101481]={30,{9666,1451,787.0,1210,1523,0,0},{720011,3000,722284,2769,722624,2769,722794,2769,720094,5000,220233,481,770048,100,720140,5000,720210,30000,222563,1924,723979,3000,721906,1329}},
[101482]={10,{52627,628,720.0,524,157,0,0},{}},
[101483]={10,{52627,628,720.0,524,157,0,0},{}},
[101484]={10,{52627,628,720.0,524,157,0,0},{}},
[101485]={10,{52627,628,720.0,524,157,0,0},{}},
[101486]={10,{484,131,131.0,131,131,0,0},{}},
[101487]={10,{484,131,131.0,131,131,0,0},{}},
[101488]={10,{484,131,131.0,131,131,0,0},{}},
[101489]={15,{946,167,196.0,167,169,0,0},{},{351,0,0}},
[101490]={1,{71,24,28.0,84,84,0,0},{}},
[101491]={30,{1754,441,437.0,1503,1312,0,0},{203484,60000}},
[101492]={70,{1325543,14111,8143.0,6119,6557,0,0},{720011,3000,723619,200000,723687,200000,720104,5000,201112,50000,770050,100,720143,50000,723980,3000,721915,320}},
[101493]={8,{1336,182,136.0,169,250,0,0},{}},
[101494]={9,{1258,188,296.0,284,355,0,0},{}},
[101495]={8,{1073,224,99.0,243,217,0,0},{}},
[101496]={9,{1167,307,152.0,294,456,0,0},{}},
[101497]={10,{1350,268,235.0,268,451,0,0},{}},
[101498]={9,{1297,112,110.0,260,304,0,0},{}},
[101499]={0,{144,28,28.0,28,28,0,0},{}},
[101500]={52,{456714,4697,5222.0,6751,6994,0,0},{720011,3000,722191,100000,722157,100000,724180,70000,724185,85000,720100,5000,724189,200000,770299,1000,551180,1000,205701,1000,203585,80000,720142,5000,723982,3000},{107,42.0,34.8}},
[101501]={51,{299498,4504,5176.0,10697,9091,0,0},{720011,3000,722191,200000,722157,200000,724180,70000,724185,85000,720100,5000,724187,200000,770297,1000,720026,5000,720142,5000,551181,1000,205702,1000,723982,3000},{107,47.2,73.2}},
[101502]={51,{451650,4614,5187.0,6142,6161,0,0},{720011,3000,722191,200000,722157,200000,724180,70000,724185,85000,720100,5000,724188,100000,770298,1000,720026,5000,720142,5000,723982,3000},{107,36.7,55.8}},
[101503]={52,{456467,4660,7422.0,6324,6352,0,0},{720011,3000,722191,200000,722157,200000,724180,70000,724185,85000,720100,5000,724190,200000,770300,1000,720026,5000,720142,5000,723982,3000},{107,41.9,30.8}},
[101504]={48,{28173,4621,3009.0,3599,3455,0,0},{720011,3000,722157,10000,722191,20000,724180,8000,724185,15000,720100,10000,770288,100,720142,5000,723982,3000,550341,100}},
[101505]={48,{28173,4621,3009.0,3599,3455,0,0},{720011,3000,722157,10000,722191,20000,724180,8000,724185,15000,720100,10000,770289,100,720142,5000,723982,3000,550750,100}},
[101506]={48,{28173,4621,3009.0,3599,3455,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,770290,100,720142,5000,723982,3000}},
[101507]={50,{464873,11082,4913.0,6867,6458,0,0},{720011,3000,722157,200000,722191,200000,724180,70000,724185,85000,720100,5000,724186,200000,770296,1000,720026,5000,720142,5000,723982,3000},{107,47.5,81.4}},
[101508]={48,{27073,4772,1087.0,2276,2447,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,720087,7000,770291,100,720142,5000,550386,100,723982,3000,211650,1500}},
[101509]={48,{29814,4503,2097.0,3006,2995,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,720087,7000,770292,100,720142,5000,550861,100,723982,3000,211651,10000}},
[101510]={101,{270231421,399800,51288.0,1056596,1055236,0,0},{}},
[101511]={48,{22826,3972,793.0,3819,1302,0,0},{720011,3000,722191,10000,722157,2000,724180,8000,724185,15000,720100,10000,724249,7000,770293,100,720142,5000,723982,3000,211647,1500}},
[101512]={48,{32158,4218,2097.0,4583,2995,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,724249,7000,770294,100,720142,5000,550885,100,723982,3000,211647,1500}},
[101513]={0,{150,30,28.0,90,84,0,0},{}},
[101514]={0,{144,28,28.0,28,28,0,0},{},{107,44.2,54.6}},
[101515]={48,{15683,3197,2097.0,2970,2995,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,770286,100,720142,5000,723982,3000}},
[101516]={48,{15683,3197,2097.0,2970,2995,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,770287,100,720142,5000,723982,3000}},
[101517]={48,{2810,755,317.0,1398,1302,0,0},{}},
[101518]={48,{3797,996,839.0,1572,2995,0,0},{}},
[101519]={0,{144,28,28.0,28,28,0,0},{},{107,40.3,57.4}},
[101520]={0,{144,28,28.0,28,28,0,0},{},{107,46.0,74.7}},
[101521]={0,{144,28,28.0,28,28,0,0},{},{107,45.7,73.3}},
[101522]={48,{5279,990,839.0,990,998,0,0},{}},
[101523]={50,{3481,903,893.0,2711,2679,0,0},{},{107,44.1,36.3}},
[101524]={15,{483,165,141.0,414,436,0,0},{}},
[101525]={15,{483,165,141.0,414,436,0,0},{}},
[101526]={15,{483,165,141.0,414,436,0,0},{}},
[101527]={15,{483,165,141.0,414,436,0,0},{}},
[101528]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[101529]={24,{1995,315,332.0,946,947,0,0},{720011,3000,722286,1379,722422,1379,723714,1379,720095,5000,203347,70000,720141,5000,222454,745,723980,3000}},
[101530]={50,{324820,2577,4913.0,3234,3286,0,0},{}},
[101531]={52,{700622,8505,5763.0,10027,10114,0,0},{720011,3000,722191,80000,722157,80000,724180,70000,724185,70000,720100,50000,721245,200000,770323,1000,551179,1000,205700,1000,720142,5000,723982,3000}},
[101532]={52,{750535,4674,5763.0,10027,10114,0,0},{720011,3000,722191,80000,722157,80000,724180,70000,724185,70000,720100,50000,724412,200000,770324,1000,203618,60000,720142,5000,723982,3000}},
[101533]={52,{750535,4674,5763.0,10027,10114,0,0},{720011,3000,722191,80000,722157,80000,724180,70000,724185,70000,720100,50000,724414,200000,770325,1000,720142,5000,723982,3000},{108,54.2,11.4}},
[101534]={52,{750712,4660,5222.0,10027,10056,0,0},{720011,3000,722191,80000,722157,80000,724180,70000,724185,70000,724413,200000,203550,1000000,770326,1000,720100,50000,720142,5000,723982,3000},{108,34.3,18.4}},
[101535]={53,{901718,6023,5382.0,11508,11537,0,0},{720011,30000,722191,80000,722157,80000,724180,70000,724185,70000,720100,50000,724415,200000,770327,1000,724416,200000,240701,200000,724518,1000,720142,5000,723982,3000},{108,45.5,16.8}},
[101536]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[101537]={2,{158,34,15.0,111,109,0,0},{720011,5000,720021,5000}},
[101538]={2,{158,34,15.0,111,109,0,0},{720011,5000,720021,5000}},
[101539]={1,{142,24,28.0,84,84,0,0},{720011,5000,720021,5000}},
[101540]={48,{5667,996,839.0,2988,2995,0,0},{}},
[101541]={48,{19227,3197,2097.0,2970,2995,0,0},{720011,5000,722191,2000,722157,3500,720100,1000,770514,5000,201997,100000,551186,1000,205698,1000,720142,5000,723982,3000},{3,34.8,53.0}},
[101542]={52,{59282,4720,2373.0,5042,5070,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,720142,5000,723982,3000},{108,38.0,32.5}},
[101543]={52,{79480,4875,2373.0,5469,5498,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,25000,720142,5000,723982,3000},{108,34.6,35.9}},
[101544]={51,{62380,4247,2302.0,5001,5029,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,720142,5000,723982,3000},{108,41.7,76.4}},
[101545]={1,{2457,73,154.0,59,60,0,0},{}},
[101546]={1,{2457,73,154.0,59,60,0,0},{}},
[101547]={1,{2457,73,154.0,59,60,0,0},{}},
[101548]={1,{2457,73,154.0,59,60,0,0},{}},
[101549]={1,{2457,73,154.0,59,60,0,0},{}},
[101550]={1,{2457,73,154.0,59,60,0,0},{}},
[101551]={1,{139,21,28.0,63,60,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,202945,25000,222605,400,723980,3000,721912,320}},
[101552]={1,{139,21,28.0,63,60,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,202945,25000,222605,400,723980,3000,721912,320}},
[101553]={20,{50335,-109,1650.0,726,742,0,0},{}},
[101554]={20,{276843,-109,1650.0,3957,742,0,0},{}},
[101555]={1,{129,21,14.0,45,72,0,0},{}},
[101556]={1,{129,21,14.0,45,72,0,0},{}},
[101557]={4,{232,34,60.0,111,135,0,0},{}},
[101558]={5,{628,155,178.0,138,163,0,0},{}},
[101559]={6,{333,52,82.0,166,191,0,0},{}},
[101560]={47,{15635,924,2032.0,951,959,0,0},{720011,5000}},
[101561]={0,{144,28,28.0,28,28,0,0},{}},
[101562]={46,{5352,901,787.0,2739,2763,0,0},{770515,100},{3,36.7,48.8}},
[101563]={46,{5352,901,787.0,2739,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770516,100,720142,5000,723982,3000}},
[101564]={46,{5352,901,787.0,2739,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770517,100,720142,5000,723982,3000}},
[101565]={48,{2823,839,839.0,839,839,0,0},{720011,5000,720086,80000}},
[101566]={46,{5321,918,787.0,2756,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770503,100,720142,5000,723982,3000},{3,22.7,86.9}},
[101567]={46,{5321,918,787.0,2756,2763,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770504,100,720142,5000,723982,3000},{3,22.7,86.8}},
[101568]={0,{144,28,28.0,28,28,0,0},{}},
[101569]={0,{144,28,28.0,28,28,0,0},{}},
[101570]={45,{6015,865,761.0,2628,2651,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770491,100,720142,5000,723982,3000},{3,23.8,79.5}},
[101571]={45,{6015,865,761.0,2628,2651,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770492,100,202005,65000,720142,5000,723982,3000},{3,23.8,80.0}},
[101572]={0,{150,30,28.0,90,84,0,0},{}},
[101573]={46,{5321,918,787.0,2756,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770525,100,720142,5000,723982,3000},{3,20.6,86.0}},
[101574]={46,{5160,932,2566.0,2516,3184,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770526,100,720142,5000,723982,3000},{3,21.4,84.1}},
[101575]={49,{19809,3359,2164.0,3109,3117,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,724269,500,770520,100,720142,5000,723982,3000}},
[101576]={1,{144,28,28.0,28,28,0,0},{},{3,42.4,52.9}},
[101577]={1,{144,28,28.0,28,28,0,0},{}},
[101578]={47,{6411,939,812.0,2853,2877,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770498,100,201995,65000,720142,5000,723982,3000},{3,54.0,49.8}},
[101579]={48,{19188,4998,7097.0,2988,2995,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,724269,500,770510,5000,201994,65000,724712,10000,724519,1000,720142,5000,724710,5000,723982,3000},{3,75.5,37.1}},
[101580]={45,{5575,887,761.0,2661,2651,0,0},{720011,3000,722191,10000,722157,2000,724180,8000,724185,15000,720100,10000,724249,7000,770293,100,720142,5000,723982,3000,211647,1500}},
[101581]={45,{5154,881,761.0,2645,2651,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770527,100,720142,5000,723982,3000},{3,20.9,85.4}},
[101582]={47,{6513,962,812.0,2853,2877,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770523,100,720142,5000,723982,3000},{3,31.2,34.5}},
[101583]={47,{6513,962,812.0,2853,2877,0,0},{720011,3000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770524,100,720142,5000,723982,3000},{3,49.4,38.1}},
[101584]={53,{850718,5519,5382.0,10010,10040,0,0},{720011,3000,724180,10000,724185,20000,724470,200000,724473,200000,770649,1000,720100,10000,240699,200000,720142,5000,723982,3000},{114,77.8,90.2}},
[101585]={38,{215070,2603,3292.0,1966,1957,0,0},{720011,3000,722152,30000,722186,50000,724179,10000,724184,20000,720097,10000,724257,200000,770531,1000,551173,1000,205692,1000,720141,5000,723981,3000},{113,53.9,52.7}},
[101586]={38,{214730,2594,3292.0,3761,3753,0,0},{720011,3000,722152,30000,722186,50000,724179,10000,724184,20000,720097,10000,724258,200000,770532,1000,240681,200000,203870,200000,723981,10000}},
[101587]={38,{214730,2594,3292.0,1952,1957,0,0},{720011,3000,722152,30000,722186,50000,724179,10000,724184,20000,720097,10000,724259,200000,770533,1000,551174,1000,205693,1000,203879,200000,723981,10000},{113,30.8,75.5}},
[101588]={38,{214749,2567,3292.0,1939,1957,0,0},{720011,3000,722152,30000,722186,50000,724179,10000,724181,20000,720097,10000,724417,200000,770535,1000,720142,5000,723982,3000},{113,17.0,60.3}},
[101589]={0,{144,28,28.0,28,28,0,0},{}},
[101590]={30,{8120,1440,1334.0,1312,1336,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724181,1500,720097,5000,770536,100,720142,5000,723982,3000}},
[101591]={45,{15038,2875,2314.0,2628,2668,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000},{114,71.8,45.0}},
[101592]={30,{8120,1440,1334.0,1312,1336,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770537,100,720142,5000,723982,3000}},
[101593]={45,{15038,2875,2314.0,2628,2668,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,10000,720142,5000,723982,3000},{114,69.9,75.6}},
[101594]={51,{70046,4101,2302.0,4725,4753,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,10000,720142,5000,723982,3000},{114,77.5,78.6}},
[101595]={52,{80067,4320,2373.0,5013,5042,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,10000,720142,5000,723982,3000},{114,80.9,82.5}},
[101596]={50,{50142,4006,2233.0,4287,4314,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,10000,720142,5000,723982,3000},{114,73.5,73.5}},
[101597]={52,{70083,4320,2373.0,5127,5156,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,10000,720142,5000,723982,3000},{114,49.9,33.4}},
[101598]={38,{14842,2123,1820.0,1939,1971,0,0},{720011,5000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770538,100,720141,3000,723982,3000},{113,26.3,55.6}},
[101599]={50,{3242,882,893.0,2679,2679,0,0},{}},
[101600]={35,{10250,1812,1338.0,1685,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770539,100,720142,5000,723982,3000}},
[101601]={35,{10250,1812,1338.0,1685,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770540,100,720142,5000,723982,3000}},
[101602]={50,{3242,882,893.0,2679,2679,0,0},{}},
[101603]={50,{351481,7189,4913.0,4793,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,724250,200000,720142,5000,203792,200000,723982,3000}},
[101604]={1,{129,21,14.0,45,72,0,0},{}},
[101605]={51,{335366,8228,5176.0,9255,9091,0,0},{720011,3000,722191,200000,722157,200000,724180,70000,724185,85000,720100,5000,724187,200000,770297,1000,720026,5000,720142,5000,723982,3000}},
[101606]={30,{9595,1446,787.0,1224,1523,0,0},{720011,3000,722286,1305,722422,1305,722694,1305,720096,5000,770534,100,203347,70000,720141,5000,551172,1000,205691,1000,222497,745,723980,3000}},
[101607]={50,{6142,1095,935.0,3314,3271,0,0},{}},
[101608]={51,{10031,1121,921.0,3363,3371,0,0},{}},
[101609]={50,{324782,4527,4913.0,3431,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,724250,200000,720142,5000,203793,200000,723982,10000}},
[101610]={20,{5177,1037,672.0,780,734,0,0},{720011,3000,722182,10000,722148,20000,724178,8000,724183,15000,720095,10000,720141,5000,203786,200000,7232980,3000}},
[101611]={20,{5084,818,822.0,726,734,0,0},{720011,3000,722183,10000,722149,20000,724178,8000,724183,15000,720095,10000,720141,5000,203786,200000,723980,3000}},
[101612]={10,{2549,467,327.0,515,318,0,0},{720011,3000,722179,10000,722145,20000,724177,8000,724182,15000,720093,10000,720140,5000,203786,200000,723979,3000}},
[101613]={15,{4599,697,716.0,668,507,0,0},{720011,3000,722181,10000,722147,20000,724177,8000,724182,15000,720094,10000,720140,5000,203787,200000,723979,3000}},
[101614]={25,{142587,1606,1920.0,1100,335,0,0},{720011,3000,722184,10000,722150,20000,724178,8000,724183,15000,720095,10000,724251,200000,720141,5000,203791,200000,723980,3000}},
[101615]={20,{5355,854,672.0,876,734,0,0},{720011,3000,722183,10000,722149,20000,724178,8000,724183,15000,720095,10000,720141,5000,203788,200000,202013,200000,723980,3000}},
[101616]={20,{5545,854,672.0,996,734,0,0},{720011,3000,722183,10000,722149,20000,724178,8000,724183,15000,720095,10000,720141,5000,203788,200000,202014,200000,723980,3000}},
[101617]={20,{5355,854,672.0,876,734,0,0},{720011,3000,722183,10000,722149,20000,724178,8000,724183,15000,720095,10000,720141,5000,203788,200000,202015,200000,723980,3000}},
[101618]={20,{5355,854,672.0,876,734,0,0},{720011,3000,722183,10000,722149,20000,724178,8000,724183,15000,720095,10000,720141,5000,203788,200000,202016,200000,723980,3000}},
[101619]={33,{10936,2241,1237.0,1541,1544,0,0},{720011,3000,722186,10000,722152,20000,724179,8000,724184,15000,720097,10000,720141,5000,203789,200000,723981,3000}},
[101620]={32,{10446,1978,1188.0,1466,1469,0,0},{720011,3000,722186,10000,722152,20000,724179,8000,724184,15000,720097,10000,720141,5000,203789,200000,723981,3000}},
[101621]={34,{11439,2170,1287.0,1618,1622,0,0},{720011,3000,722186,10000,722152,20000,724179,8000,724184,15000,720097,10000,720141,5000,203790,200000,723981,3000}},
[101622]={31,{9969,1887,1140.0,1393,1396,0,0},{720011,3000,722186,10000,722152,20000,724179,8000,724184,15000,720097,10000,720141,50000,203790,200000,723981,3000}},
[101623]={50,{351481,7189,4913.0,4793,3242,0,0},{}},
[101624]={50,{351481,7189,4913.0,4793,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,724250,200000,720142,5000,203792,200000,723982,3000}},
[101625]={50,{351481,7189,4913.0,4793,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,724250,200000,720142,5000,203792,200000,723982,3000}},
[101626]={50,{351481,7189,4913.0,4793,3242,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,724250,200000,720142,5000,203792,200000,723982,3000}},
[101627]={1,{32,-6,28.0,34,60,0,0},{}},
[101628]={46,{5321,918,787.0,2756,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770503,100,720142,5000,723982,3000}},
[101629]={46,{5321,918,787.0,2756,2763,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770504,100,720142,5000,723982,3000}},
[101630]={30,{2905,507,437.0,477,442,0,0},{}},
[101631]={48,{19188,3228,2097.0,2988,2995,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,724269,500,201994,65000,724712,10000,724519,1000,720142,5000,724710,5000,723982,3000},{3,74.9,41.8}},
[101632]={1,{186,32,28.0,96,84,0,0},{}},
[101633]={48,{16569,3197,2097.0,2970,2995,0,0},{720011,3000,720100,10000,720142,5000,723982,3000},{11,16.5,44.2}},
[101634]={48,{16569,3197,2097.0,2970,2995,0,0},{}},
[101635]={20,{5355,854,672.0,876,734,0,0},{720011,3000,722183,10000,722149,20000,724178,8000,724183,15000,720095,10000,720141,5000,203788,200000,202017,200000,723980,3000}},
[101636]={20,{1656,247,269.0,742,734,0,0},{}},
[101637]={20,{5273,824,483.0,696,844,0,0},{}},
[101638]={20,{4270,796,672.0,742,734,0,0},{}},
[101639]={25,{6143,1089,873.0,1013,1005,0,0},{}},
[101640]={25,{2325,337,349.0,1013,1005,0,0},{}},
[101641]={25,{7405,1113,628.0,944,1159,0,0},{}},
[101642]={25,{6143,1089,873.0,1013,1005,0,0},{}},
[101643]={30,{8350,1434,1094.0,1334,1326,0,0},{}},
[101644]={30,{3108,444,437.0,1334,1326,0,0},{720011,3000,722426,20000,722664,20000,723412,20000,720097,100000,720141,10000}},
[101645]={30,{9925,1451,787.0,1237,1523,0,0},{720011,3000,722460,20000,722494,20000,723446,20000,720097,100000,720141,5000,723981,20000}},
[101646]={30,{8350,1434,1094.0,1334,1326,0,0},{720011,3000,722222,20000,722392,20000,723548,20000,720097,100000,720141,5000,723981,20000}},
[101647]={35,{10540,1840,1338.0,1710,1702,0,0},{720011,3000,720309,100000,723446,100000,723514,100000,720098,100000,720141,5000,723981,3000}},
[101648]={35,{3875,570,535.0,1710,1702,0,0},{720011,3000,722428,20000,722666,20000,723414,20000,720097,100000,720141,10000,723981,20000,721911,1535}},
[101649]={35,{12710,1844,962.0,1580,1963,0,0},{720011,3000,722462,20000,722496,20000,723448,20000,720098,100000,720141,5000,723981,20000}},
[101650]={35,{10540,1840,1338.0,1710,1702,0,0},{720011,3000,722224,20000,722394,20000,723550,20000,720097,100000,720141,5000,723981,20000}},
[101651]={40,{12976,2315,1607.0,2150,2141,0,0},{720011,3000,720318,100000,723448,100000,723516,100000,720099,100000,720142,5000,723982,3000}},
[101652]={40,{4727,716,642.0,2150,2141,0,0},{720011,3000,722429,20000,722667,20000,723415,20000,720099,100000,720142,10000,723982,20000,721913,1535}},
[101653]={40,{15880,2299,1156.0,1978,2464,0,0},{720011,3000,722463,20000,722497,20000,723449,20000,720099,100000,720142,5000,723982,20000}},
[101654]={40,{12976,2315,1607.0,2150,2141,0,0},{720011,3000,722225,20000,722395,20000,723551,20000,720099,100000,720142,5000,723982,20000}},
[101655]={45,{15412,2867,1904.0,2661,2651,0,0},{720011,3000,720341,100000,723449,100000,723517,100000,720099,100000,720142,5000,723982,3000}},
[101656]={50,{173480,3573,4913.0,2679,2679,0,0},{}},
[101657]={48,{16569,3197,2097.0,2970,2995,0,0},{}},
[101658]={50,{17204,3483,2233.0,3215,3242,0,0},{}},
[101659]={50,{17204,3483,2233.0,3215,3242,0,0},{}},
[101660]={50,{17204,3483,2233.0,3215,3242,0,0},{}},
[101661]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[101662]={2,{183,42,63.0,115,121,0,0},{203855,12000}},
[101663]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[101664]={35,{134825,2256,2943.0,1698,1702,0,0},{720011,0,722152,0,722186,0,724179,0,724181,0,720097,0,720141,0,723981,0}},
[101665]={35,{134825,2256,2943.0,1698,1702,0,0},{720011,0,722152,0,722186,0,724179,0,724184,0,720097,0,720142,0,723982,0}},
[101666]={35,{134825,2256,2943.0,1698,1702,0,0},{720011,0,722152,0,722186,0,724179,0,724184,0,720097,0,720142,0,723982,0}},
[101667]={35,{134825,2256,2943.0,1698,1702,0,0},{720011,0,722152,0,722186,0,724179,0,724184,0,720097,0,720142,0,723982,0}},
[101668]={14,{927,158,282.0,461,473,0,0},{}},
[101669]={15,{2667,554,605.0,501,514,0,0},{}},
[101670]={30,{4561,1440,1334.0,1312,1323,0,0},{},{4,55.8,89.4}},
[101671]={44,{142869,2976,4479.0,2211,2225,0,0},{}},
[101672]={58,{106241,1457,1132.0,4372,4382,0,0},{}},
[101673]={44,{13626,2443,1843.0,751,759,0,0},{}},
[101674]={44,{2486,737,737.0,737,737,0,0},{}},
[101675]={28,{1486,408,612.0,1203,1213,0,0},{}},
[101676]={16,{747,210,210.0,210,210,0,0},{}},
[101677]={37,{5897,1875,1442.0,1731,1731,0,0},{}},
[101678]={33,{2695,513,186.0,1462,671,0,0},{}},
[101679]={34,{1752,514,514.0,514,514,0,0},{}},
[101680]={50,{255720,10782,4913.0,3253,3242,0,0},{}},
[101681]={52,{253182,4660,7422.0,4045,4073,0,0},{}},
[101682]={36,{1887,555,555.0,555,555,0,0},{}},
[101683]={44,{2486,737,737.0,737,737,0,0},{}},
[101684]={42,{3838,776,260.0,2210,1015,0,0},{}},
[101685]={100,{34068362,247904,50875.0,200728,200821,0,0},{}},
[101686]={50,{2765,1083,642.0,1415,3741,0,0},{}},
[101687]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770541,100,720142,5000,723982,3000}},
[101688]={35,{10235,1833,1338.0,1293,1300,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770542,100,720142,5000,723982,3000}},
[101689]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770543,100,720142,5000,723982,3000}},
[101690]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770544,100,720142,5000,723982,3000}},
[101691]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770545,100,720142,5000,723982,3000}},
[101692]={35,{15828,1833,1338.0,3315,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770546,100,720142,5000,723982,3000}},
[101693]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,5000,770547,100,720142,5000,723982,3000}},
[101694]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,1500,724184,3500,720097,10000,770548,100,720142,5000,723982,3000}},
[101695]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,10000,770549,100,720142,5000,72982,3000}},
[101696]={30,{2054,441,437.0,1058,1063,0,0},{720011,3000,722152,4000,722186,6000,724179,1600,724184,2000,720097,1000,720142,5000,723982,3000}},
[101697]={48,{16569,3197,2097.0,3977,2995,0,0},{}},
[101698]={48,{16569,3197,2097.0,3977,2995,0,0},{}},
[101699]={55,{562698,91,1345.0,3995,4319,0,0},{}},
[101700]={55,{550234,223,981.0,7377,2667,0,0},{}},
[101701]={55,{549800,201,2595.0,5513,2803,0,0},{}},
[101702]={55,{813903,303,1345.0,5170,2794,0,0},{}},
[101703]={3,{398,163,123.0,154,147,0,0},{204215,200000,201257,30000,200055,5000,200004,1000}},
[101704]={1,{275,0,20.0,84,81,0,0},{}},
[101705]={1,{288,-1,20.0,93,81,0,0},{}},
[101706]={1,{288,-1,20.0,93,81,0,0},{}},
[101707]={30,{2054,441,437.0,1058,1063,0,0},{720011,3000,722152,4000,722186,6000,724179,1600,724184,2000,720097,1000,770551,100,720142,5000,723982,3000}},
[101708]={30,{2054,441,437.0,1058,1063,0,0},{720011,3000,722152,4000,722186,6000,724179,1600,724184,2000,720097,1000,770552,100,720142,5000,723982,3000}},
[101709]={50,{6026,1078,893.0,3234,3242,0,0},{}},
[101710]={20,{1509,237,269.0,726,734,0,0},{720289,5000}},
[101711]={30,{2704,430,437.0,1312,1326,0,0},{720289,5000}},
[101712]={10,{613,100,131.0,314,318,0,0},{720289,5000}},
[101713]={50,{6063,1059,893.0,3215,3242,0,0},{720289,5000}},
[101714]={40,{4405,719,642.0,2121,2141,0,0},{720289,5000}},
[101715]={10,{14186,417,327.0,393,396,0,0},{720291,25000,720289,200000}},
[101716]={50,{697403,4904,2233.0,4555,4582,0,0},{720291,25000,720289,200000}},
[101717]={30,{295062,2114,1094.0,1969,1982,0,0},{720291,25000,720289,100000}},
[101718]={40,{438312,4356,1607.0,3086,3105,0,0},{720291,25000,720289,200000}},
[101719]={21,{1623,253,284.0,776,785,0,0},{720289,1000}},
[101720]={21,{1623,253,284.0,776,785,0,0},{720011,3000,722217,1733,722387,1733,722761,1733,720095,5000,770065,100,201258,70000,720141,5000,222621,1322,723980,3000,721907,832}},
[101721]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,667,723516,667,723550,667,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100}},
[101722]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,667,723516,667,723550,667,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100}},
[101723]={0,{144,28,28.0,28,28,0,0},{}},
[101724]={0,{144,28,28.0,28,28,0,0},{}},
[101725]={30,{2054,441,437.0,1058,1063,0,0},{720011,3000,722152,4000,722186,6000,724179,1600,724184,2000,720097,1000,770550,100,720142,5000,723982,3000}},
[101726]={30,{4561,1440,1334.0,1312,1336,0,0},{}},
[101727]={30,{4561,1440,1334.0,1312,1336,0,0},{}},
[101728]={30,{4561,1440,1334.0,1312,1336,0,0},{}},
[101729]={2,{82,6,96.0,60,61,0,0},{}},
[101730]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,667,723516,667,723550,667,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100}},
[101731]={10,{518,106,49.0,305,138,0,0},{}},
[101732]={18,{1296,213,239.0,639,639,0,0},{}},
[101733]={28,{1891,454,207.0,899,981,0,0},{}},
[101734]={51,{6211,1121,921.0,3363,3371,0,0},{}},
[101735]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770594,100,204445,30000,720142,5000,723982,3000},{7,48.8,14.9}},
[101736]={1,{-1,17,28.0,59,60,0,0},{},{7,40.9,31.3}},
[101737]={1,{-12,17,28.0,59,60,0,0},{770623,100},{7,40.7,36.7}},
[101738]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770579,100,204435,30000,720142,5000,723982,3000},{7,52.2,84.4}},
[101739]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770580,100,204434,30000,720142,5000,723982,3000},{7,54.6,82.6}},
[101740]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770567,100,720142,5000,723982,3000},{7,50.9,71.1}},
[101741]={50,{5928,1087,642.0,2949,3741,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770568,100,720142,5000,723982,3000},{7,32.0,89.6}},
[101742]={51,{18174,3633,2302.0,3363,3371,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770569,5000,720142,5000,723982,3000},{7,55.2,75.7}},
[101743]={50,{5928,1087,642.0,2949,3741,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770571,100,204448,30000,720142,5000,723982,3000},{7,50.0,62.6}},
[101744]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770572,100,204448,30000,720142,5000,723982,3000},{7,52.2,62.9}},
[101745]={51,{18174,3633,2302.0,3363,3371,0,0},{720011,5000,722191,5000,722157,4500,724180,3500,724185,4000,720100,1000,724269,5000,770573,5000,204448,50000,720142,5000,723982,3000},{7,56.1,60.1}},
[101746]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770575,100,204438,30000,720142,5000,723982,3000},{7,71.9,59.6}},
[101747]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770576,100,204438,30000,720142,5000,723982,3000},{7,70.1,60.4}},
[101748]={50,{5928,1087,642.0,2949,3741,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770577,100,204438,30000,720142,5000,723982,3000},{7,73.9,57.6}},
[101749]={51,{18174,3633,2302.0,3363,3371,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770578,5000,204438,50000,720142,5000,723982,3000},{7,71.8,59.2}},
[101750]={50,{4999,1084,522.0,3046,1429,0,0},{}},
[101751]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770587,100,720142,5000,723982,3000},{7,62.9,30.9}},
[101752]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770588,100,720142,5000,723982,3000},{7,59.6,33.1}},
[101753]={52,{6440,1145,949.0,3475,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770595,100,204445,30000,720142,5000,723982,3000},{7,49.5,15.8}},
[101754]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770600,100,720142,5000,723982,3000},{7,50.6,36.9}},
[101755]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770601,100,720142,5000,723982,3000},{7,45.9,31.8}},
[101756]={52,{6400,1165,949.0,3495,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770602,100,720142,5000,723982,3000},{7,43.8,31.3}},
[101757]={52,{18742,3776,2373.0,3495,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770603,100,720142,5000,723982,3000},{7,44.2,35.1}},
[101758]={52,{18742,3776,2373.0,3495,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,3500,724185,4000,720100,10000,724269,5000,770604,5000,720142,5000,723982,3000},{7,45.3,38.9}},
[101759]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770605,100,720142,5000,723982,3000},{7,35.4,18.1}},
[101760]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770606,100,204444,30000,720142,5000,723982,3000},{7,35.1,18.2}},
[101761]={52,{6400,1165,949.0,3495,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770607,100,204444,30000,720142,5000,723982,3000},{7,32.9,26.7}},
[101762]={52,{18742,3776,2373.0,3495,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770608,100,204444,30000,720142,5000,723982,3000},{7,35.0,21.1}},
[101763]={52,{18742,3776,2373.0,3495,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770609,5000,204444,50000,720142,5000,723982,3000},{7,35.1,23.1}},
[101764]={50,{5928,1087,642.0,2949,3741,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770584,100,720142,5000,723982,3000},{7,72.2,30.9}},
[101765]={51,{5532,1125,662.0,3036,3902,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770585,100,720142,5000,723982,3000},{7,75.9,26.6}},
[101766]={51,{5786,1114,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770586,100,720142,5000,723982,3000},{7,76.6,22.2}},
[101767]={99,{2685044,33553,31766.0,16105,16200,0,0},{720011,0,722191,0,722157,0,724180,0,724185,0,720100,0,724269,0,720142,0,723982,0}},
[101768]={52,{18783,3741,2373.0,3475,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770596,100,204445,30000,720142,5000,723982,3000},{7,49.3,14.0}},
[101769]={52,{18742,3776,2373.0,3495,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770611,100,206013,300000,720142,5000,723982,3000},{7,20.9,43.1}},
[101770]={52,{18742,3776,2373.0,3495,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770612,100,206013,300000,720142,5000,723982,3000},{7,22.1,42.6}},
[101771]={53,{19322,3923,2446.0,3631,3640,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770613,100,206013,300000,720142,5000,723982,3000},{7,23.2,40.8}},
[101772]={53,{400174,4828,5382.0,3631,3640,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770614,5000,206015,300000,720142,5000,723982,3000}},
[101773]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770581,100,720142,5000,723982,3000},{7,80.8,54.1}},
[101774]={53,{19322,3923,2446.0,3631,3640,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,720142,5000,723982,3000}},
[101775]={52,{6341,1172,683.0,3175,4045,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770616,100,720142,5000,723982,3000},{7,18.1,38.8}},
[101776]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770557,100,204436,30000,720142,5000,723982,3000},{7,39.3,81.8}},
[101777]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770558,100,204439,30000,720142,5000,723982,3000},{7,39.0,81.5}},
[101778]={51,{6270,1127,1397.0,3343,3391,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770559,100,720142,5000,723982,3000},{7,43.2,85.3}},
[101779]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,7241852,1500,720100,1000,770560,100,204437,30000,720142,5000,723982,3000},{7,39.5,83.8}},
[101780]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1500,724185,1000,720100,1000,770553,100,204440,30000,720142,5000,723982,3000},{7,49.4,53.2}},
[101781]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1500,724185,1000,720100,1000,770554,100,720142,5000,723982,3000},{7,50.9,51.0}},
[101782]={50,{30085,3483,2233.0,3215,3242,0,0},{}},
[101783]={3,{360,135,123.0,117,147,0,0},{}},
[101784]={51,{335160,4432,5066.0,3343,3371,0,0},{720011,5000,722191,20000,722157,30000,724180,8000,724185,10000,720100,10000,724269,5000,770561,5000,240703,200000,720142,5000,723982,3000}},
[101785]={50,{3114,907,937.0,935,939,0,0},{}},
[101786]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770589,100,204442,30000,720142,5000,723982,3000},{7,49.3,25.0}},
[101787]={0,{150,30,28.0,90,84,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770590,100,720142,5000,723982,3000}},
[101788]={0,{127,16,28.0,58,59,0,0},{770597,5000,204445,30000}},
[101789]={47,{10741,956,812.0,3221,2877,0,0},{720011,3000,204411,30000,720099,5000,770528,100,724520,30000,211296,1400,723982,3000,550321,100}},
[101790]={49,{25065,3327,2164.0,3507,3533,0,0},{720011,3000,204412,30000,720100,50000,770529,100,720142,5000,724520,30000,222595,400,723982,3000,550937,100}},
[101791]={50,{401295,4262,4913.0,4555,4582,0,0},{720011,3000,722191,10000,722157,10000,724180,6000,724185,6000,720100,50000,724267,200000,770530,100,720142,5000,724520,30000,222595,400,723982,3000,550937,100}},
[101792]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770598,100,204443,30000,720142,5000,723982,3000},{7,22.3,28.6}},
[101793]={52,{6461,1171,1440.0,3475,3524,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770599,100,720142,5000,723982,3000},{7,25.4,31.7}},
[101794]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770591,100,204441,30000,720142,5000,723982,3000},{7,49.5,25.9}},
[101795]={52,{6461,1171,1440.0,3475,3524,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770618,100,720142,5000,723982,3000},{7,22.9,51.5}},
[101796]={52,{6440,1145,949.0,3475,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770619,100,720142,5000,723982,3000},{7,24.0,53.7}},
[101797]={47,{5938,463,812.0,951,959,0,0},{}},
[101798]={47,{5938,463,812.0,951,959,0,0},{}},
[101799]={47,{44899,1770,2032.0,951,959,0,0},{}},
[101800]={47,{44899,1770,2032.0,951,959,0,0},{}},
[101801]={52,{18304,3765,2373.0,3475,3503,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770078,100,720142,5000,723982,3000},{7,13.1,40.5}},
[101802]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770625,100,720142,5000,723982,3000},{7,39.8,19.3}},
[101803]={1,{142,24,28.0,84,84,0,0},{}},
[101804]={1,{142,24,28.0,84,84,0,0},{}},
[101805]={1,{142,24,28.0,84,84,0,0},{}},
[101806]={1,{142,24,28.0,84,84,0,0},{}},
[101807]={1,{142,24,28.0,84,84,0,0},{}},
[101808]={1,{142,24,28.0,84,84,0,0},{}},
[101809]={1,{142,24,28.0,84,84,0,0},{}},
[101810]={1,{142,24,28.0,84,84,0,0},{}},
[101811]={1,{142,24,28.0,84,84,0,0},{}},
[101812]={1,{142,24,28.0,84,84,0,0},{}},
[101813]={1,{142,24,28.0,84,84,0,0},{}},
[101814]={1,{142,24,28.0,84,84,0,0},{}},
[101815]={1,{142,24,28.0,84,84,0,0},{}},
[101816]={1,{142,24,28.0,84,84,0,0},{}},
[101817]={1,{142,24,28.0,84,84,0,0},{}},
[101818]={1,{142,24,28.0,84,84,0,0},{}},
[101819]={1,{142,24,28.0,84,84,0,0},{}},
[101820]={1,{117,30,14.0,63,84,0,0},{}},
[101821]={1,{117,30,14.0,63,84,0,0},{}},
[101822]={1,{117,30,14.0,63,84,0,0},{}},
[101823]={1,{117,15,28.0,46,60,0,0},{}},
[101824]={1,{117,30,14.0,63,84,0,0},{}},
[101825]={1,{117,30,14.0,63,84,0,0},{}},
[101826]={1,{288,-1,20.0,93,81,0,0},{}},
[101827]={35,{1794,457,535.0,385,390,0,0},{720011,3000,722152,18000,722186,15000,724179,13000,724184,12000,720097,200000,720141,5000,724192,15000,202916,5000,723981,3000},{113,17.6,83.4}},
[101828]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770570,100,720142,5000,723982,3000},{7,40.6,63.4}},
[101829]={35,{10235,1833,1338.0,1698,1702,0,0},{720011,3000,722152,5000,722186,4000,724179,3500,724184,1500,720097,1000,720142,5000,723982,3000}},
[101830]={46,{5370,924,1195.0,2739,2780,0,0},{}},
[101831]={0,{142,24,28.0,84,84,0,0},{}},
[101832]={0,{1172,70,28.0,280,331,0,0},{}},
[101833]={0,{142,24,28.0,84,84,0,0},{}},
[101834]={0,{142,24,28.0,84,84,0,0},{}},
[101835]={50,{5928,1087,642.0,2949,3741,0,0},{}},
[101836]={50,{5928,1087,642.0,2949,3741,0,0},{}},
[101837]={51,{6211,1148,921.0,3446,3454,0,0},{}},
[101838]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770582,100,720142,5000,723982,3000},{7,51.6,85.2}},
[101839]={0,{144,28,28.0,28,28,0,0},{}},
[101840]={1,{5139,28,28.0,2026,28,0,0},{}},
[101841]={51,{6394,1164,923.0,3479,3459,0,0},{},{7,69.2,43.0}},
[101842]={20,{940,269,269.0,269,269,0,0},{201255,200000}},
[101843]={15,{3003,351,491.0,167,169,0,0},{}},
[101844]={50,{1912905,3501,4913.0,172668,81477,0,0},{}},
[101845]={52,{18783,3741,2373.0,3475,3503,0,0},{}},
[101846]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770592,100,720142,5000,723982,3000},{7,62.0,26.7}},
[101847]={52,{6422,1176,1041.0,3150,4074,0,0},{}},
[101848]={51,{6250,1101,921.0,3343,3371,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770593,100,720142,5000,723982,3000},{7,56.7,19.4}},
[101849]={0,{144,28,28.0,28,28,0,0},{}},
[101850]={0,{144,28,28.0,28,28,0,0},{}},
[101851]={0,{144,28,28.0,28,28,0,0},{}},
[101852]={0,{144,28,28.0,28,28,0,0},{}},
[101853]={52,{59282,4720,2373.0,5184,5213,0,0},{720011,3000,722191,5000,722157,5000,724180,3000,724185,3000,720100,10000,724411,2000,720142,5000,723982,3000},{108,41.7,70.1}},
[101854]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770574,100,204448,30000,720142,5000,723982,3000},{7,57.4,51.2}},
[101855]={50,{17689,1355,893.0,4019,4046,0,0},{720011,3000,722157,5000,724180,3000,720100,10000,720142,5000,723982,3000},{108,44.5,58.5}},
[101856]={52,{6461,1171,1440.0,3475,3524,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770555,100,204446,30000,720142,5000,723982,3000},{7,59.1,50.4}},
[101857]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770556,100,720142,5000,723982,3000},{7,61.2,49.1}},
[101858]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770562,100,720142,5000,723982,3000},{7,40.9,86.4}},
[101859]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770563,100,720142,5000,723982,3000},{7,42.8,87.0}},
[101860]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770564,100,720142,5000,723982,3000},{7,41.7,88.5}},
[101861]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770565,100,720142,5000,723982,3000},{7,41.6,86.4}},
[101862]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770566,100,720142,5000,723982,3000},{7,41.7,86.2}},
[101863]={50,{22353,3418,1606.0,2949,3741,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770620,100,720142,5000,723982,3000},{7,34.5,83.9}},
[101864]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770621,100,720142,5000,723982,3000},{7,32.2,89.3}},
[101865]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770583,100,720142,5000,723982,3000},{7,40.5,63.3}},
[101866]={50,{6026,1078,893.0,3234,3242,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770617,100,720142,5000,723982,3000},{7,40.8,63.3}},
[101867]={53,{826468,7522,9785.0,3610,3640,0,0},{720011,5000,722191,20000,722157,30000,724180,8000,724185,10000,720100,10000,724269,50000,770624,5000,720142,5000,723982,3000}},
[101868]={50,{17689,1355,893.0,4019,4046,0,0},{720011,3000,722157,5000,724180,3000,720100,10000,720142,5000,723982,3000},{108,44.8,58.5}},
[101869]={0,{144,28,28.0,28,28,0,0},{}},
[101870]={52,{6440,1145,949.0,3475,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770610,100,720142,5000,723982,3000},{7,30.8,19.7}},
[101871]={52,{6440,1145,949.0,3475,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770626,100,720142,5000,723982,3000},{7,17.4,47.3}},
[101872]={51,{18174,3633,2302.0,3363,3371,0,0},{}},
[101873]={51,{18174,3633,2302.0,3363,3371,0,0},{}},
[101874]={51,{18174,3633,2302.0,3363,3371,0,0},{}},
[101875]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,667,723516,667,723550,667,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100}},
[101876]={0,{144,28,28.0,28,28,0,0},{}},
[101877]={0,{144,28,28.0,28,28,0,0},{}},
[101878]={50,{3481,903,893.0,2711,2679,0,0},{720011,3000,722157,18000,722191,15000,724180,13000,724185,12000,720100,200000,720142,5000,204460,1000,724192,15000,202916,5000,723982,3000},{108,48.5,89.5}},
[101879]={0,{129,19,28.0,19,19,0,0},{}},
[101880]={0,{144,28,28.0,28,28,0,0},{},{108,39.2,17.7}},
[101881]={52,{601580,4011,5222.0,9999,9999,0,0},{720011,3000,722191,30000,724185,20000,720100,15000,724465,200000,770531,1000,551173,1000,205692,1000,720141,5000,723981,3000},{114,53.9,52.7}},
[101882]={52,{700498,6018,5222.0,8022,8004,0,0},{720011,3000,722157,30000,724180,10000,720100,10000,724466,200000,770532,1000,203870,200000,723982,10000}},
[101883]={51,{650530,5025,5066.0,8005,8014,0,0},{720011,3000,724180,10000,724185,20000,720100,10000,724467,200000,770533,1000,551174,1000,205693,1000,203879,200000,723982,10000},{114,31.7,76.5}},
[101884]={50,{500316,4511,4913.0,6002,6029,0,0},{720011,3000,724180,10000,724185,20000,720100,15000,724468,200000,770535,1000,720142,5000,723982,3000},{114,17.0,60.3}},
[101885]={50,{22353,3418,1606.0,2949,3741,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,724185,15000,720100,10000,720142,5000,551172,1000,205691,1000,723982,3000}},
[101886]={51,{603936,4471,5066.0,4530,4532,0,0},{720011,0,722152,0,722186,0,724179,0,724181,0,720097,0,720141,0,723981,0}},
[101887]={51,{603936,4471,5066.0,5503,5526,0,0},{720011,0,722152,0,722186,0,724179,0,724184,0,720097,0,720142,0,723982,0}},
[101888]={51,{603936,4078,6518.0,4530,5305,0,0},{720011,0,722152,0,722186,0,724179,0,724184,0,720097,0,720142,0,723982,0}},
[101889]={51,{603936,3806,5066.0,4530,5305,0,0},{720011,0,722152,0,722186,0,724179,0,724184,0,720097,0,720142,0,723982,0}},
[101890]={45,{15038,375,2314.0,2628,2668,0,0},{}},
[101891]={45,{15038,375,2314.0,2628,2668,0,0},{}},
[101892]={45,{15038,375,2314.0,2628,2668,0,0},{}},
[101893]={45,{15038,2875,2314.0,2628,2668,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101894]={45,{15038,2875,2314.0,2628,2668,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101895]={50,{45081,4006,2233.0,4180,4207,0,0},{720011,5000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,3000,723982,3000},{114,26.3,55.6}},
[101896]={50,{39368,3461,2233.0,3805,3832,0,0},{720011,3000,722191,5000,722157,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101897]={50,{39368,3461,2233.0,3805,3832,0,0},{720011,3000,722157,5000,722191,4000,724185,3500,724180,1500,720100,5000,720142,5000,723982,3000}},
[101898]={50,{40039,3494,2233.0,3989,3993,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101899]={50,{30053,3494,2233.0,3504,3510,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101900]={50,{30053,3494,2233.0,3773,3778,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101901]={50,{40039,3494,2233.0,3234,4046,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101902]={50,{40039,3494,2233.0,3234,4019,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101903]={51,{51024,3633,2302.0,4086,4089,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101904]={51,{51024,3633,2302.0,3974,3979,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[101905]={50,{40039,3494,2233.0,3989,3993,0,0},{720011,3000,722157,5000,722191,4000,724180,1500,724185,3500,720100,10000,720142,5000,723982,3000}},
[101906]={50,{40039,3494,2233.0,3989,3993,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,10000,720142,5000,723982,3000}},
[101907]={40,{10012,712,642.0,1747,1755,0,0},{720011,3000,722157,4000,722191,6000,724180,1600,724185,2000,720100,1000,720142,5000,723982,3000}},
[101908]={40,{10012,712,642.0,1747,1755,0,0},{720011,3000,722157,4000,722191,6000,724180,1600,724185,2000,720100,1000,720142,5000,723982,3000}},
[101909]={40,{10012,712,642.0,1747,1755,0,0},{720011,3000,722157,4000,722191,6000,724180,1600,724185,2000,720100,1000,720142,5000,723982,3000}},
[101910]={40,{10012,712,642.0,1747,1755,0,0},{720011,3000,722157,4000,722191,6000,724180,1600,724185,2000,720100,1000,720142,5000,723982,3000}},
[101911]={1,{117,15,28.0,46,60,0,0},{}},
[101912]={50,{2930,715,893.0,643,652,0,0},{720011,3000,722157,18000,722191,15000,724180,13000,724185,12000,720100,200000,720142,5000,724192,15000,202916,5000,723982,3000},{114,17.6,83.4}},
[101913]={50,{40039,3494,2233.0,3989,3993,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,1000,720142,5000,723982,3000}},
[101914]={15,{1014,171,302.0,501,514,0,0},{203499,5500}},
[101915]={20,{4682,721,825.0,847,742,0,0},{204457,6500}},
[101916]={25,{115787,920,2134.0,1309,1543,0,0},{204428,45000,204457,15000,203499,30000,203494,20000,203490,6000,203489,25000}},
[101917]={35,{3993,570,814.0,2167,1714,0,0},{203494,5500}},
[101918]={40,{16034,2111,1954.0,2604,2155,0,0},{204428,6500}},
[101919]={45,{291091,1999,4629.0,3771,4508,0,0},{204428,15000,204457,45000,203494,30000,203499,20000,203489,25000,203490,6000}},
[101920]={50,{100008,261,2233.0,7074,7101,0,0},{}},
[101921]={1,{104,9,28.0,38,21,0,0},{720011,3000,723910,5000,720091,5000,770622,100,723978,3000,721900,2000},{12,53.3,38.2}},
[101922]={1,{104,9,28.0,38,21,0,0},{720011,3000,723910,5000,720091,5000,770623,100,723978,3000,721900,2000},{12,56.9,52.5}},
[101923]={1,{77,9,36.0,22,34,0,0},{720011,3000,723910,5000,720091,5000,770627,100,723978,3000,721900,2000},{12,50.2,41.9}},
[101924]={1,{78,5,28.0,17,17,0,0},{720011,3000,723910,5000,720091,5000,770628,100,723978,3000,721900,2000},{12,61.8,48.4}},
[101925]={1,{78,5,28.0,17,17,0,0},{720011,3000,723910,5000,720091,5000,770629,100,723978,3000,721900,2000},{12,61.8,50.3}},
[101926]={3,{164,22,49.0,68,91,0,0},{720011,3000,723910,5000,720091,5000,770630,100,723978,3000,721900,2000},{12,60.1,79.6}},
[101927]={4,{203,29,60.0,89,90,0,0},{720011,3000,723910,5000,720091,5000,770631,100,723978,3000,721900,2000},{12,60.0,81.4}},
[101928]={4,{160,30,71.0,68,105,0,0},{720011,3000,723910,5000,720091,5000,770632,100,723978,3000,721900,2000},{12,45.1,70.3}},
[101929]={3,{176,25,80.0,77,78,0,0},{720011,3000,723910,5000,720091,5000,770633,100,723978,3000,721900,2000},{12,61.2,81.3}},
[101930]={4,{203,29,60.0,89,90,0,0},{720011,3000,723910,5000,720091,5000,770634,100,723978,3000,721900,2000},{12,72.4,70.7}},
[101931]={4,{203,29,60.0,89,90,0,0},{720011,3000,723911,5000,720091,5000,770635,100,723978,3000,721900,2000},{12,44.6,71.4}},
[101932]={5,{319,55,71.0,165,163,0,0},{720011,3000,723911,5000,720091,5000,770636,100,723978,3000,721901,2000},{12,34.2,71.6}},
[101933]={5,{268,61,51.0,157,197,0,0},{720011,3000,723911,5000,720091,5000,770637,100,723978,3000,721901,2000},{12,35.2,80.6}},
[101934]={6,{372,64,82.0,194,191,0,0},{720011,3000,723911,5000,720091,5000,770638,100,723978,3000,721901,2000},{12,27.0,72.2}},
[101935]={6,{356,46,82.0,189,191,0,0},{720011,3000,723911,5000,720092,5000,770639,100,723978,3000,721901,2000},{12,37.8,50.5}},
[101936]={6,{366,45,82.0,189,191,0,0},{720011,3000,723911,5000,720092,5000,770640,100,723978,3000,721901,2000},{12,39.0,52.0}},
[101937]={7,{427,50,148.0,218,226,0,0},{720011,3000,723911,5000,720092,5000,770641,100,723978,3000,721901,2000},{12,37.4,37.5}},
[101938]={6,{366,47,82.0,189,191,0,0},{720011,3000,723911,5000,720092,5000,770642,100,723978,3000,721901,2000},{12,36.3,37.1}},
[101939]={7,{422,50,94.0,218,221,0,0},{720011,3000,723911,5000,720092,5000,770643,100,723978,3000,721902,2000},{12,37.9,36.4}},
[101940]={10,{618,80,131.0,320,318,0,0},{720011,3000,723913,5000,720092,5000,770644,100,723978,3000,721902,2000},{12,23.5,9.6}},
[101941]={9,{552,71,118.0,286,284,0,0},{720011,3000,723912,5000,720092,5000,770645,100,723978,3000,721902,2000},{12,23.5,10.1}},
[101942]={8,{427,93,76.0,242,296,0,0},{720011,3000,723912,5000,720092,5000,770646,100,723978,3000,721902,2000},{12,22.9,10.9}},
[101943]={8,{482,79,106.0,249,252,0,0},{720011,3000,723912,5000,720092,5000,770647,100,723978,3000,721902,2000},{12,22.6,11.4}},
[101944]={1,{191,1516,3570.0,68,3084,0,0},{}},
[101945]={5,{716,2006,4178.0,170,3811,0,0},{}},
[101946]={10,{1600,3008,4827.0,325,4692,0,0},{}},
[101947]={15,{2771,4018,4991.0,515,5151,0,0},{}},
[101948]={20,{4270,6526,5672.0,742,6194,0,0},{}},
[101949]={25,{30893,15016,15873.0,18113,18285,0,0},{}},
[101950]={30,{8350,25123,21094.0,1334,25566,0,0},{}},
[101951]={40,{232655,48942,80536.0,2150,48761,0,0},{}},
[101952]={50,{325304,55171,92913.0,3253,61322,0,0},{}},
[101953]={60,{438244,68168,105591.0,4724,75449,0,0},{}},
[101954]={1,{191,69,70.0,68,60,0,0},{}},
[101955]={5,{716,180,178.0,170,163,0,0},{}},
[101956]={10,{1600,347,327.0,325,318,0,0},{}},
[101957]={15,{2771,551,491.0,515,507,0,0},{}},
[101958]={20,{4270,796,672.0,742,734,0,0},{}},
[101959]={25,{6143,1089,873.0,1013,1005,0,0},{}},
[101960]={30,{8350,1434,1094.0,1334,1326,0,0},{}},
[101961]={40,{232655,2848,3536.0,2150,2141,0,0},{}},
[101962]={50,{325304,4313,4913.0,3253,3242,0,0},{}},
[101963]={60,{438244,6265,6591.0,4724,4709,0,0},{}},
[101964]={1,{191,69,70.0,68,60,0,0},{}},
[101965]={5,{716,180,178.0,170,163,0,0},{}},
[101966]={10,{1600,347,327.0,325,318,0,0},{}},
[101967]={15,{2771,551,491.0,515,507,0,0},{}},
[101968]={20,{4270,796,672.0,742,734,0,0},{}},
[101969]={25,{6143,1089,873.0,1013,1005,0,0},{}},
[101970]={30,{8350,1434,1094.0,1334,1326,0,0},{}},
[101971]={40,{232655,2848,3536.0,2150,2141,0,0},{}},
[101972]={50,{325304,4313,4913.0,3253,3242,0,0},{}},
[101973]={60,{438244,6265,6591.0,4724,4709,0,0},{}},
[101974]={1,{191,1516,3570.0,68,3084,0,0},{}},
[101975]={5,{716,2006,4178.0,170,3811,0,0},{}},
[101976]={10,{1600,3008,4827.0,325,4692,0,0},{}},
[101977]={15,{2771,4018,4991.0,515,5151,0,0},{}},
[101978]={20,{4270,6526,5672.0,742,6194,0,0},{}},
[101979]={25,{30893,15016,15873.0,18113,18285,0,0},{}},
[101980]={30,{8350,25123,21094.0,1334,25566,0,0},{}},
[101981]={40,{232655,48942,80536.0,2150,48761,0,0},{}},
[101982]={50,{325304,55171,92913.0,3253,61322,0,0},{}},
[101983]={60,{438244,68168,105591.0,4724,75449,0,0},{}},
[101984]={1,{191,1516,3570.0,68,3084,0,0},{}},
[101985]={5,{716,2006,4178.0,170,3811,0,0},{}},
[101986]={10,{1600,3008,4827.0,325,4692,0,0},{}},
[101987]={15,{2771,4018,4991.0,515,5151,0,0},{}},
[101988]={20,{4270,6526,5672.0,742,6194,0,0},{}},
[101989]={25,{30893,15016,15873.0,18113,18285,0,0},{}},
[101990]={30,{8350,25123,21094.0,1334,25566,0,0},{}},
[101991]={40,{232655,48942,80536.0,2150,48761,0,0},{}},
[101992]={50,{325304,55171,92913.0,3253,61322,0,0},{}},
[101993]={60,{438244,68168,105591.0,4724,75449,0,0},{}},
[101994]={20,{4587,498,672.0,242,244,0,0},{}},
[101995]={25,{6545,635,873.0,331,335,0,0},{}},
[101996]={23,{1868,288,316.0,882,891,0,0},{720011,3000,723441,1471,723475,1471,723509,1471,720095,5000,770242,100,201119,70000,720141,5000,550636,221,222512,951,723980,3000,721907,832}},
[101997]={50,{81535,4287,4913.0,3215,3242,0,0},{}},
[101998]={10,{1814,106,49.0,4125,1853,0,0},{720011,3000,722279,4792,722653,4792,723435,4792,720091,5000,720140,5000,222619,3133,723978,3000}},
[101999]={0,{29079,124,192.0,84,90,0,0},{}},
[102000]={10,{1814,106,49.0,4125,1853,0,0},{720011,3000,722246,4907,723368,4907,723436,4907,720092,5000,210203,519,720140,5000,211332,2458,723978,3000}},
[102001]={15,{2127,162,196.0,3451,3457,0,0},{720011,3000,722248,3296,722690,3296,722724,3296,720093,5000,220153,494,720140,5000,211394,2169,723979,3000}},
[102002]={12,{1673,130,156.0,3252,3206,0,0},{720011,3000,722315,3480,723437,3480,723947,3480,720093,5000,210700,494,720140,5000,211429,2169,723979,3000}},
[102003]={14,{1966,149,183.0,3206,3212,0,0},{720011,3000,722282,3458,723370,3458,723506,3458,720093,5000,720140,5000,211428,2088,723979,3000}},
[102004]={17,{3003,526,211.0,3812,1727,0,0},{720011,3000,722351,200000,723371,200000,720094,5000,720140,5000,211349,4627,723979,3000}},
[102005]={17,{2254,200,224.0,3365,3291,0,0},{720011,3000,722419,3206,722657,3206,723405,3206,720094,5000,220804,446,720140,5000,222444,1924,723979,3000}},
[102006]={10,{1380,100,131.0,3065,3069,0,0},{720011,3000,722212,4907,722892,4907,722960,4907,720092,5000,720140,5000,211425,2458,723978,3000}},
[102007]={48,{5701,978,839.0,2970,2995,0,0},{}},
[102008]={6,{366,59,82.0,189,191,0,0},{}},
[102009]={50,{45032,3494,2233.0,3585,3591,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[102010]={51,{50052,3633,2302.0,4502,4504,0,0},{720011,3000,722157,5000,722191,4000,724180,3500,724185,1500,720100,5000,720142,5000,723982,3000}},
[102011]={50,{35041,3506,2233.0,4013,3993,0,0},{}},
[102012]={0,{144,28,28.0,28,28,0,0},{}},
[102013]={30,{1746,444,437.0,1334,1312,0,0},{}},
[102014]={0,{186,32,28.0,96,84,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,720100,10000,724474,200000,720142,5000,723982,3000}},
[102015]={0,{186,32,28.0,96,84,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,720100,10000,720478,200000,720142,5000,723982,3000}},
[102016]={0,{144,28,28.0,28,28,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,720100,10000,724474,30000,720142,5000,723982,3000}},
[102017]={0,{144,28,28.0,28,28,0,0},{720011,3000,722191,10000,722157,20000,724180,8000,720100,10000,724474,30000,720142,5000,723982,3000}},
[102018]={1,{132,17,28.0,59,60,0,0},{}},
[102019]={1,{135,22,48.0,59,64,0,0},{},{12,61.8,38.7}},
[102020]={10,{613,100,131.0,314,318,0,0},{},{12,65.8,39.0}},
[102021]={57,{1038919,7398,12652.0,13211,13250,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,724711,200000,724503,200000,720101,10000,725157,200000,720142,5000,723983,13000},{115,74.6,67.0}},
[102022]={9,{546,90,118.0,281,284,0,0},{}},
[102023]={103,{1282649,24183,19138.0,18216,18164,0,0},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726715,200000,725916,100000,725426,200000}},
[102024]={55,{76690,6227,2595.0,7204,7195,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,60.4,28.0}},
[102025]={55,{75374,6079,2595.0,7016,7008,0,0},{720011,5000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,80.8,30.0}},
[102026]={55,{69888,4980,3595.0,6014,7506,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,26.9,32.7}},
[102027]={55,{69888,4980,3595.0,6014,7506,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,33.9,25.7}},
[102028]={55,{80859,5784,2595.0,7580,7569,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,26.7,33.7}},
[102029]={55,{76690,7037,2595.0,7298,7288,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,31.4,34.2}},
[102030]={55,{69888,6056,3595.0,6014,7506,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,33.3,26.1}},
[102031]={55,{147676,7092,3595.0,9021,9002,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,51.4,22.8}},
[102032]={55,{137582,8009,3595.0,8081,8067,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,54.3,77.7}},
[102033]={50,{17654,3461,2233.0,3215,3242,0,0},{},{115,65.0,63.3}},
[102034]={53,{72384,5518,2446.0,6018,6047,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,73.9,55.4}},
[102035]={53,{72384,5281,2446.0,6018,6047,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,80.7,29.3}},
[102036]={55,{163146,8548,5095.0,9553,9531,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,30.3,47.8}},
[102037]={55,{163146,7717,5095.0,8300,9531,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,35.5,43.1}},
[102038]={0,{144,28,28.0,28,28,0,0},{}},
[102039]={0,{144,28,28.0,28,28,0,0},{}},
[102040]={58,{1202133,12929,12828.0,14312,14344,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725176,200000,724505,200000,724507,200000,720101,10000,240704,200000,720142,5000,725653,200000,725675,3000,723983,13000},{115,48.9,47.4}},
[102041]={56,{986142,7690,6485.0,12123,12186,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725157,200000,724501,200000,720101,10000,204322,300000,720142,5000,723983,13000},{115,84.6,47.7}},
[102042]={1,{117,15,28.0,46,60,0,0},{}},
[102043]={52,{47841,957,949.0,4501,4529,0,0},{},{115,66.1,23.6}},
[102044]={55,{77787,7030,2595.0,7204,7195,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,35.7,30.4}},
[102045]={50,{17654,1500,2233.0,3215,3242,0,0},{}},
[102046]={56,{986142,7902,6485.0,13213,13206,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,724502,200000,720101,10000,551184,1000,205846,1000,720142,5000,723983,13000},{115,70.0,32.9}},
[102047]={50,{40124,3461,2233.0,3001,3001,0,0},{}},
[102048]={50,{15011,3461,2233.0,1983,1983,0,0},{}},
[102049]={50,{50037,2019,2233.0,6002,6002,0,0},{}},
[102050]={50,{35025,3490,2233.0,3001,3028,0,0},{}},
[102051]={25,{5951,1067,873.0,995,1005,0,0},{720011,3000,722253,1500,722627,2500,720141,5000,723980,3000,720095,3500,721908,2000}},
[102052]={26,{6365,1131,915.0,1054,1065,0,0},{720011,3000,722423,1500,723137,2500,720141,5000,723980,3000,720095,3500,721908,2000}},
[102053]={27,{6797,1197,958.0,1116,1127,0,0},{720011,3000,722423,1500,723137,2500,720141,5000,723980,3000,723980,3000,720095,3500,721908,2000}},
[102054]={25,{5951,505,873.0,785,1005,0,0},{720011,3000,722287,1500,722627,2500,720141,5000,723980,3000,720095,3500,721908,2000}},
[102055]={26,{6365,895,915.0,1054,1065,0,0},{720011,3000,722321,1500,723375,2500,720141,5000,723980,3000,720095,3500,721908,2000}},
[102056]={27,{6797,950,958.0,1116,1127,0,0},{720011,3000,723919,4000,720141,5000,723980,3000,720095,3500,721908,2000}},
[102057]={27,{6797,1074,958.0,1001,1127,0,0},{720011,3000,723919,4000,720141,5000,723980,3000,720095,3500,721908,2000}},
[102058]={27,{6797,1383,958.0,1001,1127,0,0},{720011,3000,723919,4000,720141,5000,723980,3000,720095,3500,721908,2000}},
[102059]={27,{7194,1197,958.0,1288,1127,0,0},{720011,3000,723919,4000,720141,5000,723980,3000,720095,3500,721908,2000}},
[102060]={27,{6797,1197,958.0,1231,1242,0,0},{720011,3000,723919,4000,720141,5000,723980,3000,720095,3500,721908,2000}},
[102061]={47,{216230,3781,4471.0,2853,2877,0,0},{720011,3000,723925,200000,720142,50000,723982,30000,720099,35000,720349,200000}},
[102062]={27,{88259,1475,2109.0,1116,1127,0,0},{720011,3000,724178,50000,724183,50000,720141,25000,723980,30000,720095,35000,724247,200000}},
[102063]={57,{819973,16271,6052.0,13211,13253,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,724850,200000,724504,200000,720101,10000,725175,200000,720142,5000,723983,13000},{115,22.5,81.9}},
[102064]={50,{30007,3506,2233.0,4013,3993,0,0},{},{115,33.3,26.9}},
[102065]={50,{9992,1084,893.0,4501,4475,0,0},{}},
[102066]={0,{2686,120,154.0,96,84,0,0},{}},
[102067]={50,{44699,898,893.0,3234,3242,0,0},{},{115,57.7,81.0}},
[102068]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[102069]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[102070]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[102071]={35,{10250,1812,1338.0,1685,1702,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102072]={36,{10715,1900,1389.0,1767,1784,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102073]={37,{11192,1786,1442.0,1852,1869,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102074]={35,{10250,949,1338.0,1364,1702,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102075]={36,{10715,1541,1389.0,1767,1784,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102076]={37,{11192,1619,1442.0,1852,1869,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102077]={37,{11192,1805,1442.0,1679,1869,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102078]={37,{11192,1991,1442.0,1679,1869,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102079]={37,{11797,1898,1442.0,2112,1869,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102080]={37,{11192,1991,1442.0,2025,2042,0,0},{720011,3000,723922,4000,720141,5000,723981,3000,720097,3500,721912,2000}},
[102081]={37,{150117,2452,3173.0,1852,1869,0,0},{720011,3000,723922,200000,720141,25000,723981,30000,720097,35000,720348,200000}},
[102082]={45,{15020,2828,1904.0,2628,2651,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102083]={46,{15526,2947,1967.0,2739,2763,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102084]={47,{16043,2808,2032.0,2853,2877,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102085]={45,{15020,1598,1904.0,2171,2651,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102086]={46,{15526,2439,1967.0,2739,2763,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102087]={47,{16043,2545,2032.0,2853,2877,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102088]={47,{16043,2545,2032.0,2609,2877,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102089]={47,{16043,2624,2032.0,2609,2877,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102090]={47,{16901,2650,2032.0,3219,2877,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102091]={47,{16043,2808,2032.0,3097,3121,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720099,3500,721914,2000}},
[102092]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102093]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102094]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102095]={50,{17654,5015,4733.0,2679,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102096]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102097]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102098]={50,{17654,6013,6733.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102099]={50,{17654,6519,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102100]={50,{18598,6519,2233.0,3617,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102101]={50,{17654,6063,7053.0,3483,3510,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[102102]={50,{237997,5800,8004.0,7021,3242,0,0},{720011,3000,723925,200000,720142,50000,723982,30000,720100,35000,720350,200000}},
[102103]={0,{12142,164,280.0,84,84,0,0},{}},
[102104]={50,{1715,-37,642.0,1227,3412,0,0},{}},
[102105]={50,{1715,-37,642.0,1227,3412,0,0},{}},
[102106]={50,{1715,-37,642.0,1227,3412,0,0},{}},
[102107]={50,{1715,-37,642.0,1227,3412,0,0},{}},
[102108]={50,{1715,-37,642.0,1227,3412,0,0},{}},
[102109]={55,{53431,4980,3595.0,7517,7506,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{115,33.1,27.0}},
[102110]={48,{15019,1002,1274.0,2970,3014,0,0},{}},
[102111]={50,{3222,898,893.0,2695,2679,0,0},{}},
[102112]={50,{25060,3494,2233.0,3234,3242,0,0},{}},
[102113]={50,{3222,898,893.0,2695,2679,0,0},{}},
[102114]={50,{6026,1204,893.0,6011,6002,0,0},{}},
[102115]={57,{401984,5621,6052.0,4238,4225,0,0},{}},
[102116]={50,{3481,903,893.0,2711,2679,0,0},{}},
[102117]={50,{325304,2515,4913.0,247292,3242,0,0},{}},
[102118]={50,{4020,1059,893.0,3215,3242,0,0},{200004,5000,200005,70000}},
[102119]={0,{146,32,48.0,84,90,0,0},{}},
[102120]={50,{3481,903,893.0,2711,2679,0,0},{},{10,44.5,11.0}},
[102121]={50,{2830,1400,1355.0,3215,3261,0,0},{}},
[102122]={50,{19564,-2343,2711.0,3215,3261,0,0},{}},
[102123]={95,{1637533,45398,17031.0,108227,108320,0,0},{}},
[102124]={43,{5005,805,712.0,2416,2438,0,0},{205011,60000},{206,35.0,33.0}},
[102125]={44,{6005,851,737.0,2553,2543,0,0},{205012,60000},{206,68.2,49.4}},
[102126]={40,{232384,2848,3536.0,2121,2141,0,0},{720011,3000,724179,25000,724184,25000,720097,10000,720025,5000,720141,5000,723981,3000}},
[102127]={40,{4457,716,642.0,2121,2141,0,0},{720011,3000,722154,667,722188,667,720183,667,720097,5000,720025,5000,720141,3000,723981,3000}},
[102128]={39,{2301,629,620.0,1861,1861,0,0},{720011,3000,722154,3300,722188,3300,720183,3300,720097,10000,720025,8000,720141,5000,723981,10000}},
[102129]={40,{4524,707,1242.0,2121,2141,0,0},{720011,3000,722290,2333,722426,2333,720183,2333,720098,5000,770268,100,205014,65000,720141,5000,203528,0,723981,3000,550869,100}},
[102130]={44,{5171,840,2337.0,2521,2543,0,0},{720011,3000,722664,667,722732,667,722800,667,720098,5000,770269,100,205012,60000,720141,5000,203528,0,723981,3000,550779,100}},
[102131]={41,{4681,739,2265.0,2217,2237,0,0},{720011,3000,723650,667,723752,667,723786,667,720098,5000,770270,100,205010,60000,720141,5000,203528,0,723981,3000,550316,100}},
[102132]={40,{5013,732,462.0,1978,2464,0,0},{720011,3000,722290,2333,722426,2333,722596,2333,720098,5000,770271,100,205013,60000,720141,5000,203528,0,723981,3000,550905,100},{206,41.8,63.5}},
[102133]={43,{6204,816,712.0,2448,2438,0,0},{720011,3000,722222,2333,722392,2333,723548,2333,720098,5000,770272,100,205011,60000,720141,5000,203528,0,723981,3000}},
[102134]={41,{5439,748,665.0,2246,2237,0,0},{720011,3000,722562,2333,722562,2333,722936,2333,720098,5000,770273,100,205010,60000,720141,5000,203528,0,723981,3000,550933,100}},
[102135]={42,{4841,771,689.0,2315,2336,0,0},{720011,3000,722324,2333,722460,2333,723956,2333,720098,5000,770274,100,205015,60000,720141,5000,203528,0,723981,3000,550915,100}},
[102136]={42,{4841,771,689.0,2315,2336,0,0},{720011,3000,722324,2333,722460,2333,723956,2333,720098,5000,770275,100,205016,60000,720141,5000,203528,0,723981,3000}},
[102137]={0,{144,28,28.0,28,28,0,0},{}},
[102138]={45,{15412,1795,1904.0,2661,2651,0,0},{205012,80000,203528,200000},{206,67.2,41.8}},
[102139]={41,{13444,1482,1664.0,2246,2237,0,0},{720011,3000,722290,2333,722426,2333,722596,2333,720098,5000,770271,100,205013,80000,720141,5000,203528,200000,723981,3000,550905,100},{206,35.9,61.5}},
[102140]={44,{14905,1712,1843.0,2553,2543,0,0},{720011,3000,722222,2333,722392,2333,723548,2333,720098,5000,770272,100,205011,80000,720141,5000,203528,200000,723981,3000},{206,62.9,39.5}},
[102141]={42,{13922,1556,1722.0,2345,2336,0,0},{720011,3000,722562,2333,722562,2333,722936,2333,720098,5000,770273,100,205010,80000,720141,5000,203528,200000,723981,3000,550933,100},{206,15.8,24.9}},
[102142]={46,{7053,913,787.0,2503,2503,0,0},{}},
[102143]={1,{2457,73,154.0,59,60,0,0},{}},
[102144]={39,{11878,988,1551.0,2029,2047,0,0},{720011,3000,722222,1750,722392,1750,723582,1750,720183,1750,720098,5000,770260,100,720141,5000,203527,200000,223053,1400,723981,3000,550354,100}},
[102145]={34,{3988,543,514.0,1606,1622,0,0},{720011,3000,722629,667,722833,667,722527,667,720098,5000,770261,100,205002,70000,720141,5000,203527,0,723981,3000}},
[102146]={35,{4162,570,535.0,1685,1702,0,0},{720011,3000,722425,711,722901,711,723003,711,720097,5000,770262,100,205002,70000,720141,5000,203527,0,723981,3000,550946,100}},
[102147]={34,{3988,543,514.0,1606,1622,0,0},{720011,3000,722289,667,722697,667,722765,667,720098,5000,770263,100,205002,70000,720141,5000,203527,0,723981,3000}},
[102148]={35,{4162,570,535.0,1685,1702,0,0},{720011,3000,722561,711,722561,711,722969,711,720097,5000,770264,100,205002,70000,720141,5000,203527,0,723981,3000}},
[102149]={33,{3819,517,495.0,1529,1544,0,0},{720011,3000,722392,667,723378,667,723446,667,720098,5000,770265,100,205004,70000,720141,5000,203527,0,723981,3000,550948,100}},
[102150]={33,{3819,517,495.0,1529,1544,0,0},{720011,3000,722358,667,723344,667,723514,667,720098,5000,770266,100,205004,70000,720141,5000,203527,0,723981,3000}},
[102151]={31,{3494,468,456.0,1382,1396,0,0},{720011,3000,722255,711,722867,711,723037,711,720097,5000,770267,100,205003,70000,720141,5000,203527,0,204895,70000,723981,3000,550295,100}},
[102152]={31,{3494,468,456.0,1382,1396,0,0},{720011,3000,722255,711,722867,711,723037,711,720097,5000,770267,100,205003,70000,720141,5000,203527,0,204895,70000,723981,3000,550295,100}},
[102153]={38,{4710,655,598.0,1939,1957,0,0},{720011,3000,722358,667,723344,667,723514,667,720098,5000,770266,100,205004,70000,720141,5000,203527,0,723981,3000}},
[102154]={38,{4710,655,598.0,1939,1957,0,0},{720011,3000,722392,667,723378,667,723446,667,720098,5000,770265,100,205004,70000,720141,5000,203527,0,723981,3000,550948,100}},
[102155]={39,{4903,685,620.0,2029,2047,0,0},{720011,3000,722392,667,723378,667,723446,667,720098,5000,770265,100,205004,70000,720141,5000,203527,0,723981,3000,550948,100}},
[102156]={50,{71180,1084,893.0,6875,3242,0,0},{}},
[102157]={46,{8007,999,787.0,2739,2763,0,0},{}},
[102158]={46,{6019,913,787.0,2196,2219,0,0},{}},
[102159]={47,{6732,962,812.0,2888,2877,0,0},{720011,3000,722565,2333,722565,2333,722667,2333,720100,5000,770277,100,724520,30000,720142,5000,203529,10000,723982,3000}},
[102160]={47,{6732,962,812.0,2888,2877,0,0},{720011,3000,722564,2333,722564,2333,722666,2333,720099,5000,770278,100,724520,30000,720142,5000,203529,10000,723982,3000}},
[102161]={46,{6165,924,787.0,2739,2763,0,0},{720011,3000,722360,2333,722496,2333,722904,2333,720099,5000,770279,100,724520,30000,720142,5000,203529,10000,723982,3000}},
[102162]={50,{18101,2015,2233.0,3253,3242,0,0},{720011,3000,722293,7000,722429,6000,722735,4500,720100,5000,770280,100,724520,30000,720142,5000,203529,200000,223068,30,723982,3000}},
[102163]={46,{6165,924,787.0,2739,2763,0,0},{720011,3000,722360,2333,722496,2333,722768,2333,720099,5000,770284,100,724520,30000,720142,5000,203529,10000,723982,3000,550810,100},{207,51.2,48.0}},
[102164]={46,{6165,924,787.0,2739,2763,0,0},{720011,3000,722258,2333,723006,2333,723074,2333,720099,5000,770285,100,724520,30000,720142,5000,203529,10000,723982,3000}},
[102165]={50,{3253,903,1355.0,2679,2695,0,0},{}},
[102166]={53,{19385,3946,2969.0,3610,3661,0,0},{}},
[102167]={54,{92220,4076,2520.0,6813,7530,0,0},{720011,3000,724499,3000,724500,3000,724498,1500,724521,1500,720101,5000,720142,5000,723983,3000},{116,32.3,65.8}},
[102168]={54,{97331,7507,2520.0,7725,7530,0,0},{720011,3000,724499,3500,724500,3500,724498,1000,724270,1000,720101,5000,720142,3000,723983,5000},{116,21.6,69.4}},
[102169]={54,{97331,7507,2520.0,7725,7530,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,22.2,67.0}},
[102170]={55,{122948,8499,2605.0,8861,8622,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,22.1,69.6}},
[102171]={54,{100001,7371,2520.0,7379,7530,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,5000,720142,3000,723983,5000},{116,22.0,68.3}},
[102172]={54,{100001,7532,2520.0,7379,7530,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724498,1500,720101,5000,720142,3000,723983,5000},{116,31.7,65.3}},
[102173]={53,{19385,3946,2969.0,3610,3661,0,0},{},{116,28.5,64.8}},
[102174]={50,{3253,903,1355.0,2679,2695,0,0},{}},
[102175]={0,{144,28,28.0,28,28,0,0},{},{352,27.7,73.3}},
[102176]={1,{2457,73,154.0,59,60,0,0},{}},
[102177]={1,{2457,73,154.0,59,60,0,0},{}},
[102178]={1,{2457,73,154.0,59,60,0,0},{}},
[102179]={1,{2457,73,154.0,59,60,0,0},{}},
[102180]={1,{2457,73,154.0,59,60,0,0},{}},
[102181]={1,{2457,73,154.0,59,60,0,0},{}},
[102182]={1,{2457,73,154.0,59,60,0,0},{}},
[102183]={1,{2457,73,154.0,59,60,0,0},{}},
[102184]={1,{2457,73,154.0,59,60,0,0},{}},
[102185]={55,{316087,10521,3095.0,8877,10679,0,0},{720011,3000,724499,3500,724500,3500,724521,1500,724498,1500,720101,5000,720142,3000,723983,5000},{116,42.5,42.5}},
[102186]={55,{140149,8042,2595.0,7631,8316,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724498,1500,720101,5000,720142,3000,723983,5000},{116,30.7,47.6}},
[102187]={55,{325409,10176,2595.0,9189,10679,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,39.6,39.1}},
[102188]={55,{220082,9073,2595.0,8566,8927,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,5000,720101,3000,723983,5000},{116,26.8,45.5}},
[102189]={55,{250314,8607,3149.0,7943,8482,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,18.1,29.1}},
[102190]={55,{250314,8607,3149.0,7943,8482,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,16.6,31.2}},
[102191]={55,{400459,10020,3149.0,8566,11438,0,0},{720011,3000,724499,3500,724500,3500,724521,1500,724270,1500,720101,5000,720142,3000,723983,5000},{116,25.1,24.1}},
[102192]={55,{400459,10020,3149.0,8566,11438,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,5000,720142,3000,205758,40000,723983,5000},{116,22.4,35.6}},
[102193]={55,{450544,9575,3149.0,9500,12905,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,33.3,44.9}},
[102194]={55,{350374,11356,3149.0,8566,11438,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,27.0,39.7}},
[102195]={41,{240877,3073,3717.0,2237,2243,0,0},{720011,3000,720098,15000,720313,200000,770281,100,720025,5000,240683,200000,723981,3000,223696,5000},{109,0,0}},
[102196]={46,{286038,3698,4329.0,2773,3008,0,0},{720011,3000,224480,200000,720099,15000,720314,200000,770282,100,720026,5000,240690,200000,223696,10000,723982,13000,550934,100},{111,0,0}},
[102197]={51,{334939,4480,5088.0,3532,3429,0,0},{720011,3000,720100,15000,720315,200000,770283,100,720068,200000,720026,5000,203530,200000,240697,200000,723982,3000,223696,15000},{112,0,0}},
[102198]={54,{70705,6254,5544.0,12014,12007,0,0},{}},
[102199]={0,{129,19,28.0,19,19,0,0},{}},
[102200]={80,{984984,14443,11130.0,16408,16392,0,0},{720011,3000,722354,200000,722490,200000,723952,200000,720179,200000,720096,5000,210148,100000,770220,5000,720025,100000,211402,783,723980,3000,721909,571}},
[102201]={27,{401389,3008,3835.0,2507,2497,0,0},{720011,3000,722354,200000,722490,200000,723952,200000,720179,200000,720096,5000,210148,100000,770220,5000,720025,100000,211402,783,723980,3000,721909,571}},
[102202]={53,{18947,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770662,1000,720142,5000,723983,3000},{8,67.8,13.4}},
[102203]={53,{18826,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770663,1000,720142,5000,723983,3000},{8,69.0,14.2}},
[102204]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770664,1000,720142,5000,723983,3000},{8,67.7,12.8}},
[102205]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770665,1000,720142,5000,723983,3000},{8,67.2,11.6}},
[102206]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770707,1000,720142,5000,723983,3000},{8,75.2,30.5}},
[102207]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770708,1000,720142,5000,723983,3000},{8,75.8,29.9}},
[102208]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770709,1000,720142,5000,723983,3000},{8,75.7,29.9}},
[102209]={53,{55487,5205,2446.0,7027,7766,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770710,1000,720142,5000,723983,3000},{8,76.9,27.8}},
[102210]={53,{41214,3887,2446.0,5078,5108,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770671,1000,205567,100000,720142,5000,723983,3000},{8,45.7,58.6}},
[102211]={53,{18826,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770698,1000,205662,65000,720142,5000,723983,3000},{8,51.1,7.0}},
[102212]={53,{18826,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770699,1000,720142,5000,723983,3000},{8,52.3,11.9}},
[102213]={53,{19884,1210,978.0,4517,5445,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770700,1000,720142,5000,723983,3000},{8,51.4,13.7}},
[102214]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770701,1000,720142,5000,723983,3000},{8,52.8,10.8}},
[102215]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770702,1000,720142,5000,723983,3000},{8,51.4,13.4}},
[102216]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3000,724499,1500,724500,1000,720101,3000,770658,1000,720142,5000,723983,3000},{8,50.9,83.5}},
[102217]={53,{20942,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770659,1000,205666,65000,720142,5000,723983,3000},{8,50.4,81.8}},
[102218]={53,{20942,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770660,1000,720142,5000,723983,3000},{8,54.6,73.7}},
[102219]={53,{41124,4108,2446.0,5107,6152,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770661,1000,720142,5000,723983,3000},{8,54.2,72.8}},
[102220]={53,{19007,1217,1484.0,4491,4546,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770666,1000,720142,5000,723983,3000},{8,28.8,49.9}},
[102221]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770667,1000,720142,5000,723983,3000},{8,27.8,49.4}},
[102222]={53,{19884,1210,978.0,4517,5445,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770668,1000,720142,5000,723983,3000},{8,28.3,55.9}},
[102223]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770669,1000,205362,5000,720142,5000,723983,3000},{8,25.4,48.2}},
[102224]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770670,1000,720142,5000,723983,3000},{8,27.7,46.7}},
[102225]={53,{6064,600,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770677,1000,720142,5000,723983,3000},{8,46.0,66.6}},
[102226]={53,{6945,718,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770678,1000,720142,5000,723983,3000},{8,45.4,63.0}},
[102227]={53,{6945,620,978.0,4517,4983,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770679,1000,720142,5000,723983,3000},{8,45.5,63.0}},
[102228]={53,{6945,718,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770680,1000,720142,5000,723983,3000},{8,45.6,63.0}},
[102229]={53,{10118,816,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770681,1000,720142,5000,723983,3000},{8,46.0,66.8}},
[102230]={53,{6064,600,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770693,1000,720142,5000,723983,3000},{8,39.2,53.8}},
[102231]={53,{6945,718,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770694,1000,720142,5000,723983,3000},{8,39.1,49.2}},
[102232]={53,{6945,620,978.0,4517,4983,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770695,1000,720142,5000,723983,3000},{8,39.1,49.3}},
[102233]={53,{6945,718,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770696,1000,720142,5000,723983,3000},{8,39.1,49.4}},
[102234]={53,{10118,816,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770697,1000,720142,5000,723983,3000},{8,46.9,53.8}},
[102235]={53,{6064,600,978.0,4517,3640,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770688,1000,720142,5000,723983,3000},{8,46.9,40.5}},
[102236]={53,{6945,718,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770689,1000,720142,5000,723983,3000},{8,46.9,40.7}},
[102237]={53,{6945,620,978.0,4517,4983,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770690,1000,720142,5000,723983,3000},{8,47.0,40.8}},
[102238]={53,{6945,718,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770691,1000,720142,5000,723983,3000},{8,47.1,40.7}},
[102239]={53,{10118,816,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770692,1000,720142,5000,723983,3000}},
[102240]={53,{24220,1210,978.0,3631,3640,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770682,1000,720142,5000,723983,3000},{8,33.5,45.5}},
[102241]={53,{24220,1210,978.0,3631,3640,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770683,1000,720142,5000,723983,3000},{8,32.7,45.2}},
[102242]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770718,1000,720142,5000,723983,3000},{8,33.9,32.4}},
[102243]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770719,1000,720142,5000,723983,3000},{8,34.2,33.4}},
[102244]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770720,1000,720142,5000,723983,3000}},
[102245]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770721,1000,205663,65000,720142,5000,723983,3000},{8,61.9,91.6}},
[102246]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770722,1000,205663,65000,720142,5000,723983,3000},{8,60.0,89.5}},
[102247]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770723,1000,205663,65000,720142,5000,723983,3000},{8,61.2,91.1}},
[102248]={53,{21076,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770672,1000,205667,65000,720142,5000,723983,3000},{8,45.7,58.4}},
[102249]={53,{21142,1217,1484.0,4491,4546,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770673,1000,205665,65000,720142,5000,723983,3000},{8,55.3,55.9}},
[102250]={53,{20075,1217,1484.0,4491,4546,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770674,1000,205667,65000,720142,5000,723983,3000},{8,63.5,29.5}},
[102251]={53,{18947,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770675,1000,205667,65000,720142,5000,723983,3000},{8,64.3,29.5}},
[102252]={53,{20011,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770676,1000,205667,65000,720142,500,723983,3000},{8,56.4,55.7}},
[102253]={53,{20011,1189,978.0,4491,4521,0,0},{720011,3000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770650,1000,720142,5000,723983,3000},{8,78.4,39.0}},
[102254]={53,{18947,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770651,1000,720142,5000,723983,3000},{8,32.0,47.6}},
[102255]={53,{21076,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770652,1000,720142,5000,723983,3000},{8,57.1,39.2}},
[102256]={53,{20011,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770653,1000,205668,65000,720142,5000,723983,3000},{8,50.9,45.4}},
[102257]={53,{21076,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770654,1000,720142,5000,723983,3000},{8,77.4,41.4}},
[102258]={53,{20011,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770655,1000,720142,5000,723983,3000},{8,54.8,38.7}},
[102259]={53,{20011,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770656,1000,205661,65000,720142,5000,723983,3000},{8,54.1,57.5}},
[102260]={53,{20011,1189,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770657,1000,720142,5000,723983,3000},{8,60.8,55.8}},
[102261]={53,{48254,4108,2446.0,6141,7389,0,0},{},{8,66.1,18.9}},
[102262]={53,{31272,1210,978.0,6141,7389,0,0},{}},
[102263]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770703,1000,720142,5000,723983,3000},{8,55.8,24.5}},
[102264]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770704,1000,720142,5000,723983,3000},{8,57.3,26.0}},
[102265]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770705,1000,205664,65000,720142,5000,723983,3000},{8,57.4,24.9}},
[102266]={53,{55487,5205,2446.0,7027,7766,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770706,1000,720142,5000,723983,3000}},
[102267]={7,{952,211,236.0,204,174,0,0},{720011,3000,722314,5694,722790,5694,723028,5694,720092,5000,210142,261,720140,5000,723978,3000,721902,2733}},
[102268]={17,{3204,627,562.0,586,593,0,0},{720011,3000,722317,3206,722623,3206,722521,3206,720094,5000,720140,5000,550848,446,222657,1924,723979,3000,721905,1535}},
[102269]={26,{6365,1131,915.0,1054,1065,0,0},{720011,3000,723612,1305,723714,1305,723748,1305,720096,5000,720141,5000,211323,745,723980,3000,721908,0}},
[102270]={36,{10733,1937,1389.0,1767,1784,0,0},{720011,3000,723581,667,723683,667,723751,667,720098,5000,720141,5000,222616,400,723980,3000,721911,387}},
[102271]={47,{15028,2551,768.0,2722,1251,0,0},{720011,3000,722259,667,722667,667,720186,667,720099,5000,210129,100,720142,5000,550733,100,222572,400,723980,3000,721915,320}},
[102272]={50,{36577,3515,2711.0,3215,3261,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,720142,5000,723982,3000}},
[102273]={53,{18520,1203,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770711,1000,720142,5000,723983,3000},{8,43.3,51.8}},
[102274]={53,{48254,3923,2446.0,6141,6135,0,0},{}},
[102275]={53,{20328,1217,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770712,1000,720142,5000,723983,3000},{8,43.0,52.5}},
[102276]={53,{20328,1217,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770713,1000,720142,5000,723983,3000},{8,43.0,53.5}},
[102277]={1,{117,15,28.0,46,60,0,0},{}},
[102278]={55,{50038,4330,2595.0,20028,23554,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,5000,720142,3000,723983,5000},{116,30.4,44.2}},
[102279]={53,{102933,3887,2446.0,3610,3640,0,0},{}},
[102280]={1,{117,15,28.0,46,60,0,0},{}},
[102281]={55,{555778,12438,3095.0,15013,15141,0,0},{},{116,50.8,27.5}},
[102282]={55,{609352,12043,2595.0,20028,20042,0,0},{},{116,55.2,48.6}},
[102283]={5,{312,50,71.0,160,163,0,0},{}},
[102284]={10,{613,100,131.0,314,318,0,0},{}},
[102285]={15,{1007,162,196.0,501,507,0,0},{}},
[102286]={20,{1509,237,269.0,726,734,0,0},{}},
[102287]={5,{660,168,178.0,160,163,0,0},{}},
[102288]={10,{1519,333,327.0,314,318,0,0},{}},
[102289]={15,{2660,535,491.0,501,507,0,0},{}},
[102290]={20,{4122,778,672.0,726,734,0,0},{}},
[102291]={1,{132,17,28.0,59,60,0,0},{}},
[102292]={1,{150,59,70.0,59,60,0,0},{}},
[102293]={50,{4531,3069,2233.0,3215,3242,0,0},{}},
[102294]={52,{51026,5029,2373.0,4016,4045,0,0},{}},
[102295]={57,{1262314,24587,13752.0,30636,30624,0,0},{}},
[102296]={50,{17750,3506,2233.0,3215,3242,0,0},{}},
[102297]={50,{3659,873,337.0,3021,640,0,0},{}},
[102298]={36,{3760,602,555.0,1767,1784,0,0},{720011,3000,723581,667,723683,667,723751,667,720098,5000,770110,100,720141,5000,201537,10,222616,400,723980,3000,721911,387}},
[102299]={5,{312,50,71.0,160,163,0,0},{720011,3000,722211,5555,722381,5555,722619,5555,720091,5000,204531,5000,770397,100,202970,80000,720140,5000,211315,3333,723978,3000,550534,833}},
[102300]={53,{19884,1210,978.0,3631,3640,0,0},{}},
[102301]={54,{97547,5014,2520.0,4657,4687,0,0},{}},
[102302]={53,{6555,1216,704.0,3314,4216,0,0},{}},
[102303]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102304]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102305]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102306]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102307]={58,{1801315,25043,15268.0,16001,16081,0,0},{},{116,81.9,47.6}},
[102308]={50,{50092,5009,2711.0,3510,3558,0,0},{205413,25000}},
[102309]={50,{50092,5009,2711.0,3510,3558,0,0},{205414,25000}},
[102310]={50,{50092,5009,2711.0,3510,3558,0,0},{205415,25000}},
[102311]={55,{468971,6489,10383.0,3114,3114,0,0},{}},
[102312]={0,{144,28,28.0,28,28,0,0},{}},
[102313]={55,{250980,8026,11411.0,7008,7016,0,0},{}},
[102314]={55,{250980,8026,11411.0,7008,7016,0,0},{}},
[102315]={55,{250980,8026,11411.0,7008,7016,0,0},{}},
[102316]={53,{19505,1203,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770714,1000,720142,5000,723983,3000},{8,45.7,45.9}},
[102317]={53,{19505,1203,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770715,1000,720142,5000,723983,3000},{8,41.9,48.9}},
[102318]={53,{19505,1203,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770716,1000,720142,5000,723983,3000},{8,44.8,53.3}},
[102319]={54,{72902,5832,2520.0,5141,5081,0,0},{}},
[102320]={54,{10399,3276,2520.0,3024,3024,0,0},{}},
[102321]={54,{10399,3276,2520.0,3024,3024,0,0},{}},
[102322]={54,{10399,3276,2520.0,3024,3024,0,0},{}},
[102323]={53,{19505,1203,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,770717,1000,720142,5000,723983,3000}},
[102324]={50,{2244,1121,337.0,1904,640,0,0},{}},
[102325]={50,{1634,336,1442.0,1151,3347,0,0},{}},
[102326]={52,{6341,1172,683.0,3175,4045,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,770616,100,720142,5000,723982,3000}},
[102327]={53,{6064,600,978.0,4517,4521,0,0},{},{8,38.0,34.2}},
[102328]={53,{6945,718,978.0,4517,4521,0,0},{},{8,36.8,37.5}},
[102329]={53,{6945,620,978.0,4517,4983,0,0},{},{8,36.7,37.5}},
[102330]={53,{6945,767,978.0,4517,4521,0,0},{},{8,36.7,37.5}},
[102331]={1,{-12,17,28.0,59,60,0,0},{}},
[102332]={1,{-2,24,28.0,84,84,0,0},{}},
[102333]={1,{-2,24,28.0,84,84,0,0},{}},
[102334]={1,{-1,24,28.0,84,84,0,0},{}},
[102335]={50,{50092,5009,2711.0,3510,3558,0,0},{205416,25000}},
[102336]={55,{250980,8026,11411.0,7008,7016,0,0},{}},
[102337]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102338]={58,{1518409,5845,6868.0,4348,4406,0,0},{}},
[102339]={53,{6064,718,978.0,3631,3640,0,0},{}},
[102340]={54,{74281,8922,2520.0,6895,7107,0,0},{}},
[102341]={57,{11948,3597,2751.0,3337,3301,0,0},{720011,3000,724499,15000,724500,15000,724498,6000,724270,6000,724521,6000,724714,200000,720101,5000,725065,200000,725157,200000,720142,3000,723983,3000}},
[102342]={57,{4270,1112,1100.0,3337,3301,0,0},{}},
[102343]={54,{10672,3256,2520.0,3024,3024,0,0},{}},
[102344]={50,{26628,1071,893.0,1518,1527,0,0},{}},
[102345]={54,{55847,4718,2520.0,2409,1663,0,0},{}},
[102346]={53,{65820,4108,2446.0,7027,8450,0,0},{}},
[102347]={57,{1301030,28091,12675.0,10795,10809,0,0},{}},
[102348]={57,{1202272,21882,15075.0,10795,10775,0,0},{}},
[102349]={56,{1200815,22025,12479.0,12027,12043,0,0},{720011,3000,724499,1500,724500,1500,724498,6000,724270,6000,724521,6000,724715,200000,720101,5000,724912,50000,725157,200000,720142,3000,723983,5000},{116,29.0,62.2}},
[102350]={56,{66711,6023,12479.0,5003,5035,0,0},{}},
[102351]={55,{7084,1294,747.0,3532,4548,0,0},{}},
[102352]={53,{6064,718,978.0,3631,3640,0,0},{}},
[102353]={53,{10613,3199,2446.0,2969,2935,0,0},{}},
[102354]={53,{6064,718,978.0,3631,3640,0,0},{}},
[102355]={46,{17070,924,787.0,2739,2763,0,0},{720011,3000,722360,2333,722496,2333,722768,2333,720099,5000,205631,200000,720142,5000,203529,10000,723982,3000,550810,100}},
[102356]={57,{400892,5590,6052.0,4192,4225,0,0},{}},
[102357]={57,{400892,5590,6052.0,4192,4225,0,0},{}},
[102358]={57,{4270,1112,1100.0,3337,3301,0,0},{720011,3000,724499,15000,724500,15000,724498,6000,724270,6000,724521,6000,724720,200000,720101,5000,724853,200000,725157,200000,720142,3000,723983,3000}},
[102359]={47,{5960,956,812.0,3221,2877,0,0},{720011,3000,720099,5000,205631,200000,211296,1400,723982,3000,550321,100}},
[102360]={64,{4305266,98630,53384.0,80024,80076,3700,1800},{}},
[102361]={64,{4005440,98906,56199.0,80024,80180,3700,1800},{}},
[102362]={64,{4002930,98630,53384.0,80024,80556,3700,1800},{}},
[102363]={1,{-3,32,28.0,-498,84,0,0},{}},
[102364]={1,{-3,32,28.0,-498,84,0,0},{}},
[102365]={1,{-3,32,28.0,-498,84,0,0},{}},
[102366]={90,{85731,15566,6441.0,23631,25584,0,0},{}},
[102367]={90,{85731,15566,6441.0,23631,25584,0,0},{}},
[102368]={10,{1293,0,94.0,309,371,0,0},{}},
[102369]={10,{1780,369,235.0,309,371,0,0},{}},
[102370]={90,{85731,15566,6441.0,23631,25584,0,0},{}},
[102371]={99,{33926,10275,7941.0,9529,9529,0,0},{}},
[102372]={20,{2874,22,193.0,696,844,0,0},{}},
[102373]={20,{5273,824,483.0,696,844,0,0},{}},
[102374]={0,{144,28,28.0,28,28,0,0},{}},
[102375]={0,{144,28,28.0,28,28,0,0},{}},
[102376]={30,{4867,74,314.0,1237,1523,0,0},{}},
[102377]={30,{9925,1451,787.0,1237,1523,0,0},{}},
[102378]={75,{8632,3024,675.0,15728,8405,0,0},{},{24,31.0,77.1}},
[102379]={75,{16946,2069,675.0,7458,6426,0,0},{},{24,25.9,73.8}},
[102380]={40,{7357,162,462.0,1978,2464,0,0},{}},
[102381]={40,{15880,2299,1156.0,1978,2464,0,0},{}},
[102382]={55,{622177,5220,5710.0,3937,3924,0,0},{}},
[102383]={20,{1460137,1633,1935.0,3458,4023,0,0},{720011,3000}},
[102384]={50,{10349,301,642.0,2973,3741,0,0},{}},
[102385]={50,{23034,3427,1606.0,2973,3741,0,0},{}},
[102386]={65,{43062143,111686,57751.0,80035,80044,3700,1800},{725196,10000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,770724,100,724625,200000,240710,200000,725606,200000,205722,50000,205723,50000,725688,3000,725653,200000}},
[102387]={60,{1023576,1025492,31984.0,492236,492332,0,0},{}},
[102388]={58,{4392,1144,2532.0,3434,3397,0,0},{720011,3000,724499,15000,724500,15000,724498,6000,724270,6000,724521,6000,724718,200000,724719,200000,720101,5000,725176,200000,240705,200000,720142,300,725653,200000,725676,3000,723983,3000}},
[102389]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102390]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102391]={55,{378494,5235,6299.0,3893,3946,0,0},{}},
[102392]={0,{186,32,28.0,96,84,0,0},{}},
[102393]={53,{40061,3911,2446.0,1203,1213,0,0},{}},
[102394]={15,{4179,597,196.0,1793,3540,0,0},{}},
[102395]={58,{6001680,31003,6228.0,30017,30071,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,724856,200000,724857,200000,720101,15000,725176,200000,720143,20000,723983,15000},{117,28.1,31.0}},
[102396]={10,{50001,2253,4327.0,4225,4206,0,0},{}},
[102397]={20,{100012,3208,5172.0,5663,5648,0,0},{}},
[102398]={30,{200078,10409,16094.0,19525,19506,0,0},{}},
[102399]={40,{400011,33610,80536.0,48890,48761,0,0},{}},
[102400]={50,{800176,47462,103913.0,68657,68582,0,0},{}},
[102401]={53,{3283,978,978.0,978,978,0,0},{}},
[102402]={57,{135970,4569,2751.0,9011,9012,0,0},{}},
[102403]={57,{34291,4569,2751.0,7743,7758,0,0},{}},
[102404]={1,{25011,1550,3570.0,3084,3084,0,0},{}},
[102405]={63,{3000070,78724,26963.0,75016,75006,0,0},{770725,100,205718,100000}},
[102406]={63,{3001905,76321,29496.0,75016,75110,0,0},{770726,100,205718,100000}},
[102407]={63,{3000099,76070,26963.0,75016,75006,0,0},{770727,100,205718,100000}},
[102408]={64,{10001278,91920,53384.0,75005,75111,3700,1800},{725196,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,770728,100,205850,200000,205722,30000,205723,30000}},
[102409]={64,{10001501,92851,56199.0,75005,75049,3700,1800},{725196,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,770729,100,205850,200000,205722,30000,205723,30000}},
[102410]={64,{10002526,88493,53384.0,75005,75111,3700,1800},{725196,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,770730,100,205850,200000,205722,30000,205723,30000}},
[102411]={62,{500027,46614,3167.0,40000,40000,0,0},{}},
[102412]={55,{202663,4176,5710.0,3149,3114,0,0},{}},
[102413]={55,{202663,4176,5710.0,3149,3114,0,0},{}},
[102414]={58,{221300,4554,6228.0,3434,3397,0,0},{}},
[102415]={56,{4151,1080,1069.0,3242,3207,0,0},{}},
[102416]={56,{4151,1080,1069.0,3242,3207,0,0},{}},
[102417]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[102418]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[102419]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[102420]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[102421]={58,{4012185,28053,6228.0,25003,15035,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,724854,200000,720101,200000,724867,200000,725176,200000,720143,20000,723983,15000},{117,43.3,60.8}},
[102422]={62,{31477,1654,2667.0,30104,30724,0,0},{}},
[102423]={100,{10786,3250,3250.0,3250,3250,0,0},{},{116,81.7,50.6}},
[102424]={100,{10786,3250,3250.0,3250,3250,0,0},{},{116,24.8,89.4}},
[102425]={58,{5001400,31003,6228.0,15008,15035,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,724860,200000,724861,200000,720101,15000,725176,200000,720143,20000,723983,15000},{117,71.8,29.4}},
[102426]={57,{70938,7030,6052.0,7009,7021,0,0},{}},
[102427]={57,{70938,8042,6052.0,4505,4020,0,0},{}},
[102428]={57,{70938,1058,11002.0,4005,8041,0,0},{}},
[102429]={57,{70938,1058,11002.0,4005,8041,0,0},{}},
[102430]={58,{10000588,38070,35004.0,30017,30071,0,0},{720011,3000,724498,35000,724270,35000,724521,200000,724864,200000,724865,200000,724866,200000,720101,15000,725303,200000,725684,3000,725653,200000,720143,20000,240707,200000,723983,15000},{117,46.9,79.9}},
[102431]={56,{181615,5418,5879.0,7004,7023,0,0},{}},
[102432]={56,{50015,6501,2672.0,5026,5003,0,0},{}},
[102433]={56,{50015,6501,2672.0,5026,5003,0,0},{}},
[102434]={56,{50015,6501,2672.0,5026,5003,0,0},{}},
[102435]={56,{50015,6501,2672.0,5026,5003,0,0},{}},
[102436]={56,{50015,6501,2672.0,5026,5003,0,0},{}},
[102437]={56,{50015,6501,2672.0,5026,5003,0,0},{}},
[102438]={59,{8374888,31124,19608.0,30724,35294,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725063,200000,725064,200000,720101,200000,725069,200000,725303,200000,720143,20000,725653,200000,725689,3000,723983,15000}},
[102439]={0,{186,32,28.0,96,84,0,0},{}},
[102440]={0,{186,32,28.0,96,84,0,0},{}},
[102441]={57,{70938,6551,6052.0,5006,6001,0,0},{}},
[102442]={57,{70938,6551,6052.0,9011,9002,0,0},{}},
[102443]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[102444]={58,{3733346,31578,11728.0,38741,38247,0,0},{}},
[102445]={58,{1500420,25005,11728.0,15008,15223,0,0},{}},
[102446]={58,{2500700,32031,11728.0,18031,30071,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,724862,200000,724863,200000,720101,15000,725176,200000,720143,20000,724869,50000,723983,15000}},
[102447]={58,{2500700,31578,11728.0,32009,32045,0,0},{}},
[102448]={60,{1013541,9783,11984.0,4724,4709,0,0},{}},
[102449]={0,{186,32,28.0,96,84,0,0},{},{116,22.2,195.7}},
[102450]={55,{4033,1049,1038.0,3149,3114,0,0},{},{116,43.1,87.5}},
[102451]={0,{186,32,28.0,96,84,0,0},{}},
[102452]={58,{413832,32031,11728.0,20023,12122,0,0},{},{117,64.3,61.7}},
[102453]={0,{150,30,28.0,90,84,0,0},{}},
[102454]={0,{144,28,28.0,84,84,0,0},{}},
[102455]={0,{144,28,28.0,84,84,0,0},{}},
[102456]={0,{144,28,28.0,84,84,0,0},{}},
[102457]={0,{144,28,28.0,84,84,0,0},{}},
[102458]={0,{144,28,28.0,84,84,0,0},{}},
[102459]={0,{144,28,28.0,84,84,0,0},{}},
[102460]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[102461]={58,{12298,5952,10331.0,3434,3397,0,0},{}},
[102462]={50,{3481,903,893.0,2711,2679,0,0},{}},
[102463]={50,{3481,903,893.0,2711,2679,0,0},{}},
[102464]={58,{3792,1132,1132.0,3397,3397,0,0},{}},
[102465]={57,{800049,23006,2751.0,23030,32968,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102466]={57,{700043,20031,2751.0,15019,15602,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102467]={57,{750105,25004,2751.0,18023,15602,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102468]={55,{600006,20014,2595.0,17009,23718,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102469]={55,{500061,18038,2595.0,9607,10475,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102470]={55,{550090,20057,2595.0,12001,10475,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102471]={57,{900055,23050,23001.0,18023,23007,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,5000,720142,20000,723983,5000}},
[102472]={57,{900055,23050,23001.0,23030,18066,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102473]={55,{11267,3394,2595.0,3149,3114,0,0},{}},
[102474]={0,{144,28,28.0,28,28,0,0},{}},
[102475]={58,{4001120,30020,6228.0,25793,25372,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,724855,200000,720101,15000,724868,200000,725176,200000,720143,20000,723983,15000},{117,26.6,45.6}},
[102476]={55,{2257305,3679,16710.0,57186,57059,0,0},{},{117,26.9,53.1}},
[102477]={55,{1177620,5051,7595.0,20038,20052,0,0},{},{117,26.8,51.1}},
[102478]={50,{250090,3461,2233.0,8012,8039,0,0},{}},
[102479]={55,{200002,14009,2595.0,12001,12046,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102480]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[102481]={90,{102325,22371,11441.0,27598,27458,0,0},{}},
[102482]={70,{69279,17446,8925.0,21516,21422,0,0},{}},
[102483]={90,{102325,22371,11441.0,27598,27458,0,0},{}},
[102484]={90,{102325,22371,11441.0,27598,27458,0,0},{}},
[102485]={90,{102325,22371,11441.0,27598,27458,0,0},{}},
[102486]={90,{102325,22371,11441.0,27598,27458,0,0},{}},
[102487]={5,{369,56,71.0,170,163,0,0},{}},
[102488]={15,{1118,171,196.0,515,507,0,0},{}},
[102489]={25,{2325,337,349.0,1013,1005,0,0},{}},
[102490]={35,{3875,570,535.0,1710,1702,0,0},{}},
[102491]={45,{5575,887,761.0,2661,2651,0,0},{}},
[102492]={50,{6510,1084,893.0,3253,3242,0,0},{}},
[102493]={0,{146,32,48.0,84,90,0,0},{}},
[102494]={55,{21080,1305,1238.0,4855,5795,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770063,1000,205954,60000,720142,10000,723983,10000},{9,53.0,75.5}},
[102495]={55,{21219,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770064,1000,205833,60000,720142,10000,723983,10000},{9,62.9,72.6}},
[102496]={55,{21219,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770076,1000,720142,10000,723983,10000},{9,63.6,69.1}},
[102497]={55,{21219,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770205,1000,720142,10000,723983,10000},{9,63.5,84.4}},
[102498]={55,{22347,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770206,1000,720142,10000,723983,10000},{9,68.8,85.4}},
[102499]={55,{24229,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770771,1000,720142,10000,723983,10000},{9,44.4,69.3}},
[102500]={55,{22418,1297,1238.0,4828,5795,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770684,1000,720142,10000,723983,10000},{9,39.6,55.7}},
[102501]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770685,1000,720142,15000,723983,15000},{9,39.8,54.0}},
[102502]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770686,1000,720142,15000,723983,15000},{9,39.7,53.7}},
[102503]={55,{21080,1305,1038.0,4855,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770772,1000,720142,10000,723983,10000},{9,44.9,55.2}},
[102504]={55,{62896,6557,3095.0,7943,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770731,1000,720142,15000,723983,15000},{9,47.8,58.7}},
[102505]={55,{33153,3007,1038.0,5481,6538,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,20000,770732,1000,720142,15000,723983,15000},{9,56.2,69.6}},
[102506]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770733,1000,720142,15000,723983,15000},{9,52.9,64.4}},
[102507]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770734,1000,720142,15000,723983,15000},{9,53.0,64.3}},
[102508]={55,{64402,6327,2595.0,7987,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770735,1000,720142,15000,723983,15000},{9,53.0,62.1}},
[102509]={55,{1147423,22501,11210.0,11746,11985,0,0},{770736,1000}},
[102510]={55,{24229,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770687,1000,720142,10000,723983,10000},{9,52.9,64.3}},
[102511]={55,{73610,7300,3595.0,7943,10150,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770738,1000,720142,15000,723983,15000},{9,56.4,69.8}},
[102512]={55,{22418,1297,1238.0,4828,5795,0,0},{720011,5000,722193,2000,722159,3500,724499,1000,724500,1500,720101,15000,770739,1000,720142,10000,723983,10000},{9,45.4,77.1}},
[102513]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770740,1000,720142,15000,723983,15000},{9,45.7,81.1}},
[102514]={55,{51236,6176,4095.0,6421,6538,0,0},{770741,1000,206548,300000,206548,30000},{9,70.9,43.4}},
[102515]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770742,1000,720142,15000,723983,15000},{9,49.4,85.1}},
[102516]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770743,1000,720142,15000,723983,15000},{9,45.3,80.0}},
[102517]={55,{86345,7770,2595.0,7987,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770744,1000,720142,15000,723983,15000},{9,50.7,84.9}},
[102518]={55,{21080,1305,1038.0,4855,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1000,724500,1500,720101,15000,770745,1000,720142,10000,723983,10000},{9,43.0,76.5}},
[102519]={55,{21080,1305,1038.0,4855,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770746,1000,720142,10000,723983,10000},{9,44.7,77.5}},
[102520]={55,{21080,1305,1038.0,4855,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770747,1000,720142,10000,723983,10000},{9,42.2,76.6}},
[102521]={55,{62896,6557,3095.0,7943,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770748,1000,720142,15000,723983,15000},{9,38.5,46.1}},
[102522]={55,{58916,6327,2595.0,7517,7466,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,7720101,20000,770749,1000,720142,15000,723983,15000},{9,52.3,44.5}},
[102523]={55,{58916,6327,2595.0,7517,7466,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770750,1000,720142,15000,723983,15000},{9,39.4,49.3}},
[102524]={55,{58916,6327,2595.0,7517,7466,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770751,1000,720142,15000,723983,15000},{9,39.3,49.2}},
[102525]={55,{64402,6327,2595.0,7987,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770752,1000,720142,15000,723983,15000},{9,40.0,48.0}},
[102526]={55,{1147423,21885,11210.0,11746,11985,0,0},{}},
[102527]={55,{24229,1283,1038.0,4828,4859,0,0},{770754,1000}},
[102528]={55,{24229,1283,1038.0,5451,5482,0,0},{770755,1000,205918,50000}},
[102529]={55,{51236,5478,2595.0,6421,6538,0,0},{770756,1000,206548,300000,206548,30000},{9,71.6,43.2}},
[102530]={55,{51236,5478,2595.0,6421,6538,0,0},{770757,1000,206548,300000,206548,30000},{9,70.3,43.4}},
[102531]={55,{64402,6327,2595.0,7987,8158,0,0},{770758,1000,206548,300000,206548,30000},{9,72.3,42.9}},
[102532]={55,{1200039,11035,11210.0,11746,11985,0,0},{}},
[102533]={55,{25846,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770760,1000,720142,10000,723983,10000},{9,65.1,57.1}},
[102534]={55,{29609,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770761,1000,720142,10000,723983,10000},{9,65.0,57.0}},
[102535]={55,{31490,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770762,1000,205917,60000,720142,10000,723983,10000},{9,61.6,51.0}},
[102536]={55,{75542,6029,3095.0,7943,6166,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,20000,770763,1000,720142,15000,723983,15000},{9,66.1,52.1}},
[102537]={55,{24229,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770764,1000,720142,10000,723983,10000},{9,49.8,46.0}},
[102538]={55,{24229,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770765,1000,720142,10000,723983,10000},{9,51.0,47.4}},
[102539]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770766,1000,720142,15000,723983,15000},{9,45.9,49.8}},
[102540]={55,{51236,5478,2595.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770767,1000,720142,15000,723983,15000},{9,49.2,49.1}},
[102541]={55,{43764,5080,2595.0,5451,5482,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770768,1000,720142,15000,723983,15000},{9,67.9,86.1}},
[102542]={55,{24229,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770769,1000,205915,60000,720142,10000,723983,10000},{9,63.4,86.2}},
[102543]={55,{22418,1297,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770207,1000,205834,60000,720142,10000,723983,10000},{9,39.6,55.7}},
[102544]={55,{51236,5478,2595.0,6421,6538,0,0},{}},
[102545]={55,{51236,5478,2595.0,6421,6538,0,0},{}},
[102546]={1,{-12,17,28.0,59,60,0,0},{}},
[102547]={55,{58916,10545,2595.0,7517,8158,0,0},{}},
[102548]={1,{-12,17,28.0,59,60,0,0},{}},
[102549]={1,{-12,17,28.0,59,60,0,0},{}},
[102550]={1,{-12,17,28.0,59,60,0,0},{}},
[102551]={55,{51236,5478,2595.0,19640,21026,0,0},{}},
[102552]={55,{71753,5560,2595.0,105593,24033,0,0},{}},
[102553]={55,{40265,4605,3095.0,6421,6538,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,720142,15000,723983,15000},{9,52.4,44.5}},
[102554]={0,{150,30,28.0,90,84,0,0},{}},
[102555]={0,{186,32,28.0,96,84,0,0},{}},
[102556]={1,{129,21,14.0,45,72,0,0},{}},
[102557]={0,{144,28,28.0,28,28,0,0},{}},
[102558]={58,{8000028,32107,11728.0,35031,35052,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,724858,200000,724859,200000,720101,15000,725176,200000,720143,20000,723983,15000}},
[102559]={55,{6509,1297,1038.0,1297,1308,0,0},{}},
[102560]={55,{2257305,3679,16710.0,57186,57059,0,0},{},{117,26.7,52.3}},
[102561]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[102562]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[102563]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[102564]={58,{4392,1144,1132.0,3434,3397,0,0},{725677,3000,724498,7000,724521,7000,724893,30000,724894,200000,720101,15000,724903,50000,724904,50000,724905,50000,724906,50000,724907,5000,724908,5000,725301,200000,720143,20000,725653,200000}},
[102565]={58,{4392,1144,1132.0,3434,3397,0,0},{725677,3000,724498,7000,724270,7000,724521,7000,724894,200000,725653,200000,720101,15000,724895,30000,724896,20000,724897,20000,724898,20000,720143,20000,724899,500,725301,200000,723983,15000}},
[102566]={0,{186,32,28.0,96,84,0,0},{}},
[102567]={85,{90544791,349961,45575.0,422189,361989,5000,3000},{}},
[102568]={57,{1262314,37436,13752.0,30636,30669,0,0},{}},
[102569]={58,{8214,1465,1132.0,4396,4382,0,0},{}},
[102570]={55,{200002,14009,2595.0,12001,12046,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102571]={55,{200002,14009,2595.0,12001,12046,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102572]={55,{200002,14009,2595.0,12001,12046,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102573]={55,{400004,20019,2595.0,15024,10150,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102574]={55,{350088,20019,2595.0,15024,10150,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102575]={55,{200002,17035,2595.0,6142,7704,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102576]={55,{200002,17035,2595.0,5827,7704,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102577]={55,{200002,17035,2595.0,5827,7704,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102578]={55,{200002,10070,15005.0,8662,15042,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102579]={55,{200002,10070,15005.0,8662,15042,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102580]={62,{550053,70120,6667.0,35008,35044,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500,205860,20000}},
[102581]={62,{550161,58168,6667.0,35008,35124,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500,205860,20000},{208,34.4,79.3}},
[102582]={62,{603444,57732,6667.0,37060,37045,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500,205860,20000},{208,45.2,79.7}},
[102583]={0,{144,28,28.0,28,28,0,0},{},{117,26.2,50.2}},
[102584]={62,{550456,63926,6667.0,40025,40005,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500,205860,20000}},
[102585]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[102586]={62,{550837,65250,6667.0,40025,40085,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500,205860,20000},{208,34.7,79.8}},
[102587]={55,{200002,13014,2595.0,16001,10028,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102588]={55,{200002,13014,2595.0,10016,16021,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102589]={55,{200002,13014,2595.0,12001,12046,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102590]={55,{200002,10070,15005.0,8662,15042,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[102591]={0,{144,28,28.0,28,28,0,0},{}},
[102592]={0,{144,28,28.0,28,28,0,0},{}},
[102593]={0,{144,28,28.0,28,28,0,0},{}},
[102594]={0,{144,28,28.0,28,28,0,0},{}},
[102595]={0,{144,28,28.0,28,28,0,0},{}},
[102596]={0,{144,28,28.0,28,28,0,0},{}},
[102597]={0,{144,28,28.0,28,28,0,0},{}},
[102598]={0,{144,28,28.0,28,28,0,0},{}},
[102599]={0,{144,28,28.0,28,28,0,0},{}},
[102600]={0,{144,28,28.0,28,28,0,0},{}},
[102601]={0,{144,28,28.0,28,28,0,0},{}},
[102602]={0,{144,28,28.0,28,28,0,0},{}},
[102603]={0,{144,28,28.0,28,28,0,0},{}},
[102604]={0,{144,28,28.0,28,28,0,0},{}},
[102605]={0,{144,28,28.0,28,28,0,0},{}},
[102606]={0,{144,28,28.0,28,28,0,0},{}},
[102607]={0,{144,28,28.0,28,28,0,0},{}},
[102608]={0,{144,28,28.0,28,28,0,0},{}},
[102609]={0,{144,28,28.0,28,28,0,0},{}},
[102610]={0,{144,28,28.0,28,28,0,0},{}},
[102611]={0,{144,28,28.0,28,28,0,0},{}},
[102612]={0,{144,28,28.0,28,28,0,0},{}},
[102613]={0,{144,28,28.0,28,28,0,0},{}},
[102614]={0,{144,28,28.0,28,28,0,0},{}},
[102615]={0,{144,28,28.0,28,28,0,0},{}},
[102616]={0,{144,28,28.0,28,28,0,0},{}},
[102617]={0,{144,28,28.0,28,28,0,0},{}},
[102618]={0,{144,28,28.0,28,28,0,0},{}},
[102619]={85,{90544791,286524,45575.0,490782,471286,0,0},{}},
[102620]={5,{316,54,71.0,55,56,0,0},{210009,100000}},
[102621]={1,{186,32,28.0,96,84,0,0},{}},
[102622]={60,{3062305,9783,11984.0,4724,4709,0,0},{}},
[102623]={58,{3932881,30644,12652.0,21471,20548,0,0},{},{118,66.7,23.7}},
[102624]={54,{42383,4075,2520.0,5292,5292,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,720142,5000,723983,3000},{8,50.2,11.0}},
[102625]={54,{19387,1257,1008.0,4684,4687,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,720142,5000,723983,3000},{8,50.2,11.4}},
[102626]={57,{70135,6188,7001.0,4238,4225,0,0},{}},
[102627]={57,{28317,4569,2751.0,7576,7527,0,0},{}},
[102628]={57,{28317,4569,2751.0,7576,7527,0,0},{205848,200000}},
[102629]={0,{144,28,28.0,84,84,0,0},{}},
[102630]={0,{144,28,28.0,84,84,0,0},{}},
[102631]={0,{144,28,28.0,84,84,0,0},{}},
[102632]={0,{144,28,28.0,84,84,0,0},{}},
[102633]={0,{144,28,28.0,84,84,0,0},{}},
[102634]={0,{144,28,28.0,84,84,0,0},{}},
[102635]={0,{144,28,28.0,28,28,0,0},{}},
[102636]={50,{5613,1071,893.0,1071,1080,0,0},{}},
[102637]={57,{70938,7030,6052.0,7009,7021,0,0},{}},
[102638]={57,{70938,1058,11002.0,4005,8041,0,0},{}},
[102639]={1,{139,21,28.0,63,60,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,202945,25000,222605,400,723980,3000,721912,320}},
[102640]={50,{1940741,1084,893.0,3253,3242,0,0},{}},
[102641]={56,{250078,17623,6672.0,15009,15053,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,724521,1500,720101,15000,205990,30000,720142,20000,205987,30000,205989,30000,723983,15000}},
[102642]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[102643]={55,{2257305,3679,16710.0,57186,57059,0,0},{},{117,25.7,51.6}},
[102644]={55,{784308,5220,5710.0,3937,3924,0,0},{}},
[102645]={0,{29079,124,192.0,84,90,0,0},{}},
[102646]={57,{30013,4029,6052.0,4005,4000,0,0},{}},
[102647]={1,{139,21,28.0,63,60,0,0},{}},
[102648]={50,{6063,1059,893.0,3215,3242,0,0},{},{9,61.4,70.4}},
[102649]={58,{22998,4738,2831.0,4396,4382,0,0},{}},
[102650]={55,{554279,5478,2595.0,6421,6538,0,0},{}},
[102651]={58,{1220213,4724,2831.0,4372,4382,0,0},{}},
[102652]={10,{42207,343,327.0,2321,2362,0,0},{}},
[102653]={10,{42207,343,327.0,2321,2362,0,0},{}},
[102654]={42,{182687,3097,3790.0,2642,2336,0,0},{720011,3000,722360,15000,722496,15000,723414,20000,720099,10000,720142,10000,723982,8000,550832,100}},
[102655]={42,{182687,3097,3790.0,2642,2336,0,0},{720011,3000,722360,15000,722496,15000,723414,20000,720099,10000,720142,10000,723982,8000,550832,100}},
[102656]={10,{4678,672,131.0,1268,1308,0,0},{}},
[102657]={10,{4683,773,131.0,1812,1308,0,0},{}},
[102658]={55,{200237,9029,2595.0,18004,18100,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,724521,1500,720101,15000,720142,20000,205985,30000,205989,30000,205990,30000,723983,15000}},
[102659]={55,{100063,9029,2595.0,7008,7032,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,724521,1500,720101,15000,720142,20000,205987,30000,205991,30000,205990,30000,723983,15000},{118,41.2,75.6}},
[102660]={55,{170108,9029,2595.0,9500,9539,0,0},{720011,5000,724499,3500,724500,3500,724498,1500,724270,1500,724521,1500,720101,15000,205985,30000,720142,20000,205989,30000,205991,30000,723983,15000}},
[102661]={55,{170108,7510,2595.0,9500,9539,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,724521,1500,720101,15000,205986,30000,720142,20000,205991,30000,205989,30000,723983,15000}},
[102662]={55,{170108,7510,2595.0,9500,9539,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,724521,1500,720101,15000,205986,30000,720142,20000,205991,30000,205990,30000,723983,15000}},
[102663]={56,{150302,5418,5879.0,7004,7023,0,0},{}},
[102664]={56,{150302,5418,5879.0,7004,7023,0,0},{}},
[102665]={55,{22418,1297,1038.0,4828,4859,0,0},{}},
[102666]={56,{50103,6050,6672.0,7023,7046,0,0},{}},
[102667]={55,{10116,4022,5095.0,5451,10762,0,0},{}},
[102668]={55,{64402,6327,2595.0,7987,8158,0,0},{}},
[102669]={55,{10025,1297,1038.0,4828,4859,0,0},{}},
[102670]={58,{6053812,31124,17602.0,35706,35710,0,0},{720011,5000,724915,30000,724914,200000,724916,200000,724917,45000,720101,15000,724924,200000,724925,200000,724926,200000,724927,200000,724928,30000,724929,10000,724930,10000,720143,25000,725303,200000}},
[102671]={0,{186,32,28.0,96,84,0,0},{},{2,52.3,4.3}},
[102672]={1,{117,15,28.0,46,60,0,0},{}},
[102673]={55,{21080,1305,1038.0,4855,4859,0,0},{}},
[102674]={55,{21080,1305,1038.0,4855,4859,0,0},{}},
[102675]={55,{21080,1305,1038.0,4855,4859,0,0},{}},
[102676]={0,{186,32,28.0,96,84,0,0},{}},
[102677]={0,{186,32,28.0,96,84,0,0},{}},
[102678]={0,{186,32,28.0,96,84,0,0},{}},
[102679]={0,{186,32,28.0,96,84,0,0},{}},
[102680]={0,{186,32,28.0,96,84,0,0},{}},
[102681]={55,{57538,4893,2595.0,6074,6105,0,0},{}},
[102682]={1,{117,30,14.0,63,84,0,0},{}},
[102683]={58,{3500330,25025,20000.0,30026,40039,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725033,200000,725034,200000,720101,200000,725177,200000,720143,20000,723983,15000}},
[102684]={57,{350008,20039,5751.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102685]={57,{350008,25049,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102686]={57,{350008,18046,5751.0,18025,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,206436,200000,723983,15000}},
[102687]={57,{350008,10039,15001.0,18025,22636,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102688]={57,{350008,10039,15001.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102689]={57,{350008,10039,15001.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102690]={57,{265056,5477,2100.0,22904,20668,0,0},{}},
[102691]={57,{280005,23097,5251.0,22779,20668,0,0},{720011,3000}},
[102692]={57,{265056,5477,2100.0,22904,20668,0,0},{}},
[102693]={57,{150103,10039,15001.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102694]={57,{150103,20039,5751.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102695]={57,{210028,16126,5251.0,17029,12665,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102696]={57,{175586,8877,27751.0,15004,12665,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102697]={57,{666944,25075,2751.0,22779,24604,0,0},{720011,3000,724499,3500,724500,3500,724913,1500,720101,15000,720142,20000,723983,15000}},
[102698]={57,{300005,23039,2751.0,22779,24604,0,0},{720011,3000,724499,3500,724500,3500,724913,1500,720101,15000,720142,20000,723983,15000}},
[102699]={57,{350006,25075,2751.0,22779,24604,0,0},{720011,3000,724499,3500,724500,3500,724913,1500,720101,15000,720142,20000,723983,15000}},
[102700]={57,{750127,28036,2751.0,26014,20028,0,0},{720011,3000,724499,3500,724500,3500,724913,1500,720101,15000,720142,20000,723983,15000}},
[102701]={58,{6501833,35057,17228.0,31018,28004,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725055,200000,725056,200000,720101,200000,725177,200000,720143,20000,723983,15000}},
[102702]={57,{150002,23011,5751.0,22779,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102703]={57,{350008,18046,5751.0,22904,22636,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102704]={58,{6000844,32072,17228.0,35027,28004,0,0},{}},
[102705]={58,{5504268,38213,17228.0,31629,30154,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725059,200000,725060,200000,720101,200000,725177,200000,720143,20000,725653,200000,725672,3000,723983,15000}},
[102706]={58,{7000616,28761,61228.0,30032,30071,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725031,200000,725032,200000,720101,200000,725177,200000,720143,20000,552098,10000,241824,10000,723983,15000}},
[102707]={58,{8516828,40772,16128.0,31629,21905,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725061,200000,725062,200000,720101,200000,725177,200000,720143,20000,725653,200000,725679,3000,723983,15000}},
[102708]={58,{1736912,23157,18328.0,24733,30917,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725037,200000,725038,200000,720101,200000,725303,200000,725678,3000,725653,200000,240709,200000,720143,20000,723983,15000}},
[102709]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,205971,100000}},
[102710]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,205971,100000,720142,5000,723983,3000}},
[102711]={50,{26628,1295,893.0,1518,1527,0,0},{}},
[102712]={54,{55847,4718,2520.0,2409,1663,0,0},{}},
[102713]={55,{24229,1283,1038.0,5451,5482,0,0},{720011,5000}},
[102714]={55,{24229,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,720142,10000,723983,10000}},
[102715]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000}},
[102716]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,720142,5000,723983,3000}},
[102717]={58,{16999,1465,1132.0,7006,7032,0,0},{}},
[102718]={50,{3253,903,1355.0,2679,2695,0,0},{}},
[102719]={57,{100797,6447,5251.0,22779,20668,0,0},{}},
[102720]={57,{100797,6447,5251.0,22779,20668,0,0},{}},
[102721]={57,{195018,13429,5251.0,17029,12665,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,45000,724913,3000,720101,20000,720142,15000,206036,30000,723983,15000}},
[102722]={57,{175586,7930,27751.0,15004,14304,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720100,20000,720142,20000,206037,30000,723983,15000}},
[102723]={57,{210028,16126,5251.0,17029,12665,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,720142,20000,206038,30000,723983,15000}},
[102724]={57,{175586,8877,27751.0,15004,12665,0,0},{720011,3000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,720142,20000,206037,30000,723983,15000}},
[102725]={56,{150091,9478,2672.0,16420,10614,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,720142,20000,723983,15000}},
[102726]={56,{150091,9478,2672.0,15458,10614,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,720142,20000,723983,15000}},
[102727]={55,{239946,20019,6095.0,11746,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770734,1000,720142,15000,723983,15000},{9,29.3,22.8}},
[102728]={55,{196060,18498,27595.0,11746,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770686,1000,720142,15000,723983,15000},{9,31.0,19.5}},
[102729]={55,{239946,20019,6095.0,11746,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770743,1000,720142,15000,723983,15000},{9,31.8,22.3}},
[102730]={55,{196060,16186,2595.0,11746,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770743,1000,720142,15000,723983,15000},{9,29.2,23.1}},
[102731]={55,{152174,17825,6095.0,10180,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770743,1000,720142,15000,723983,15000},{9,33.4,22.1}},
[102732]={55,{152174,17825,6095.0,10180,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770734,1000,720142,15000,723983,15000},{9,28.9,23.5}},
[102733]={55,{130231,38787,27595.0,10180,11411,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770734,1000,720142,15000,723983,15000},{9,29.5,22.4}},
[102734]={53,{356345,4004,5382.0,3631,3640,0,0},{}},
[102735]={53,{356345,4004,5382.0,3631,3640,0,0},{}},
[102736]={0,{186,32,28.0,96,84,0,0},{}},
[102737]={0,{186,32,28.0,96,84,0,0},{}},
[102738]={57,{60041,4034,2751.0,10025,10051,0,0},{206138,200000}},
[102739]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[102740]={58,{3000914,25028,17228.0,20017,20016,0,0},{720011,8000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,724919,200000,724920,50000,205969,200000,724921,50000,720101,15000,720142,20000,240714,200000,723983,10000},{9,34.1,11.6}},
[102741]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102742]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102743]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102744]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102745]={58,{220980,4542,6228.0,3415,3397,0,0},{}},
[102746]={52,{15909,3232,949.0,1443,1452,0,0},{}},
[102747]={52,{10041,1171,949.0,4330,4358,0,0},{}},
[102748]={55,{51236,5478,2595.0,6421,6538,0,0},{206548,300000,206548,30000}},
[102749]={58,{635133,10065,6228.0,13016,13012,0,0},{}},
[102750]={58,{220980,4542,6228.0,3415,3397,0,0},{}},
[102751]={58,{100017,20043,5831.0,18002,18053,0,0},{}},
[102752]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102753]={55,{54873,4243,2595.0,15087,15013,0,0},{}},
[102754]={1,{-1,51,28.0,59,60,0,0},{}},
[102755]={52,{16773,1145,949.0,4330,4358,0,0},{},{7,57.2,21.1}},
[102756]={90,{16448709,46940,30670.0,43678,43663,0,0},{}},
[102757]={90,{21735508,55340,36170.0,51478,51493,0,0},{}},
[102758]={90,{27082307,63740,41670.0,59278,59323,0,0},{}},
[102759]={90,{16448709,46940,30670.0,43678,43663,0,0},{}},
[102760]={90,{21735508,55340,36170.0,51478,51493,0,0},{}},
[102761]={90,{27082307,63740,41670.0,59278,59323,0,0},{}},
[102762]={90,{16448709,46940,30670.0,43678,43663,0,0},{}},
[102763]={90,{21735508,55340,36170.0,51478,51493,0,0},{}},
[102764]={90,{27082307,63740,41670.0,59278,59323,0,0},{}},
[102765]={5,{743,67,178.0,165,208,0,0},{}},
[102766]={5,{743,67,178.0,165,208,0,0},{}},
[102767]={5,{743,67,178.0,165,208,0,0},{}},
[102768]={55,{784308,5220,5710.0,3937,3924,0,0},{}},
[102769]={10,{34306,453,517.0,295,371,0,0},{720011,3000,722286,1035,722422,1035,723680,1035,722524,1035,720133,100000,770098,1000,550951,2730,720025,50000,723980,3000,721908,662}},
[102770]={0,{144,28,28.0,84,84,0,0},{}},
[102771]={52,{18304,3765,2373.0,3475,3503,0,0},{},{7,59.5,68.1}},
[102772]={55,{57538,4893,2595.0,6074,6105,0,0},{}},
[102773]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102774]={58,{50899,5829,6228.0,6010,6013,0,0},{}},
[102775]={52,{7555,1158,949.0,1443,1452,0,0},{}},
[102776]={57,{33395,5004,6251.0,9029,9001,0,0},{}},
[102777]={57,{60041,11203,6251.0,10058,10051,0,0},{}},
[102778]={57,{79938,7222,6251.0,10025,10051,0,0},{}},
[102779]={57,{20504,9150,1100.0,10025,10051,0,0},{}},
[102780]={0,{186,32,28.0,96,84,0,0},{}},
[102781]={0,{186,32,28.0,96,84,0,0},{}},
[102782]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[102783]={1,{117,30,14.0,63,84,0,0},{}},
[102784]={1,{117,30,14.0,63,84,0,0},{}},
[102785]={1,{117,30,14.0,63,84,0,0},{}},
[102786]={1,{117,30,14.0,63,84,0,0},{}},
[102787]={1,{117,30,14.0,63,84,0,0},{}},
[102788]={53,{20025,1210,978.0,5107,5108,0,0},{}},
[102789]={53,{20025,1210,978.0,5107,5108,0,0},{}},
[102790]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,770707,1000,206013,300000,720142,5000,723983,3000}},
[102791]={52,{38957,3765,2373.0,4899,4928,0,0},{720011,5000,722191,5000,722157,4500,724180,4000,724185,3500,720100,10000,724269,5000,770078,100,720142,5000,723982,3000}},
[102792]={52,{18496,1145,949.0,4330,4358,0,0},{}},
[102793]={52,{18555,1171,1440.0,4330,4383,0,0},{}},
[102794]={52,{2996,1145,949.0,3475,3503,0,0},{}},
[102795]={53,{18870,3911,2446.0,1692,1702,0,0},{}},
[102796]={53,{355893,5798,8682.0,4491,5445,0,0},{720011,0,722191,0,722157,0,724180,0,724185,0,720100,0,724269,0,720142,0,723982,0}},
[102797]={49,{5845,1036,865.0,3109,3117,0,0},{},{7,46.4,61.4}},
[102798]={56,{165099,4224,27672.0,14544,12414,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,770743,1000,720142,15000,206037,30000,723983,15000},{119,38.9,27.8}},
[102799]={51,{33331,1127,1397.0,3343,3391,0,0},{}},
[102800]={56,{150091,10723,4422.0,16420,10614,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,720142,20000,723983,15000}},
[102801]={0,{186,32,28.0,96,84,0,0},{}},
[102802]={58,{5937744,45188,17228.0,12912,31011,0,0},{770753,1000}},
[102803]={50,{2830,1105,1137.0,1916,640,0,0},{}},
[102804]={52,{4006,969,883.0,2448,2859,0,0},{}},
[102805]={51,{5786,1114,921.0,1114,1123,0,0},{}},
[102806]={0,{29079,124,192.0,84,90,0,0},{}},
[102807]={50,{200006,10038,4003.0,15007,15036,0,0},{}},
[102808]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102809]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102810]={57,{841342,34814,5751.0,27021,24844,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102811]={55,{57538,4893,2595.0,6074,6105,0,0},{}},
[102812]={55,{57538,4893,2595.0,6074,6105,0,0},{}},
[102813]={55,{57538,4893,2595.0,6074,6105,0,0},{}},
[102814]={55,{57538,4893,2595.0,6074,6105,0,0},{}},
[102815]={1,{-2,17,28.0,59,60,0,0},{}},
[102816]={55,{580794,7288,5710.0,5638,5638,0,0},{}},
[102817]={55,{53431,7615,2595.0,4698,4703,0,0},{}},
[102818]={55,{53431,7615,2595.0,4698,4703,0,0},{}},
[102819]={53,{19385,3946,2969.0,3610,3661,0,0},{}},
[102820]={53,{19385,3946,2969.0,3610,3661,0,0},{}},
[102821]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[102822]={52,{5961,1158,1149.0,1158,1167,0,0},{}},
[102823]={1,{117,30,14.0,63,84,0,0},{}},
[102824]={1,{117,30,14.0,63,84,0,0},{}},
[102825]={1,{117,30,14.0,63,84,0,0},{}},
[102826]={1,{117,30,14.0,63,84,0,0},{}},
[102827]={1,{117,30,14.0,63,84,0,0},{}},
[102828]={1,{117,15,28.0,46,60,0,0},{}},
[102829]={1,{117,15,28.0,46,60,0,0},{}},
[102830]={1,{117,15,28.0,46,60,0,0},{}},
[102831]={1,{117,15,28.0,46,60,0,0},{}},
[102832]={53,{19385,3946,2969.0,3610,3661,0,0},{},{119,59.6,50.5}},
[102833]={53,{19385,3946,2969.0,3610,3661,0,0},{}},
[102834]={53,{19385,3946,2969.0,3610,3661,0,0},{},{119,41.8,40.5}},
[102835]={85,{90544791,316861,40075.0,422189,361989,0,0},{}},
[102836]={52,{345771,4904,5222.0,4899,5966,0,0},{}},
[102837]={52,{18304,4314,3873.0,4330,4358,0,0},{}},
[102838]={52,{18304,4314,3873.0,4330,4358,0,0},{}},
[102839]={53,{6779,1456,978.0,3631,3640,0,0},{}},
[102840]={58,{326143,27088,2831.0,4348,4382,0,0},{}},
[102841]={58,{326143,4711,2831.0,24733,45151,0,0},{}},
[102842]={58,{326143,4711,2831.0,45117,24766,0,0},{}},
[102843]={0,{186,32,28.0,96,84,0,0},{}},
[102844]={0,{164,91,70.0,84,84,0,0},{}},
[102845]={1,{0,98,70.0,0,0,0,0},{}},
[102846]={1,{206,98,70.0,96,84,0,0},{}},
[102847]={52,{5961,1158,1149.0,1443,1758,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770063,1000,205954,60000,720142,10000,723983,10000}},
[102848]={55,{64402,5584,2595.0,7987,5170,0,0},{}},
[102849]={0,{142,24,28.0,84,84,0,0},{}},
[102850]={58,{492847,22051,11519.0,28130,20044,0,0},{}},
[102851]={58,{492161,24653,11519.0,27382,15896,0,0},{}},
[102852]={58,{501834,27857,11519.0,24121,21175,0,0},{}},
[102853]={58,{501688,24623,11519.0,27382,21175,0,0},{}},
[102854]={58,{501834,16070,15523.0,19738,26955,0,0},{}},
[102855]={58,{501625,24054,11519.0,27532,21175,0,0},{}},
[102856]={58,{501625,29938,11519.0,27532,21175,0,0},{}},
[102857]={0,{170,94,70.0,90,84,0,0},{}},
[102858]={0,{170,94,70.0,90,84,0,0},{}},
[102859]={0,{162,84,70.0,84,84,0,0},{}},
[102860]={0,{170,94,70.0,90,84,0,0},{}},
[102861]={0,{170,94,70.0,90,84,0,0},{}},
[102862]={0,{170,94,70.0,90,84,0,0},{}},
[102863]={0,{170,94,70.0,90,84,0,0},{}},
[102864]={0,{170,94,70.0,90,84,0,0},{}},
[102865]={50,{17654,3461,2233.0,3215,3242,0,0},{}},
[102866]={50,{17654,3461,2233.0,3215,3242,0,0},{}},
[102867]={50,{9440,2884,2233.0,2679,2679,0,0},{}},
[102868]={50,{9440,2884,2233.0,2679,2679,0,0},{}},
[102869]={50,{30091,15018,4003.0,15007,15036,0,0},{}},
[102870]={55,{20516,4980,4095.0,3915,4680,0,0},{}},
[102871]={1,{117,30,14.0,63,84,0,0},{}},
[102872]={58,{6000844,37019,17228.0,35027,28004,0,0},{}},
[102873]={58,{6000844,35057,17228.0,35027,28004,0,0},{}},
[102874]={58,{6000844,35057,17228.0,35027,28004,0,0},{}},
[102875]={57,{78069,4542,2751.0,10564,10696,0,0},{}},
[102876]={57,{78069,4542,2751.0,10564,10696,0,0},{}},
[102877]={57,{78069,4542,2751.0,10564,10696,0,0},{}},
[102878]={57,{78069,22670,2751.0,26575,50725,0,0},{}},
[102879]={57,{78069,20031,2751.0,26575,50725,0,0},{}},
[102880]={57,{78069,20031,2751.0,26575,50725,0,0},{}},
[102881]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[102882]={57,{316824,111836,2751.0,20699,14129,0,0},{}},
[102883]={57,{316824,4542,2751.0,20699,20732,0,0},{}},
[102884]={57,{316824,22460,2751.0,20699,20732,0,0},{}},
[102885]={57,{316824,4542,2751.0,17398,37239,0,0},{}},
[102886]={57,{316824,4542,2751.0,17398,37239,0,0},{}},
[102887]={57,{316824,4542,2751.0,37206,17431,0,0},{}},
[102888]={57,{316824,4542,2751.0,24000,17431,0,0},{}},
[102889]={57,{316824,4542,2751.0,14096,33938,0,0},{}},
[102890]={58,{50831,6493,11519.0,5367,9990,0,0},{}},
[102891]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102892]={1,{117,30,14.0,63,84,0,0},{}},
[102893]={1,{117,30,14.0,63,84,0,0},{}},
[102894]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102895]={0,{142,24,28.0,84,84,0,0},{}},
[102896]={50,{23977,1527,893.0,5391,5386,0,0},{}},
[102897]={50,{20045,1051,893.0,4097,8200,0,0},{}},
[102898]={50,{21012,1051,893.0,4097,8200,0,0},{}},
[102899]={8,{3087,941,333.0,1653,257,0,0},{}},
[102900]={8,{3737,1243,333.0,2225,352,0,0},{}},
[102901]={1,{1158,164,48.0,911,64,0,0},{720726,100000}},
[102902]={1,{812,414,48.0,656,87,0,0},{720726,100000}},
[102903]={1,{1158,164,48.0,911,64,0,0},{720726,100000}},
[102904]={1,{812,414,48.0,656,87,0,0},{720726,100000}},
[102905]={1,{1158,164,48.0,911,64,0,0},{720726,100000}},
[102906]={60,{500095,17858,3096.0,10079,10042,0,0},{}},
[102907]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[102908]={55,{64402,6327,2595.0,7987,8158,0,0},{},{9,82.3,56.1}},
[102909]={55,{20036,4218,2595.0,3893,3924,0,0},{}},
[102910]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[102911]={57,{14434,1153,416.0,18045,7591,0,0},{}},
[102912]={57,{14434,1458,416.0,18045,7591,0,0},{}},
[102913]={57,{10889,248,1591.0,13419,16905,0,0},{}},
[102914]={0,{186,32,28.0,96,84,0,0},{},{120,30.4,20.3}},
[102915]={1,{812,414,48.0,656,87,0,0},{720726,100000}},
[102916]={0,{29079,124,192.0,84,90,0,0},{}},
[102917]={50,{17654,3461,2233.0,3215,3242,0,0},{}},
[102918]={58,{201092,25025,20000.0,28010,35070,0,0},{}},
[102919]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102920]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102921]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102922]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102923]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102924]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102925]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[102926]={55,{51236,5478,2595.0,6421,6538,0,0},{}},
[102927]={55,{51236,5478,2595.0,6421,6538,0,0},{}},
[102928]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,206469,200000,723983,15000}},
[102929]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102930]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102931]={1,{129,21,14.0,45,72,0,0},{}},
[102932]={1,{117,30,14.0,63,84,0,0},{}},
[102933]={1,{117,30,14.0,63,84,0,0},{}},
[102934]={58,{7033721,27977,17228.0,36623,42888,0,0},{}},
[102935]={57,{4270,1112,1100.0,3337,3301,0,0},{}},
[102936]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102937]={3,{360,135,123.0,117,147,0,0},{}},
[102938]={58,{1405861,20975,17228.0,21335,27158,0,0},{}},
[102939]={55,{18643,1312,1574.0,4828,4886,0,0},{}},
[102940]={55,{22418,1297,1038.0,4828,4859,0,0},{}},
[102941]={55,{20677,1297,1038.0,4828,4859,0,0},{}},
[102942]={55,{20677,1297,1038.0,4828,4859,0,0},{}},
[102943]={55,{33557,1297,1038.0,1609,1619,0,0},{}},
[102944]={57,{4270,1112,1100.0,3337,3301,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725035,200000,725036,200000,720101,200000,725177,200000,720143,20000,725653,200000,725671,3000,723983,15000}},
[102945]={57,{200021,19501,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102946]={1,{117,15,28.0,46,60,0,0},{}},
[102947]={57,{450077,22033,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102948]={55,{150007,22043,5595.0,21430,21890,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000},{120,56.7,54.5}},
[102949]={57,{779141,26666,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102950]={57,{760923,22901,2751.0,22779,24604,0,0},{}},
[102951]={57,{21831,5533,6337.0,4192,4249,0,0},{}},
[102952]={57,{350008,10039,15001.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102953]={57,{4270,1112,1100.0,3337,3301,0,0},{}},
[102954]={0,{144,28,28.0,28,28,0,0},{}},
[102955]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[102956]={0,{146,32,48.0,84,90,0,0},{}},
[102957]={0,{146,32,48.0,84,90,0,0},{}},
[102958]={0,{146,32,48.0,84,90,0,0},{}},
[102959]={57,{4270,1112,1100.0,3337,3301,0,0},{}},
[102960]={1,{117,15,28.0,46,60,0,0},{}},
[102961]={57,{350008,20078,15001.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102962]={57,{200021,18962,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,206484,200000,723983,15000}},
[102963]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,206469,200000,723983,15000}},
[102964]={1,{117,15,28.0,46,60,0,0},{}},
[102965]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,206470,200000,723983,15000}},
[102966]={57,{350008,4412,2751.0,22904,10828,0,0},{}},
[102967]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,206470,200000,723983,15000}},
[102968]={50,{1951642,1059,893.0,3215,3242,0,0},{720011,5000,724924,200000}},
[102969]={58,{6000844,30090,25302.0,28028,35015,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725057,200000,725058,200000,720101,200000,725177,200000,720143,20000,723983,15000}},
[102970]={57,{1000108,26558,5751.0,27021,24844,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[102971]={57,{254477,7364,7751.0,22904,26572,0,0},{}},
[102972]={0,{146,32,48.0,84,90,0,0},{}},
[102973]={0,{146,32,48.0,84,90,0,0},{}},
[102974]={0,{146,32,48.0,84,90,0,0},{}},
[102975]={0,{146,32,48.0,84,90,0,0},{}},
[102976]={0,{146,32,48.0,84,90,0,0},{}},
[102977]={50,{325304,2515,4913.0,247292,3242,0,0},{}},
[102978]={50,{16455,-11686,2233.0,3253,3242,0,0},{}},
[102979]={0,{146,32,48.0,84,90,0,0},{}},
[102980]={0,{146,32,48.0,84,90,0,0},{}},
[102981]={0,{146,32,48.0,84,90,0,0},{}},
[102982]={45,{5575,887,761.0,2661,2651,0,0},{}},
[102983]={45,{19237,2824,1370.0,2440,3064,0,0},{}},
[102984]={45,{15412,2867,1904.0,2661,2651,0,0},{}},
[102985]={50,{18101,3506,2233.0,3253,3242,0,0},{}},
[102986]={0,{29079,124,192.0,84,90,0,0},{}},
[102987]={85,{81574187,286524,45575.0,422189,361989,5500,2000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726902,200000,726903,200000,726187,100000,725929,200000}},
[102988]={0,{146,32,48.0,84,90,0,0},{}},
[102989]={85,{81789530,350660,45575.0,426087,361989,5000,3000},{}},
[102990]={85,{83934762,285952,45575.0,490782,471286,5000,3000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726904,200000,726905,200000,726187,100000,726056,200000}},
[102991]={85,{2239813,222138,20716.0,353596,361989,5000,3000},{}},
[102992]={85,{90544791,286524,45575.0,422189,361989,5000,3000},{}},
[102993]={85,{95280957,287096,45575.0,426087,361989,5000,3000},{},{154,36.5,36.0}},
[102994]={85,{81789530,287096,45575.0,426087,361989,5000,3000},{}},
[102995]={85,{269956871,307670,45575.0,456486,471286,5000,3000},{},{154,37.7,9.7}},
[102996]={85,{90544791,349961,45575.0,422189,471286,5000,3000},{}},
[102997]={85,{74846234,349961,45575.0,422189,361989,5000,3000},{}},
[102998]={85,{74846234,286524,45575.0,422189,361989,5000,3000},{}},
[102999]={85,{2415284,262685,15716.0,232253,216637,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,35.5,91.9}},
[103000]={85,{2415284,262685,15716.0,232253,184919,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,38.3,89.5}},
[103001]={60,{10016,1541,1198.0,10030,10030,0,0},{}},
[103002]={0,{144,28,28.0,28,28,0,0},{}},
[103003]={0,{144,28,28.0,28,28,0,0},{}},
[103004]={0,{144,28,28.0,28,28,0,0},{}},
[103005]={0,{144,28,28.0,28,28,0,0},{}},
[103006]={10,{50511,126,131.0,60393,60393,0,0},{}},
[103007]={12,{50602,151,156.0,60469,60469,0,0},{}},
[103008]={15,{50746,191,196.0,60590,60590,0,0},{}},
[103009]={15,{50746,191,196.0,60590,60590,0,0},{}},
[103010]={1,{71,24,28.0,84,84,0,0},{}},
[103011]={75,{807473,11113,17858.0,5357,5357,0,0},{}},
[103012]={75,{4502962,33484,17858.0,5357,10715,0,0},{}},
[103013]={1,{144,28,28.0,84,84,0,0},{}},
[103014]={1,{144,28,28.0,84,84,0,0},{}},
[103015]={1,{144,28,28.0,84,84,0,0},{}},
[103016]={41,{8053,952,1664.0,2077,2077,0,0},{}},
[103017]={41,{4209,639,665.0,2217,2237,0,0},{}},
[103018]={50,{551667,1750,4913.0,3215,3242,0,0},{}},
[103019]={45,{22266,876,761.0,876,883,0,0},{}},
[103020]={93,{448134,28788,2964.0,103440,103529,0,0},{}},
[103021]={70,{1361651,12232,6679.0,3291,3289,0,0},{}},
[103022]={50,{324408,2501,4913.0,244404,3242,0,0},{}},
[103023]={1,{117,30,14.0,63,84,0,0},{}},
[103024]={1,{117,30,14.0,63,84,0,0},{}},
[103025]={85,{2415284,262685,15716.0,232253,184919,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,38.6,89.7}},
[103026]={85,{2415284,262685,15716.0,232253,184919,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,50.6,79.3}},
[103027]={85,{2415284,275848,18216.0,232253,216637,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,52.1,78.3}},
[103028]={85,{2355446,267626,16716.0,231191,216637,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,39.4,86.9}},
[103029]={85,{2355446,249198,13216.0,231191,289859,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,39.0,86.5}},
[103030]={85,{1508406,266654,16716.0,230129,184919,0,0},{},{154,65.0,73.3}},
[103031]={85,{1508406,261389,15716.0,230129,184919,0,0},{},{154,65.8,68.0}},
[103032]={85,{903620,102951,18216.0,230129,232497,0,0},{}},
[103033]={1,{117,30,14.0,63,84,0,0},{}},
[103034]={1,{117,30,14.0,63,84,0,0},{}},
[103035]={55,{3000332,20026,18701.0,15013,25023,0,0},{}},
[103036]={55,{3000332,20026,18701.0,15013,25023,0,0},{}},
[103037]={55,{3000332,20026,18701.0,15013,25023,0,0},{}},
[103038]={55,{3000332,20026,18701.0,15013,25023,0,0},{}},
[103039]={55,{30623,5262,2595.0,5451,3924,0,0},{}},
[103040]={58,{783306,23463,2831.0,23475,24995,0,0},{}},
[103041]={58,{8516828,40772,16128.0,31629,21905,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725061,200000,725062,200000,720101,200000,725177,200000,720143,20000,725653,200000,725679,3000,723983,15000}},
[103042]={55,{3481,1038,1038.0,1038,1038,0,0},{}},
[103043]={55,{80146,16029,4095.0,15013,15039,0,0},{}},
[103044]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[103045]={55,{3481,1038,1038.0,1038,1038,0,0},{},{122,20.4,31.7}},
[103046]={55,{3481,1038,1038.0,1038,1038,0,0},{},{122,20.2,30.8}},
[103047]={0,{144,28,28.0,28,28,0,0},{}},
[103048]={0,{144,28,28.0,28,28,0,0},{}},
[103049]={0,{144,28,28.0,28,28,0,0},{}},
[103050]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[103051]={55,{31211,8007,8500.0,5512,3924,0,0},{}},
[103052]={55,{7543,1312,1038.0,3937,3924,0,0},{}},
[103053]={58,{854110,26235,6228.0,14540,14574,0,0},{}},
[103054]={58,{854110,9894,23828.0,14540,14574,0,0},{}},
[103055]={0,{186,32,28.0,96,84,0,0},{}},
[103056]={58,{7033721,10918,6228.0,4348,19862,0,0},{},{122,14.8,54.4}},
[103057]={1,{117,15,28.0,46,60,0,0},{}},
[103058]={1,{117,15,28.0,46,60,0,0},{}},
[103059]={1,{117,15,28.0,46,60,0,0},{}},
[103060]={58,{21875,4711,2831.0,11143,11177,0,0},{}},
[103061]={57,{244209,20134,15001.0,19907,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103062]={57,{244209,23226,5751.0,19907,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103063]={57,{666944,22901,2751.0,22779,24604,0,0},{206625,200000}},
[103064]={55,{30623,5262,2595.0,5451,3924,0,0},{}},
[103065]={55,{30623,5262,2595.0,5451,3924,0,0},{}},
[103066]={57,{350006,20064,10001.0,18025,22054,0,0},{206703,200000}},
[103067]={57,{350006,25029,2751.0,22020,20028,0,0},{206704,200000}},
[103068]={57,{80001,23039,2751.0,18025,18003,0,0},{}},
[103069]={55,{6509,1297,1038.0,1297,1308,0,0},{}},
[103070]={1,{139,21,28.0,63,60,0,0},{720011,3000,722358,667,722494,667,722766,667,720098,5000,770123,100,200579,70000,720141,5000,202945,25000,222605,400,723980,3000,721912,320}},
[103071]={55,{401875,7385,5710.0,7838,6724,0,0},{}},
[103072]={50,{8132,1084,1355.0,3215,3261,0,0},{}},
[103073]={1,{117,30,14.0,63,84,0,0},{}},
[103074]={1,{117,30,14.0,63,84,0,0},{}},
[103075]={0,{144,28,28.0,28,28,0,0},{},{2,63.8,44.2}},
[103076]={30,{3002585,875,2407.0,3544,5054,0,0},{}},
[103077]={85,{2415284,241625,11716.0,232253,184919,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,40.7,25.6}},
[103078]={85,{2415284,241625,11716.0,232253,184919,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,39.1,25.2}},
[103079]={58,{8516828,40772,16128.0,31629,21905,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725061,200000,725062,200000,720101,200000,725177,200000,720143,20000,725653,200000,725679,3000,723983,15000}},
[103080]={1,{129,21,14.0,45,72,0,0},{}},
[103081]={1,{129,21,14.0,45,72,0,0},{}},
[103082]={59,{8374888,239034,6408.0,179276,179310,0,0},{}},
[103083]={57,{150002,25075,2751.0,23010,23029,0,0},{}},
[103084]={57,{120002,17608,6501.0,15021,20038,0,0},{}},
[103085]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[103086]={60,{4009,1198,1198.0,1198,1198,0,0},{}},
[103087]={57,{200003,17944,10001.0,22020,28041,0,0},{}},
[103088]={57,{500009,20011,12501.0,22779,26029,0,0},{206725,200000}},
[103089]={57,{500009,28036,2751.0,26014,21003,0,0},{206726,200000}},
[103090]={57,{200117,23047,5251.0,22779,20668,0,0},{720011,3000}},
[103091]={50,{6083,1084,1355.0,3215,3261,0,0},{}},
[103092]={50,{18903,3515,2711.0,3215,3261,0,0},{}},
[103093]={50,{44805,2032,2233.0,16615,3242,0,0},{}},
[103094]={50,{5613,625,893.0,244404,3242,0,0},{}},
[103095]={50,{12970,1324,893.0,3215,3242,0,0},{}},
[103096]={50,{12970,1324,893.0,3215,3242,0,0},{}},
[103097]={50,{35668,1324,893.0,21439,21439,0,0},{}},
[103098]={1,{117,15,28.0,46,60,0,0},{}},
[103099]={50,{11021,1078,893.0,997,1013,0,0},{}},
[103100]={55,{234333,4218,2595.0,1817,1827,0,0},{}},
[103101]={55,{20677,1297,1038.0,1817,1827,0,0},{}},
[103102]={55,{22418,1297,1038.0,2076,2086,0,0},{}},
[103103]={55,{42645,4893,2595.0,1817,1827,0,0},{}},
[103104]={54,{21565,1257,1008.0,5292,5292,0,0},{720011,3000}},
[103105]={55,{24071,1305,1038.0,5481,5482,0,0},{720011,3000}},
[103106]={57,{58663,5219,2040.0,7614,4494,0,0},{720011,3000}},
[103107]={55,{20677,1817,1038.0,1817,1827,0,0},{}},
[103108]={55,{25899,1297,1038.0,1817,1827,0,0},{}},
[103109]={56,{43923,6115,2672.0,1560,1571,0,0},{}},
[103110]={55,{234333,4218,2595.0,1817,1827,0,0},{}},
[103111]={54,{20085,1250,1008.0,1754,1764,0,0},{}},
[103112]={55,{22418,1297,1038.0,2076,2086,0,0},{}},
[103113]={55,{42645,4893,2595.0,1817,1827,0,0},{}},
[103114]={55,{24071,1305,1038.0,5481,5482,0,0},{206758,30}},
[103115]={55,{27808,1305,1038.0,5481,5482,0,0},{206758,30}},
[103116]={57,{62484,5273,2751.0,8033,5546,0,0},{}},
[103117]={55,{22347,1283,1038.0,4828,4859,0,0},{206395,30000}},
[103118]={55,{22347,1283,1038.0,4828,4859,0,0},{}},
[103119]={55,{53550,167,2595.0,7974,8005,0,0},{}},
[103120]={0,{144,28,28.0,28,28,0,0},{},{134,34.9,89.2}},
[103121]={8,{403,106,106.0,106,106,0,0},{}},
[103122]={10,{484,131,131.0,131,131,0,0},{}},
[103123]={10,{484,131,131.0,131,131,0,0},{}},
[103124]={10,{484,131,131.0,131,131,0,0},{}},
[103125]={0,{144,28,28.0,28,28,0,0},{}},
[103126]={0,{144,28,28.0,28,28,0,0},{},{192,0,0}},
[103127]={61,{83536,5339,1232.0,7842,8473,0,0},{}},
[103128]={61,{31741,2490,1232.0,6727,7274,0,0},{}},
[103129]={60,{15002155,49515,51984.0,60011,60041,0,0},{725245,200000,240717,200000},{18,66.3,75.0}},
[103130]={56,{23072,1347,1169.0,1881,2069,0,0},{}},
[103131]={50,{324408,2501,4913.0,244404,3242,0,0},{}},
[103132]={50,{324408,2501,4913.0,244404,3242,0,0},{}},
[103133]={60,{13020,3917,2996.0,3633,3595,0,0},{},{122,18.2,27.6}},
[103134]={60,{13020,3917,2996.0,3633,3595,0,0},{},{122,55.4,38.0}},
[103135]={25,{145820,1354,1381.0,286,386,0,0},{}},
[103136]={25,{111938,1071,724.0,352,749,0,0},{}},
[103137]={90,{941170,14425,7350.0,2895,3370,0,0},{}},
[103138]={90,{18748378,28025,18350.0,5775,6590,0,0},{}},
[103139]={90,{26375871,28025,18350.0,5775,6590,0,0},{}},
[103140]={90,{13663382,28025,18350.0,5775,6590,0,0},{}},
[103141]={100,{34068362,247904,50875.0,200728,200821,0,0},{}},
[103142]={100,{34068362,247904,50875.0,200728,200821,0,0},{}},
[103143]={90,{27046391,200171,41670.0,491708,491180,0,0},{}},
[103144]={90,{27046391,200171,41670.0,491708,491180,0,0},{}},
[103145]={85,{3963030,189776,20716.0,346508,375688,5000,3000},{}},
[103146]={1,{117,15,28.0,46,60,0,0},{}},
[103147]={1,{117,15,28.0,46,60,0,0},{}},
[103148]={1,{117,15,28.0,46,60,0,0},{}},
[103149]={1,{117,15,28.0,46,60,0,0},{}},
[103150]={1,{117,15,28.0,46,60,0,0},{}},
[103151]={58,{7033721,10918,6228.0,4348,19862,0,0},{},{122,26.8,55.9}},
[103152]={58,{7033721,10918,6228.0,4348,19862,0,0},{},{122,10.0,63.2}},
[103153]={59,{3280018,37045,17408.0,23698,16331,0,0},{720011,30000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725209,200000,720101,20000,725175,200000,725317,5000,720648,20000,720143,30000,725653,200000,725680,3000,723983,20000}},
[103154]={58,{413284,5766,6228.0,4348,4382,0,0},{}},
[103155]={60,{4238061,46482,17591.0,26530,20629,0,0},{725177,200000,720011,3000,725214,3500,725215,3500,725216,2500,725217,2500,725211,200000,725218,2500,720101,20000,725317,10000,240713,200000,720142,30000,725653,200000,725685,3000,723983,20000}},
[103156]={1,{117,15,28.0,46,60,0,0},{}},
[103157]={1,{117,15,28.0,46,60,0,0},{}},
[103158]={1,{117,15,28.0,46,60,0,0},{}},
[103159]={55,{24071,1305,1038.0,5481,6010,0,0},{}},
[103160]={55,{20584,4254,3149.0,3893,3946,0,0},{}},
[103161]={55,{24071,1305,1038.0,5481,6010,0,0},{}},
[103162]={0,{144,28,28.0,28,28,0,0},{}},
[103163]={0,{144,28,28.0,28,28,0,0},{}},
[103164]={0,{144,28,28.0,28,28,0,0},{}},
[103165]={0,{144,28,28.0,28,28,0,0},{}},
[103166]={55,{19633,1297,1038.0,1609,1775,0,0},{}},
[103167]={55,{36342,1297,1038.0,1609,1775,0,0},{}},
[103168]={55,{3481,1038,1038.0,1038,1038,0,0},{}},
[103169]={58,{2519176,34425,17228.0,20017,16069,0,0},{720011,3000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725207,200000,720101,20000,725175,200000,725317,5000,720143,30000,723983,20000}},
[103170]={59,{2929725,36181,17408.0,23698,16331,0,0},{725175,200000,720011,3000,725214,3500,725215,3500,725216,2500,725217,2500,725210,200000,725218,2500,720101,20000,725317,5000,720142,30000,725673,3000,723983,20000}},
[103171]={59,{3402848,39635,17408.0,23698,16331,0,0},{720011,3000,725214,3500,725215,3500,725216,2500,725217,2500,725218,2500,725208,200000,720101,20000,725175,200000,725317,5000,720142,30000,723983,20000}},
[103172]={57,{720115,12341,2751.0,19392,23021,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103173]={57,{630026,10704,2751.0,12716,10034,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103174]={57,{675071,13432,2751.0,15320,10091,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103175]={55,{540061,10650,2595.0,14426,16273,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103176]={55,{450032,9612,2595.0,8126,6585,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103177]={55,{495103,10688,2595.0,10205,6585,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103178]={57,{810085,9258,12751.0,15320,15186,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,5000,720142,20000,723983,5000}},
[103179]={57,{810085,9258,12751.0,19592,11909,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103180]={55,{180058,7463,2595.0,10205,7249,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103181]={55,{180058,7463,2595.0,10205,7249,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103182]={55,{180058,7463,2595.0,10205,7249,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103183]={55,{180058,7463,2595.0,10205,7249,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103184]={55,{360116,10641,2595.0,12725,6127,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103185]={55,{315045,10678,2595.0,12788,6084,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103186]={55,{180058,9052,2595.0,6142,5436,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103187]={55,{180058,9052,2595.0,5827,5436,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103188]={55,{180058,9052,2595.0,5827,5436,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103189]={55,{180058,3948,7595.0,7307,9061,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103190]={55,{180058,3948,7595.0,7307,9061,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103191]={55,{180058,6909,2595.0,13670,6040,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103192]={55,{180058,6909,2595.0,13670,6040,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103193]={55,{180058,6909,2595.0,13670,6040,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103194]={55,{180058,3948,7595.0,7307,9061,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,15000,720142,20000,723983,15000}},
[103195]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[103196]={58,{3361560,26818,11728.0,32902,32514,0,0},{}},
[103197]={58,{1352148,14882,11728.0,12707,12968,0,0},{}},
[103198]={58,{2250630,19113,11728.0,15317,25372,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725100,200000,725101,200000,720101,15000,725175,200000,724869,50000,720143,20000,552088,10000,241756,10000,723983,15000}},
[103199]={58,{2250630,18735,11728.0,27201,27252,0,0},{}},
[103200]={58,{413832,32031,11728.0,20023,12122,0,0},{},{123,64.3,61.7}},
[103201]={0,{186,32,28.0,96,84,0,0},{}},
[103202]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[103203]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[103204]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[103205]={58,{7201131,19188,11728.0,29777,29789,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725096,200000,725097,200000,720101,15000,725175,200000,720143,20000,723983,15000}},
[103206]={58,{8214,1465,1132.0,4396,4382,0,0},{}},
[103207]={1,{186,32,28.0,96,84,0,0},{}},
[103208]={57,{70135,3869,5251.0,4238,4225,0,0},{}},
[103209]={57,{25449,3201,2751.0,6441,6404,0,0},{}},
[103210]={57,{25449,3201,2751.0,6441,6404,0,0},{205848,200000}},
[103211]={50,{5613,1071,893.0,1071,1080,0,0},{}},
[103212]={58,{9000308,22748,35004.0,25552,25560,0,0},{720011,3000,724498,35000,724270,35000,724521,200000,725102,200000,725103,200000,720101,15000,725177,200000,240707,200000,720143,20000,723983,15000},{123,46.9,79.9}},
[103213]={56,{162827,5418,5879.0,7004,7023,0,0},{}},
[103214]={56,{45025,3809,2672.0,4280,4265,0,0},{}},
[103215]={56,{45025,3809,2672.0,4280,4265,0,0},{}},
[103216]={56,{45025,3809,2672.0,4280,4265,0,0},{}},
[103217]={56,{45025,3809,2672.0,4280,4265,0,0},{}},
[103218]={56,{45025,3809,2672.0,4280,4265,0,0},{}},
[103219]={56,{45025,3809,2672.0,4280,4265,0,0},{}},
[103220]={0,{186,32,28.0,96,84,0,0},{}},
[103221]={0,{186,32,28.0,96,84,0,0},{}},
[103222]={0,{144,28,28.0,84,84,0,0},{}},
[103223]={0,{144,28,28.0,84,84,0,0},{}},
[103224]={0,{144,28,28.0,84,84,0,0},{}},
[103225]={0,{144,28,28.0,84,84,0,0},{}},
[103226]={0,{144,28,28.0,84,84,0,0},{}},
[103227]={0,{144,28,28.0,84,84,0,0},{}},
[103228]={56,{135689,5418,5879.0,5934,5933,0,0},{}},
[103229]={56,{135689,5418,5879.0,5934,5933,0,0},{}},
[103230]={58,{4501260,18483,6228.0,12707,12780,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725098,200000,725099,200000,720101,15000,725175,200000,720143,20000,723983,15000},{123,71.8,29.4}},
[103231]={57,{64489,4047,6052.0,6007,6001,0,0},{}},
[103232]={57,{64489,4367,6052.0,3871,3420,0,0},{}},
[103233]={57,{64489,1007,9352.0,3404,6841,0,0},{}},
[103234]={57,{64489,888,9352.0,3404,6841,0,0},{}},
[103235]={57,{64489,3941,6052.0,4238,5101,0,0},{}},
[103236]={57,{64489,3941,6052.0,7676,7681,0,0},{}},
[103237]={57,{64489,4207,6052.0,6007,6001,0,0},{}},
[103238]={57,{64489,829,9352.0,3404,6841,0,0},{}},
[103239]={57,{27869,2438,6052.0,3444,3440,0,0},{}},
[103240]={0,{144,28,28.0,28,28,0,0},{}},
[103241]={58,{3604991,17894,6228.0,22015,20862,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725093,200000,720101,15000,725105,200000,725175,200000,720143,20000,723983,15000},{123,26.6,45.6}},
[103242]={55,{2257305,3679,16710.0,57186,57059,0,0},{},{123,26.9,53.1}},
[103243]={55,{1177620,5051,7595.0,20038,20052,0,0},{},{123,26.8,51.1}},
[103244]={50,{250090,3461,2233.0,8012,8039,0,0},{}},
[103245]={0,{144,28,28.0,28,28,0,0},{}},
[103246]={55,{6509,1297,1038.0,1297,1308,0,0},{}},
[103247]={55,{2257305,3679,16710.0,57186,57059,0,0},{},{123,26.7,52.3}},
[103248]={0,{144,28,28.0,28,28,0,0},{},{123,26.2,50.2}},
[103249]={0,{144,28,28.0,28,28,0,0},{}},
[103250]={55,{2257305,3679,16710.0,57186,57059,0,0},{},{123,25.7,51.6}},
[103251]={55,{11267,3394,2595.0,3149,3114,0,0},{}},
[103252]={1,{117,15,28.0,46,60,0,0},{}},
[103253]={1,{117,15,28.0,46,60,0,0},{}},
[103254]={1,{117,15,28.0,46,60,0,0},{}},
[103255]={1,{117,15,28.0,46,60,0,0},{}},
[103256]={1,{117,15,28.0,46,60,0,0},{}},
[103257]={1,{117,15,28.0,46,60,0,0},{}},
[103258]={1,{117,15,28.0,46,60,0,0},{}},
[103259]={1,{117,15,28.0,46,60,0,0},{}},
[103260]={55,{202663,4176,5710.0,3149,3114,0,0},{}},
[103261]={55,{202663,4176,5710.0,3149,3114,0,0},{}},
[103262]={58,{221300,4554,6228.0,3434,3397,0,0},{}},
[103263]={58,{3611630,16714,6228.0,21293,12780,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725092,200000,720101,200000,725104,200000,725175,200000,720143,20000,723983,15000},{123,43.3,60.8}},
[103264]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[103265]={50,{1940741,1084,893.0,3253,3242,0,0},{}},
[103266]={58,{4501260,18418,6228.0,25552,25560,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725094,200000,725095,200000,720101,15000,725175,200000,720143,20000,723983,15000},{123,28.1,31.0}},
[103267]={57,{122349,4569,2751.0,9011,9012,0,0},{}},
[103268]={57,{34291,4569,2751.0,7743,7758,0,0},{}},
[103269]={56,{4151,1080,1069.0,3242,3207,0,0},{}},
[103270]={56,{4151,1080,1069.0,3242,3207,0,0},{}},
[103271]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[103272]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[103273]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[103274]={58,{4392,1144,1132.0,3434,3397,0,0},{}},
[103275]={53,{19385,3946,2969.0,3610,3661,0,0},{}},
[103276]={53,{19385,4868,5969.0,3610,3661,0,0},{}},
[103277]={58,{8214,1465,1132.0,4396,4382,0,0},{}},
[103278]={58,{22998,4738,2831.0,4396,40225,0,0},{}},
[103279]={56,{90380,6637,5172.0,12059,12724,0,0},{}},
[103280]={53,{19385,4868,5969.0,3610,3661,0,0},{}},
[103281]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103282]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103283]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103284]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103285]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103286]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103287]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103288]={5,{716,180,178.0,170,163,0,0},{}},
[103289]={7,{979,239,236.0,223,221,0,0},{}},
[103290]={17,{3329,644,562.0,601,593,0,0},{}},
[103291]={85,{3963030,189776,20716.0,232187,229959,5000,3000},{}},
[103292]={57,{61819,4637,2751.0,1947,2136,0,0},{}},
[103293]={56,{23789,1347,1069.0,1881,2069,0,0},{}},
[103294]={55,{21080,1305,1038.0,4855,5327,0,0},{}},
[103295]={55,{22202,1305,1038.0,4855,5327,0,0},{}},
[103296]={57,{84547,6463,2751.0,4148,4537,0,0},{}},
[103297]={0,{144,28,28.0,28,28,0,0},{}},
[103298]={55,{25899,1297,1038.0,1817,2003,0,0},{}},
[103299]={0,{144,28,28.0,28,28,0,0},{}},
[103300]={55,{21080,1827,1038.0,4855,5327,0,0},{}},
[103301]={55,{24229,1283,1038.0,5451,6010,0,0},{}},
[103302]={56,{23072,1347,1069.0,1881,2069,0,0},{}},
[103303]={56,{23072,1347,1069.0,1881,2069,0,0},{}},
[103304]={56,{41335,4498,2672.0,7248,7961,0,0},{}},
[103305]={56,{32468,1354,1069.0,7288,7961,0,0},{}},
[103306]={56,{71757,4485,2672.0,12126,13222,0,0},{}},
[103307]={0,{144,28,28.0,28,28,0,0},{}},
[103308]={30,{149111,1764,2407.0,1334,1326,0,0},{}},
[103309]={55,{30006,1297,1038.0,1817,2003,0,0},{}},
[103310]={50,{6026,1078,893.0,1994,3242,0,0},{}},
[103311]={55,{21080,1305,1138.0,5481,6010,0,0},{}},
[103312]={55,{6989,1305,1038.0,3915,3924,0,0},{}},
[103313]={90,{1888906,74389,13941.0,110644,110580,0,0},{}},
[103314]={90,{1888906,74389,13941.0,110644,110580,0,0},{}},
[103315]={90,{26693282,42444,14170.0,110875,110580,0,0},{}},
[103316]={90,{26693282,42444,14170.0,110875,110580,0,0},{}},
[103317]={57,{350008,20039,5751.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103318]={57,{350008,25049,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103319]={57,{350008,18046,5751.0,18025,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,206436,200000,723983,15000}},
[103320]={57,{350008,10039,15001.0,18025,22636,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103321]={57,{350008,10039,15001.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103322]={57,{350008,10039,15001.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103323]={57,{150103,10039,15001.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103324]={57,{150103,20039,5751.0,20016,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103325]={57,{210028,16126,5251.0,17029,12665,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103326]={57,{175586,8877,27751.0,15004,12665,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103327]={57,{150002,23011,5751.0,22779,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103328]={57,{350008,18046,5751.0,22904,22636,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103329]={57,{841342,34814,5751.0,27021,24844,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103330]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,206469,200000,723983,15000}},
[103331]={57,{200021,19501,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103332]={57,{450077,22033,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103333]={55,{150007,22043,5595.0,21430,21890,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103334]={57,{779141,26666,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103335]={57,{350008,10039,15001.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103336]={57,{350008,20078,15001.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103337]={57,{200021,18962,5751.0,22904,22636,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,206484,200000,723983,15000}},
[103338]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,206469,200000,723983,15000}},
[103339]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,7244990,3500,7245000,3500,724270,1500,724521,1500,720101,15000,720142,20000,206470,200000,723983,15000}},
[103340]={57,{350008,4412,2751.0,22904,10828,0,0},{}},
[103341]={57,{50034,10039,15001.0,10854,12284,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,206470,200000,723983,15000}},
[103342]={57,{1000108,26558,5751.0,27021,24844,0,0},{720011,3000,724499,3500,724500,3500,724270,1500,724521,1500,720101,15000,720142,20000,723983,15000}},
[103343]={58,{6000844,32072,17228.0,35027,28004,0,0},{}},
[103344]={58,{6000844,37019,17228.0,35027,28004,0,0},{}},
[103345]={58,{6000844,35057,17228.0,35027,28004,0,0},{}},
[103346]={58,{6000844,35057,17228.0,35027,28004,0,0},{}},
[103347]={57,{78069,4542,2751.0,10564,10696,0,0},{}},
[103348]={57,{78069,4542,2751.0,10564,10696,0,0},{}},
[103349]={57,{78069,4542,2751.0,10564,10696,0,0},{}},
[103350]={57,{78069,22670,2751.0,26575,50725,0,0},{}},
[103351]={57,{78069,20031,2751.0,26575,50725,0,0},{}},
[103352]={57,{78069,20031,2751.0,26575,50725,0,0},{}},
[103353]={55,{4033,1049,1038.0,3149,3114,0,0},{}},
[103354]={55,{20036,4218,2595.0,3893,3924,0,0},{}},
[103355]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103356]={57,{4270,1112,1100.0,3337,3301,0,0},{720011,3000,724498,35000,724270,35000,724521,35000,725035,200000,725036,200000,720101,200000,720143,20000,723983,15000}},
[103357]={85,{3963030,207535,20716.0,232187,229959,5000,3000},{}},
[103358]={85,{3963030,207535,20716.0,232187,229959,5000,3000},{}},
[103359]={85,{3963030,189776,20716.0,232187,229959,5000,3000},{}},
[103360]={85,{804988,16718,13125.0,13637,15364,0,0},{}},
[103361]={85,{804988,16718,13125.0,13637,15364,0,0},{}},
[103362]={85,{1508406,261389,15716.0,230129,216637,0,0},{},{154,64.2,62.8}},
[103363]={85,{2415284,275848,18216.0,232253,252693,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500}},
[103364]={85,{2355446,241301,11716.0,231191,184919,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{154,51.5,41.9}},
[103365]={85,{74846234,286524,45575.0,353596,361989,5000,3000},{}},
[103366]={85,{74846234,286524,45575.0,353596,361989,5000,3000},{}},
[103367]={85,{74846234,307670,45575.0,506558,557849,5000,3000},{}},
[103368]={85,{2415284,262685,15716.0,232253,216637,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500}},
[103369]={85,{2415284,262685,15716.0,232253,184919,0,0},{}},
[103370]={85,{74846234,244233,45575.0,182114,187115,5000,3000},{},{154,37.7,8.3}},
[103371]={85,{74846234,286524,45575.0,346508,375688,5000,3000},{},{154,34.9,90.0}},
[103372]={88,{1579560,204238,21142.0,111153,102682,0,0},{}},
[103373]={0,{127,16,28.0,58,59,0,0},{}},
[103374]={85,{24933,7467,5716.0,6922,6859,0,0},{}},
[103375]={85,{24933,7467,5716.0,6922,6859,0,0},{}},
[103376]={0,{186,32,28.0,96,84,0,0},{}},
[103377]={83,{650159,11725,5445.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771424,100},{27,52.8,101.7}},
[103378]={90,{6905308,359506,21441.0,711209,623644,0,0},{}},
[103379]={90,{4986177,305639,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500}},
[103380]={90,{4986177,308579,18691.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,46.8,50.3}},
[103381]={90,{6960222,359947,21441.0,708007,623644,0,0},{}},
[103382]={90,{7079708,359947,21441.0,714411,623644,0,0},{}},
[103383]={90,{7079708,359947,21441.0,714411,718474,0,0},{}},
[103384]={93,{6491052,341276,20911.0,551832,540638,1500,900},{}},
[103385]={93,{6995583,359554,20911.0,766800,768887,1500,900},{}},
[103386]={93,{48878912,268751,48206.0,278935,271145,1600,900},{}},
[103387]={93,{48878912,268751,48206.0,278935,271145,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720946,200000,720956,100000,725427,200000}},
[103388]={93,{2280255,197320,21911.0,137933,141531,1500,900},{}},
[103389]={93,{2280255,198990,21411.0,137933,139839,1500,900},{}},
[103390]={93,{12438641,125478,48206.0,142080,136038,1600,900},{}},
[103391]={93,{12438641,125478,48206.0,142080,136038,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720951,200000,720956,100000,725301,200000}},
[103392]={93,{651713,38775,7511.0,84020,77883,1500,900},{}},
[103393]={93,{651713,38775,7511.0,84020,77883,1500,900},{}},
[103394]={89,{394201,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,19.6,49.3}},
[103395]={89,{394201,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,19.2,49.7}},
[103396]={88,{393763,24879,2456.0,84263,84412,0,0},{},{29,28.1,40.3}},
[103397]={88,{393763,24879,2456.0,84263,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100}},
[103398]={92,{743632,82979,7251.0,94570,94244,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771601,100},{30,34.4,19.6}},
[103399]={0,{144,28,28.0,28,28,0,0},{}},
[103400]={0,{144,28,28.0,28,28,0,0},{}},
[103401]={95,{53454997,264864,44531.0,278283,276224,3550,2500},{}},
[103402]={95,{53454997,264864,44531.0,278283,276224,3550,2500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721027,200000,721036,100000,725431,200000}},
[103403]={95,{7459241,270547,48931.0,279876,286084,4500,2850},{}},
[103404]={95,{23845288,269524,48931.0,280302,283220,4500,2800},{}},
[103405]={95,{18154991,269524,48931.0,286359,286718,4600,2700},{}},
[103406]={0,{144,28,28.0,28,28,0,0},{}},
[103407]={0,{144,28,28.0,28,28,0,0},{}},
[103408]={98,{8197139,401894,21761.0,814407,827541,2000,1500},{}},
[103409]={88,{393763,24879,2456.0,84263,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771521,100},{29,31.4,55.1}},
[103410]={88,{397918,24992,3719.0,83881,84768,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771536,100}},
[103411]={95,{13601310,126631,48931.0,149032,149371,3550,2500},{}},
[103412]={95,{13601310,126631,48931.0,149032,149371,3550,2500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721032,200000,721036,100000,725304,200000}},
[103413]={95,{2774963,126631,48931.0,149032,149371,4500,2850},{}},
[103414]={95,{6193810,126631,48931.0,149032,149371,4500,2800},{}},
[103415]={95,{5624002,126631,48931.0,149032,149371,4600,2700},{}},
[103416]={88,{545520,23485,6142.0,84263,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771522,100},{29,31.1,54.6}},
[103417]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771602,100},{30,51.6,21.7}},
[103418]={92,{455543,26818,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771603,100},{30,37.0,39.0}},
[103419]={98,{2672958,401894,21761.0,227184,234761,2000,1500},{}},
[103420]={1,{150139,276,28.0,88263,89412,0,0},{},{29,31.3,55.0}},
[103421]={98,{7996763,401376,21761.0,810856,827541,2000,1500},{}},
[103422]={98,{7169214,420245,19585.0,572366,772145,2000,1500},{}},
[103423]={98,{7510662,362457,16938.0,768123,772145,2000,1500},{}},
[103424]={98,{7169214,420245,19585.0,572366,805660,2000,1500},{}},
[103425]={92,{451885,27454,2900.0,91314,89893,0,0},{}},
[103426]={92,{451885,27454,2900.0,91314,89893,0,0},{}},
[103427]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771604,100}},
[103428]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771605,100}},
[103429]={0,{146,32,48.0,84,90,0,0},{}},
[103430]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771606,100},{30,40.5,26.2}},
[103431]={95,{892771,54630,7741.0,101237,100888,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771646,100},{32,29.8,21.6}},
[103432]={0,{144,28,28.0,28,28,0,0},{}},
[103433]={0,{144,28,28.0,28,28,0,0},{}},
[103434]={0,{144,28,28.0,28,28,0,0},{}},
[103435]={92,{484701,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100},{32,47.4,92.8}},
[103436]={78,{2557353,9310,4814.0,8631,8608,0,0},{}},
[103437]={55,{6989,1305,1038.0,3915,3924,0,0},{}},
[103438]={0,{144,28,28.0,28,28,0,0},{}},
[103439]={55,{3481,11431,12040.0,3114,3114,0,0},{}},
[103440]={56,{3846,1075,1069.0,3225,3207,0,0},{}},
[103441]={56,{3846,1075,1069.0,3225,3207,0,0},{}},
[103442]={56,{28621,1354,1069.0,5676,6207,0,0},{}},
[103443]={56,{28621,1892,1069.0,5676,6207,0,0},{}},
[103444]={56,{150226,4793,3242.0,4041,5619,0,0},{720011,5000,724521,1000,724270,1000,724498,1500,720101,10000,770801,100,720142,10000,723983,10000},{15,27.8,57.8}},
[103445]={56,{71072,4472,2672.0,4019,4407,0,0},{}},
[103446]={55,{35019,1505,1038.0,3893,4280,0,0},{}},
[103447]={55,{523748,3922,2159.0,1368,2337,0,0},{}},
[103448]={55,{55515,5305,2595.0,6139,6105,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,60.6,22.7}},
[103449]={55,{55515,5195,2595.0,5951,5980,0,0},{720011,5000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,80.8,30.0}},
[103450]={55,{50029,4423,3595.0,5199,6541,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,31.5,34.8}},
[103451]={55,{50029,4223,3595.0,5043,6323,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,38.2,21.4}},
[103452]={55,{55515,4974,2595.0,6484,6447,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,33.8,27.1}},
[103453]={55,{55515,5969,2595.0,6202,6198,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,31.1,34.4}},
[103454]={55,{50029,5180,3595.0,5105,6385,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,33.3,26.1}},
[103455]={55,{100059,7092,3595.0,7580,7569,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,15.3,69.3}},
[103456]={55,{95013,6853,3595.0,6859,6821,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,15.3,65.0}},
[103457]={50,{17654,3461,2233.0,3215,3242,0,0},{},{126,65.0,63.3}},
[103458]={53,{47220,4706,2446.0,5137,5137,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,73.9,55.4}},
[103459]={53,{47220,4503,2446.0,5137,5137,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,80.7,29.3}},
[103460]={55,{95561,7278,5095.0,8144,8129,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,34.0,48.8}},
[103461]={55,{95561,6545,5095.0,7016,8067,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,35.5,43.1}},
[103462]={1,{117,15,28.0,46,60,0,0},{}},
[103463]={52,{35028,957,949.0,4016,4016,0,0},{},{126,66.1,23.6}},
[103464]={55,{55515,7030,2595.0,6014,6136,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,35.7,30.4}},
[103465]={50,{27007,3506,2233.0,3525,3510,0,0},{},{126,33.3,26.9}},
[103466]={50,{30004,898,893.0,2803,2813,0,0},{},{126,57.7,81.0}},
[103467]={55,{48164,4223,3595.0,6390,6385,0,0},{720011,3000,724499,2000,724500,2000,724498,1500,724506,1500,720101,10000,720142,5000,723983,13000},{126,33.1,27.0}},
[103468]={50,{15860,1269,2233.0,2813,2813,0,0},{}},
[103469]={50,{36064,3461,2233.0,2921,2921,0,0},{}},
[103470]={50,{13594,2971,2233.0,1956,1983,0,0},{}},
[103471]={50,{45033,2019,2233.0,5145,5118,0,0},{}},
[103472]={50,{31532,2971,2233.0,2599,2572,0,0},{}},
[103473]={50,{9992,1084,893.0,4501,4475,0,0},{}},
[103474]={0,{2686,120,154.0,96,84,0,0},{}},
[103475]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[103476]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[103477]={52,{5961,1158,949.0,1158,1167,0,0},{}},
[103478]={54,{51065,5548,5544.0,10006,10010,0,0},{}},
[103479]={0,{129,19,28.0,19,19,0,0},{}},
[103480]={50,{4531,3069,2233.0,3215,3242,0,0},{}},
[103481]={52,{51026,5029,2373.0,4016,4045,0,0},{}},
[103482]={0,{144,28,28.0,28,28,0,0},{}},
[103483]={0,{144,28,28.0,28,28,0,0},{}},
[103484]={0,{12142,164,280.0,84,84,0,0},{}},
[103485]={57,{729819,6209,12652.0,10025,10006,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725122,200000,725117,200000,720101,10000,725118,200000,720142,5000,723983,13000},{126,74.6,67.0}},
[103486]={58,{844145,10976,12828.0,12126,12175,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725175,200000,725120,200000,725121,200000,720101,10000,240704,200000,720142,5000,723983,13000},{126,48.9,47.4}},
[103487]={56,{696345,6523,6485.0,10295,10385,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725118,200000,725107,200000,720101,10000,204322,300000,720142,5000,723983,13000},{126,84.6,47.7}},
[103488]={56,{690091,6736,6485.0,11257,11225,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725116,200000,720101,10000,551184,1000,205846,1000,720142,5000,723983,13000},{126,70.0,32.9}},
[103489]={57,{570976,10000,6052.0,11253,11246,0,0},{720011,3000,724499,15000,724500,20000,724498,5000,725119,200000,725123,200000,720101,10000,725156,200000,720142,5000,723983,13000},{126,22.5,81.9}},
[103490]={1,{117,15,28.0,46,60,0,0},{}},
[103491]={1,{117,15,28.0,46,60,0,0},{}},
[103492]={55,{4033,1049,1038.0,3149,3114,0,0},{},{127,61.3,77.0}},
[103493]={55,{24229,1283,1038.0,5451,6010,0,0},{}},
[103494]={55,{24229,1283,1038.0,5451,6010,0,0},{},{17,62.8,6.3}},
[103495]={1,{117,30,14.0,63,84,0,0},{}},
[103496]={55,{3481,1038,1038.0,1038,1038,0,0},{}},
[103497]={55,{34915,1505,1038.0,3893,4280,0,0},{}},
[103498]={56,{23002,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770796,100,206757,30000,720142,10000,723983,10000},{15,35.8,49.4}},
[103499]={56,{23002,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770773,100,206752,60000,720142,10000,723983,10000},{15,64.4,68.7}},
[103500]={0,{-1,24,28.0,84,84,0,0},{},{15,52.2,56.1}},
[103501]={56,{24938,1332,1069.0,5644,5676,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770798,100,204016,60000,720142,10000,723983,10000},{15,28.5,42.9}},
[103502]={56,{23002,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770799,100,204016,60000,720142,10000,723983,10000},{15,41.7,73.3}},
[103503]={56,{22615,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770775,100,206404,60000,720142,10000,725528,40000,723983,10000},{15,63.7,60.2}},
[103504]={56,{22615,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770774,100,720142,10000,723983,10000},{15,67.4,81.4}},
[103505]={56,{60683,5963,3672.0,7772,6478,0,0},{720011,50000,724521,1000,724270,1000,724498,1500,720101,15000,770792,100,720142,10000,723983,10000},{15,49.5,84.1}},
[103506]={56,{60683,5963,3672.0,7772,6478,0,0},{720011,5000,724521,1000,724270,1000,724498,1500,720101,15000,770793,100,720142,10000,723983,10000},{15,50.0,87.1}},
[103507]={0,{150,30,28.0,90,84,0,0},{},{15,46.9,74.2}},
[103508]={1,{117,30,14.0,63,84,0,0},{}},
[103509]={1,{117,30,14.0,63,84,0,0},{}},
[103510]={1,{117,30,14.0,63,84,0,0},{}},
[103511]={50,{12548,1500,893.0,5895,5922,0,0},{}},
[103512]={90,{106387,17498,6441.0,20096,20173,0,0},{}},
[103513]={55,{7035,1283,1038.0,3893,3924,0,0},{720011,5000,724924,200000}},
[103514]={1,{117,30,14.0,63,84,0,0},{}},
[103515]={55,{30623,5262,2595.0,5451,3924,0,0},{}},
[103516]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[103517]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[103518]={1,{117,15,28.0,46,60,0,0},{}},
[103519]={1,{117,15,28.0,46,60,0,0},{}},
[103520]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103521]={0,{144,28,28.0,28,28,0,0},{},{15,52.0,74.9}},
[103522]={0,{144,28,28.0,28,28,0,0},{},{15,50.6,75.0}},
[103523]={0,{144,28,28.0,28,28,0,0},{},{15,50.6,75.0}},
[103524]={56,{24774,1354,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770776,100,720142,10000,723983,10000},{15,47.0,59.2}},
[103525]={56,{24774,1354,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770777,100,720142,10000,723983,10000},{15,46.8,61.1}},
[103526]={56,{24774,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770778,100,206392,60000,720142,10000,723983,10000},{15,59.9,46.4}},
[103527]={56,{24774,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770779,100,720142,10000,723983,10000},{15,60.0,45.9}},
[103528]={0,{144,28,28.0,28,28,0,0},{}},
[103529]={57,{3984,1088,1100.0,3301,3301,0,0},{}},
[103530]={0,{144,28,28.0,28,28,0,0},{}},
[103531]={56,{24938,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770784,100,206167,60000,720142,10000,723983,10000},{209,31.9,25.7}},
[103532]={56,{21840,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770785,100,206395,60000,720142,10000,723983,10000},{209,32.2,27.1}},
[103533]={56,{21840,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770786,100,206393,60000,720142,10000,723983,10000},{209,45.0,20.0}},
[103534]={56,{23002,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770787,100,206188,60000,720142,10000,723983,10000},{209,52.8,29.1}},
[103535]={56,{24774,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770780,100,720142,10000,723983,10000},{15,46.7,60.0}},
[103536]={56,{24774,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770781,100,720142,10000,723983,10000},{15,45.4,55.4}},
[103537]={56,{23002,1332,1069.0,5003,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770782,100,206757,60000,720142,10000,723983,10000},{15,46.3,55.3}},
[103538]={56,{25713,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770788,100,206752,10000,720142,10000,723983,10000},{15,51.5,69.9}},
[103539]={56,{24774,1505,1069.0,5676,6207,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770789,100,206758,60000,720142,10000,723983,10000},{15,51.5,77.2}},
[103540]={56,{22851,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770790,100,206400,60000,720142,10000,723983,10000},{15,51.9,75.1}},
[103541]={56,{24774,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770791,100,206758,60000,720142,10000,723983,10000},{15,51.4,77.1}},
[103542]={56,{22851,1354,1069.0,5031,5035,0,0},{},{15,53.8,79.5}},
[103543]={56,{22851,1354,1069.0,5031,5035,0,0},{},{15,53.8,79.6}},
[103544]={56,{24774,1354,1069.0,5031,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770794,100,720142,10000,723983,10000},{15,50.6,82.3}},
[103545]={56,{24774,1354,1069.0,5031,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770795,100,720142,10000,723983,10000},{15,48.2,81.6}},
[103546]={56,{22851,1354,1069.0,5031,5035,0,0},{},{15,54.4,76.2}},
[103547]={56,{22851,1354,1069.0,5031,5035,0,0},{},{15,55.8,76.1}},
[103548]={56,{24938,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770797,100,206405,60000,720142,10000,723983,10000},{15,40.1,52.2}},
[103549]={56,{23002,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,770800,100,206404,30000,720142,10000,725528,40000,723983,10000},{15,31.4,44.3}},
[103550]={56,{24938,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,206405,60000,720142,10000,723983,10000}},
[103551]={56,{23002,1332,1069.0,5003,5035,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,206757,10000,720142,10000,723983,10000},{127,86.5,45.0}},
[103552]={56,{22851,1354,1069.0,5031,5035,0,0},{},{15,55.0,76.5}},
[103553]={56,{21697,1354,1069.0,5031,5035,0,0},{},{15,54.5,79.5}},
[103554]={58,{30222,1608,1132.0,5413,5903,0,0},{}},
[103555]={58,{24155,1562,1132.0,4846,5287,0,0},{}},
[103556]={60,{30876,2289,1198.0,6506,7050,0,0},{}},
[103557]={57,{25492,1560,1100.0,5211,5690,0,0},{}},
[103558]={57,{25492,1604,1100.0,5211,5690,0,0},{}},
[103559]={58,{30214,1937,1132.0,5707,6248,0,0},{}},
[103560]={1,{71,24,28.0,84,84,0,0},{}},
[103561]={0,{186,32,28.0,96,84,0,0},{}},
[103562]={0,{-1,28,28.0,28,28,0,0},{}},
[103563]={56,{24774,1505,1069.0,5031,5506,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,720142,10000,723983,10000}},
[103564]={75,{4505429,33871,18458.0,16150,32145,0,0},{},{15,53.3,46.8}},
[103565]={55,{877502,8071,10383.0,3893,3924,0,0},{}},
[103566]={25,{115787,920,2134.0,1309,1543,0,0},{}},
[103567]={25,{115787,920,2134.0,1309,1543,0,0},{}},
[103568]={1,{132,17,28.0,59,60,0,0},{}},
[103569]={50,{6083,1102,1355.0,3269,3315,0,0},{200820,50000}},
[103570]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771607,100},{30,42.6,50.3}},
[103571]={1,{186171,294,228.0,95108,96252,0,0},{},{32,43.6,17.2}},
[103572]={1,{186171,294,228.0,95108,96252,0,0},{},{32,45.6,16.4}},
[103573]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[103574]={94,{507809,28440,3030.0,94580,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771657,100},{32,74.2,40.1}},
[103575]={1,{-2,17,28.0,59,60,0,0},{}},
[103576]={1,{-2,17,28.0,59,60,0,0},{}},
[103577]={0,{186,32,28.0,96,84,0,0},{}},
[103578]={58,{12298,3702,2831.0,3434,3397,0,0},{}},
[103579]={0,{144,28,28.0,28,28,0,0},{},{120,57.8,67.5}},
[103580]={57,{7002985,15090,31004.0,20039,20183,0,0},{725242,200000,725243,200000,725244,200000,770832,100,240712,200000,720143,200000,725245,200000}},
[103581]={55,{3481,1038,1038.0,3114,3114,0,0},{}},
[103582]={56,{27146,1332,1669.0,6318,6359,0,0},{}},
[103583]={58,{7206509,15504,31324.0,20768,20486,0,0},{725246,200000,725247,200000,770819,100,240715,200000,725245,200000,207345,200000}},
[103584]={57,{79938,4746,2751.0,4215,4993,0,0},{}},
[103585]={72,{6005008,43100,43540.0,55028,55771,5400,3400},{725941,200000,725942,200000,725943,200000,725944,200000,725945,200000,720103,200000,720143,80000,771233,10000,725942,200000},{22,36.1,40.4}},
[103586]={72,{602897,42322,10021.0,360043,391937,0,0},{}},
[103587]={0,{142,24,28.0,84,84,0,0},{}},
[103588]={45,{5183,865,761.0,2628,2651,0,0},{}},
[103589]={57,{27471,1560,1100.0,5211,5690,0,0},{}},
[103590]={57,{23670,1534,1100.0,5183,5690,0,0},{}},
[103591]={58,{40476,1616,1332.0,6080,6618,0,0},{}},
[103592]={58,{40476,1616,1232.0,6080,6618,0,0},{}},
[103593]={58,{47673,5608,3081.0,6080,6618,0,0},{}},
[103594]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770824,100,720142,10000,723983,10000},{16,16.1,75.0}},
[103595]={57,{25663,1534,1100.0,5843,6410,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770817,100,720142,10000,723983,10000},{16,19.3,80.7}},
[103596]={57,{23670,1534,1100.0,5843,6410,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770825,100,720142,10000,723983,10000},{16,9.6,75.9}},
[103597]={57,{25663,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770826,100,720142,10000,723983,10000},{16,13.9,59.9}},
[103598]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770827,100,720142,10000,723983,10000},{16,14.7,49.6}},
[103599]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770828,100,207169,60000,720142,10000,723983,10000},{16,34.6,52.9}},
[103600]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770812,100,207163,60000,720142,10000,723983,10000},{16,37.5,69.9}},
[103601]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770813,100,207163,60000,720142,10000,723983,10000},{16,37.9,68.9}},
[103602]={57,{23670,1534,1200.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770814,100,720142,10000,723983,10000},{16,38.1,68.4}},
[103603]={57,{39213,4841,3001.0,6207,5774,0,0},{770809,100}},
[103604]={57,{24700,1560,1100.0,5211,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770815,100,207275,60000,720142,10000,723983,10000},{16,44.3,67.7}},
[103605]={57,{24700,1560,1100.0,5211,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770816,100,207275,60000,720142,10000,723983,10000},{16,44.3,68.5}},
[103606]={57,{39213,3381,3251.0,4879,6164,0,0},{770810,100}},
[103607]={57,{70048,6175,3001.0,7037,7334,0,0},{770811,500}},
[103608]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770829,100,720142,10000,723983,10000},{16,47.1,58.8}},
[103609]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770820,100,207165,60000,720142,10000,723983,10000},{16,51.9,45.9}},
[103610]={1,{132,17,28.0,59,60,0,0},{}},
[103611]={1,{132,17,28.0,59,60,0,0},{}},
[103612]={1,{132,17,28.0,59,60,0,0},{}},
[103613]={1,{132,17,28.0,59,60,0,0},{}},
[103614]={1,{114,23,14.0,49,60,0,0},{}},
[103615]={1,{123,21,10.0,62,26,0,0},{}},
[103616]={1,{108,24,36.0,55,87,0,0},{}},
[103617]={1,{132,17,28.0,59,60,0,0},{}},
[103618]={1,{132,17,28.0,59,60,0,0},{}},
[103619]={1,{139,21,28.0,63,60,0,0},{}},
[103620]={1,{132,17,28.0,59,60,0,0},{}},
[103621]={1,{132,17,28.0,59,60,0,0},{}},
[103622]={1,{132,17,28.0,59,60,0,0},{}},
[103623]={1,{132,17,28.0,59,60,0,0},{}},
[103624]={1,{132,17,28.0,59,60,0,0},{}},
[103625]={1,{123,21,10.0,62,26,0,0},{}},
[103626]={1,{132,17,28.0,59,60,0,0},{}},
[103627]={1,{132,17,28.0,59,60,0,0},{}},
[103628]={1,{132,17,28.0,59,60,0,0},{}},
[103629]={1,{132,17,28.0,59,60,0,0},{}},
[103630]={1,{132,17,28.0,59,60,0,0},{}},
[103631]={1,{172,22,28.0,68,60,0,0},{}},
[103632]={1,{156,22,10.0,67,26,0,0},{}},
[103633]={1,{132,17,28.0,59,60,0,0},{}},
[103634]={1,{132,17,28.0,59,60,0,0},{}},
[103635]={1,{132,17,28.0,59,60,0,0},{}},
[103636]={1,{132,17,28.0,59,60,0,0},{}},
[103637]={1,{132,17,28.0,59,60,0,0},{}},
[103638]={1,{132,17,28.0,59,60,0,0},{}},
[103639]={1,{133,19,28.0,59,60,0,0},{}},
[103640]={1,{139,21,28.0,63,60,0,0},{}},
[103641]={1,{132,17,28.0,59,60,0,0},{}},
[103642]={1,{139,21,28.0,63,60,0,0},{}},
[103643]={1,{132,17,28.0,59,60,0,0},{}},
[103644]={1,{132,17,28.0,59,60,0,0},{}},
[103645]={1,{135,22,48.0,59,64,0,0},{}},
[103646]={1,{119,22,21.0,58,31,0,0},{}},
[103647]={1,{135,22,48.0,59,64,0,0},{}},
[103648]={1,{108,24,36.0,55,87,0,0},{}},
[103649]={1,{132,17,28.0,59,60,0,0},{}},
[103650]={1,{132,17,28.0,59,60,0,0},{}},
[103651]={1,{132,17,28.0,59,60,0,0},{}},
[103652]={1,{132,17,28.0,59,60,0,0},{}},
[103653]={1,{118,17,10.0,58,26,0,0},{}},
[103654]={1,{107,21,20.0,55,81,0,0},{}},
[103655]={1,{112,31,14.0,61,42,0,0},{}},
[103656]={1,{107,23,20.0,55,81,0,0},{}},
[103657]={1,{135,22,48.0,59,64,0,0},{}},
[103658]={1,{132,17,28.0,59,60,0,0},{}},
[103659]={1,{132,17,28.0,59,60,0,0},{}},
[103660]={1,{132,17,28.0,59,60,0,0},{}},
[103661]={1,{108,21,14.0,45,60,0,0},{}},
[103662]={1,{123,21,10.0,62,26,0,0},{}},
[103663]={1,{112,24,20.0,61,81,0,0},{}},
[103664]={1,{135,22,48.0,59,64,0,0},{}},
[103665]={1,{108,24,36.0,55,87,0,0},{}},
[103666]={1,{132,17,28.0,59,60,0,0},{}},
[103667]={1,{132,17,28.0,59,60,0,0},{}},
[103668]={1,{132,17,28.0,59,60,0,0},{}},
[103669]={1,{132,17,28.0,59,60,0,0},{}},
[103670]={1,{132,17,28.0,59,60,0,0},{}},
[103671]={1,{132,17,28.0,59,60,0,0},{}},
[103672]={1,{132,17,28.0,59,60,0,0},{}},
[103673]={1,{132,17,28.0,59,60,0,0},{}},
[103674]={1,{132,17,28.0,59,60,0,0},{}},
[103675]={1,{132,17,28.0,59,60,0,0},{}},
[103676]={1,{132,17,28.0,59,60,0,0},{}},
[103677]={1,{132,17,28.0,59,60,0,0},{}},
[103678]={1,{139,21,28.0,63,60,0,0},{}},
[103679]={1,{139,21,28.0,63,60,0,0},{}},
[103680]={1,{135,22,28.0,59,60,0,0},{}},
[103681]={1,{135,22,28.0,59,60,0,0},{}},
[103682]={1,{132,17,28.0,59,60,0,0},{}},
[103683]={1,{132,17,28.0,59,60,0,0},{}},
[103684]={1,{132,17,28.0,59,60,0,0},{}},
[103685]={1,{132,17,28.0,59,60,0,0},{}},
[103686]={1,{139,21,28.0,63,60,0,0},{}},
[103687]={1,{132,17,28.0,59,60,0,0},{}},
[103688]={1,{132,17,28.0,59,60,0,0},{}},
[103689]={1,{132,17,28.0,59,60,0,0},{}},
[103690]={1,{132,17,28.0,59,60,0,0},{}},
[103691]={1,{135,22,48.0,59,64,0,0},{}},
[103692]={1,{132,17,28.0,59,60,0,0},{}},
[103693]={1,{132,17,28.0,59,60,0,0},{}},
[103694]={1,{132,17,28.0,59,60,0,0},{}},
[103695]={1,{132,17,28.0,59,60,0,0},{}},
[103696]={1,{132,17,28.0,59,60,0,0},{}},
[103697]={1,{132,17,28.0,59,60,0,0},{}},
[103698]={1,{132,17,28.0,59,60,0,0},{}},
[103699]={1,{132,17,28.0,59,60,0,0},{}},
[103700]={1,{132,17,28.0,59,60,0,0},{}},
[103701]={1,{132,17,28.0,59,60,0,0},{}},
[103702]={1,{132,17,28.0,59,60,0,0},{}},
[103703]={1,{132,17,28.0,59,60,0,0},{}},
[103704]={1,{132,17,28.0,59,60,0,0},{}},
[103705]={1,{132,17,28.0,59,60,0,0},{}},
[103706]={1,{139,21,28.0,63,60,0,0},{}},
[103707]={1,{112,24,20.0,61,81,0,0},{}},
[103708]={1,{139,21,28.0,63,60,0,0},{}},
[103709]={1,{132,17,28.0,59,60,0,0},{}},
[103710]={1,{132,17,28.0,59,60,0,0},{}},
[103711]={1,{132,17,28.0,59,60,0,0},{}},
[103712]={1,{132,17,28.0,59,60,0,0},{}},
[103713]={1,{132,17,28.0,59,60,0,0},{}},
[103714]={1,{172,22,28.0,68,60,0,0},{}},
[103715]={1,{172,22,28.0,68,60,0,0},{}},
[103716]={1,{172,22,28.0,68,60,0,0},{}},
[103717]={1,{139,21,28.0,63,60,0,0},{}},
[103718]={1,{139,21,28.0,63,60,0,0},{}},
[103719]={1,{139,21,28.0,63,60,0,0},{}},
[103720]={1,{139,21,28.0,63,60,0,0},{}},
[103721]={1,{139,21,28.0,63,60,0,0},{}},
[103722]={1,{139,21,28.0,63,60,0,0},{}},
[103723]={1,{132,17,28.0,59,60,0,0},{}},
[103724]={1,{132,17,28.0,59,60,0,0},{}},
[103725]={1,{132,17,28.0,59,60,0,0},{},{19,36.7,49.4}},
[103726]={1,{132,17,28.0,59,60,0,0},{}},
[103727]={1,{139,21,28.0,63,60,0,0},{}},
[103728]={1,{138,30,28.0,73,79,0,0},{}},
[103729]={1,{138,30,28.0,73,79,0,0},{}},
[103730]={98,{2672958,401894,21761.0,227184,234761,2000,1500},{}},
[103731]={0,{144,28,28.0,28,28,0,0},{}},
[103732]={0,{131,22,48.0,58,63,0,0},{}},
[103733]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103734]={1,{107,21,20.0,55,81,0,0},{}},
[103735]={1,{132,17,28.0,59,60,0,0},{}},
[103736]={1,{132,17,28.0,59,60,0,0},{}},
[103737]={1,{132,17,28.0,59,60,0,0},{}},
[103738]={1,{139,21,28.0,63,60,0,0},{}},
[103739]={1,{118,17,10.0,58,26,0,0},{}},
[103740]={1,{132,17,28.0,59,60,0,0},{}},
[103741]={1,{132,17,28.0,59,60,0,0},{}},
[103742]={1,{132,17,28.0,59,60,0,0},{}},
[103743]={1,{132,17,28.0,59,60,0,0},{}},
[103744]={0,{131,22,48.0,58,63,0,0},{}},
[103745]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103746]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103747]={37,{3884,621,577.0,1865,1869,0,0},{}},
[103748]={37,{3884,621,577.0,1865,1869,0,0},{}},
[103749]={37,{3884,621,577.0,1865,1869,0,0},{}},
[103750]={0,{144,28,28.0,28,28,0,0},{}},
[103751]={0,{144,28,28.0,28,28,0,0},{}},
[103752]={0,{144,28,28.0,28,28,0,0},{}},
[103753]={0,{144,28,28.0,28,28,0,0},{}},
[103754]={0,{144,28,28.0,28,28,0,0},{}},
[103755]={0,{144,28,28.0,28,28,0,0},{}},
[103756]={0,{144,28,28.0,28,28,0,0},{}},
[103757]={94,{503708,28824,3030.0,95001,93173,0,0},{}},
[103758]={94,{503708,28824,3030.0,95001,93173,0,0},{}},
[103759]={94,{503708,28824,3030.0,95001,93173,0,0},{}},
[103760]={94,{503708,28824,3030.0,95001,93173,0,0},{},{32,69.6,64.3}},
[103761]={100,{33836568,173520,42273.0,586697,614556,2000,2000},{}},
[103762]={100,{34124493,174170,50875.0,657687,657964,2000,2000},{}},
[103763]={100,{34124493,174170,50875.0,657687,657964,2000,2000},{}},
[103764]={100,{34124493,174170,50875.0,657687,657964,2000,2000},{}},
[103765]={100,{7743205,73838,42273.0,388656,407198,1000,1000},{}},
[103766]={100,{7809094,74114,50875.0,435682,435960,1000,1000},{}},
[103767]={100,{7809094,74114,50875.0,435682,435960,1000,1000},{}},
[103768]={100,{7809094,74114,50875.0,435682,435960,1000,1000},{}},
[103769]={100,{53861042,203816,50875.0,657687,657964,2000,2000},{}},
[103770]={100,{80044559,203503,50875.0,219229,219321,2000,2000},{}},
[103771]={100,{11098519,83379,50875.0,435682,435960,1000,1000},{}},
[103772]={100,{17648291,83251,50875.0,145227,145320,1000,1000},{}},
[103773]={100,{63231,17957,8125.0,5525,5557,0,0},{},{173,50.5,68.0}},
[103774]={100,{63231,17957,8125.0,5525,5557,0,0},{},{175,41.7,65.7}},
[103775]={1,{6948,221,228.0,857,6374,0,0},{}},
[103776]={0,{144,28,28.0,28,28,0,0},{}},
[103777]={0,{144,28,28.0,28,28,0,0},{}},
[103778]={0,{144,28,28.0,28,28,0,0},{}},
[103779]={0,{144,28,28.0,28,28,0,0},{}},
[103780]={1,{139,21,28.0,63,60,0,0},{}},
[103781]={0,{144,28,28.0,84,84,0,0},{}},
[103782]={37,{3902,608,577.0,1852,1869,0,0},{}},
[103783]={37,{3902,608,577.0,1852,1869,0,0},{}},
[103784]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103785]={0,{127,16,28.0,58,59,0,0},{}},
[103786]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103787]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103788]={37,{3917,626,877.0,1852,1882,0,0},{}},
[103789]={10,{613,100,131.0,314,318,0,0},{}},
[103790]={10,{613,100,131.0,314,318,0,0},{}},
[103791]={55,{349661,4230,2595.0,3915,3924,0,0},{},{127,32.6,27.6}},
[103792]={55,{349661,4230,2595.0,3915,3924,0,0},{},{127,32.4,23.4}},
[103793]={56,{350086,14306,5172.0,13029,13097,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{127,13.8,28.0}},
[103794]={56,{350086,14306,5172.0,13029,13097,0,0},{720011,3000,725214,3500,725214,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{127,11.9,24.5}},
[103795]={56,{500043,19989,5172.0,18705,17256,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{127,32.5,27.1}},
[103796]={55,{62017,4526,2595.0,3893,3924,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,770785,100,206395,60000,720142,20000,723983,15000}},
[103797]={55,{62017,4755,2595.0,4828,4859,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,770786,100,206393,60000,720142,20000,723983,15000},{127,75.4,77.9}},
[103798]={55,{309977,13542,5095.0,11089,20240,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,770787,100,206188,60000,720142,20000,723983,15000},{127,41.1,36.0}},
[103799]={56,{500043,18045,5172.0,18705,14090,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{127,81.6,45.9}},
[103800]={56,{21293,4404,2672.0,4041,4073,0,0},{}},
[103801]={0,{186,32,28.0,96,84,0,0},{}},
[103802]={50,{1000027,3292,893.0,2465,2653,0,0},{}},
[103803]={50,{1000027,3292,893.0,2465,2653,0,0},{}},
[103804]={50,{1000027,3292,893.0,3215,3242,0,0},{}},
[103805]={100,{3604612,13628,3250.0,16575,4405,0,0},{}},
[103806]={50,{1000027,3292,893.0,3215,3242,0,0},{}},
[103807]={100,{3604612,13628,3250.0,16575,16673,0,0},{}},
[103808]={50,{1000027,3292,893.0,3215,3242,0,0},{}},
[103809]={100,{3604612,13628,3250.0,16575,16673,0,0},{}},
[103810]={103,{2966794,265715,23699.0,157518,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[103811]={103,{3187455,251525,23699.0,158088,186560,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[103812]={103,{3038940,233732,23699.0,170621,179450,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[103813]={103,{2966794,226023,23699.0,157518,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[103814]={103,{2966794,226023,23699.0,157518,157552,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[103815]={103,{34263681,343492,23699.0,1133480,1130171,3000,3000},{}},
[103816]={103,{34263681,343492,23699.0,1133480,1130171,3000,3000},{}},
[103817]={103,{34263681,343492,23699.0,1133480,1130171,3000,3000},{}},
[103818]={103,{34263681,343492,23699.0,1133480,1130171,3000,3000},{}},
[103819]={91,{441439,26790,2837.0,89114,87863,0,0},{},{30,73.7,31.4}},
[103820]={92,{743632,82979,7251.0,94570,94244,0,0},{}},
[103821]={68,{17000343,190136,63194.0,100003,100075,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725547,200000,725548,200000}},
[103822]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103823]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103824]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103825]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103826]={0,{144,28,28.0,28,28,0,0},{},{127,21.9,43.2}},
[103827]={55,{20036,31001,7595.0,2855,1308,0,0},{}},
[103828]={0,{144,28,28.0,28,28,0,0},{},{127,73.7,51.2}},
[103829]={58,{413284,8326,17228.0,4348,4382,0,0},{}},
[103830]={0,{144,28,28.0,28,28,0,0},{},{127,85.2,56.4}},
[103831]={0,{144,28,28.0,28,28,0,0},{},{127,44.9,26.0}},
[103832]={58,{9716,1433,1132.0,6047,6618,0,0},{}},
[103833]={57,{25663,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770821,100,207171,60000,720142,10000,723983,10000},{16,52.5,35.8}},
[103834]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770822,100,720142,10000,723983,10000},{16,50.7,48.3}},
[103835]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770823,100,720142,10000,723983,10000},{16,50.6,49.3}},
[103836]={57,{25663,1578,1100.0,5183,5690,0,0},{}},
[103837]={57,{25492,1604,1100.0,5211,5690,0,0},{720011,5000,722193,2000,722519,3500,725214,1500,725215,1500,720101,15000,770805,100,207190,60000,720142,10000,723983,10000},{16,59.1,68.0}},
[103838]={57,{25492,1604,1100.0,5211,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770806,100,207172,50000,207190,60000,720142,10000,723983,10000},{16,59.8,65.0}},
[103839]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770830,100,720142,10000,723983,10000},{16,53.1,60.2}},
[103840]={59,{12656,3808,2912.0,3533,3495,0,0},{725175,200000,725214,60000,725215,60000,725216,60000,725217,60000,725218,60000,720143,30000,723983,20000,725260,200000,725317,5000}},
[103841]={55,{52181,5144,3095.0,4828,5089,0,0},{}},
[103842]={57,{25492,1560,1100.0,5211,5690,0,0},{}},
[103843]={57,{25492,1560,1100.0,5211,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770818,100,207166,60000,720142,10000,723983,10000},{16,79.5,70.3}},
[103844]={57,{25492,1560,1100.0,5211,5690,0,0},{}},
[103845]={57,{25663,1534,1100.0,6173,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770831,100,720142,10000,723983,10000},{16,78.9,44.6}},
[103846]={57,{23742,1568,1668.0,5183,5718,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770802,100,207417,60000,720142,10000,723983,10000},{16,71.3,51.9}},
[103847]={57,{23742,1568,1818.0,5183,5718,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770803,100,207418,60000,720142,10000,723983,10000},{16,70.6,54.6}},
[103848]={57,{24866,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722519,3500,725214,1500,725215,1500,720101,15000,770804,100,207419,60000,720142,10000,723983,10000},{16,70.3,51.7}},
[103849]={57,{23670,1534,1100.0,5183,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770807,100,720142,10000,723983,10000},{16,52.0,63.7}},
[103850]={57,{25492,1604,1100.0,5211,5690,0,0},{720011,5000,722193,2000,722159,3500,725214,1500,725215,1500,720101,15000,770808,100,207190,60000,720142,10000,723983,10000},{16,52.6,63.6}},
[103851]={0,{129,19,28.0,19,19,0,0},{}},
[103852]={57,{21896,1595,1100.0,5249,5738,0,0},{}},
[103853]={55,{22174,1401,1038.0,4205,3748,0,0},{}},
[103854]={55,{22174,1401,1038.0,4205,3748,0,0},{}},
[103855]={0,{129,19,28.0,19,19,0,0},{}},
[103856]={57,{21250,41234,7751.0,6899,3968,0,0},{}},
[103857]={58,{1540233,20044,13928.0,16020,16030,0,0},{720011,3000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725213,200000,720101,20000,725156,200000,720142,30000,723983,20000}},
[103858]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103859]={0,{144,28,28.0,28,28,0,0},{},{128,21.9,43.2}},
[103860]={55,{20036,13404,7595.0,2855,1308,0,0},{}},
[103861]={59,{1730994,20521,14108.0,18979,13235,0,0},{720011,3000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725221,200000,720101,20000,725156,200000,720648,20000,720142,30000,723983,20000}},
[103862]={58,{413284,5766,6228.0,4348,4382,0,0},{}},
[103863]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103864]={0,{144,28,28.0,28,28,0,0},{},{128,73.7,51.2}},
[103865]={58,{413284,8326,17228.0,4348,4382,0,0},{}},
[103866]={60,{2227848,25522,14291.0,21289,16759,0,0},{720011,3000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725241,200000,720101,20000,725175,200000,240713,200000,720142,30000,723983,20000}},
[103867]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103868]={55,{4033,1049,1038.0,3149,3114,0,0},{},{128,61.3,77.0}},
[103869]={59,{1733269,26766,14108.0,21496,20161,0,0},{720011,3000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725222,200000,720101,20000,725156,200000,720142,30000,723983,20000}},
[103870]={56,{35110,7134,3672.0,12059,9034,0,0},{}},
[103871]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103872]={0,{144,28,28.0,28,28,0,0},{},{128,44.9,26.0}},
[103873]={59,{1730994,20446,14108.0,18979,13235,0,0},{720011,3000,725214,4500,725215,4500,725216,2500,725217,2500,725218,2500,725220,200000,720101,20000,725156,200000,720142,30000,723983,20000}},
[103874]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[103875]={0,{129,19,28.0,19,19,0,0},{},{128,85.2,56.4}},
[103876]={0,{129,19,28.0,19,19,0,0},{}},
[103877]={55,{244664,4230,2595.0,3915,3924,0,0},{},{128,32.6,27.6}},
[103878]={55,{244664,4230,2595.0,3915,3924,0,0},{},{128,32.4,23.4}},
[103879]={56,{199904,11437,3672.0,10449,9299,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{128,13.8,28.0}},
[103880]={56,{199904,11437,3672.0,10449,9299,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{128,11.9,24.5}},
[103881]={56,{350086,15931,3672.0,14931,12252,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{128,32.5,27.1}},
[103882]={55,{43434,4526,2595.0,3893,3924,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,770785,100,206395,60000,720142,20000,723983,15000}},
[103883]={55,{43434,4755,2595.0,3893,3924,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,770786,100,206393,60000,720142,20000,723983,15000},{128,75.4,77.9}},
[103884]={55,{216071,10834,3595.0,8877,14282,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,770787,100,206188,60000,720142,20000,723983,15000},{128,41.1,36.0}},
[103885]={56,{210187,14460,3672.0,14931,10004,0,0},{720011,3000,725214,3500,725215,3500,725216,1500,725217,1500,725218,1500,720101,15000,720142,20000,723983,15000},{128,81.6,45.9}},
[103886]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103887]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[103888]={56,{85057,6637,5172.0,12059,12724,0,0},{}},
[103889]={57,{4270,1112,1100.0,3337,3301,0,0},{}},
[103890]={0,{186,32,28.0,96,84,0,0},{}},
[103891]={1,{117,15,28.0,46,60,0,0},{}},
[103892]={1,{117,15,28.0,46,60,0,0},{}},
[103893]={1,{117,15,28.0,46,60,0,0},{}},
[103894]={1,{117,15,28.0,46,60,0,0},{}},
[103895]={58,{26411,1688,1232.0,5435,5878,0,0},{}},
[103896]={58,{55937,4820,2831.0,7105,6618,0,0},{}},
[103897]={58,{55937,4820,2831.0,7105,6618,0,0},{}},
[103898]={58,{26401,1635,1132.0,5367,5878,0,0},{}},
[103899]={99,{1438086,21180,33766.0,10213,10129,0,0},{},{2,46.7,73.9}},
[103900]={70,{1861630,6109,1570.0,6595,6642,0,0},{},{359,0,0}},
[103901]={65,{8560978,7426,7563.0,5569,5610,0,0},{}},
[103902]={68,{17000343,190136,63194.0,100003,100075,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725547,200000,725548,200000}},
[103903]={58,{54630,6090,3331.0,5413,6382,0,0},{}},
[103904]={58,{54630,6289,3331.0,5752,6382,0,0},{}},
[103905]={58,{28213,1653,1132.0,5413,5903,0,0},{}},
[103906]={50,{19333,1232,893.0,4198,4678,0,0},{}},
[103907]={58,{15004,1635,1132.0,5367,5878,0,0},{}},
[103908]={58,{26401,1635,1132.0,5367,5878,0,0},{}},
[103909]={58,{24352,1657,1132.0,5367,5878,0,0},{}},
[103910]={58,{22524,1653,1132.0,5413,5903,0,0},{}},
[103911]={58,{55937,4594,2831.0,6900,6396,0,0},{}},
[103912]={0,{144,28,28.0,28,28,0,0},{},{159,65.6,43.2}},
[103913]={58,{30109,1653,1332.0,5413,5903,0,0},{}},
[103914]={58,{24420,1653,1332.0,5979,6519,0,0},{}},
[103915]={57,{21896,1595,1100.0,5249,5738,0,0},{}},
[103916]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103917]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103918]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103919]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103920]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103921]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103922]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103923]={57,{23513,1604,1100.0,15834,17214,0,0},{}},
[103924]={0,{144,28,28.0,28,28,0,0},{}},
[103925]={10,{100475,459,3310.0,491,506,0,0},{}},
[103926]={10,{100475,459,3310.0,491,506,0,0},{}},
[103927]={10,{100475,459,3310.0,491,506,0,0},{}},
[103928]={10,{100475,459,3310.0,491,506,0,0},{}},
[103929]={10,{100475,459,3310.0,491,506,0,0},{}},
[103930]={10,{100475,459,3310.0,491,506,0,0},{}},
[103931]={58,{524481,15578,6228.0,4636,3974,0,0},{726773,200000,726989,200000}},
[103932]={59,{5001764,68332,20708.0,40021,40098,3000,3000},{}},
[103933]={60,{5588341,64808,17591.0,44005,40052,3000,3000},{}},
[103934]={61,{5625920,58204,14478.0,42148,42154,3000,3000},{}},
[103935]={61,{6100163,63135,17778.0,44750,44693,3000,3000},{}},
[103936]={70,{6720548,8794,8636.0,6595,6642,0,0},{}},
[103937]={95,{6381997,383402,20741.0,759671,750023,1500,800},{}},
[103938]={60,{13020,3917,2996.0,3633,3595,0,0},{},{129,33.9,43.8}},
[103939]={55,{22174,1401,1038.0,4205,3748,0,0},{}},
[103940]={55,{22174,1817,1038.0,3893,3748,0,0},{}},
[103941]={61,{480855,4929,6778.0,1232,1232,0,0},{}},
[103942]={61,{3000785,63020,17778.0,44735,44693,3000,3000},{}},
[103943]={61,{2502260,54259,17778.0,42110,42154,3000,3000},{}},
[103944]={0,{144,28,28.0,28,28,0,0},{},{130,54.0,70.5}},
[103945]={63,{8001885,120288,23663.0,250055,185088,0,0},{725301,100000}},
[103946]={63,{8100349,71042,23663.0,63037,63115,2000,1500},{725301,200000,725345,200000,725317,5000,725251,70000,725254,70000,725252,80000,725253,80000},{130,48.5,87.8}},
[103947]={62,{8374978,84339,23468.0,65834,65669,2000,1500},{725301,200000,725346,200000,725317,5000,725251,75000,725254,75000,725252,85000,725253,85000}},
[103948]={62,{8869514,87659,23468.0,69636,68229,2000,1500},{725301,200000,725347,200000,725317,5000,725251,75000,725254,75000,725252,85000,725253,85000}},
[103949]={63,{8827486,65913,22896.0,65756,66415,2500,1500},{725348,200000,725317,5000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725305,200000,725653,200000,552081,10000,241749,10000,725670,3000}},
[103950]={60,{108983,6067,2996.0,20022,16158,0,0},{}},
[103951]={64,{200048,15057,16057.0,25015,6013,0,0},{}},
[103952]={64,{200048,15057,16057.0,25015,21648,0,0},{}},
[103953]={60,{91043,6269,3496.0,6004,6687,0,0},{}},
[103954]={60,{1264079,15858,2996.0,61514,6809,0,0},{}},
[103955]={60,{13020,3917,2996.0,3633,3595,0,0},{725175,200000,725214,60000,725215,60000,725216,60000,725217,60000,725218,60000,720143,30000,723983,20000,725261,200000,725317,5000,552089,10000,552079,10000,241747,10000}},
[103956]={58,{8214,1465,1132.0,4396,4382,0,0},{}},
[103957]={61,{13392,4028,3080.0,3736,3697,0,0},{725175,200000,725214,80000,725215,80000,725216,80000,725217,80000,725218,80000,720143,30000,723983,20000,725262,200000,725317,5000}},
[103958]={61,{13392,4028,3080.0,3736,3697,0,0},{725175,200000,725214,80000,725215,80000,725216,80000,725217,80000,725218,80000,725317,5000,720143,30000,725263,200000,723983,20000}},
[103959]={61,{13392,4028,3080.0,3736,3697,0,0},{725176,200000,725214,100000,725215,100000,725216,100000,725217,100000,725218,100000,720143,30000,723983,20000,725264,200000,725317,10000,240716,200000}},
[103960]={10,{613,100,131.0,314,318,0,0},{207253,5000,207254,5000,207255,5000,207256,5000,207259,10000,207315,10000,207316,10000,207317,10000,207318,200000}},
[103961]={10,{1519,333,327.0,314,318,0,0},{207258,200000,203085,10000,207259,25000,207315,25000,207316,25000,207317,25000}},
[103962]={1,{117,30,14.0,63,84,0,0},{200004,100000}},
[103963]={1,{117,30,14.0,63,84,0,0},{200005,100000}},
[103964]={1,{117,30,14.0,63,84,0,0},{200055,100000}},
[103965]={1,{117,30,14.0,63,84,0,0},{200056,100000}},
[103966]={1,{117,30,14.0,63,84,0,0},{200168,100000}},
[103967]={1,{117,30,14.0,63,84,0,0},{200927,100000}},
[103968]={1,{117,30,14.0,63,84,0,0},{200962,100000}},
[103969]={1,{117,30,14.0,63,84,0,0},{200963,100000}},
[103970]={0,{144,28,28.0,28,28,0,0},{}},
[103971]={58,{12298,5202,7831.0,3434,3397,0,0},{}},
[103972]={58,{23456,1144,10188.0,3434,3397,0,0},{207310,80000}},
[103973]={58,{26311,1144,1132.0,3434,3397,0,0},{207310,80000}},
[103974]={58,{56247,3702,2831.0,4348,5062,0,0},{}},
[103975]={58,{580442,9111,11728.0,3397,19192,0,0},{207303,200000}},
[103976]={40,{-6808,64,642.0,707,327,0,0},{}},
[103977]={59,{28771,1979,1165.0,5939,6452,0,0},{}},
[103978]={1,{-2,17,28.0,59,60,0,0},{}},
[103979]={58,{30214,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770867,100},{17,51.5,36.4}},
[103980]={58,{28249,2152,1717.0,5367,5908,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770845,100,207437,60000},{17,43.0,34.3}},
[103981]={58,{28164,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770846,100,207438,90000},{17,47.0,41.7}},
[103982]={58,{28164,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770847,100},{17,42.0,31.9}},
[103983]={58,{28249,2152,1717.0,5367,5908,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770833,100,207443,60000},{17,50.5,60.1}},
[103984]={58,{30305,2037,1717.0,5707,6279,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770834,100,207439,60000},{17,49.2,68.9}},
[103985]={58,{612192,8375,6228.0,18617,21945,0,0},{720011,5000,720142,10000,725254,2000,725251,2000,723983,10000,770835,100},{17,54.0,31.2}},
[103986]={58,{28574,1993,1132.0,5707,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770836,100,207440,60000},{17,53.4,71.0}},
[103987]={58,{30214,1937,1132.0,5707,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770837,100},{17,57.4,55.2}},
[103988]={58,{28164,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770838,100,207442,60000},{17,55.0,58.8}},
[103989]={58,{27344,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770839,100},{17,44.2,74.8}},
[103990]={58,{27344,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770840,100},{17,50.6,26.0}},
[103991]={58,{29483,1980,1717.0,5537,6094,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770841,100},{17,64.1,21.4}},
[103992]={58,{27975,1799,1132.0,5397,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770842,100},{17,59.5,29.6}},
[103993]={58,{29196,2140,1132.0,5567,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770843,100},{17,55.6,30.5}},
[103994]={58,{27975,1799,1132.0,5397,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770844,100},{17,62.1,31.0}},
[103995]={58,{28164,1993,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770848,100},{17,51.0,71.2}},
[103996]={58,{30214,1993,1132.0,5707,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770849,100},{17,37.6,51.0}},
[103997]={58,{27344,2105,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770850,100},{17,45.8,59.0}},
[103998]={58,{28164,2105,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770851,100},{17,59.5,66.2}},
[103999]={58,{27344,1993,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770852,100},{17,60.1,66.1}},
[104000]={58,{27344,2105,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770853,100,207441,60000},{17,57.0,56.4}},
[104001]={58,{29394,2105,1132.0,5707,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770854,100},{17,56.4,55.1}},
[104002]={58,{27344,2105,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770855,100},{17,46.7,39.6}},
[104003]={58,{28984,2105,1132.0,5707,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770862,100},{17,62.1,70.8}},
[104004]={58,{28789,2140,1132.0,5567,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770860,100},{17,67.4,62.5}},
[104005]={58,{27975,1912,1132.0,5397,5878,0,0},{}},
[104006]={58,{64322,5012,3331.0,7446,8097,0,0},{720011,5000,720142,10000,725254,2000,725251,2000,723983,10000,770863,100},{17,65.2,23.2}},
[104007]={58,{28789,2140,1132.0,5397,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770864,100},{17,64.4,22.9}},
[104008]={58,{30305,2037,1717.0,5707,6279,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770868,100},{17,45.6,41.0}},
[104009]={58,{29196,2026,1132.0,5738,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770858,100},{17,63.2,59.9}},
[104010]={58,{100007,7019,2831.0,8017,8023,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000}},
[104011]={58,{20990,2105,1132.0,4994,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770919,100}},
[104012]={58,{8214,1465,1132.0,4396,4382,0,0},{}},
[104013]={58,{27975,2140,1132.0,5397,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770859,100}},
[104014]={58,{28789,2140,1132.0,5567,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770856,100},{17,50.3,43.7}},
[104015]={58,{27975,2140,1132.0,5397,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770857,100},{17,50.6,40.0}},
[104016]={55,{139719,4243,2595.0,3937,3924,0,0},{}},
[104017]={40,{801581,8077,18429.0,4976,5031,1000,1000},{}},
[104018]={40,{801581,8077,18429.0,4976,5031,1000,1000},{}},
[104019]={40,{801581,8077,18429.0,4976,5031,1000,1000},{}},
[104020]={40,{801581,8077,18429.0,4976,5031,1000,1000},{}},
[104021]={40,{801581,8077,18429.0,4976,5031,1000,1000},{}},
[104022]={40,{801581,8077,18429.0,4976,5031,1000,1000},{}},
[104023]={20,{251065,1518,6691.0,896,903,0,0},{}},
[104024]={20,{251065,1518,6691.0,896,903,0,0},{}},
[104025]={20,{251065,1518,6691.0,896,903,0,0},{}},
[104026]={20,{251065,1518,6691.0,896,903,0,0},{}},
[104027]={20,{251065,1518,6691.0,896,903,0,0},{}},
[104028]={20,{251065,1518,6691.0,896,903,0,0},{}},
[104029]={30,{501679,3555,12376.0,2035,2004,500,500},{}},
[104030]={30,{501679,3555,12376.0,2035,2004,500,500},{}},
[104031]={30,{501679,3555,12376.0,2035,2004,500,500},{}},
[104032]={30,{501679,3555,12376.0,2035,2004,500,500},{}},
[104033]={30,{501679,3555,12376.0,2035,2004,500,500},{}},
[104034]={30,{501679,3555,12376.0,2035,2004,500,500},{}},
[104035]={61,{49947,2162,3080.0,9021,9021,0,0},{}},
[104036]={61,{45137,1343,1232.0,9021,9021,0,0},{}},
[104037]={58,{2196,1144,1132.0,3434,3397,0,0},{}},
[104038]={58,{27344,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770869,100},{17,48.0,72.8}},
[104039]={63,{10001927,17077,33023.0,25018,25065,1500,1500},{725316,200000,725315,200000,725245,200000,240721,200000,770873,100},{17,51.1,41.7}},
[104040]={60,{800059,17693,2996.0,10012,16949,0,0},{}},
[104041]={56,{149532,4579,1669.0,6353,6359,0,0},{207344,200000,207346,200000}},
[104042]={92,{451885,27454,2900.0,91314,89893,0,0},{}},
[104043]={85,{45470,11546,5716.0,10680,10700,0,0},{},{28,78.2,16.6}},
[104044]={60,{4417763,32404,17591.0,26101,26072,1500,1500},{}},
[104045]={60,{13020,3917,2996.0,3633,3595,0,0},{725156,200000,725214,50000,725215,60000,725216,60000,725217,60000,725218,60000,720143,30000,723983,20000,725266,200000,552089,10000,552079,10000,241747,10000}},
[104046]={59,{4000048,33919,20708.0,24012,24059,1500,1500},{}},
[104047]={60,{13020,3917,2996.0,3633,3595,0,0},{725156,200000,725214,50000,725215,60000,725216,60000,725217,60000,725218,60000,720143,30000,723983,20000,725265,200000}},
[104048]={61,{4501699,33540,14478.0,25274,25267,1500,1500},{}},
[104049]={61,{13392,4028,3080.0,3736,3697,0,0},{725156,200000,725214,80000,725215,80000,725216,80000,725217,80000,725218,80000,720143,30000,723983,20000,725267,200000}},
[104050]={61,{4882056,35893,17778.0,26835,26790,1500,1500},{}},
[104051]={61,{13392,4028,3080.0,3736,3697,0,0},{725156,200000,725214,80000,725215,80000,725216,80000,725217,80000,725218,80000,720143,30000,725268,200000,723983,20000}},
[104052]={61,{2401110,35940,17778.0,26730,26790,1500,1500},{}},
[104053]={61,{2001326,26980,17778.0,25251,25267,1500,1500},{}},
[104054]={61,{13392,4028,3080.0,3736,3697,0,0},{725175,200000,725214,100000,725215,100000,725216,100000,725217,100000,725218,100000,720143,30000,723983,20000,725269,200000}},
[104055]={1,{117,30,14.0,63,84,0,0},{}},
[104056]={1,{117,30,14.0,63,84,0,0},{}},
[104057]={1,{117,30,14.0,63,84,0,0},{}},
[104058]={1,{117,30,14.0,63,84,0,0},{}},
[104059]={60,{13020,3917,2996.0,3633,3595,0,0},{}},
[104060]={1,{117,30,14.0,63,84,0,0},{}},
[104061]={1,{117,30,14.0,63,84,0,0},{}},
[104062]={1,{117,30,14.0,63,84,0,0},{}},
[104063]={1,{117,30,14.0,63,84,0,0},{}},
[104064]={1,{117,30,14.0,63,84,0,0},{}},
[104065]={1,{117,30,14.0,63,84,0,0},{}},
[104066]={1,{117,30,14.0,63,84,0,0},{}},
[104067]={1,{117,30,14.0,63,84,0,0},{}},
[104068]={1,{117,30,14.0,63,84,0,0},{}},
[104069]={58,{28164,1993,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770866,100},{17,34.2,56.5}},
[104070]={58,{30214,1993,1132.0,5707,6248,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000}},
[104071]={58,{27344,2105,1132.0,5367,5878,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770870,100},{17,64.1,51.8}},
[104072]={58,{28164,2105,1132.0,5537,6063,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770871,100},{17,66.1,52.3}},
[104073]={95,{1153618,39179,17031.0,109127,108320,0,0},{}},
[104074]={95,{1153618,39179,17031.0,109127,108320,0,0},{}},
[104075]={95,{1153618,39179,17031.0,109127,108320,0,0},{}},
[104076]={58,{30011,1912,1132.0,5738,6248,0,0},{}},
[104077]={58,{30011,2140,1132.0,5738,6248,0,0},{}},
[104078]={58,{302797,8073,6868.0,17938,19657,0,0},{}},
[104079]={57,{62692,5780,3337.0,7494,8252,0,0},{}},
[104080]={58,{28388,5574,2831.0,7446,8097,0,0},{}},
[104081]={57,{3997,1112,1668.0,3301,3619,0,0},{}},
[104082]={90,{407869,25477,3899.0,88114,88745,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771559,100,243151,60000},{29,55.5,38.6}},
[104083]={1,{144,28,28.0,28,28,0,0},{}},
[104084]={50,{4146716,18869,10413.0,21439,31681,0,0},{}},
[104085]={57,{27640,4515,2751.0,7494,7527,0,0},{}},
[104086]={57,{27640,4515,2751.0,7494,7527,0,0},{}},
[104087]={58,{28789,1912,1132.0,16328,17710,0,0},{}},
[104088]={60,{510,1574,1198.0,4724,4709,0,0},{}},
[104089]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[104090]={63,{15000205,70073,23663.0,80027,80006,3700,2000},{725342,100000,725343,100000,725317,10000,725251,80000,725254,80000,725252,95000,725253,95000,720143,70000,725308,100000,725681,3000,725653,200000,552090,10000,552080,10000,241748,10000}},
[104091]={60,{4643,1211,1198.0,3633,3595,0,0},{},{133,40.9,11.4}},
[104092]={64,{199852,14971,13346.0,25015,5982,0,0},{},{134,34.2,79.4}},
[104093]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104094]={63,{8002319,41011,18163.0,35967,35071,1100,700},{725438,200000,725251,80000,725254,80000,725252,95000,725253,95000,720143,70000,725301,200000,552090,10000,552080,10000,241748,10000}},
[104095]={60,{4643,1211,1198.0,3633,3595,0,0},{},{132,40.9,11.4}},
[104096]={63,{9001653,70073,23663.0,67038,67064,2500,1800},{725436,200000,725317,10000,725251,80000,725254,80000,725252,95000,725253,95000,720143,70000,725308,200000,725681,3000,725653,200000,552090,10000,552080,10000,241748,10000}},
[104097]={60,{4643,1211,1198.0,3633,3595,0,0},{},{130,40.9,11.4}},
[104098]={90,{6929830,347365,23399.0,708007,719579,1600,900},{208747,20000}},
[104099]={60,{100129,5092,2996.0,10029,10030,0,0},{}},
[104100]={4,{192,48,43.0,126,162,0,0},{720011,5000}},
[104101]={0,{144,28,28.0,28,28,0,0},{}},
[104102]={0,{142,24,28.0,84,84,0,0},{}},
[104103]={55,{13434,1557,1078.0,5304,5897,0,0},{},{3,59.9,20.3}},
[104104]={58,{30296,2026,1132.0,16328,17710,0,0},{}},
[104105]={58,{28789,1912,1132.0,16328,17710,0,0},{}},
[104106]={58,{55937,4933,2831.0,7207,6729,0,0},{}},
[104107]={58,{60729,4820,2831.0,7788,8097,0,0},{}},
[104108]={63,{10001971,60043,23663.0,70029,70085,3410,1810},{725330,100000,725331,100000,725317,5000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725301,100000}},
[104109]={58,{55937,4820,2831.0,7105,6618,0,0},{}},
[104110]={60,{350057,20074,27996.0,20133,15028,0,0},{207751,200000}},
[104111]={0,{144,28,28.0,28,28,0,0},{}},
[104112]={100,{64969,18077,9835.0,16575,16746,0,0},{}},
[104113]={50,{1102080,7512,24932.0,9942,10023,2000,2000},{}},
[104114]={50,{1102080,7512,24932.0,9942,10023,2000,2000},{}},
[104115]={50,{1102080,7512,24932.0,9942,10023,2000,2000},{}},
[104116]={50,{1102080,7512,24932.0,9942,10023,2000,2000},{}},
[104117]={50,{1102080,7512,24932.0,9942,10023,2000,2000},{}},
[104118]={50,{1102080,7512,24932.0,9942,10023,2000,2000},{}},
[104119]={60,{5005875,55196,31984.0,55007,55748,3000,3000},{}},
[104120]={60,{5005875,55196,31984.0,55007,55748,3000,3000},{}},
[104121]={60,{5005875,55196,31984.0,55007,55748,3000,3000},{}},
[104122]={60,{5005875,55196,31984.0,55007,55748,3000,3000},{}},
[104123]={60,{5005875,55196,31984.0,55007,55748,3000,3000},{}},
[104124]={60,{5005875,55196,31984.0,55007,55748,3000,3000},{}},
[104125]={70,{1501987,5653,8636.0,13002,13002,0,0},{}},
[104126]={65,{20074,1856,1375.0,10025,10038,0,0},{}},
[104127]={70,{6561015,65745,35703.0,72550,63302,3000,3000},{}},
[104128]={70,{6561015,65745,35703.0,72550,63302,3000,3000},{}},
[104129]={70,{6561015,65745,35703.0,72550,63302,3000,3000},{}},
[104130]={70,{6561015,65745,35703.0,72550,63302,3000,3000},{}},
[104131]={70,{6561015,65745,35703.0,72550,63302,3000,3000},{}},
[104132]={70,{6561015,65745,35703.0,72550,63302,3000,3000},{}},
[104133]={60,{234017,4806,6591.0,3614,3595,0,0},{}},
[104134]={50,{9421,2912,2233.0,2695,2679,0,0},{}},
[104135]={60,{12683,3906,2996.0,3614,3595,0,0},{}},
[104136]={0,{144,28,28.0,28,28,0,0},{}},
[104137]={60,{54009,1198,1198.0,21198,1198,0,0},{}},
[104138]={60,{4009,1198,1198.0,1198,1198,0,0},{}},
[104139]={63,{10001971,60043,23663.0,70029,70085,0,0},{},{133,54.0,70.5}},
[104140]={63,{12000329,87203,18163.0,75017,75119,3410,1810},{725332,100000,725333,100000,725317,5000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725301,100000},{133,48.4,87.8}},
[104141]={62,{12158183,85780,17968.0,75869,77318,3410,1810},{725334,100000,725335,100000,725317,5000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725301,100000}},
[104142]={62,{13619539,98566,17968.0,87539,84231,3410,1810},{725336,100000,725337,100000,725317,5000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725301,100000}},
[104143]={63,{14098007,75135,25896.0,75524,75350,3410,1810},{725338,100000,725339,100000,725317,5000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725305,100000,725653,200000,552081,10000,241749,10000,725670,3000}},
[104144]={63,{15001889,70025,19896.0,80017,80016,3700,2000},{725340,100000,725341,100000,725317,10000,725251,80000,725251,80000,725251,95000,725251,95000,720143,70000,725305,100000,725653,200000,725674,3000}},
[104145]={60,{350057,60544,2996.0,35024,8017,0,0},{207751,200000}},
[104146]={58,{27975,1457,1132.0,6421,6421,0,0},{},{17,67.2,65.9}},
[104147]={58,{30011,1912,1132.0,5738,6248,0,0},{}},
[104148]={58,{30011,1912,1132.0,5738,6248,0,0},{}},
[104149]={58,{28249,2152,1867.0,5367,5908,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770861,100}},
[104150]={60,{219659,6847,2996.0,20022,20239,0,0},{},{133,54.3,84.6}},
[104151]={60,{219659,6847,2996.0,20022,20239,0,0},{}},
[104152]={60,{219659,6847,2996.0,20022,20239,0,0},{}},
[104153]={60,{473061,1574,1198.0,4724,4709,0,0},{}},
[104154]={58,{27975,1912,1132.0,6080,6421,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770874,100},{17,58.2,29.2}},
[104155]={58,{27975,2140,1132.0,6080,6421,0,0},{720011,5000,720142,10000,725252,2000,725253,2000,723983,10000,770875,100},{17,58.3,29.6}},
[104156]={58,{28789,2026,1132.0,5738,5741,0,0},{720011,2000,720142,10000,725252,2000,725253,2000,723983,10000,770876,100},{17,57.1,30.8}},
[104157]={0,{186,32,28.0,96,84,0,0},{},{133,30.3,61.1}},
[104158]={63,{4353,1302,1302.0,3907,3907,0,0},{}},
[104159]={60,{4643,1211,1198.0,3633,3595,0,0},{},{133,30.3,56.5}},
[104160]={60,{8052,1566,1198.0,4698,4709,0,0},{}},
[104161]={60,{234017,4806,6591.0,3614,3595,0,0},{},{118,44.7,34.9}},
[104162]={60,{12683,3906,2996.0,3614,3595,0,0},{},{120,54.6,47.0}},
[104163]={60,{437613,6248,6591.0,4698,4709,0,0},{}},
[104164]={58,{6000844,32072,17228.0,35027,28004,0,0},{},{120,43.8,20.3}},
[104165]={62,{5407758,54862,17968.0,35008,33911,1000,600},{725175,200000,725352,200000,725251,70000,725254,70000,725252,85000,725253,85000,720143,70000}},
[104166]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[104167]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[104168]={100,{147880,5573,3250.0,16720,16673,0,0},{},{133,40.3,41.5}},
[104169]={60,{130439,18812,21633.0,10318,22224,0,0},{}},
[104170]={62,{8593,1690,1920.0,5017,5082,0,0},{}},
[104171]={1,{172,22,28.0,68,60,0,0},{},{163,45.3,65.9}},
[104172]={1,{144,28,28.0,28,28,0,0},{}},
[104173]={62,{16558818,88851,25682.0,52417,61873,0,0},{725338,100000,725339,100000,725317,5000}},
[104174]={63,{5059191,40487,20496.0,34499,35044,1000,600},{725353,200000,725251,70000,725254,70000,725252,85000,725253,85000,720143,60000,725176,200000,552081,10000,241749,10000}},
[104175]={62,{8593,1690,1920.0,5017,5082,0,0},{}},
[104176]={0,{142,24,28.0,84,84,0,0},{},{133,30.4,61.9}},
[104177]={1,{117,30,14.0,63,84,0,0},{}},
[104178]={60,{110119,6269,3496.0,6004,6687,0,0},{}},
[104179]={0,{186,32,28.0,96,84,0,0},{},{133,34.3,81.7}},
[104180]={60,{250113,25131,2996.0,150003,40015,0,0},{207751,200000}},
[104181]={60,{250113,25217,45496.0,120002,55007,0,0},{207751,200000}},
[104182]={62,{5375613,53864,17968.0,34285,32931,1000,600},{725175,200000,725351,200000,725251,70000,725254,70000,725252,85000,725253,85000,720143,70000}},
[104183]={61,{5146612,40755,23278.0,40964,40503,0,0},{},{132,54.0,70.5}},
[104184]={61,{5146612,40838,17778.0,30871,30449,1000,600},{725349,200000,725175,200000,725251,70000,725254,70000,725252,85000,725253,85000,720143,70000}},
[104185]={60,{108441,10160,45496.0,10012,5033,0,0},{207751,200000}},
[104186]={60,{101085,12030,2996.0,15000,3020,0,0},{207751,200000}},
[104187]={61,{5659623,40778,17778.0,31927,31515,1000,600},{725175,200000,725350,200000,725251,70000,725254,70000,725252,85000,725253,85000,720143,70000},{132,48.4,87.8}},
[104188]={60,{99999,5482,2996.0,10029,5370,0,0},{}},
[104189]={60,{99999,5482,2996.0,10029,5370,0,0},{}},
[104190]={60,{99999,5482,2996.0,10029,5370,0,0},{}},
[104191]={62,{400094,3016,3841.0,10719,13074,0,0},{}},
[104192]={62,{30020,3016,3841.0,10719,13074,0,0},{}},
[104193]={55,{400459,10020,3149.0,8566,11438,0,0},{},{133,41.4,26.0}},
[104194]={62,{25753,7446,8167.0,5070,5055,0,0},{}},
[104195]={62,{25753,7446,8167.0,5070,5055,0,0},{}},
[104196]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104197]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104198]={0,{144,28,28.0,28,28,0,0},{},{192,0,0}},
[104199]={0,{144,28,28.0,28,28,0,0},{}},
[104200]={1,{117,30,14.0,63,84,0,0},{}},
[104201]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104202]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104203]={60,{7610,1713,1198.0,1557,1569,0,0},{721821,100000,724913,1000,725300,60000}},
[104204]={0,{144,28,28.0,28,28,0,0},{}},
[104205]={60,{240872,1574,1198.0,4724,4709,0,0},{}},
[104206]={0,{186,32,28.0,96,84,0,0},{}},
[104207]={0,{144,28,28.0,28,28,0,0},{}},
[104208]={60,{500100,32009,2996.0,30000,30044,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,59.3,67.5}},
[104209]={60,{400029,36004,2996.0,28012,28065,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,59.5,67.7}},
[104210]={60,{340038,38369,2996.0,25012,25006,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,60.9,67.6}},
[104211]={60,{340038,27279,2996.0,24470,23657,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,61.2,68.2}},
[104212]={60,{300085,28814,3496.0,25012,25006,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,61.0,68.0}},
[104213]={60,{340038,35005,2996.0,25012,25096,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{133,60.8,68.3}},
[104214]={63,{100103,5661,3255.0,5250,5235,0,0},{}},
[104215]={60,{102473,5092,2996.0,4724,4709,0,0},{}},
[104216]={60,{700115,59394,2996.0,33000,33012,0,0},{}},
[104217]={60,{4335,1185,1198.0,3595,3595,0,0},{},{133,52.4,91.7}},
[104218]={1,{117,15,28.0,46,60,0,0},{}},
[104219]={1,{117,15,28.0,46,60,0,0},{}},
[104220]={60,{500100,32009,2996.0,30000,30044,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,49.4,70.8}},
[104221]={60,{400029,36004,2996.0,28012,28065,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,50.3,73.0}},
[104222]={60,{340038,38369,2996.0,25012,25006,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,50.1,70.0}},
[104223]={60,{340038,27279,2996.0,24470,23657,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,49.9,70.0}},
[104224]={65,{8002304,93686,27363.0,75002,75075,3700,1800},{725317,10000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725443,200000,725310,200000,725690,3000,725653,200000,240718,200000}},
[104225]={65,{8584028,93559,27363.0,76027,76120,3700,1800},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725440,200000,725302,200000}},
[104226]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[104227]={65,{8584028,15564,24063.0,72276,50664,3700,1800},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725442,200000,725306,200000,552082,10000,241750,10000}},
[104228]={65,{8035379,88427,26336.0,72609,76383,3700,1800},{},{134,9.8,61.2}},
[104229]={60,{300085,28814,3496.0,25012,25006,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,50.1,70.2}},
[104230]={60,{340038,35005,2996.0,25012,25096,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{133,50.2,70.2}},
[104231]={1,{117,15,28.0,46,60,0,0},{}},
[104232]={1,{117,15,28.0,46,60,0,0},{}},
[104233]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104234]={60,{199974,38123,2996.0,25022,25006,0,0},{},{133,44.1,81.7}},
[104235]={60,{550088,59012,2996.0,30020,30044,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,43.9,82.9}},
[104236]={60,{1002415,64234,2996.0,49758,50013,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104237]={60,{686843,6071,2996.0,6068,6687,0,0},{},{130,40.3,41.5}},
[104238]={60,{104987,10736,12633.0,9599,15610,0,0},{}},
[104239]={100,{23297,5573,3250.0,16720,16673,0,0},{},{130,36.1,47.0}},
[104240]={0,{186,32,28.0,96,84,0,0},{},{130,34.3,81.7}},
[104241]={60,{340038,27279,2996.0,24470,23657,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,41.1,82.3}},
[104242]={1,{117,15,28.0,46,60,0,0},{}},
[104243]={60,{340038,35005,2996.0,25012,25096,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{133,41.1,82.7}},
[104244]={60,{500100,32009,2996.0,30000,30044,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,32.2,72.9}},
[104245]={60,{340038,38369,2996.0,25012,25006,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,32.1,72.6}},
[104246]={60,{340038,27279,2996.0,24470,23657,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,31.9,72.3}},
[104247]={60,{300085,28814,3496.0,25012,25006,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,32.0,72.3}},
[104248]={60,{340038,35005,2996.0,25012,25096,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{133,31.8,73.3}},
[104249]={60,{199974,38123,2996.0,25022,25006,0,0},{},{133,28.8,72.5}},
[104250]={60,{1002415,59012,2996.0,49758,50013,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104251]={1,{117,15,28.0,46,60,0,0},{}},
[104252]={60,{500124,43799,3633.0,32033,32001,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,36.3,48.3}},
[104253]={60,{500124,43799,3633.0,32033,32001,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,30.6,52.4}},
[104254]={60,{600021,38522,3633.0,32033,32001,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,35.6,48.8}},
[104255]={60,{300074,33245,3633.0,30020,30018,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500},{133,30.2,49.8}},
[104256]={60,{1000120,64907,3633.0,50009,50030,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,35.3,48.4}},
[104257]={1,{124,16,28.0,48,62,0,0},{}},
[104258]={60,{500124,43799,3633.0,32033,32001,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104259]={60,{500124,43799,3633.0,32033,32001,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104260]={60,{600021,38522,3633.0,32033,32001,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,36.7,32.4}},
[104261]={60,{300074,33245,3633.0,30020,30018,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500},{133,34.4,27.8}},
[104262]={60,{30876,2168,1198.0,6506,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770877,100},{18,31.9,76.3}},
[104263]={60,{29788,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,208080,60000,770878,100},{18,31.7,76.3}},
[104264]={60,{61912,6315,2996.0,6111,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770879,100},{18,31.8,74.3}},
[104265]={60,{718525,9249,6591.0,24447,22631,0,0},{720011,5000,720142,10000,725311,10000,725313,10000,720102,20000,770880,100},{18,55.9,45.8}},
[104266]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770881,100},{18,42.4,28.7}},
[104267]={60,{29788,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770882,100},{18,37.6,53.0}},
[104268]={60,{74624,7105,2996.0,7550,6660,0,0},{720011,5000,720142,10000,725311,5000,725313,5000,720102,20000,770883,100},{18,41.4,55.6}},
[104269]={60,{30351,2015,1198.0,5392,5453,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770884,100},{18,32.4,60.2}},
[104270]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770885,100}},
[104271]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770886,100},{18,37.8,28.5}},
[104272]={60,{34124,2133,1198.0,7190,7050,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,208084,60000,770887,100},{18,40.1,52.9}},
[104273]={60,{29788,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770888,100,208083,60000},{18,39.3,54.4}},
[104274]={60,{30876,2409,1198.0,6506,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770889,100},{18,48.0,47.2}},
[104275]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770890,100},{18,47.2,47.4}},
[104276]={60,{30221,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770891,100},{18,50.8,52.0}},
[104277]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770892,100},{18,49.7,53.8}},
[104278]={60,{31089,2489,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770893,100},{18,50.1,59.7}},
[104279]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770894,100},{18,59.7,68.7}},
[104280]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770895,100},{18,56.2,62.3}},
[104281]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770896,100}},
[104282]={60,{31089,2371,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770897,100,208086,60000},{18,57.9,42.1}},
[104283]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770898,100},{18,32.4,32.0}},
[104284]={60,{32389,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770899,100},{18,54.1,36.4}},
[104285]={60,{1841953,8762,6591.0,8269,6660,0,0},{}},
[104286]={60,{34124,2726,1198.0,6471,6271,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770901,100},{18,39.6,33.1}},
[104287]={60,{31089,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770903,100}},
[104288]={60,{30876,2289,1198.0,6144,7050,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770902,100},{18,54.7,28.3}},
[104289]={60,{45369,3997,1198.0,7631,7050,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770904,100},{18,54.5,31.1}},
[104290]={60,{40725,2785,1198.0,6904,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770905,100},{18,57.8,27.6}},
[104291]={60,{33295,1938,1198.0,6904,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770906,100}},
[104292]={60,{23543,2543,1198.0,6177,6271,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770907,100}},
[104293]={60,{35153,2785,1198.0,6177,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770908,100},{18,58.4,27.1}},
[104294]={60,{108983,7186,2996.0,7631,6660,0,0},{720011,5000,720142,10000,725311,10000,725313,10000,720102,10000,770909,100},{18,58.9,29.8}},
[104295]={60,{33257,2133,1198.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770910,100},{18,45.5,28.9}},
[104296]={60,{68268,9078,2996.0,6471,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770911,100},{18,46.7,27.5}},
[104297]={60,{1000120,64907,3633.0,50009,50030,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{133,37.5,31.4}},
[104298]={1,{124,16,28.0,48,62,0,0},{}},
[104299]={34,{3420,539,714.0,1618,1622,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500}},
[104300]={36,{13849,1433,555.0,1780,1784,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500}},
[104301]={36,{4130,593,555.0,1780,1784,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500}},
[104302]={38,{43015,742,1496.0,1952,1957,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500}},
[104303]={64,{400126,30076,3346.0,25015,7010,0,0},{}},
[104304]={64,{130045,15057,16057.0,25015,6013,0,0},{}},
[104305]={100,{63255,18064,8180.0,5532,5619,0,0},{}},
[104306]={60,{900029,64511,2996.0,35017,35081,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104307]={60,{900029,64511,2996.0,35017,35081,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104308]={60,{350057,37838,5496.0,30000,30044,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104309]={0,{186,32,28.0,96,84,0,0},{},{133,59.0,63.0}},
[104310]={60,{34124,2133,1198.0,7190,7050,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770912,100,208093,60000},{18,36.7,33.7}},
[104311]={60,{30442,1816,1816.0,5392,5480,0,0},{770913,100},{18,36.8,63.0}},
[104312]={60,{35182,2409,1198.0,7590,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770914,100},{18,41.4,32.7}},
[104313]={60,{29788,2133,1198.0,6471,6660,0,0},{770915,100}},
[104314]={60,{32168,2349,1198.0,6506,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770916,100,208094,60000},{18,41.7,32.4}},
[104315]={0,{186,32,28.0,96,84,0,0},{},{133,61.1,69.0}},
[104316]={0,{186,32,28.0,96,84,0,0},{},{133,54.4,83.9}},
[104317]={100,{23297,5573,3250.0,16720,16673,0,0},{},{133,36.1,47.0}},
[104318]={1,{135,22,48.0,59,64,0,0},{}},
[104319]={60,{99999,5092,2996.0,20022,8089,0,0},{}},
[104320]={60,{154555,5092,2996.0,20022,8089,0,0},{}},
[104321]={60,{300074,33245,3633.0,30020,30018,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500}},
[104322]={0,{186,32,28.0,96,84,0,0},{},{130,30.3,61.1}},
[104323]={0,{144,28,28.0,28,28,0,0},{},{134,43.3,29.2}},
[104324]={0,{144,28,28.0,28,28,0,0},{},{134,42.5,19.1}},
[104325]={61,{39266,2490,1232.0,6727,7274,0,0},{},{18,54.4,62.5}},
[104326]={61,{39266,2490,1232.0,6727,7274,0,0},{},{18,54.4,62.4}},
[104327]={61,{39266,2490,1232.0,6727,7274,0,0},{},{18,54.3,62.4}},
[104328]={61,{30413,2366,1232.0,6727,6875,0,0},{}},
[104329]={61,{30413,2366,1232.0,6355,7274,0,0},{}},
[104330]={62,{101565,7652,3167.0,14596,15707,0,0},{}},
[104331]={61,{36168,2861,1232.0,7099,7674,0,0},{}},
[104332]={62,{145841,7400,3167.0,20099,15461,0,0},{}},
[104333]={61,{31741,2366,1232.0,6727,7274,0,0},{},{18,54.4,28.5}},
[104334]={62,{38083,2445,1267.0,6954,7094,0,0},{}},
[104335]={61,{31741,2366,1232.0,6727,6875,0,0},{},{18,53.7,61.3}},
[104336]={61,{37053,2242,1232.0,7842,7274,0,0},{}},
[104337]={63,{4274156,5661,3255.0,44021,44033,0,0},{},{133,37.6,12.5}},
[104338]={100,{147880,5573,3250.0,16720,16673,0,0},{},{132,40.3,41.5}},
[104339]={60,{50903,5855,7233.0,7082,7011,0,0},{}},
[104340]={100,{23297,5573,3250.0,16720,16673,0,0},{},{132,36.1,47.0}},
[104341]={60,{71843,6269,3496.0,6004,6687,0,0},{}},
[104342]={0,{186,32,28.0,96,84,0,0},{},{132,34.3,81.7}},
[104343]={0,{186,32,28.0,96,84,0,0},{},{132,30.3,61.1}},
[104344]={63,{4353,1302,1302.0,3907,3907,0,0},{}},
[104345]={60,{4643,1211,1198.0,3633,3595,0,0},{},{132,30.3,56.5}},
[104346]={60,{4335,1185,1198.0,3595,3595,0,0},{},{132,30.4,61.9}},
[104347]={60,{108983,6067,2996.0,20022,16158,0,0},{}},
[104348]={60,{108983,6067,2996.0,20022,16158,0,0},{}},
[104349]={63,{4353,1302,1302.0,3907,3907,0,0},{}},
[104350]={60,{4643,1211,1198.0,3633,3595,0,0},{},{130,30.3,56.5}},
[104351]={0,{142,24,28.0,84,84,0,0},{},{130,30.4,61.9}},
[104352]={60,{250113,10347,2996.0,15000,15057,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,59.3,67.5}},
[104353]={60,{200014,14216,2996.0,14024,14002,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,59.5,67.8}},
[104354]={60,{170082,15983,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,60.9,67.6}},
[104355]={60,{170082,13249,2996.0,12000,12036,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,61.2,68.2}},
[104356]={60,{150042,14375,3496.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,61.0,68.0}},
[104357]={60,{170082,14805,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{132,60.8,68.3}},
[104358]={1,{117,15,28.0,46,60,0,0},{}},
[104359]={60,{250113,10347,2996.0,15000,15057,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,49.4,70.8}},
[104360]={60,{200014,14216,2996.0,14024,14002,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,50.3,73.0}},
[104361]={60,{170082,15983,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,50.1,70.0}},
[104362]={60,{170082,13249,2996.0,12000,12036,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,49.9,70.0}},
[104363]={60,{150042,14375,3496.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,50.0,70.5}},
[104364]={60,{170082,14805,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{132,50.3,73.4}},
[104365]={1,{117,15,28.0,46,60,0,0},{}},
[104366]={60,{150902,13768,2996.0,12511,12515,0,0},{},{132,44.1,81.3}},
[104367]={60,{225018,26285,2996.0,15028,15009,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,43.9,82.9}},
[104368]={60,{500126,32900,2996.0,25022,24935,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104369]={60,{170082,13249,2996.0,12000,12036,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,41.3,82.3}},
[104370]={1,{117,15,28.0,46,60,0,0},{}},
[104371]={60,{170082,14805,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{132,41.1,82.7}},
[104372]={60,{250113,10347,2996.0,15000,15057,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,32.2,72.9}},
[104373]={60,{170082,15983,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,32.1,72.6}},
[104374]={60,{170082,13249,2996.0,12000,12036,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,31.9,72.3}},
[104375]={60,{150042,14375,3496.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,32.0,72.3}},
[104376]={60,{170082,14805,2996.0,12506,12515,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{132,32.0,73.5}},
[104377]={60,{150902,13768,2996.0,12511,12515,0,0},{}},
[104378]={95,{1637533,45398,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720657,200000,202291,50000,727040,100000},{229,49.2,40.9}},
[104379]={1,{117,15,28.0,46,60,0,0},{}},
[104380]={60,{250062,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,36.3,48.3}},
[104381]={60,{250062,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,30.6,52.4}},
[104382]={60,{300074,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,35.6,48.8}},
[104383]={60,{150037,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500},{132,30.2,49.8}},
[104384]={60,{500124,22403,3633.0,25022,25035,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,35.3,48.4}},
[104385]={1,{124,16,28.0,48,62,0,0},{}},
[104386]={60,{300074,33245,3633.0,30020,30018,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500}},
[104387]={60,{250062,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104388]={60,{250062,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104389]={60,{300074,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,36.7,32.4}},
[104390]={60,{150037,13949,3633.0,16034,16032,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500},{132,34.4,27.8}},
[104391]={60,{500124,22403,3633.0,25022,25035,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{132,37.5,31.4}},
[104392]={1,{124,16,28.0,48,62,0,0},{}},
[104393]={60,{450014,18583,2996.0,17005,17023,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104394]={60,{450014,18583,2996.0,17005,17023,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104395]={60,{350057,37838,5496.0,30000,30044,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104396]={63,{1442370,5661,3255.0,44021,44033,0,0},{},{132,37.6,12.5}},
[104397]={60,{350184,17245,2996.0,16518,16543,0,0},{}},
[104398]={60,{4335,1185,1198.0,3595,3595,0,0},{},{132,52.4,91.7}},
[104399]={60,{300085,43301,2996.0,20024,20049,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,59.3,67.5}},
[104400]={60,{240093,38645,2996.0,17024,17015,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,59.5,67.7}},
[104401]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,60.9,67.6}},
[104402]={60,{200014,33291,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,61.2,68.2}},
[104403]={60,{180102,35084,3496.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,61.0,68.0}},
[104404]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{130,60.8,68.3}},
[104405]={1,{117,15,28.0,46,60,0,0},{}},
[104406]={60,{300085,43301,2996.0,20024,20049,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,49.4,70.8}},
[104407]={60,{240093,38645,2996.0,17024,17015,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,50.3,73.0}},
[104408]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,50.1,70.0}},
[104409]={60,{200014,33291,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,49.9,70.0}},
[104410]={60,{180102,35084,3496.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,50.0,70.5}},
[104411]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{130,50.3,73.4}},
[104412]={1,{117,15,28.0,46,60,0,0},{}},
[104413]={60,{120010,38365,2996.0,15028,15037,0,0},{},{130,44.4,82.0}},
[104414]={60,{330027,42987,2996.0,20025,20049,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,43.9,82.9}},
[104415]={60,{600050,47610,2996.0,30020,30008,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104416]={60,{200014,33291,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,41.3,82.3}},
[104417]={1,{117,15,28.0,46,60,0,0},{}},
[104418]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{130,41.1,82.7}},
[104419]={60,{300085,43301,2996.0,20024,20049,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,32.2,72.9}},
[104420]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,32.1,72.6}},
[104421]={60,{200014,33291,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,31.9,72.3}},
[104422]={60,{180102,35084,3496.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,32.0,72.3}},
[104423]={60,{200014,38645,2996.0,15000,15037,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500,208175,200000},{130,30.9,73.3}},
[104424]={60,{120010,38365,2996.0,15028,15037,0,0},{},{130,30.9,69.3}},
[104425]={95,{1637144,45492,18734.0,108227,108770,0,0},{720011,5000,720142,10000,726877,10000,720656,200000,202290,50000,727040,100000},{228,26.1,25.5}},
[104426]={1,{117,15,28.0,46,60,0,0},{}},
[104427]={60,{300074,38819,3633.0,19234,19248,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,36.3,48.3}},
[104428]={60,{300074,38819,3633.0,19234,19248,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,30.6,52.4}},
[104429]={60,{360012,34142,3633.0,19234,19248,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,35.6,48.8}},
[104430]={60,{200049,34142,3633.0,20025,20042,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500},{130,30.2,49.8}},
[104431]={60,{600021,43496,3633.0,30020,30030,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,35.3,48.4}},
[104432]={1,{124,16,28.0,48,62,0,0},{}},
[104433]={60,{300074,33245,3633.0,30020,30018,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500}},
[104434]={60,{300074,38819,3633.0,19234,19248,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104435]={60,{300074,38819,3633.0,19234,19248,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104436]={60,{360012,34142,3633.0,19234,19248,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104437]={60,{200049,34142,3633.0,20025,20042,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725254,3500},{130,34.4,27.8}},
[104438]={60,{600021,43496,3633.0,30020,30030,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{130,37.5,31.4}},
[104439]={1,{124,16,28.0,48,62,0,0},{}},
[104440]={60,{540067,43197,2996.0,21032,21038,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500},{21,21.6,64.9}},
[104441]={60,{540067,43197,2996.0,21032,21038,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104442]={60,{350057,34058,5496.0,30000,22028,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104443]={63,{4274156,5661,3255.0,44021,44033,0,0},{}},
[104444]={60,{420069,52614,2996.0,20024,20049,0,0},{}},
[104445]={60,{4335,1185,1198.0,3595,3595,0,0},{},{130,52.4,91.7}},
[104446]={38,{26195,2699,1326.0,2259,3507,0,0},{720011,3000,722284,2769,722624,2769,722794,2769,720094,5000,220233,481,770048,100,204531,5000,720140,5000,720210,30000,550784,331,222563,1924,723979,3000,721906,1329}},
[104447]={38,{504374,1991,3101.0,1886,2045,0,0},{}},
[104448]={36,{7572,593,555.0,1780,2952,0,0},{}},
[104449]={8,{403,106,106.0,106,106,0,0},{}},
[104450]={60,{34124,2133,1198.0,8269,6660,0,0},{}},
[104451]={0,{150,30,28.0,90,84,0,0},{}},
[104452]={1,{71,24,28.0,84,84,0,0},{}},
[104453]={45,{5183,865,761.0,2628,2651,0,0},{}},
[104454]={65,{789686,7190,3437.0,7210,8003,0,0},{},{136,52.3,17.7}},
[104455]={100,{147880,5573,3250.0,16720,16673,0,0},{}},
[104456]={65,{503051,40278,17336.0,50950,50670,0,0},{}},
[104457]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104458]={65,{10037665,87351,27363.0,70828,68359,3700,1800},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725439,200000,725302,200000}},
[104459]={63,{100011,30091,12255.0,24429,21766,0,0},{}},
[104460]={0,{150,30,28.0,90,84,0,0},{}},
[104461]={62,{6504226,60105,23468.0,60019,60093,2000,1500},{725344,200000,725317,5000,725251,70000,725254,70000,725252,80000,725253,80000,725301,200000}},
[104462]={60,{250113,15038,2996.0,25012,6004,0,0},{207751,200000}},
[104463]={60,{250113,9947,7996.0,20024,12008,0,0},{207751,200000}},
[104464]={68,{54431941,171009,74194.0,120150,121025,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725555,200000,725556,200000,725557,3000,725310,200000,725691,3000,725653,200000}},
[104465]={63,{8501580,70025,19896.0,65014,65025,2500,1800},{725435,200000,725317,10000,725251,80000,725254,80000,725252,95000,725253,95000,720143,70000,725305,200000,725653,200000,725674,3000}},
[104466]={62,{250126,3016,3841.0,10719,13074,0,0},{}},
[104467]={62,{30020,3016,3841.0,10719,13074,0,0},{}},
[104468]={55,{400459,10020,3149.0,8566,11438,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,5000,720142,3000,205758,40000,723983,5000},{130,41.4,26.0}},
[104469]={62,{25753,7446,8167.0,5070,5055,0,0},{}},
[104470]={62,{25753,7446,8167.0,5070,5055,0,0},{}},
[104471]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[104472]={93,{448134,28788,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,200025,25000,727040,25000},{217,32.3,84.8}},
[104473]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,200025,25000,727040,25000},{217,32.9,72.7}},
[104474]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,200025,25000,727040,25000},{217,37.3,42.1}},
[104475]={63,{7500944,40054,19896.0,35007,36037,1100,7000},{725437,200000,725251,80000,725254,80000,725252,95000,725253,95000,720143,70000,725176,200000}},
[104476]={62,{70003,3016,3841.0,10719,13074,0,0},{}},
[104477]={62,{30020,3016,3841.0,10719,13074,0,0},{}},
[104478]={55,{400459,10020,3149.0,8566,11438,0,0},{720011,3000,724499,3500,724500,3500,724498,1500,724270,1500,720101,5000,720142,3000,205758,40000,723983,5000}},
[104479]={62,{25753,7446,8167.0,5070,5055,0,0},{}},
[104480]={62,{25753,7446,8167.0,5070,5055,0,0},{}},
[104481]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[104482]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,200024,25000,727040,25000},{216,61.1,67.5}},
[104483]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,200024,25000,727040,25000},{216,58.3,70.8}},
[104484]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,200024,25000,727040,25000},{216,60.3,79.1}},
[104485]={60,{68268,7105,2996.0,13661,14840,0,0},{}},
[104486]={60,{30876,4216,1198.0,6506,7050,0,0},{}},
[104487]={60,{1678119,8762,6591.0,19054,8218,0,0},{}},
[104488]={60,{33460,2289,1198.0,6506,6660,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770917,100,208092,60000},{18,37.7,39.1}},
[104489]={60,{25278,2168,1198.0,6506,8218,0,0},{720011,5000,720142,10000,725311,2000,725313,2000,720102,10000,770918,100},{18,39.7,39.6}},
[104490]={62,{31477,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770920,100},{19,67.2,51.5}},
[104491]={0,{144,28,28.0,28,28,0,0},{},{134,43.2,29.3}},
[104492]={95,{313907923,380094,37931.0,873700,868472,3550,2500},{}},
[104493]={60,{240872,1574,1198.0,4724,4709,0,0},{}},
[104494]={62,{112299,8913,3167.0,20328,17757,0,0},{}},
[104495]={15,{2660,535,491.0,501,507,0,0},{}},
[104496]={15,{1007,162,196.0,501,507,0,0},{}},
[104497]={55,{377716,396,5710.0,3915,3924,0,0},{}},
[104498]={1,{186,32,28.0,96,84,0,0},{}},
[104499]={0,{186,32,28.0,96,84,0,0},{}},
[104500]={0,{142,24,28.0,84,84,0,0},{},{134,28.1,43.4}},
[104501]={60,{234355,8819,17591.0,3633,9595,0,0},{}},
[104502]={61,{115721,7815,3080.0,17877,15269,0,0},{}},
[104503]={61,{115721,8224,3080.0,17877,15269,0,0},{}},
[104504]={61,{34397,2366,1232.0,6727,6875,0,0},{},{18,54.5,61.8}},
[104505]={61,{25986,2242,1232.0,6727,8473,0,0},{},{18,54.2,62.3}},
[104506]={0,{144,28,28.0,28,28,0,0},{}},
[104507]={65,{8584028,93559,27363.0,76027,76120,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725440,200000}},
[104508]={0,{186,32,28.0,96,84,0,0},{}},
[104509]={60,{35182,2409,1198.0,7590,6660,0,0},{},{18,36.2,26.6}},
[104510]={0,{144,28,28.0,28,28,0,0},{},{134,27.2,58.6}},
[104511]={60,{234355,6819,17591.0,3633,9595,0,0},{}},
[104512]={0,{144,28,28.0,28,28,0,0},{},{134,35.0,66.9}},
[104513]={62,{4905,1280,1267.0,3841,3801,0,0},{},{134,14.6,55.3}},
[104514]={62,{4905,1280,1267.0,3841,3801,0,0},{},{134,13.3,59.8}},
[104515]={62,{4905,1280,1267.0,3841,3801,0,0},{},{134,16.9,60.7}},
[104516]={62,{4905,1280,1267.0,3841,3801,0,0},{},{134,16.7,60.9}},
[104517]={62,{4905,1280,1267.0,3841,3801,0,0},{},{134,14.7,60.7}},
[104518]={0,{144,28,28.0,28,28,0,0},{}},
[104519]={0,{186,32,28.0,96,84,0,0},{}},
[104520]={60,{300074,3048,9033.0,4673,11809,0,0},{}},
[104521]={0,{144,28,28.0,28,28,0,0},{}},
[104522]={0,{144,28,28.0,28,28,0,0},{}},
[104523]={0,{144,28,28.0,28,28,0,0},{}},
[104524]={0,{144,28,28.0,28,28,0,0},{}},
[104525]={0,{144,28,28.0,28,28,0,0},{}},
[104526]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,200023,25000,727040,25000},{215,48.2,72.9}},
[104527]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,200023,25000,727040,25000},{215,39.4,79.7}},
[104528]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,200023,25000,727040,25000},{215,42.4,76.1}},
[104529]={95,{20779,4821,2896.0,14465,14425,0,0},{726877,10000,720661,200000,727040,30000}},
[104530]={98,{367635064,432196,50075.0,1091494,1002137,6000,3500},{}},
[104531]={0,{150,30,28.0,90,84,0,0},{},{134,39.4,72.4}},
[104532]={0,{186,32,28.0,96,84,0,0},{}},
[104533]={63,{100011,30091,12255.0,24429,21766,0,0},{}},
[104534]={60,{13020,3917,2996.0,3633,3595,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725441,200000,725306,200000,552091,10000,241818,10000}},
[104535]={60,{13020,3917,2996.0,3633,3595,0,0},{}},
[104536]={60,{24348,5092,2996.0,4724,4709,0,0},{}},
[104537]={62,{9172,1690,1267.0,5070,5055,0,0},{}},
[104538]={100,{7602428,22197,17875.0,16720,16673,0,0},{}},
[104539]={60,{240872,1574,1198.0,4724,4709,0,0},{}},
[104540]={200,{94754,26771,26668.0,80314,80005,0,0},{}},
[104541]={0,{144,28,28.0,28,28,0,0},{},{135,35.0,66.9}},
[104542]={98,{2672958,401894,21761.0,227184,234761,2000,1500},{}},
[104543]={62,{500045,68991,3167.0,30034,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,35.2,83.4}},
[104544]={62,{400090,58632,3167.0,30034,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,34.9,76.7}},
[104545]={62,{400090,58632,3167.0,30034,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,35.2,76.8}},
[104546]={62,{360108,58059,6667.0,30034,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,36.7,78.1}},
[104547]={62,{2000106,89375,6667.0,30000,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,36.9,61.7}},
[104548]={62,{350045,58632,3167.0,25028,25043,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,22.3,59.8}},
[104549]={62,{400090,68991,3167.0,26022,26003,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104550]={62,{300000,58059,6667.0,23003,23043,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104551]={62,{700006,68523,3167.0,25011,25043,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,16.3,56.2}},
[104552]={62,{800065,68523,3167.0,25011,25043,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,16.5,59.7}},
[104553]={62,{420004,53090,3167.0,25467,24803,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,23.6,61.8}},
[104554]={62,{420004,53090,3167.0,25467,24803,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,19.3,57.9}},
[104555]={62,{2000106,89375,6667.0,30000,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,42.5,6.5}},
[104556]={62,{2000106,89375,6667.0,30000,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,25.6,50.6}},
[104557]={0,{186,32,28.0,96,84,0,0},{},{134,37.7,42.3}},
[104558]={0,{144,28,28.0,28,28,0,0},{},{134,30.8,77.9}},
[104559]={62,{500134,48382,3167.0,30028,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104560]={62,{500134,48382,3167.0,30028,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104561]={62,{300000,58059,6667.0,23003,23043,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,41.8,34.0}},
[104562]={1,{117,15,28.0,46,60,0,0},{}},
[104563]={0,{186,32,28.0,96,84,0,0},{},{134,41.1,39.5}},
[104564]={0,{144,28,28.0,28,28,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104565]={0,{150,30,28.0,90,84,0,0},{},{134,34.4,78.5}},
[104566]={62,{697586,6790,3167.0,5017,10641,0,0},{}},
[104567]={62,{1101048,25876,3167.0,24022,24060,0,0},{},{134,25.2,60.6}},
[104568]={62,{220036,58632,3167.0,25028,25043,0,0},{}},
[104569]={60,{4335,1185,1198.0,3595,3595,0,0},{}},
[104570]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104571]={65,{5890577,12864,18563.0,72276,39084,2500,1200},{720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725447,200000,725177,200000,552082,10000,241750,10000}},
[104572]={1,{117,15,28.0,46,60,0,0},{}},
[104573]={62,{9172,1690,1267.0,5070,5055,0,0},{}},
[104574]={63,{14158,4256,3255.0,3948,3907,0,0},{725346,200000}},
[104575]={63,{14158,4256,3255.0,3948,3907,0,0},{725346,200000}},
[104576]={63,{14158,4256,3255.0,3948,3907,0,0},{725346,200000}},
[104577]={63,{14158,4256,3255.0,3948,3907,0,0},{725346,200000}},
[104578]={63,{14158,4256,3255.0,3948,3907,0,0},{725484,200000}},
[104579]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[104580]={0,{144,28,28.0,28,28,0,0},{}},
[104581]={0,{144,28,28.0,28,28,0,0},{}},
[104582]={68,{54431941,171009,74194.0,120150,121025,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725555,200000,725556,200000,725557,3000,725310,200000,725691,3000,725653,200000,720647,50000}},
[104583]={68,{18021641,8224,8194.0,6168,6213,0,0},{}},
[104584]={67,{403697,46221,21127.0,86490,87978,0,0},{}},
[104585]={67,{854419,41058,13627.0,88014,85191,0,0},{}},
[104586]={67,{854419,41058,13627.0,88014,85191,0,0},{}},
[104587]={67,{8045131,43063,62980.0,106078,104118,0,0},{}},
[104588]={67,{8045131,171787,7980.0,100419,104118,0,0},{}},
[104589]={67,{403697,49650,21127.0,86490,87978,0,0},{}},
[104590]={68,{17000343,180037,8194.0,100003,100075,4500,2500},{}},
[104591]={68,{10002056,141137,8194.0,100036,100075,4500,2500},{}},
[104592]={68,{32002877,160197,41194.0,100003,100075,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725553,200000,725554,200000,725308,200000}},
[104593]={0,{144,28,28.0,28,28,0,0},{}},
[104594]={0,{144,28,28.0,28,28,0,0},{}},
[104595]={0,{144,28,28.0,28,28,0,0},{}},
[104596]={0,{144,28,28.0,28,28,0,0},{}},
[104597]={1,{142,24,28.0,84,84,0,0},{}},
[104598]={1,{142,24,28.0,84,84,0,0},{}},
[104599]={85,{45470,11546,5716.0,10680,10700,0,0},{},{28,79.6,18.3}},
[104600]={1,{117,35,27.0,63,90,0,0},{}},
[104601]={0,{144,28,28.0,28,28,0,0},{}},
[104602]={0,{144,28,28.0,28,28,0,0},{}},
[104603]={0,{144,28,28.0,28,28,0,0},{}},
[104604]={0,{144,28,28.0,28,28,0,0},{}},
[104605]={68,{22002160,190136,63194.0,100003,100075,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725547,200000,725548,200000,725303,200000}},
[104606]={100,{4743557,32397,17875.0,118720,16673,0,0},{240665,200000,240666,200000,726101,200000,726102,200000}},
[104607]={100,{4743557,32397,17875.0,118720,16673,0,0},{240665,200000,240666,200000,726101,200000,726102,200000}},
[104608]={50,{17985,1312,742.0,4548,5374,0,0},{720011,3000,722284,2769,722624,2769,722794,2769,720094,5000,220233,481,770048,100,204531,5000,720140,5000,720210,30000,550784,331,222563,1924,723979,3000,721906,1329}},
[104609]={50,{955149,2078,4630.0,26762,25186,0,0},{}},
[104610]={50,{13441,937,463.0,4563,6017,0,0},{}},
[104611]={60,{8683,1356,1198.0,4069,4062,0,0},{}},
[104612]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104613]={60,{32042,2180,1198.0,5305,5336,0,0},{}},
[104614]={60,{-1692,4950,2996.0,6032,6037,0,0},{}},
[104615]={60,{37369,5190,2996.0,6250,6271,0,0},{}},
[104616]={60,{37369,5190,2996.0,5814,5803,0,0},{}},
[104617]={60,{37369,5190,2996.0,6250,6232,0,0},{}},
[104618]={60,{33890,2168,1198.0,5421,5414,0,0},{}},
[104619]={70,{65261646,33401,55703.0,91594,83889,0,0},{},{210,36.4,48.5}},
[104620]={60,{31006,2180,1198.0,5428,5414,0,0},{}},
[104621]={50,{30085,3396,2233.0,5011,5011,0,0},{}},
[104622]={53,{3201138,20049,10882.0,36226,36029,300,300},{725696,200000,240702,200000,552095,10000,241821,10000}},
[104623]={0,{144,28,28.0,28,28,0,0},{}},
[104624]={65,{5500027,55371,27363.0,50018,50000,2500,1500},{720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725445,200000,725178,200000}},
[104625]={0,{144,28,28.0,28,28,0,0},{},{135,27.2,58.6}},
[104626]={60,{240872,1574,1198.0,4724,4709,0,0},{}},
[104627]={0,{186,32,28.0,96,84,0,0},{}},
[104628]={62,{320125,38101,3167.0,20022,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,36.4,77.6}},
[104629]={62,{280009,28942,3167.0,20022,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,34.9,76.7}},
[104630]={62,{280009,35812,3167.0,20022,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,35.2,76.8}},
[104631]={62,{240027,31786,4667.0,18418,18483,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,36.7,78.1}},
[104632]={1,{117,15,28.0,46,60,0,0},{}},
[104633]={62,{1600029,52026,4667.0,24084,24028,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,36.9,61.7}},
[104634]={62,{560005,37809,3167.0,20031,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104635]={62,{640025,37809,3167.0,20031,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104636]={62,{336084,33265,3167.0,20031,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,22.4,61.5}},
[104637]={62,{336084,33265,3167.0,20031,20051,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,23.1,61.0}},
[104638]={62,{1600029,52026,4667.0,24007,24028,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,25.6,50.6}},
[104639]={62,{1600029,52026,4667.0,24007,24028,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,42.5,6.5}},
[104640]={62,{400080,29016,3167.0,24022,24028,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104641]={62,{400080,29016,3167.0,24022,24028,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104642]={62,{240027,31786,4667.0,18418,18483,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104643]={1,{117,15,28.0,46,60,0,0},{}},
[104644]={0,{186,32,28.0,96,84,0,0},{},{135,41.1,39.5}},
[104645]={62,{160062,33522,3167.0,20022,20051,0,0},{}},
[104646]={62,{2000106,89375,6667.0,30000,30004,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104647]={0,{144,28,28.0,28,28,0,0},{}},
[104648]={0,{142,24,28.0,84,84,0,0},{}},
[104649]={0,{142,24,28.0,84,84,0,0},{}},
[104650]={95,{689989,36968,9367.0,108227,108770,0,0},{}},
[104651]={95,{689989,36968,9367.0,108227,108770,0,0},{}},
[104652]={65,{8584028,93559,27363.0,76027,76120,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725440,200000}},
[104653]={65,{5002113,50093,27363.0,50001,50008,2500,1200},{720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725448,200000,725302,200000,240718,200000}},
[104654]={64,{150047,20031,3346.0,15017,3004,0,0},{}},
[104655]={64,{60042,5010,16057.0,15017,3027,0,0},{}},
[104656]={65,{7001083,49913,27363.0,45035,45020,2300,1000},{720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725444,200000,725178,200000}},
[104657]={63,{50074,10022,12255.0,15003,8002,0,0},{}},
[104658]={63,{50074,10022,12255.0,15003,8002,0,0},{}},
[104659]={65,{3685460,40502,22736.0,40017,40229,3700,1800},{},{135,9.8,61.2}},
[104660]={65,{201758,35454,16736.0,46825,44739,0,0},{}},
[104661]={64,{104861,6574,13057.0,15017,6054,0,0},{}},
[104662]={64,{104861,7463,13057.0,15017,8530,0,0},{}},
[104663]={60,{13020,3917,2996.0,3633,3595,0,0},{720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725446,200000,725177,200000,552091,10000,241818,10000}},
[104664]={60,{13020,3917,2996.0,3633,3595,0,0},{}},
[104665]={65,{789686,7190,3437.0,7210,8003,0,0},{}},
[104666]={52,{3546041,19946,10722.0,34925,36437,300,300},{725696,30000}},
[104667]={65,{10387607,126880,31763.0,77849,76915,3700,1800},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725590,200000,725652,30000,725653,200000,725682,3000,208469,200000,208469,200000,208469,200000,208469,200000}},
[104668]={65,{789686,7190,3437.0,7210,8003,0,0},{},{191,60.3,61.2}},
[104669]={65,{3860096,123980,29563.0,69515,68515,3700,1800},{}},
[104670]={68,{8045219,150644,41194.0,100036,100075,4500,2500},{}},
[104671]={60,{240872,1574,1198.0,4724,4709,0,0},{}},
[104672]={63,{14158,4256,3255.0,3948,3907,0,0},{725347,200000}},
[104673]={63,{14158,4256,3255.0,3948,3907,0,0},{725348,200000}},
[104674]={63,{14158,4256,3255.0,3948,3907,0,0},{725435,200000}},
[104675]={63,{14158,4256,3255.0,3948,3907,0,0},{725484,200000}},
[104676]={63,{14158,4256,3255.0,3948,3907,0,0},{725347,200000}},
[104677]={63,{14158,4256,3255.0,3948,3907,0,0},{725348,200000}},
[104678]={63,{14158,4256,3255.0,3948,3907,0,0},{725484,200000}},
[104679]={63,{14158,4256,3255.0,3948,3907,0,0},{725485,200000}},
[104680]={63,{14158,4256,3255.0,3948,3907,0,0},{725347,200000}},
[104681]={63,{14158,4256,3255.0,3948,3907,0,0},{725484,200000}},
[104682]={63,{14158,4256,3255.0,3948,3907,0,0},{725485,200000}},
[104683]={63,{14158,4256,3255.0,3948,3907,0,0},{725486,200000}},
[104684]={63,{14158,4256,3255.0,3948,3907,0,0},{725484,200000}},
[104685]={63,{14158,4256,3255.0,3948,3907,0,0},{725485,200000}},
[104686]={63,{14158,4256,3255.0,3948,3907,0,0},{725486,200000}},
[104687]={63,{14158,4256,3255.0,3948,3907,0,0},{725487,200000}},
[104688]={63,{14158,4256,3255.0,3948,3907,0,0},{725485,200000}},
[104689]={63,{14158,4256,3255.0,3948,3907,0,0},{725486,200000}},
[104690]={63,{14158,4256,3255.0,3948,3907,0,0},{725487,200000}},
[104691]={63,{14158,4256,3255.0,3948,3907,0,0},{725488,200000}},
[104692]={73,{1176546,7887,4242.0,60127,15171,4800,2800},{725785,10000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725813,200000,725814,200000}},
[104693]={0,{144,28,28.0,28,28,0,0},{}},
[104694]={0,{144,28,28.0,28,28,0,0},{}},
[104695]={0,{144,28,28.0,28,28,0,0},{}},
[104696]={64,{33756,2758,1338.0,6986,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770964,100},{19,23.0,54.2}},
[104697]={100,{119373082,224794,83875.0,265213,146293,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725555,200000,725556,200000,725557,3000,725310,200000,725691,3000,725653,200000}},
[104698]={62,{36975,3159,1267.0,8058,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770921,100},{19,56.1,45.7}},
[104699]={62,{33768,2657,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770922,100},{19,63.6,38.8}},
[104700]={62,{29965,2406,1267.0,10719,7336,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000}},
[104701]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770924,100,208576,60000},{19,57.0,18.7}},
[104702]={62,{33768,2657,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770925,100},{19,54.9,19.0}},
[104703]={62,{29186,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000}},
[104704]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770927,100,208489,60000},{19,40.8,17.9}},
[104705]={63,{17584318,67939,53023.0,75920,61719,2700,1200},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,725597,50000,725245,200000,240720,200000,770928,100}},
[104706]={62,{4581,1253,1267.0,3801,3801,0,0},{}},
[104707]={62,{34299,2330,1267.0,6917,7094,0,0},{},{19,55.3,32.9}},
[104708]={62,{34299,2330,1267.0,6917,7094,0,0},{},{19,54.9,32.3}},
[104709]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770932,100,208522,60000},{19,37.3,45.3}},
[104710]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770933,100,208550,60000},{19,64.2,52.3}},
[104711]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770934,100},{19,64.3,51.6}},
[104712]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770935,100},{19,39.1,47.3}},
[104713]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770936,100},{19,38.2,48.7}},
[104714]={63,{22769,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770937,100},{19,40.2,52.8}},
[104715]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770938,100},{19,38.6,46.7}},
[104716]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770939,100},{19,42.1,48.4}},
[104717]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770940,100},{19,38.1,46.8}},
[104718]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770941,100},{19,38.8,47.1}},
[104719]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770942,100},{19,38.9,45.5}},
[104720]={63,{34458,2526,1302.0,7580,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770943,100},{19,38.1,45.8}},
[104721]={63,{34701,2487,1302.0,7540,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770944,100,208548,60000},{19,46.7,53.4}},
[104722]={64,{35401,2610,1338.0,7830,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770945,100},{19,37.7,79.2}},
[104723]={62,{36059,2908,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770946,100},{19,81.0,28.4}},
[104724]={64,{35653,2569,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770947,100},{19,24.7,85.6}},
[104725]={64,{35653,2569,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770948,100},{19,32.3,91.1}},
[104726]={64,{36213,2623,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770949,100},{19,48.9,59.9}},
[104727]={64,{36213,2623,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770950,100},{19,50.0,62.6}},
[104728]={64,{36213,2623,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770951,100},{19,49.9,60.8}},
[104729]={64,{35401,2610,1338.0,7830,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770952,100},{19,45.8,67.7}},
[104730]={64,{35401,2610,1338.0,7830,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770953,100},{19,45.9,67.2}},
[104731]={64,{35653,2569,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770954,100},{19,47.5,73.3}},
[104732]={64,{35401,2610,1338.0,7830,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770955,100},{19,31.6,79.0}},
[104733]={64,{35401,2610,1338.0,7830,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770956,100},{19,29.4,79.0}},
[104734]={64,{35653,2569,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770957,100},{19,30.3,78.6}},
[104735]={62,{36059,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770958,100},{19,81.1,26.3}},
[104736]={64,{36213,2488,1338.0,7388,7983,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770959,100},{19,25.4,54.8}},
[104737]={64,{33234,2569,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770960,100},{19,40.1,44.2}},
[104738]={64,{31299,2623,1338.0,9395,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770961,100},{19,23.3,54.0}},
[104739]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104740]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104741]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104742]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104743]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104744]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104745]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104746]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104747]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104748]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104749]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104750]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104751]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104752]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104753]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104754]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104755]={63,{14158,4256,3255.0,3948,3907,0,0},{}},
[104756]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770962,100},{19,56.7,50.4}},
[104757]={60,{30045,1574,1198.0,5523,5531,0,0},{}},
[104758]={60,{36043,1566,1198.0,5313,5336,0,0},{}},
[104759]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104760]={60,{4643,1211,1198.0,3633,3595,0,0},{}},
[104761]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104762]={65,{10037665,87351,27363.0,70828,68359,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725439,200000,725302,200000}},
[104763]={65,{9001518,120232,73563.0,76034,76128,3700,1800},{}},
[104764]={65,{9001518,120232,73563.0,76034,76128,3700,1800},{}},
[104765]={30,{5019,1905,1394.0,8419,8520,0,0},{}},
[104766]={50,{304429,5356,5463.0,4202,4582,0,0},{}},
[104767]={0,{186,32,28.0,96,84,0,0},{},{190,30.2,40.1}},
[104768]={40,{4364,712,842.0,2136,2141,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500},{190,54.2,69.1}},
[104769]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500},{190,54.9,68.1}},
[104770]={30,{2878,444,667.0,1312,1336,0,0},{720011,3000,720141,20000,722353,15000,722557,1500,723747,1500,720094,3500,723980,3500},{190,65.2,61.3}},
[104771]={30,{2878,444,667.0,1312,1336,0,0},{720011,3000,720141,20000,722353,15000,722557,1500,723747,1500,720094,3500,723980,3500},{190,66.0,60.8}},
[104772]={43,{4828,810,712.0,2432,2438,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500},{190,54.5,69.9}},
[104773]={43,{4828,810,712.0,2432,2438,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500},{190,55.2,69.3}},
[104774]={30,{5177004,2164,2407.0,30554,30079,0,0},{}},
[104775]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104776]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104777]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104778]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[104779]={95,{21901,5151,3096.0,15455,15421,0,0},{}},
[104780]={95,{21901,5151,3096.0,15455,15421,0,0},{}},
[104781]={61,{31741,2242,1232.0,6727,7274,0,0},{},{18,54.0,29.1}},
[104782]={62,{400761,58059,6667.0,23003,23043,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{134,41.8,33.4}},
[104783]={62,{300000,31786,4667.0,18418,18483,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{135,41.7,33.6}},
[104784]={0,{142,24,28.0,84,84,0,0},{}},
[104785]={67,{2001756,16211,7980.0,37024,37042,0,0},{}},
[104786]={52,{2837202,19830,10722.0,31962,36437,250,250},{725696,30000}},
[104787]={0,{150,30,28.0,90,84,0,0},{}},
[104788]={61,{30413,2366,1232.0,6727,6875,0,0},{},{18,52.7,56.5}},
[104789]={1,{108,21,14.0,45,60,0,0},{}},
[104790]={0,{142,24,28.0,84,84,0,0},{}},
[104791]={1,{117,35,27.0,63,90,0,0},{}},
[104792]={1,{117,30,14.0,63,84,0,0},{}},
[104793]={1,{117,35,27.0,63,90,0,0},{}},
[104794]={1,{117,35,27.0,63,90,0,0},{}},
[104795]={1,{117,35,27.0,63,90,0,0},{}},
[104796]={1,{117,35,27.0,63,90,0,0},{}},
[104797]={0,{142,24,28.0,84,84,0,0},{}},
[104798]={1,{117,35,27.0,63,90,0,0},{}},
[104799]={1,{117,35,27.0,63,90,0,0},{}},
[104800]={1,{117,35,27.0,63,90,0,0},{}},
[104801]={1,{117,35,27.0,63,90,0,0},{}},
[104802]={1,{117,35,27.0,63,90,0,0},{}},
[104803]={1,{117,35,27.0,63,90,0,0},{}},
[104804]={1,{117,35,27.0,63,90,0,0},{}},
[104805]={1,{117,35,27.0,63,90,0,0},{}},
[104806]={1,{117,35,27.0,63,90,0,0},{}},
[104807]={0,{142,24,28.0,84,84,0,0},{}},
[104808]={0,{142,24,28.0,84,84,0,0},{}},
[104809]={60,{173422,43320,6591.0,30160,30258,0,0},{}},
[104810]={0,{144,28,28.0,28,28,0,0},{}},
[104811]={0,{144,28,28.0,28,28,0,0},{}},
[104812]={63,{25796,5645,3255.0,5223,5235,0,0},{},{192,0,0}},
[104813]={0,{144,28,28.0,28,28,0,0},{}},
[104814]={60,{199847,5034,2996.0,80030,4709,0,0},{}},
[104815]={0,{144,28,28.0,28,28,0,0},{}},
[104816]={0,{144,28,28.0,28,28,0,0},{}},
[104817]={0,{144,28,28.0,28,28,0,0},{}},
[104818]={0,{144,28,28.0,28,28,0,0},{}},
[104819]={0,{144,28,28.0,28,28,0,0},{}},
[104820]={52,{1717731,1165,949.0,3495,3503,0,0},{}},
[104821]={65,{5001738,48897,27363.0,50001,50000,0,0},{208679,100000,208679,100000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,720143,60000}},
[104822]={65,{5501288,80920,29936.0,50001,50072,0,0},{208679,100000,208679,100000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,720143,60000}},
[104823]={65,{4201962,80920,38916.8,53013,53061,0,0},{208679,100000,208679,100000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,720143,60000}},
[104824]={65,{6000383,80830,27363.0,55241,55224,0,0},{208679,100000,208679,100000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,720143,60000}},
[104825]={65,{6507377,80830,27363.0,57020,57015,0,0},{208679,100000,208679,100000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,720143,60000}},
[104826]={65,{7000285,83189,35571.9,60026,60000,0,0},{208679,100000,208679,100000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,720143,60000}},
[104827]={60,{300074,40706,3633.0,24016,24040,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104828]={60,{200049,38517,3633.0,22002,22037,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104829]={60,{357086,31952,3633.0,26029,26043,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104830]={60,{297020,31952,3633.0,22002,22037,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104831]={60,{416074,36062,2996.0,26029,26005,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104832]={60,{360086,40407,2996.0,22002,22012,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000},{21,23.0,64.8}},
[104833]={60,{416515,36329,3633.0,27503,27505,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104834]={60,{272077,36329,3633.0,24986,25069,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104835]={60,{417025,40511,2996.0,27506,27515,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104836]={61,{306070,46170,3080.0,25029,25012,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104837]={61,{433599,41692,3080.0,27506,27540,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104838]={61,{522533,41478,3080.0,29836,30014,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104839]={61,{595972,32735,3080.0,40018,40019,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104840]={61,{420127,46170,3080.0,30004,30014,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104841]={61,{340173,46170,3080.0,30004,30014,0,0},{725568,35000,720142,3000,720102,700,725311,700,725313,500,725312,500,725314,500,720011,1000}},
[104842]={53,{19385,4868,5969.0,3610,3661,0,0},{725568,35000}},
[104843]={95,{21901,5151,3096.0,15455,15421,0,0},{}},
[104844]={95,{21901,5151,3096.0,15455,15421,0,0},{}},
[104845]={95,{1637070,45023,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720656,200000,200024,50000,727040,100000},{216,74.9,33.8}},
[104846]={95,{19487,4737,2896.0,14338,14425,0,0},{}},
[104847]={0,{144,28,28.0,28,28,0,0},{}},
[104848]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771709,100},{34,69.9,76.6}},
[104849]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771710,100},{34,73.4,59.5}},
[104850]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771711,100},{34,72.1,75.5}},
[104851]={60,{108983,7186,2996.0,7631,6660,0,0},{720011,5000,720142,10000,725311,10000,725313,10000,720102,10000,770909,100}},
[104852]={65,{2171439,10968,7563.0,24134,25882,0,0},{}},
[104853]={65,{56398,8291,3437.0,11818,11799,0,0},{}},
[104854]={65,{43765,5321,1375.0,10159,10444,0,0},{}},
[104855]={64,{43039,2610,1338.0,10050,8414,0,0},{208544,200000}},
[104856]={62,{33768,2406,1267.0,7298,7915,0,0},{}},
[104857]={62,{33533,2445,1267.0,7336,7915,0,0},{}},
[104858]={9,{7294,1512,296.0,6815,533,0,0},{}},
[104859]={63,{55189,9492,3255.0,7931,7970,0,0},{}},
[104860]={7,{3579,647,236.0,2130,533,0,0},{}},
[104861]={62,{34299,2458,1267.0,7298,7915,0,0},{},{19,56.9,32.5}},
[104862]={62,{33768,2406,1267.0,7298,7915,0,0},{}},
[104863]={64,{239217,5945,3346.0,19534,16613,0,0},{}},
[104864]={63,{133394,8336,3255.0,18970,16155,0,0},{}},
[104865]={64,{28196,1802,1338.0,5408,16841,0,0},{}},
[104866]={64,{28196,1802,1338.0,5408,16841,0,0},{}},
[104867]={64,{5379,1802,1338.0,5408,5420,0,0},{}},
[104868]={62,{33533,3082,1267.0,9247,9965,0,0},{}},
[104869]={62,{33533,3082,1267.0,9247,9965,0,0},{}},
[104870]={62,{33533,3082,1267.0,9247,9965,0,0},{}},
[104871]={62,{33533,3082,1267.0,9247,9965,0,0},{}},
[104872]={50,{6510,1084,893.0,3253,3242,0,0},{720011,3000,720142,20000,722191,15000,722157,1500,724180,1500,724185,3500,720100,3500},{190,40.5,63.1}},
[104873]={50,{6510,1084,893.0,3253,3242,0,0},{720011,3000,720142,20000,722191,15000,722157,1500,724180,1500,724185,3500,720100,3500},{190,41.0,63.6}},
[104874]={50,{6510,1084,893.0,3525,3510,0,0},{720011,3000,720142,20000,722191,15000,722157,1500,724180,1500,724185,3500,720100,3500},{190,41.3,60.9}},
[104875]={50,{6510,1084,893.0,3525,3510,0,0},{720011,3000,720142,20000,722191,15000,722157,1500,724180,1500,724185,3500,720100,3500},{190,43.9,54.6}},
[104876]={33,{3299,517,753.0,1633,1631,0,0},{720011,3000,720141,20000,722353,15000,722557,1500,723747,1500,720094,3500,723980,3500},{190,65.3,65.8}},
[104877]={33,{3299,517,753.0,1633,1631,0,0},{720011,3000,720141,20000,722353,15000,722557,1500,723747,1500,720094,3500,723980,3500},{190,66.4,69.2}},
[104878]={65,{600123,18016,3437.0,5598,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104879]={65,{600123,18016,3437.0,5598,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104880]={65,{500005,20015,13437.0,25005,5610,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104881]={65,{500005,20089,3437.0,25005,5239,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104882]={66,{5002402,185360,7769.0,35015,13010,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104883]={66,{600107,20123,16281.0,25004,5239,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104884]={66,{600107,18093,4281.0,5763,8008,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104885]={67,{6009238,202602,8794.0,37042,14000,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104886]={67,{600012,19013,3627.0,6024,8009,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104887]={67,{800332,20061,3627.0,25019,5223,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104888]={67,{600012,19043,13627.0,6024,8096,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104889]={67,{800332,20052,13627.0,25019,5223,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104890]={68,{3501843,245244,8194.0,40003,16002,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104891]={68,{3501843,245244,8194.0,41042,17030,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104892]={68,{3000026,15832,13724.0,30025,11040,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500},{192,0,0}},
[104893]={68,{4000035,17752,13724.0,38017,18013,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104894]={63,{2501777,6928,7163.0,1732,1745,0,0},{}},
[104895]={50,{6026,1078,893.0,3234,3242,0,0},{720011,3000,720142,20000,722191,15000,722157,1500,724180,1500,724185,3500,720100,3500},{190,19.6,59.7}},
[104896]={0,{144,28,28.0,28,28,0,0},{}},
[104897]={68,{17002153,135126,21944.0,91096,85748,4200,2300},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725595,200000,725652,200000,725686,3000,725653,200000,240723,200000,552095,10000,241821,10000}},
[104898]={68,{300099,11109,9974.0,25104,9946,0,0},{}},
[104899]={68,{5754,1505,1489.0,4515,4469,0,0},{}},
[104900]={0,{150,30,28.0,90,84,0,0},{}},
[104901]={68,{5754,1505,1489.0,4515,4469,0,0},{}},
[104902]={0,{144,28,28.0,28,28,0,0},{}},
[104903]={52,{3027485,18705,10722.0,30027,30004,300,300},{725696,30000}},
[104904]={60,{4306,1204,1198.0,3614,3595,0,0},{}},
[104905]={65,{500005,30087,3437.0,25005,10025,0,0},{720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[104906]={60,{4306,1204,1198.0,3614,3595,0,0},{}},
[104907]={65,{500005,30087,3437.0,25005,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104908]={60,{4306,1204,1198.0,3614,3595,0,0},{}},
[104909]={65,{500005,30087,3437.0,25005,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104910]={60,{4306,1204,1198.0,3614,3595,0,0},{}},
[104911]={65,{500005,30087,3437.0,25005,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104912]={60,{4306,1204,1198.0,3614,3595,0,0},{},{192,0,0}},
[104913]={65,{500005,30087,3437.0,25005,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[104914]={63,{25796,551,3255.0,5223,5235,0,0},{},{192,0,0}},
[104915]={63,{3000135,5661,3255.0,20016,6016,0,0},{},{192,0,0}},
[104916]={62,{428611,15763,4667.0,24022,24252,0,0},{}},
[104917]={0,{1,22,28.0,67,59,0,0},{}},
[104918]={60,{24348,5092,2996.0,4724,4709,0,0},{}},
[104919]={0,{150,30,28.0,90,84,0,0},{}},
[104920]={67,{13002088,128187,18980.0,70037,70088,4000,2100},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725592,200000,725652,30000}},
[104921]={60,{200909,5092,2996.0,20022,20205,0,0},{}},
[104922]={63,{150084,5661,3255.0,20016,20004,0,0},{}},
[104923]={60,{23797,31952,3633.0,4673,7093,0,0},{}},
[104924]={62,{750420,58218,6968.0,23012,23020,0,0},{}},
[104925]={63,{165013,34499,3255.0,44267,64718,0,0},{}},
[104926]={90,{17342,4085,2576.0,12366,12444,0,0},{}},
[104927]={90,{17342,4085,2576.0,12366,12444,0,0},{}},
[104928]={90,{17611,4159,2576.0,12366,12444,0,0},{}},
[104929]={90,{17611,4159,2576.0,12366,12444,0,0},{}},
[104930]={90,{17385,4159,3899.0,12366,12500,0,0},{}},
[104931]={90,{17203,4140,2576.0,12422,12444,0,0},{}},
[104932]={97,{570416,33612,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771712,100},{34,69.8,72.3}},
[104933]={97,{1034595,75003,20084.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771713,100},{34,70.0,74.6}},
[104934]={97,{564776,33557,8033.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771714,100},{34,71.1,72.6}},
[104935]={97,{564776,33557,8033.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771715,100},{34,61.3,42.1}},
[104936]={97,{564776,33557,8033.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771716,100},{34,59.8,30.1}},
[104937]={97,{597056,35568,8033.0,111293,118579,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771717,100},{34,60.8,31.2}},
[104938]={97,{1081902,75003,20084.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771718,100},{34,58.6,19.3}},
[104939]={97,{597056,35568,8033.0,111293,118579,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771719,100},{34,58.2,22.0}},
[104940]={97,{570416,33612,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771720,100},{34,52.8,25.8}},
[104941]={62,{130009,8072,3167.0,18418,15707,0,0},{}},
[104942]={62,{145007,2445,1267.0,18418,15707,0,0},{}},
[104943]={62,{129740,8072,3167.0,18418,15707,0,0},{}},
[104944]={62,{186091,8072,3167.0,18418,15707,0,0},{}},
[104945]={62,{130009,8072,3167.0,18418,15707,0,0},{}},
[104946]={62,{130009,8072,3167.0,18418,15707,0,0},{}},
[104947]={62,{293426,8072,3167.0,18418,15707,0,0},{}},
[104948]={62,{462977,8210,6968.0,18494,15778,0,0},{}},
[104949]={0,{144,28,28.0,28,28,0,0},{}},
[104950]={57,{400275,5480,2751.0,41029,41007,0,0},{}},
[104951]={64,{12006998,127764,18361.0,68420,66377,3700,1800},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725587,200000,725652,30000,208468,200000,208468,200000}},
[104952]={60,{340799,85206,2996.0,35133,35020,0,0},{720011,3000,720142,20000,720102,15000,725251,1500,725254,1500,725252,3500,725253,3500}},
[104953]={65,{8584028,93559,27363.0,76027,76120,0,0},{}},
[104954]={63,{133394,8336,3255.0,18970,16155,0,0},{}},
[104955]={62,{35444,2611,1267.0,7833,8120,0,0},{}},
[104956]={65,{500005,30087,3437.0,25005,10025,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500},{192,0,0}},
[104957]={65,{500005,70068,3437.0,30023,10018,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500},{192,0,0}},
[104958]={63,{13794,4244,3255.0,3927,3907,0,0},{},{192,0,0}},
[104959]={63,{512058,5645,3255.0,5223,5235,0,0},{}},
[104960]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[104961]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[104962]={52,{3027485,15770,5222.0,30027,14614,0,0},{}},
[104963]={0,{186,32,28.0,96,84,0,0},{},{190,83.2,51.2}},
[104964]={0,{186,32,28.0,96,84,0,0},{}},
[104965]={62,{560166,94423,3167.0,28128,27221,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,67.3,53.3}},
[104966]={60,{423620,65777,2996.0,26566,26112,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,15.8,47.0}},
[104967]={60,{582415,91599,2996.0,26530,26112,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,16.9,47.6}},
[104968]={61,{708050,92801,3080.0,28431,27705,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,20.7,30.4}},
[104969]={61,{599110,92801,3080.0,28431,27705,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,21.9,31.5}},
[104970]={62,{616142,94423,3167.0,28128,27221,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,67.8,53.9}},
[104971]={62,{784205,102764,3167.0,31511,30413,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,67.4,53.7}},
[104972]={60,{8235,1574,1198.0,4673,4709,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[104973]={60,{529525,91599,2996.0,26530,26112,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500},{191,10.1,44.9}},
[104974]={0,{144,28,28.0,28,28,0,0},{}},
[104975]={0,{144,28,28.0,28,28,0,0},{}},
[104976]={0,{144,28,28.0,28,28,0,0},{}},
[104977]={0,{144,28,28.0,28,28,0,0},{}},
[104978]={0,{144,28,28.0,28,28,0,0},{}},
[104979]={97,{622319,29582,8033.0,100985,126774,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771721,100},{34,55.4,28.6}},
[104980]={1,{1110,90,28.0,303,20,0,0},{}},
[104981]={1,{738,232,28.0,161,20,0,0},{}},
[104982]={0,{144,28,28.0,28,28,0,0},{}},
[104983]={64,{10572426,117568,18361.0,68776,66377,3700,1800},{208468,200000,208468,200000,725652,30000}},
[104984]={65,{16619634,132436,27363.0,88080,20298,4000,2000},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725591,200000,725652,200000,725687,3000,725653,200000,240719,200000}},
[104985]={62,{13103,4117,3167.0,3801,3801,0,0},{}},
[104986]={60,{151713,19359,12996.0,11864,31760,0,0},{}},
[104987]={0,{186,32,28.0,96,84,0,0},{}},
[104988]={0,{186,32,28.0,96,84,0,0},{}},
[104989]={63,{17584318,54891,57023.0,75920,66375,0,0},{770928,100}},
[104990]={52,{2929499,19946,10722.0,34925,36437,300,300},{}},
[104991]={0,{144,28,28.0,28,28,0,0},{}},
[104992]={0,{144,28,28.0,28,28,0,0},{}},
[104993]={0,{144,28,28.0,28,28,0,0},{}},
[104994]={98,{570265,33934,8104.0,101802,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771746,100},{34,20.7,54.4}},
[104995]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771747,100},{34,22.1,58.1}},
[104996]={98,{622937,29793,8104.0,102289,127889,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771748,100},{34,24.3,57.9}},
[104997]={98,{603120,35963,8104.0,112761,119866,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771749,100},{34,22.7,55.7}},
[104998]={98,{1099183,75927,20261.0,101802,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771750,100},{34,26.9,52.8}},
[104999]={63,{451643,10069,3948.0,5196,8012,0,0},{}},
[105000]={50,{5826084,7372,2483.0,1630180,1791532,0,0},{}},
[105001]={50,{5826084,11058,2483.0,1630180,1791532,0,0},{}},
[105002]={50,{5826084,7372,2483.0,1630180,1791532,0,0},{}},
[105003]={50,{76181,7372,2483.0,9761,7181,0,0},{}},
[105004]={33,{18018,3456,1507.0,1633,1958,0,0},{720011,3000,720141,20000,722353,15000,722557,1500,723747,1500,720094,3500,723980,3500},{190,78.4,72.4}},
[105005]={43,{30046,6509,1782.0,2432,3122,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500},{190,36.5,41.5}},
[105006]={50,{66501,9349,2233.0,3253,3242,0,0},{720011,3000,720142,20000,722191,15000,722157,1500,724180,1500,724185,3500,720100,3500},{190,43.3,73.3}},
[105007]={53,{72916,10335,2446.0,3652,3640,0,0},{}},
[105008]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[105009]={43,{4828,810,712.0,2432,2438,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500}},
[105010]={43,{4828,4398,712.0,4585,2438,0,0},{}},
[105011]={0,{144,28,28.0,28,28,0,0},{}},
[105012]={0,{144,28,28.0,28,28,0,0},{}},
[105013]={0,{144,28,28.0,28,28,0,0},{}},
[105014]={55,{13434,1557,1078.0,5304,5897,0,0},{},{18,29.9,76.6}},
[105015]={10,{3028986,873,1310.0,435,436,0,0},{}},
[105016]={52,{1717731,1165,949.0,3495,3503,0,0},{}},
[105017]={64,{35401,2610,1338.0,7830,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770963,100},{19,38.4,83.9}},
[105018]={64,{31299,2623,1338.0,9395,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770961,100},{19,36.0,50.0}},
[105019]={70,{709547,9814,15703.0,4711,4711,0,0},{}},
[105020]={65,{4310842,183025,13751.0,162260,70010,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105021]={70,{709936,9836,15703.0,4734,4711,0,0},{}},
[105022]={0,{144,28,28.0,28,28,0,0},{}},
[105023]={10,{511,126,131.0,393,393,0,0},{}},
[105024]={20,{75494,958,1480.0,726,734,0,0},{}},
[105025]={1,{1110,90,28.0,303,20,0,0},{}},
[105026]={1,{738,232,28.0,161,20,0,0},{}},
[105027]={58,{4392,1144,2532.0,3434,3397,0,0},{720011,3000,724499,15000,724500,15000,724498,6000,724270,6000,724521,6000,724718,200000,724719,200000,720101,5000,725176,200000,240705,200000,720142,300,725653,200000,725462,24000,723983,3000}},
[105028]={52,{2929499,19946,10722.0,11641,12145,300,300},{}},
[105029]={64,{35653,2569,1338.0,7789,8414,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770930,100},{19,45.2,65.2}},
[105030]={0,{144,28,28.0,28,28,0,0},{},{190,80.7,53.8}},
[105031]={0,{142,24,28.0,84,84,0,0},{}},
[105032]={1,{117,30,14.0,63,84,0,0},{}},
[105033]={0,{144,28,28.0,28,28,0,0},{}},
[105034]={0,{144,28,28.0,28,28,0,0},{}},
[105035]={67,{500105,22066,3627.0,25025,8009,0,0},{720142,20000,720102,15000,725494,1500,725313,1500,725495,3500,725493,3500}},
[105036]={0,{144,28,28.0,28,28,0,0},{}},
[105037]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105038]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105039]={68,{13652405,133800,19194.0,86000,77372,300,300},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725594,200000,725652,30000}},
[105040]={1,{186,32,28.0,96,84,0,0},{}},
[105041]={63,{23623,25504,1231.0,1796,807,0,0},{}},
[105042]={53,{19385,4868,5969.0,3610,3661,0,0},{725568,35000}},
[105043]={53,{19385,4868,5969.0,3610,3661,0,0},{725568,35000}},
[105044]={53,{19385,4868,5969.0,3610,3661,0,0},{725568,35000}},
[105045]={98,{576039,33991,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771751,100},{34,21.5,45.5}},
[105046]={62,{33768,2406,1267.0,7298,7915,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770965,100},{19,52.2,45.9}},
[105047]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105048]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105049]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105050]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105051]={60,{686022,5222,3633.0,30751,4843,0,0},{}},
[105052]={10,{613,100,131.0,314,318,0,0},{}},
[105053]={10,{613,100,131.0,314,318,0,0},{}},
[105054]={10,{613,100,131.0,314,318,0,0},{}},
[105055]={37,{3902,608,577.0,1852,1869,0,0},{}},
[105056]={37,{3884,621,577.0,1865,1869,0,0},{}},
[105057]={37,{3902,608,577.0,1852,1869,0,0},{}},
[105058]={37,{3902,608,577.0,1852,1869,0,0},{}},
[105059]={37,{3902,608,577.0,1852,1869,0,0},{}},
[105060]={37,{3902,608,577.0,1852,1869,0,0},{}},
[105061]={1,{157,35,14.0,75,84,0,0},{}},
[105062]={0,{144,28,28.0,28,28,0,0},{}},
[105063]={65,{9002161,220002,7563.0,88038,88039,4000,2100},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725593,200000,725652,30000,725683,3000,725653,200000}},
[105064]={62,{247581,5081,6968.0,3821,3801,0,0},{}},
[105065]={65,{2200109,220002,7563.0,88038,88039,4000,2100},{}},
[105066]={62,{247581,5081,6968.0,3821,3801,0,0},{}},
[105067]={63,{22930,2487,1302.0,7540,8161,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770937,100}},
[105068]={63,{302710,27005,3948.0,24732,10015,0,0},{}},
[105069]={63,{149007,-2186,1302.0,5223,5235,0,0},{}},
[105070]={63,{149007,-2186,1302.0,5223,5235,0,0},{}},
[105071]={0,{144,28,28.0,28,28,0,0},{}},
[105072]={55,{500579,6564,6810.0,5071,5575,0,0},{}},
[105073]={10,{3028986,873,1310.0,435,436,0,0},{},{136,53.8,40.9}},
[105074]={0,{186,32,28.0,96,84,0,0},{}},
[105075]={0,{186,32,28.0,96,84,0,0},{}},
[105076]={60,{151713,22827,7996.0,11864,31760,0,0},{}},
[105077]={0,{144,28,28.0,28,28,0,0},{}},
[105078]={0,{144,28,28.0,28,28,0,0},{}},
[105079]={10,{613,100,131.0,314,318,0,0},{}},
[105080]={20,{1509,237,269.0,726,734,0,0},{}},
[105081]={30,{2865,430,437.0,1312,1326,0,0},{}},
[105082]={40,{4386,697,642.0,2121,2141,0,0},{}},
[105083]={50,{6063,1059,893.0,3215,3242,0,0},{}},
[105084]={10,{1519,333,327.0,314,318,0,0},{}},
[105085]={20,{4122,778,672.0,726,734,0,0},{}},
[105086]={30,{8107,1409,1094.0,1312,1326,0,0},{}},
[105087]={40,{12635,2282,1607.0,2121,2141,0,0},{}},
[105088]={50,{17654,3461,2233.0,3215,3242,0,0},{}},
[105089]={98,{585326,35903,8104.0,112572,119866,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771752,100}},
[105090]={98,{1099183,75927,20261.0,101802,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771753,100},{34,25.2,43.6}},
[105091]={98,{622937,29793,8104.0,102289,127889,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771754,100},{34,20.6,44.4}},
[105092]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202288,25000,727040,25000},{226,40.1,60.0}},
[105093]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202288,25000,727040,25000},{226,44.6,72.3}},
[105094]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202288,25000,727040,25000},{226,32.5,18.6}},
[105095]={95,{20609,29634,3096.0,15328,15421,0,0},{}},
[105096]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202287,25000,727040,25000},{225,63.4,77.9}},
[105097]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202287,25000,727040,25000},{225,61.3,19.3}},
[105098]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202287,25000,727040,25000},{225,72.9,74.4}},
[105099]={68,{31021575,168219,63194.0,100036,100075,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725551,200000,725552,200000,725305,200000}},
[105100]={0,{144,28,28.0,28,28,0,0},{},{136,40.7,41.3}},
[105101]={65,{3166643,355371,3437.0,300011,300502,0,0},{}},
[105102]={65,{3166643,355371,3437.0,300011,300045,0,0},{}},
[105103]={65,{3166643,355371,3437.0,300011,300045,0,0},{}},
[105104]={0,{144,28,28.0,28,28,0,0},{}},
[105105]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[105106]={60,{8683,1574,1198.0,4724,4709,0,0},{}},
[105107]={98,{603120,35963,8104.0,112761,119866,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771755,100},{34,26.8,41.7}},
[105108]={60,{3930566,5092,2996.0,368108,4709,0,0},{}},
[105109]={0,{144,28,28.0,28,28,0,0},{}},
[105110]={0,{144,28,28.0,28,28,0,0},{}},
[105111]={65,{27968,6067,3437.0,5627,5610,0,0},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725588,200000,725652,30000}},
[105112]={65,{14956,4494,3437.0,4168,4125,0,0},{725196,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725589,200000,725652,30000}},
[105113]={62,{295699,12997,8167.0,12619,32637,0,0},{}},
[105114]={60,{407337,18779,2996.0,11864,12463,0,0},{}},
[105115]={0,{150,30,28.0,90,84,0,0},{}},
[105116]={55,{88222,8662,1038.0,16536,17962,0,0},{}},
[105117]={0,{186,32,28.0,96,84,0,0},{}},
[105118]={1,{157,35,14.0,75,84,0,0},{}},
[105119]={37,{3917,626,877.0,1852,1882,0,0},{}},
[105120]={37,{3884,621,577.0,1865,1869,0,0},{}},
[105121]={37,{3884,621,577.0,1865,1869,0,0},{}},
[105122]={37,{3884,621,577.0,1865,1869,0,0},{}},
[105123]={62,{13103,4117,3167.0,3801,3801,0,0},{}},
[105124]={0,{186,32,28.0,96,84,0,0},{},{191,81.2,44.1}},
[105125]={61,{13770,236,1868.0,8355,8362,0,0},{}},
[105126]={61,{13770,249,1868.0,8355,8362,0,0},{}},
[105127]={61,{8580,1618,1349.0,4376,5701,0,0},{208976,100000}},
[105128]={55,{7209,1263,1078.0,3853,3906,0,0},{}},
[105129]={30,{15547,426,1094.0,3413,5054,0,0},{}},
[105130]={98,{1099183,75927,20261.0,101802,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771756,100},{34,19.8,43.4}},
[105131]={5,{1111,257,178.0,198,229,0,0},{725456,100000}},
[105132]={15,{3848,740,491.0,657,808,0,0},{725456,100000}},
[105133]={25,{7641,1311,873.0,1374,1561,0,0},{725456,100000}},
[105134]={35,{12696,2008,1338.0,2426,2392,0,0},{725456,100000}},
[105135]={45,{19400,2857,1904.0,3910,3405,0,0},{725456,100000}},
[105136]={43,{20322,810,712.0,2432,2438,0,0},{720011,3000,720142,20000,722152,15000,722186,1500,724179,1500,720097,3500,724181,3500}},
[105137]={0,{186,32,28.0,96,84,0,0},{}},
[105138]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722554,3296,722554,3296,722928,3296,720093,5000,204531,5000,770966,100,720140,5000,222511,1919,723979,3000,721904,1735},{13,22.8,62.1}},
[105139]={9,{457,52,118.0,238,391,0,0},{720011,3000,722280,2000,722416,2000,722518,2000,720173,2000,770967,100,208984,75000,222581,2875,723978,3000},{13,32.7,60.1}},
[105140]={5,{300,50,71.0,152,117,0,0},{720011,3000,722755,5370,723503,5370,722517,5370,720091,5000,220772,278,770968,100,720140,5000,723978,3000,721901,2300},{13,29.8,65.8}},
[105141]={9,{462,55,118.0,243,391,0,0},{720011,3000,722280,2000,722416,2000,722518,2000,720173,2000,770969,100,222581,2875,723978,3000},{13,27.4,67.6}},
[105142]={13,{702,142,63.0,408,186,0,0},{720011,3000,722214,3615,722928,3615,722962,3615,720093,5000,210117,446,770970,100,204531,5000,720140,5000,222634,2088,723979,3000,721904,1735},{13,27.1,63.1}},
[105143]={8,{482,79,106.0,249,252,0,0},{720011,3000,722212,5222,722654,5222,722756,5222,720092,5000,210254,173,770971,100,720140,5000,222547,2875,723978,3000,721902,2733},{13,30.6,66.2}},
[105144]={6,{353,60,82.0,180,145,0,0},{720011,3000,722449,5555,723027,5555,723503,5555,720092,5000,770972,100,720140,5000,222596,2833,723978,3000,721901,2733},{13,29.9,65.7}},
[105145]={12,{763,130,156.0,391,389,0,0},{720011,3000,722247,3480,722689,3480,722791,3480,720093,5000,204531,5000,770973,100,208986,80000,720140,5000,211301,2169,723979,3000,721903,1967},{13,26.0,62.4}},
[105146]={19,{1399,221,254.0,678,686,0,0},{720011,3000,722352,2204,722488,2204,722692,2204,720094,5000,770974,100,720140,5000,550864,331,211398,1783,723979,3000,721906,1329},{13,43.1,65.1}},
[105147]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722283,3206,722419,3206,723507,3206,720094,5000,210183,331,770975,100,720140,5000,204531,5000,211439,1924,723979,3000,721905,1535},{13,41.1,51.4}},
[105148]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722554,3296,722554,3296,722928,3296,720093,5000,204531,5000,770976,100,720140,5000,222511,1919,723979,3000,721904,1735},{13,41.7,53.1}},
[105149]={18,{1294,205,239.0,631,639,0,0},{720011,3000,722250,2769,722726,2769,722794,2769,720094,5000,770977,100,720140,5000,550921,415,222644,1783,723979,3000,721906,1329},{13,42.8,64.1}},
[105150]={16,{1099,176,210.0,543,549,0,0},{720011,3000,722351,3198,722487,3198,723031,3198,720094,5000,770978,100,720140,5000,723979,3000,721905,1535},{13,39.7,66.3}},
[105151]={15,{1007,162,196.0,501,507,0,0},{720011,3000,722554,3296,722554,3296,722928,3296,720093,5000,204531,5000,770979,100,209081,80000,720140,5000,222511,1919,723979,3000,721904,1735},{13,38.1,68.6}},
[105152]={23,{1868,288,316.0,882,891,0,0},{720011,3000,723441,1471,723475,1471,723509,1471,720095,5000,770980,100,209007,60000,720141,5000,550636,221,222512,951,723980,3000,721907,832},{13,55.3,58.5}},
[105153]={20,{1509,237,269.0,726,734,0,0},{720011,3000,722250,1827,722896,1827,722964,1827,720095,5000,209006,60000,770981,100,720141,5000,550546,274,211364,1096,723980,3000,721906,1329},{13,46.3,62.3}},
[105154]={22,{1743,270,300.0,828,837,0,0},{720011,3000,723373,2378,723407,2378,720095,5000,770982,100,720141,5000,550636,238,222495,951,723980,3000,721907,832},{13,47.1,55.8}},
[105155]={2,{172,24,38.0,83,84,0,0},{720011,3000,722244,4583,722958,4583,723400,4583,720140,5000,211408,2750,723978,0,721900,0},{13,31.6,73.6}},
[105156]={22,{1117,294,300.0,900,900,0,0},{}},
[105157]={25,{2133,325,349.0,995,1005,0,0},{720011,3000,723612,1305,723646,1305,723782,1305,720096,5000,210280,172,770983,100,720141,5000,222461,883,723980,3000,721908,662},{13,61.4,55.9}},
[105158]={27,{3228,459,343.0,1461,1576,0,0},{720011,3000,722286,1242,722422,1242,722626,1242,720096,5000,220357,186,770984,100,720141,5000,550806,178,222463,714,723980,3000,721908,662},{13,62.5,64.4}},
[105159]={28,{2574,386,401.0,1179,1191,0,0},{720011,3000,722321,1189,722457,1189,722899,1189,720096,5000,770985,100,209060,60000,720141,5000,550380,172,222538,714,723980,3000,721909,571},{13,63.7,59.8}},
[105160]={25,{2133,325,349.0,995,1005,0,0},{720011,3000,723612,1305,723646,1305,723782,1305,720096,5000,210280,172,770986,100,720141,5000,222461,883,723980,3000,721908,662},{13,58.9,61.0}},
[105161]={27,{2270,387,235.0,1028,1299,0,0},{720011,3000,722286,1242,722422,1242,722626,1242,720096,5000,220357,186,770987,100,209061,60000,720141,5000,550806,178,222463,714,723980,3000,721908,662},{13,57.0,65.4}},
[105162]={25,{2133,325,349.0,995,1005,0,0},{720011,3000,723612,1305,723646,1305,723782,1305,720096,5000,210280,172,770988,100,720141,5000,222461,883,723980,3000,721908,662},{13,62.1,52.2}},
[105163]={25,{2133,325,349.0,995,1005,0,0},{720011,3000,723612,1305,723646,1305,723782,1305,720096,5000,210280,172,770989,100,720141,5000,222461,883,723980,3000,721908,662},{13,61.8,56.2}},
[105164]={27,{3243,476,525.0,1461,1590,0,0},{720011,3000,722286,1242,722422,1242,722626,1242,720096,5000,220357,186,770990,100,720141,5000,550806,178,222463,714,723980,3000,721908,662},{13,64.7,50.1}},
[105165]={28,{1509,291,401.0,890,902,0,0},{720011,3000,722321,1189,722457,1189,722899,1189,720096,5000,770991,100,209063,80000,720141,5000,550380,172,222538,714,723980,3000,721909,571},{13,64.1,47.4}},
[105166]={27,{3228,459,343.0,1461,1576,0,0},{720011,3000,722286,1242,722422,1242,722626,1242,720096,5000,220357,186,770992,100,209062,80000,720141,5000,550806,178,222463,714,723980,3000,721908,662},{13,63.5,56.5}},
[105167]={30,{2865,430,437.0,1312,1326,0,0},{720011,3000,722627,1105,723613,1105,720180,1105,720096,5000,220109,142,770993,100,720141,5000,222455,663,723980,3000,721909,571},{13,45.8,46.6}},
[105168]={30,{2865,430,437.0,1312,1326,0,0},{720011,3000,722627,1105,723613,1105,720180,1105,720096,5000,220109,142,770994,100,209078,80000,720141,5000,222455,663,723980,3000,721909,571},{13,44.1,46.5}},
[105169]={30,{2865,430,437.0,1312,1326,0,0},{720011,3000,722627,1105,723613,1105,720180,1105,720096,5000,220109,142,770995,100,720141,5000,222455,663,723980,3000,721909,571},{13,53.6,47.9}},
[105170]={34,{3713,543,514.0,1630,1622,0,0},{720011,3000,722867,1208,722935,1208,720097,5000,770996,100,720141,5000,211418,427,723980,3000,721911,387},{13,24.3,32.2}},
[105171]={34,{3189,535,514.0,1606,1622,0,0},{720011,3000,722867,1208,722935,1208,720097,5000,770997,100,720141,5000,211418,427,723980,3000,721911,387},{13,26.8,34.4}},
[105172]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,770998,100,208993,80000,720141,5000,222639,663,723980,3000,721910,514},{13,37.5,47.5}},
[105173]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,770999,100,208921,70000,720141,5000,222639,663,723980,3000,721910,514},{13,35.5,48.2}},
[105174]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,722492,1421,723410,1421,720097,5000,771000,100,209053,80000,720141,5000,211308,497,723980,3000,721910,514},{13,31.9,33.8}},
[105175]={32,{3142,477,475.0,1455,1469,0,0},{720011,3000,722492,1421,723410,1421,720097,5000,771001,100,209192,80000,720141,5000,211308,497,723980,3000,721910,514},{13,34.6,35.2}},
[105176]={37,{3917,626,877.0,1852,1882,0,0},{720011,3000,722562,667,722562,667,722664,667,720098,5000,771002,100,209101,80000,720141,5000,222624,400,723980,3000,721912,320},{13,37.2,36.4}},
[105177]={35,{3847,643,814.0,1811,1714,0,0},{720011,3000,722357,711,722493,711,723377,711,720097,5000,771003,100,208920,80000,720141,5000,550808,100,222532,427,723980,3000,721911,387},{13,41.4,33.9}},
[105178]={41,{4516,784,665.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771004,100,209082,80000,720142,5000,211374,400,723980,3000,721914,320},{13,47.7,31.5}},
[105179]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771005,100,209083,80000,720141,5000,211373,400,723980,3000,721913,320},{13,62.2,29.4}},
[105180]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771006,100,209086,80000,720141,5000,211373,400,723980,3000,721913,320},{13,60.4,33.0}},
[105181]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,771007,100,209084,80000,720141,5000,222520,400,723980,3000,721912,320},{13,51.0,36.7}},
[105182]={41,{4539,768,665.0,2337,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771008,100,209079,80000,720142,5000,211374,400,723980,3000,721914,320},{13,49.2,38.0}},
[105183]={40,{4402,716,977.0,2121,2155,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771009,100,208977,80000,720141,5000,211373,400,723980,3000,721913,320},{13,63.0,19.0}},
[105184]={42,{13578,2533,2094.0,2315,2351,0,0},{720011,3000,723515,667,723549,667,723583,667,720099,5000,771010,100,720142,5000,211358,400,723980,3000,721913,320},{13,49.3,27.2}},
[105185]={41,{4556,789,1012.0,2337,2372,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771011,100,720142,5000,211374,400,723980,3000,721914,320},{13,50.2,35.5}},
[105186]={41,{4209,779,665.0,2337,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771012,100,209193,80000,720142,5000,211374,400,723980,3000,721914,320},{13,54.3,36.5}},
[105187]={41,{4556,789,1012.0,2337,2372,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771013,100,208995,80000,720142,5000,211374,400,723980,3000,721914,320},{13,46.0,44.2}},
[105188]={41,{4516,784,665.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771014,100,720142,5000,211374,400,723980,3000,721914,320},{13,49.8,20.4}},
[105189]={41,{4539,768,665.0,2337,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771015,100,720142,5000,211374,400,723980,3000,721914,320},{13,49.9,20.5}},
[105190]={38,{4132,655,598.0,1939,1957,0,0},{720011,3000,722630,667,722902,667,723378,667,720141,5000,222637,400,723980,3000,721912,320},{13,39.2,28.5}},
[105191]={41,{4612,789,665.0,2337,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771016,100,720142,5000,211374,400,723980,3000,721914,320},{13,52.4,16.5}},
[105192]={17,{1194,190,224.0,586,593,0,0},{720011,3000,722283,3206,722419,3206,723507,3206,720094,5000,210183,331,771017,100,720140,5000,204531,5000,211439,1924,723979,3000,721905,1535},{13,23.8,63.8}},
[105193]={10,{613,100,131.0,314,318,0,0},{720011,3000,722655,4097,722689,4097,722757,4097,720092,5000,204531,5000,771018,100,720140,5000,211379,2167,723979,3000,721903,1967},{13,26.9,69.5}},
[105194]={5,{300,50,71.0,152,117,0,0},{},{13,32.5,65.5}},
[105195]={5,{300,50,71.0,152,117,0,0},{},{13,32.5,66.0}},
[105196]={26,{2269,354,366.0,1064,1065,0,0},{720011,3000,722252,1305,722898,1305,723034,1305,720096,5000,720141,5000,211322,745,723980,3000,721908,662}},
[105197]={0,{144,28,28.0,28,28,0,0},{}},
[105198]={67,{100144,22066,3627.0,25025,8009,0,0},{}},
[105199]={67,{500105,22066,3627.0,25025,8009,0,0},{}},
[105200]={68,{25000768,146120,63194.0,96013,90116,5000,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725543,200000,725544,200000,725302,200000,552083,10000,241751,10000}},
[105201]={0,{186,32,28.0,96,84,0,0},{},{136,43.1,70.6}},
[105202]={0,{186,32,28.0,96,84,0,0},{}},
[105203]={0,{186,32,28.0,96,84,0,0},{}},
[105204]={68,{27502700,193064,63194.0,100542,124412,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725549,200000,725550,200000,725304,200000}},
[105205]={0,{186,32,28.0,96,84,0,0},{}},
[105206]={0,{186,32,28.0,96,84,0,0},{}},
[105207]={0,{186,32,28.0,96,84,0,0},{}},
[105208]={1,{172,22,28.0,68,60,0,0},{}},
[105209]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[105210]={10,{3028986,873,1310.0,435,436,0,0},{},{136,28.9,77.4}},
[105211]={63,{25796,551,3255.0,5223,5235,0,0},{},{136,20.9,60.6}},
[105212]={63,{25796,5645,3255.0,5223,5235,0,0},{},{136,18.5,64.2}},
[105213]={0,{144,28,28.0,28,28,0,0},{},{136,19.6,58.5}},
[105214]={0,{144,28,28.0,28,28,0,0},{},{136,17.5,60.7}},
[105215]={0,{144,28,28.0,28,28,0,0},{},{136,21.0,62.9}},
[105216]={0,{144,28,28.0,28,28,0,0},{},{136,18.7,59.6}},
[105217]={0,{144,28,28.0,28,28,0,0},{},{136,18.5,59.4}},
[105218]={0,{144,28,28.0,28,28,0,0},{},{190,64.7,32.2}},
[105219]={0,{186,32,28.0,96,84,0,0},{}},
[105220]={62,{4905,1280,1267.0,3841,3801,0,0},{725605,200000,725312,200000,725314,200000,725311,200000,725313,200000,205722,200000,205723,200000,720143,200000,725688,200000,725653,200000}},
[105221]={0,{144,28,28.0,28,28,0,0},{}},
[105222]={26,{2269,354,366.0,1064,1065,0,0},{720011,3000,722252,1305,722898,1305,723034,1305,720096,5000,720141,5000,211322,745,723980,3000,721908,662},{13,60.2,53.6}},
[105223]={25,{2144,337,533.0,995,1015,0,0},{}},
[105224]={68,{10201956,150011,41194.0,85043,85083,4200,2200},{720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725560,200000,725302,200000}},
[105225]={67,{702320,16211,7980.0,30032,12013,0,0},{}},
[105226]={68,{2000726,12094,41194.0,55033,55099,0,0},{720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725565,200000,725302,200000}},
[105227]={67,{51181,7991,7980.0,15038,3003,0,0},{}},
[105228]={0,{186,32,28.0,96,84,0,0},{}},
[105229]={63,{1267317,154536,3255.0,38372,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,48.8,75.9}},
[105230]={63,{1267317,154536,3255.0,38372,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,22.9,62.6}},
[105231]={63,{991423,98574,3255.0,38372,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,32.5,78.7}},
[105232]={63,{1416167,154527,3255.0,40360,31085,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,58.6,37.5}},
[105233]={63,{1277149,170780,3255.0,63803,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,59.8,33.3}},
[105234]={63,{1405264,146542,3255.0,44499,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,50.1,69.8}},
[105235]={63,{1405264,154536,3255.0,28789,105542,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,57.7,32.9}},
[105236]={63,{1237718,154305,3255.0,40360,40392,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,55.6,23.0}},
[105237]={63,{1237718,154305,3255.0,40360,36670,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105238]={63,{2291906,154767,3255.0,40783,40392,0,0},{}},
[105239]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771105,100,209637,60000,209629,75000}},
[105240]={21,{1061,287,284.0,862,853,0,0},{}},
[105241]={21,{1061,287,284.0,862,853,0,0},{}},
[105242]={68,{16586199,137648,32394.0,105034,112910,0,0},{}},
[105243]={2,{178,38,38.0,38,38,0,0},{},{13,30.8,75.9}},
[105244]={7,{386,96,94.0,290,283,0,0},{771019,100,209028,40000},{13,33.5,63.4}},
[105245]={7,{347,67,94.0,203,201,0,0},{771020,100,209028,50000},{13,33.5,63.0}},
[105246]={24,{1998,306,332.0,937,947,0,0},{720011,3000,722660,1379,722796,1379,722830,1379,720095,5000,771021,100,720141,5000,550411,207,211443,883,723980,3000,721908,662},{13,59.4,56.0}},
[105247]={38,{2176,602,598.0,1808,1795,0,0},{}},
[105248]={38,{2176,602,598.0,1808,1795,0,0},{}},
[105249]={0,{135,21,28.0,62,59,0,0},{}},
[105250]={38,{2176,602,598.0,1808,3487,0,0},{}},
[105251]={38,{2176,602,598.0,1808,1795,0,0},{}},
[105252]={38,{2176,602,598.0,1808,1795,0,0},{}},
[105253]={0,{186,32,28.0,96,84,0,0},{}},
[105254]={1,{117,15,28.0,46,60,0,0},{}},
[105255]={65,{1338837,72022,3437.0,40597,37625,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105256]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[105257]={63,{717243,153843,3255.0,40360,37600,0,0},{}},
[105258]={1,{142,24,28.0,84,84,0,0},{},{136,49.4,76.7}},
[105259]={65,{755910,72022,3437.0,40597,37625,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105260]={63,{1277149,154527,3255.0,40360,31085,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{136,28.6,61.3}},
[105261]={63,{950039,154536,3255.0,38372,36576,0,0},{}},
[105262]={0,{144,28,28.0,28,28,0,0},{},{136,48.3,72.7}},
[105263]={63,{2094998,154536,3255.0,52354,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500,209124,100000}},
[105264]={70,{6060,1586,1570.0,4758,4711,0,0},{}},
[105265]={5,{300,50,71.0,152,117,0,0},{},{13,32.2,63.5}},
[105266]={38,{2176,602,598.0,1808,1795,0,0},{}},
[105267]={70,{7002657,160205,41636.0,100016,100132,4000,2000},{725196,5000,720143,60000,720103,100000,725535,85000,725539,85000,725536,70000,725540,70000,725662,200000,725303,200000}},
[105268]={0,{144,28,28.0,28,28,0,0},{}},
[105269]={41,{13070,2540,1664.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,720142,5000,211374,400,723980,3000,721914,320},{13,61.3,22.6}},
[105270]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,720141,5000,211373,400,723980,3000,721913,320},{13,61.2,22.6}},
[105271]={23,{1174,310,316.0,948,948,0,0},{771022,100}},
[105272]={22,{1123,306,459.0,900,909,0,0},{771023,100}},
[105273]={38,{2176,602,598.0,1808,1795,0,0},{}},
[105274]={5,{304,73,71.0,221,214,0,0},{}},
[105275]={98,{603120,35963,8104.0,112761,119866,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771757,100},{34,19.6,44.0}},
[105276]={29,{1544,412,419.0,1257,1257,0,0},{771024,100}},
[105277]={29,{1544,412,419.0,1257,1257,0,0},{771025,100}},
[105278]={29,{1544,412,419.0,1257,1257,0,0},{}},
[105279]={30,{1604,441,437.0,1323,1312,0,0},{544742,100000}},
[105280]={3,{223,37,49.0,112,109,0,0},{}},
[105281]={29,{1539,422,419.0,1268,1257,0,0},{}},
[105282]={98,{1105221,75996,20261.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771758,100},{34,21.7,43.1}},
[105283]={0,{186,32,28.0,96,84,0,0},{}},
[105284]={70,{8432086,13801,15703.0,6661,6642,0,0},{}},
[105285]={17,{848,227,224.0,682,674,0,0},{},{13,28.3,62.6}},
[105286]={0,{186167,22,28.0,96067,59,0,0},{}},
[105287]={0,{144,28,28.0,28,28,0,0},{}},
[105288]={0,{144,28,28.0,28,28,0,0},{}},
[105289]={52,{5090479,7240,9495.0,3475,3503,0,0},{},{14,59.0,74.5}},
[105290]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771041,100}},
[105291]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771042,100}},
[105292]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771043,100}},
[105293]={51,{6211,1121,921.0,3363,3371,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771044,100}},
[105294]={51,{18672,3645,2302.0,3382,3371,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771045,100},{14,55.3,71.3}},
[105295]={0,{144,28,28.0,28,28,0,0},{}},
[105296]={0,{144,28,28.0,28,28,0,0},{}},
[105297]={0,{144,28,28.0,28,28,0,0},{}},
[105298]={50,{3481,903,893.0,2711,2679,0,0},{}},
[105299]={50,{10793,1084,893.0,3253,3242,0,0},{}},
[105300]={26,{2269,354,366.0,1064,1065,0,0},{720011,3000,722252,1305,722898,1305,723034,1305,720096,5000,720141,5000,211322,745,723980,3000,721908,662},{13,59.8,54.6}},
[105301]={41,{4516,784,665.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,209082,80000,720142,5000,211374,400,723980,3000,721914,320},{13,60.5,23.0}},
[105302]={0,{144,28,28.0,28,28,0,0},{}},
[105303]={0,{144,28,28.0,28,28,0,0},{}},
[105304]={40,{6939,2104,1607.0,1954,1928,0,0},{}},
[105305]={0,{186,32,28.0,96,84,0,0},{},{136,47.4,69.6}},
[105306]={0,{186,32,28.0,96,84,0,0},{}},
[105307]={63,{1002321,146542,3255.0,44499,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105308]={0,{150,30,28.0,90,84,0,0},{}},
[105309]={63,{957410,154767,3255.0,38172,40392,0,0},{}},
[105310]={63,{957410,154767,3255.0,38172,40392,0,0},{}},
[105311]={0,{186,32,28.0,96,84,0,0},{}},
[105312]={63,{957410,154767,3255.0,38172,40392,0,0},{}},
[105313]={63,{957410,154767,3255.0,38172,40392,0,0},{}},
[105314]={0,{186,32,28.0,96,84,0,0},{}},
[105315]={0,{144,28,28.0,28,28,0,0},{}},
[105316]={41,{13070,2540,1664.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,720142,5000,211374,400,723980,3000,721914,320}},
[105317]={41,{13070,2540,1664.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,720142,5000,211374,400,723980,3000,721914,320}},
[105318]={41,{4556,789,1012.0,2337,2372,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,720142,5000,211374,400,723980,3000,721914,320}},
[105319]={0,{186,32,28.0,96,84,0,0},{}},
[105320]={0,{144,28,28.0,28,28,0,0},{}},
[105321]={30,{1444,308,437.0,926,932,0,0},{},{14,58.0,60.6}},
[105322]={50,{6026,1078,893.0,16713,16642,0,0},{}},
[105323]={50,{6026,1078,893.0,16713,16642,0,0},{}},
[105324]={50,{6026,1078,893.0,16713,16642,0,0},{}},
[105325]={50,{6026,1078,893.0,16713,16642,0,0},{}},
[105326]={50,{10793,1084,893.0,3253,3242,0,0},{}},
[105327]={52,{2194298,4674,5763.0,3475,3524,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771046,100},{14,51.3,74.3}},
[105328]={70,{5238,1570,1570.0,1570,1570,0,0},{}},
[105329]={50,{9002,3506,2233.0,2901,3242,0,0},{}},
[105330]={48,{14456,2000,839.0,2988,2995,0,0},{}},
[105331]={0,{144,28,28.0,28,28,0,0},{}},
[105332]={0,{144,28,28.0,28,28,0,0},{}},
[105333]={0,{186,32,28.0,96,84,0,0},{}},
[105334]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771026,100,720141,5000,211373,400,723980,3000,721913,320},{13,61.7,23.1}},
[105335]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771027,100,720141,5000,211373,400,723980,3000,721913,320},{13,58.7,26.4}},
[105336]={0,{144,28,28.0,28,28,0,0},{}},
[105337]={70,{8432086,13801,15703.0,6661,6642,0,0},{}},
[105338]={10,{618,106,131.0,320,318,0,0},{}},
[105339]={10,{618,106,131.0,320,318,0,0},{}},
[105340]={0,{186,32,28.0,96,84,0,0},{}},
[105341]={29,{1544,412,419.0,1257,1257,0,0},{}},
[105342]={0,{144,28,28.0,28,28,0,0},{}},
[105343]={1,{144,28,28.0,28,28,0,0},{},{13,37.6,35.7}},
[105344]={1,{144,28,28.0,28,28,0,0},{},{13,36.7,38.0}},
[105345]={1,{144,28,28.0,28,28,0,0},{},{13,37.7,35.7}},
[105346]={62,{714353,5466,3167.0,5070,5055,0,0},{}},
[105347]={1,{-2,24,28.0,84,84,0,0},{}},
[105348]={29,{2732,408,419.0,1245,1257,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,771028,100,720141,5000,222639,663,723980,3000,721910,514},{13,73.9,56.6}},
[105349]={29,{2732,408,419.0,1245,1257,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,771029,100,720141,5000,222639,663,723980,3000,721910,514},{13,73.7,57.5}},
[105350]={29,{2732,408,419.0,1245,1257,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,771030,100,720141,5000,222639,663,723980,3000,721910,514},{13,73.5,57.4}},
[105351]={68,{11202720,152863,63194.0,85017,85083,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725562,200000,725306,200000}},
[105352]={68,{3000208,12448,63194.0,66780,66587,0,0},{720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725567,200000,725303,200000}},
[105353]={0,{144,28,28.0,28,28,0,0},{}},
[105354]={44,{5035,851,1119.0,2521,2559,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771047,100,209436,60000},{14,59.3,19.5}},
[105355]={1,{21568,940,1254.0,320,331,0,0},{}},
[105356]={0,{144,28,28.0,28,28,0,0},{}},
[105357]={0,{144,28,28.0,28,28,0,0},{}},
[105358]={0,{144,28,28.0,28,28,0,0},{},{192,0,0}},
[105359]={0,{144,28,28.0,28,28,0,0},{},{192,0,0}},
[105360]={0,{144,28,28.0,28,28,0,0},{},{192,0,0}},
[105361]={18,{107757,1503,2393.0,726,717,0,0},{}},
[105362]={63,{25796,551,3255.0,5223,10863,0,0},{},{192,0,0}},
[105363]={63,{32481,551,3255.0,10929,5235,0,0},{},{192,0,0}},
[105364]={70,{10600,2176,1570.0,6595,6642,0,0},{},{15,62.7,74.6}},
[105365]={43,{1000028,2644,2166.0,2416,2453,0,0},{720011,3000,722224,667,722394,667,723380,667,720099,5000,771031,100,720142,5000,211450,400,723980,3000,721914,320},{13,51.7,16.3}},
[105366]={73,{19599163,230498,42333.0,365053,180017,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725807,200000,725808,200000,725427,200000}},
[105367]={72,{300051,55013,4135.0,80037,80086,0,0},{}},
[105368]={72,{300051,55013,4135.0,80037,80086,0,0},{}},
[105369]={72,{300051,55013,4135.0,80037,80086,0,0},{}},
[105370]={0,{144,28,28.0,28,28,0,0},{},{141,20.1,32.1}},
[105371]={73,{19395148,230498,42333.0,200035,180017,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725807,200000,725808,200000,725427,200000}},
[105372]={31,{3002,453,456.0,1382,1396,0,0},{720011,3000,722424,1070,722900,1070,723376,1070,720097,5000,771032,100,720141,5000,222639,663,723980,3000,721910,514},{13,37.5,46.7}},
[105373]={35,{3847,643,814.0,1811,1714,0,0},{720011,3000,722357,711,722493,711,723377,711,720097,5000,771033,100,720141,5000,550808,100,222532,427,723980,3000,721911,387},{13,40.5,33.1}},
[105374]={70,{12500789,131645,41636.0,100016,100155,4000,2000},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[105375]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771034,100,720141,5000,211373,400,723980,3000,721913,320},{13,62.1,29.7}},
[105376]={40,{4364,712,642.0,2136,2141,0,0},{720011,3000,722359,667,722495,667,723379,667,720099,5000,771035,100,209086,80000,720141,5000,211373,400,723980,3000,721913,320},{13,61.2,33.7}},
[105377]={41,{4516,784,665.0,2352,2357,0,0},{720011,3000,722563,667,722563,667,723345,667,720099,5000,771036,100,720142,5000,211374,400,723980,3000,721914,320},{13,51.1,28.5}},
[105378]={98,{585326,35903,8104.0,112572,119866,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771759,100},{34,27.0,52.8}},
[105379]={38,{4047,650,598.0,1952,1957,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,771037,100,720141,5000,222520,400,723980,3000,721912,320},{13,44.8,33.3}},
[105380]={38,{4047,650,598.0,1952,1957,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,771038,100,720141,5000,222520,400,723980,3000,721912,320},{13,50.3,32.0}},
[105381]={38,{4047,650,598.0,1952,1957,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,771039,100,720141,5000,222520,400,723980,3000,721912,320},{13,55.4,28.7}},
[105382]={70,{10004033,155970,41636.0,100817,100132,4000,2000},{725196,5000,720143,60000,720103,100000,725535,85000,725539,85000,725536,70000,725540,70000,725663,200000,725304,200000}},
[105383]={68,{292063,5990,8194.0,4515,4469,0,0},{}},
[105384]={65,{7313841,22614,6437.0,28945,25957,0,0},{}},
[105385]={0,{186,32,28.0,96,84,0,0},{}},
[105386]={0,{144,28,28.0,28,28,0,0},{},{139,44.6,34.8}},
[105387]={57,{135970,4569,2751.0,9011,9012,0,0},{}},
[105388]={65,{789686,7190,3437.0,7210,8003,0,0},{},{139,42.4,68.0}},
[105389]={69,{16291724,141537,41413.0,98164,95987,4000,2000},{}},
[105390]={2,{143,17,38.0,61,23,0,0},{720011,3000,722244,4583,722958,4583,723400,4583,720091,5000,771040,100,208979,80000,720140,5000,211408,2750,723978,3000,721900,2000},{13,35.9,88.3}},
[105391]={24,{1231,335,332.0,1007,997,0,0},{}},
[105392]={47,{14011,2003,812.0,2870,2877,0,0},{}},
[105393]={47,{14011,2003,812.0,2870,2877,0,0},{}},
[105394]={47,{14011,2003,812.0,2870,2877,0,0},{}},
[105395]={47,{5613,962,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771048,100,209446,30000},{14,82.6,52.7}},
[105396]={47,{5613,962,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771049,100,209446,60000},{14,83.0,53.7}},
[105397]={47,{5613,962,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771050,100,209446,100000},{14,82.8,52.9}},
[105398]={48,{60048,3239,2097.0,5009,5035,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771051,1000,209446,60000}},
[105399]={0,{167,22,28.0,67,59,0,0},{}},
[105400]={48,{16148,3218,2097.0,2970,2995,0,0},{},{14,71.1,12.9}},
[105401]={0,{162,84,70.0,84,84,0,0},{}},
[105402]={52,{3001967,124589,110015.0,20026,20026,0,0},{}},
[105403]={52,{801954,7240,9495.0,3475,3503,0,0},{}},
[105404]={52,{801954,7240,9495.0,3475,3503,0,0},{}},
[105405]={52,{801954,7240,9495.0,3475,3503,0,0},{}},
[105406]={52,{801954,7240,9495.0,3475,3503,0,0},{}},
[105407]={50,{6083,1084,1355.0,3215,3261,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771052,100,209454,60000},{14,59.7,82.3}},
[105408]={50,{3242,882,893.0,2679,2679,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771053,100},{14,56.0,63.2}},
[105409]={49,{6316,1042,865.0,3128,3117,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771054,100},{14,61.5,44.3}},
[105410]={48,{5701,978,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771055,100},{14,80.1,52.0}},
[105411]={0,{186,32,28.0,96,84,0,0},{}},
[105412]={50,{6083,1084,1355.0,3215,3261,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771056,100},{14,53.5,53.3}},
[105413]={50,{6063,1059,893.0,3215,3242,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771057,100},{14,60.8,68.6}},
[105414]={50,{6160,1084,893.0,3215,3242,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771058,100},{14,52.9,50.5}},
[105415]={50,{6160,1084,893.0,3215,3242,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771059,100},{14,57.6,79.4}},
[105416]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771060,100},{14,55.7,13.3}},
[105417]={44,{5017,829,737.0,2521,2543,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771061,100,209435,60000},{14,55.5,30.5}},
[105418]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771062,100},{14,55.6,31.0}},
[105419]={45,{5183,865,761.0,2628,2651,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771063,100},{14,59.1,29.6}},
[105420]={44,{5017,829,737.0,2521,2543,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771064,100,209434,60000},{14,56.6,30.3}},
[105421]={45,{5154,881,761.0,2645,2651,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771065,100},{14,65.5,25.7}},
[105422]={70,{5238,1570,1570.0,4711,4711,0,0},{},{139,32.3,31.9}},
[105423]={10,{515,133,131.0,400,393,0,0},{}},
[105424]={10,{515,133,131.0,400,393,0,0},{},{14,58.6,41.2}},
[105425]={10,{515,133,131.0,400,393,0,0},{}},
[105426]={10,{515,133,131.0,400,393,0,0},{}},
[105427]={10,{515,133,131.0,400,393,0,0},{}},
[105428]={70,{12500789,131645,41636.0,100016,100155,4000,2000},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[105429]={67,{877165,113602,3627.0,225085,225128,0,0},{}},
[105430]={67,{309596,105075,3627.0,180076,180120,0,0},{}},
[105431]={0,{144,28,28.0,28,28,0,0},{}},
[105432]={0,{144,28,28.0,28,28,0,0},{}},
[105433]={50,{6160,1084,893.0,3215,3242,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771066,100,209451,60000},{14,60.8,43.2}},
[105434]={50,{6160,1084,893.0,3215,3242,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771067,100,209450,60000},{14,67.5,47.9}},
[105435]={50,{40058,3506,2233.0,7530,7503,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771068,100,209451,60000},{14,61.5,46.8}},
[105436]={50,{17750,3506,2233.0,3215,3242,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771069,100,209450,60000},{14,63.3,47.1}},
[105437]={50,{16000,1304,1157.0,2077,4507,0,0},{}},
[105438]={50,{16000,1304,1157.0,2077,4507,0,0},{}},
[105439]={50,{16000,1304,1157.0,2077,4507,0,0},{}},
[105440]={50,{16000,1304,1157.0,2077,4507,0,0},{}},
[105441]={50,{41327,1084,893.0,30369,30041,0,0},{},{14,72.0,53.6}},
[105442]={0,{144,28,28.0,28,28,0,0},{},{141,16.5,30.8}},
[105443]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771070,100},{14,31.1,23.9}},
[105444]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771071,100,209430,60000},{14,39.7,25.2}},
[105445]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771072,100},{14,29.8,13.8}},
[105446]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771073,100,209432,60000},{14,49.3,25.5}},
[105447]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771074,100},{14,45.1,10.3}},
[105448]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771075,100},{14,34.0,27.2}},
[105449]={43,{4872,816,1083.0,2416,2453,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771076,100,209457,60000},{14,38.4,13.3}},
[105450]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771077,100,209429,60000},{14,50.4,17.2}},
[105451]={43,{4872,816,1083.0,2416,2453,0,0},{}},
[105452]={73,{25577372,215207,42333.0,180382,179615,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725813,200000,725814,200000,725922,200000}},
[105453]={70,{1498371,142801,41636.0,147927,175625,0,0},{}},
[105454]={67,{651594,41058,13627.0,88014,83188,0,0},{}},
[105455]={67,{651594,41058,13627.0,88014,83188,0,0},{}},
[105456]={68,{16212,4868,3724.0,4515,4469,0,0},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725545,200000,725546,200000,725303,200000}},
[105457]={60,{3930566,5092,2996.0,368108,4709,0,0},{}},
[105458]={69,{16291724,141537,41413.0,98164,95987,4000,2000},{}},
[105459]={100,{7602428,22197,17875.0,16720,16673,0,0},{},{144,0,0}},
[105460]={60,{13020,3917,2996.0,3633,3595,0,0},{725196,5000,720143,60000,720103,100000,725535,85000,725539,85000,725536,70000,725540,70000,725660,200000,725302,200000}},
[105461]={67,{250518,41164,13627.0,60988,60488,0,0},{}},
[105462]={67,{300294,46308,21127.0,60373,60178,0,0},{}},
[105463]={67,{300294,39437,21127.0,60373,60178,0,0},{}},
[105464]={0,{2686,120,154.0,96,84,0,0},{}},
[105465]={70,{307673,6312,8636.0,4711,4711,0,0},{}},
[105466]={73,{19599163,230498,42333.0,365053,180017,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725807,200000,725808,200000,725427,200000}},
[105467]={0,{144,28,28.0,28,28,0,0},{}},
[105468]={0,{144,28,28.0,28,28,0,0},{}},
[105469]={45,{900,736,548.0,2760,2784,0,0},{}},
[105470]={55,{2240,1017,538.0,4497,3785,0,0},{}},
[105471]={55,{8571,2576,1345.0,4497,3785,0,0},{}},
[105472]={0,{144,28,28.0,28,28,0,0},{}},
[105473]={0,{144,28,28.0,28,28,0,0},{}},
[105474]={0,{144,28,28.0,28,28,0,0},{}},
[105475]={0,{144,28,28.0,28,28,0,0},{}},
[105476]={0,{142,24,28.0,84,84,0,0},{}},
[105477]={43,{4855,795,712.0,2416,2438,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771078,100,209427,60000},{14,43.9,27.5}},
[105478]={43,{4828,810,712.0,2432,2438,0,0},{}},
[105479]={44,{3586,742,566.0,1870,2128,0,0},{}},
[105480]={50,{2200592,5356,5463.0,31318,31381,0,0},{}},
[105481]={0,{144,28,28.0,28,28,0,0},{}},
[105482]={0,{144,28,28.0,28,28,0,0},{}},
[105483]={46,{5352,901,787.0,2739,2763,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771079,100},{14,68.0,26.4}},
[105484]={70,{3344415,8837,8636.0,6595,6642,0,0},{},{141,40.8,60.5}},
[105485]={47,{5525,939,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771080,100},{14,77.2,23.0}},
[105486]={47,{5525,939,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771081,100,209440,60000},{14,73.4,24.1}},
[105487]={1,{265,28,28.0,100,101,0,0},{}},
[105488]={1,{146,32,48.0,84,90,0,0},{}},
[105489]={48,{5667,996,839.0,2988,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771082,100,209445,60000},{14,74.3,67.2}},
[105490]={48,{5667,996,839.0,2988,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771083,100,209445,60000},{14,74.1,66.8}},
[105491]={48,{5720,1002,1274.0,2970,3014,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771084,100,209448,60000},{14,77.0,66.4}},
[105492]={48,{5720,1002,1274.0,2970,3014,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771085,100,209448,60000},{14,75.9,63.2}},
[105493]={0,{131,22,48.0,58,63,0,0},{}},
[105494]={0,{146,32,48.0,84,90,0,0},{}},
[105495]={45,{2981,771,761.0,2314,2285,0,0},{}},
[105496]={98,{603120,35963,8104.0,112761,119866,0,0},{},{34,67.4,69.4}},
[105497]={65,{81088879,671944,62563.0,500637,504149,0,0},{}},
[105498]={65,{81088879,671944,62563.0,500637,504149,0,0},{}},
[105499]={62,{714353,5466,3167.0,5070,5055,0,0},{}},
[105500]={48,{5701,978,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771086,100},{14,83.9,37.7}},
[105501]={46,{5352,901,787.0,2739,2763,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771087,100,209439,60000},{14,69.8,29.9}},
[105502]={47,{5525,939,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771088,100},{14,84.1,36.3}},
[105503]={0,{135,21,28.0,62,59,0,0},{}},
[105504]={65,{35995,6050,3437.0,5598,5610,0,0},{}},
[105505]={47,{5525,939,812.0,2853,2877,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771089,100,209441,60000,209442,30000,209443,30000},{14,71.6,14.6}},
[105506]={48,{5791,1002,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771090,100,209446,60000},{14,81.2,63.3}},
[105507]={48,{5667,996,839.0,2988,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771091,100},{14,82.6,63.1}},
[105508]={48,{5701,978,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771092,100},{14,77.8,68.1}},
[105509]={49,{5880,1018,865.0,3091,3117,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771093,100},{14,71.2,72.2}},
[105510]={48,{5701,978,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771094,100,209447,60000},{14,82.8,75.6}},
[105511]={49,{5845,1036,865.0,3109,3117,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771095,100,209445,60000},{14,74.1,72.2}},
[105512]={49,{5845,1036,865.0,3109,3117,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771096,100,209445,60000},{14,74.2,75.1}},
[105513]={49,{5845,1036,865.0,3109,3117,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771097,100,209445,60000},{14,73.4,74.0}},
[105514]={70,{2501388,22041,25136.0,60019,60031,0,0},{720143,60000,720102,100000,725535,85000,725539,85000,725536,70000,725540,70000,725667,200000,725178,200000}},
[105515]={70,{12000539,142601,41636.0,100016,100132,4000,2000},{725196,5000,720143,60000,720103,100000,725535,85000,725539,85000,725536,70000,725540,70000,725661,200000,725303,200000}},
[105516]={73,{850974,69409,9242.0,96377,81964,0,0},{}},
[105517]={73,{23081856,256286,42333.0,185474,189661,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725811,200000,725812,200000,725917,200000}},
[105518]={68,{16212,4868,3724.0,4515,4469,0,0},{}},
[105519]={68,{16212,4868,3724.0,4515,4469,0,0},{}},
[105520]={73,{30568404,306494,42333.0,190565,189661,4000,2000},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725815,200000,725816,200000,240091,200000,240727,200000,725927,200000}},
[105521]={70,{9795,2198,1570.0,6595,6642,0,0},{}},
[105522]={70,{870906,50798,3925.0,81972,80135,0,0},{}},
[105523]={70,{31964,7183,3925.0,6661,6642,0,0},{725196,10000,720143,60000,720103,100000,725535,85000,725539,85000,725536,70000,725540,70000,725664,200000,725307,200000,240724,200000}},
[105524]={48,{5701,978,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771098,100},{14,81.0,76.3}},
[105525]={48,{5701,978,839.0,2970,2995,0,0},{720011,5000,720142,10000,724185,2000,724180,2000,723982,10000,771099,100,209447,60000},{14,80.4,75.7}},
[105526]={0,{186,32,28.0,96,84,0,0},{}},
[105527]={0,{186,32,28.0,96,84,0,0},{}},
[105528]={0,{186,32,28.0,96,84,0,0},{}},
[105529]={0,{186,32,28.0,96,84,0,0},{}},
[105530]={0,{186,32,28.0,96,84,0,0},{}},
[105531]={0,{186,32,28.0,96,84,0,0},{}},
[105532]={0,{144,28,28.0,28,28,0,0},{}},
[105533]={0,{144,28,28.0,28,28,0,0},{}},
[105534]={0,{150,30,28.0,90,84,0,0},{}},
[105535]={0,{186,32,28.0,96,84,0,0},{}},
[105536]={0,{186,32,28.0,96,84,0,0},{}},
[105537]={0,{186,32,28.0,96,84,0,0},{}},
[105538]={0,{186,32,28.0,96,84,0,0},{}},
[105539]={0,{186,32,28.0,96,84,0,0},{}},
[105540]={0,{186,32,28.0,96,84,0,0},{}},
[105541]={0,{186,32,28.0,96,84,0,0},{}},
[105542]={68,{6101341,150011,41194.0,85043,85083,4300,2200},{}},
[105543]={68,{4401604,60187,41194.0,85017,85083,4200,2200},{}},
[105544]={68,{1350344,12094,41194.0,55033,55099,0,0},{}},
[105545]={68,{901322,10020,41194.0,55024,55099,0,0},{}},
[105546]={68,{70039,12928,3724.0,70029,70043,0,0},{}},
[105547]={68,{70039,12928,3724.0,70029,70043,0,0},{}},
[105548]={68,{70039,12928,3724.0,70029,70043,0,0},{}},
[105549]={0,{135,21,28.0,62,59,0,0},{}},
[105550]={0,{186167,22,28.0,96067,59,0,0},{}},
[105551]={73,{22250018,215207,42333.0,180382,179615,0,0},{}},
[105552]={50,{5613,1071,893.0,3215,3242,0,0},{}},
[105553]={50,{15694,1078,893.0,5930,5922,0,0},{}},
[105554]={50,{15694,1078,893.0,5930,5922,0,0},{}},
[105555]={50,{15694,1078,893.0,5930,5922,0,0},{}},
[105556]={50,{15694,1078,893.0,5930,5922,0,0},{}},
[105557]={50,{15694,1078,893.0,5930,5922,0,0},{}},
[105558]={68,{16212,4868,3724.0,4515,4469,0,0},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725559,200000,725177,200000}},
[105559]={68,{16212,4868,3724.0,4515,4469,0,0},{720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725564,200000,725176,200000}},
[105560]={68,{9601154,157402,41194.0,87064,85472,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725561,200000,725304,200000}},
[105561]={0,{186,32,28.0,96,84,0,0},{}},
[105562]={0,{186,32,28.0,96,84,0,0},{}},
[105563]={0,{186,32,28.0,96,84,0,0},{}},
[105564]={1,{172,22,28.0,68,60,0,0},{}},
[105565]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[105566]={68,{16586199,137648,32394.0,105034,112910,0,0},{}},
[105567]={50,{15694,1078,893.0,5930,5922,0,0},{}},
[105568]={50,{102709,1078,893.0,30191,30041,0,0},{}},
[105569]={50,{102709,1078,893.0,30191,30041,0,0},{}},
[105570]={50,{102709,1078,893.0,30191,30041,0,0},{}},
[105571]={48,{5279,990,839.0,2970,2995,0,0},{}},
[105572]={48,{3030,844,839.0,2532,2517,0,0},{}},
[105573]={48,{5667,996,839.0,2988,2995,0,0},{}},
[105574]={0,{129,19,28.0,19,19,0,0},{}},
[105575]={0,{144,28,28.0,28,28,0,0},{}},
[105576]={48,{3030,844,839.0,2532,2517,0,0},{}},
[105577]={0,{144,28,28.0,28,28,0,0},{}},
[105578]={68,{2000726,10058,41194.0,55617,56267,0,0},{720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725566,200000,725301,200000}},
[105579]={98,{603120,35963,8104.0,112761,119866,0,0},{},{34,67.3,69.0}},
[105580]={10,{515,133,131.0,400,393,0,0},{}},
[105581]={10,{515,133,131.0,400,393,0,0},{}},
[105582]={10,{515,133,131.0,400,393,0,0},{}},
[105583]={1,{142,24,28.0,84,84,0,0},{},{13,39.5,60.4}},
[105584]={1,{117,30,14.0,63,84,0,0},{}},
[105585]={0,{144,28,28.0,28,28,0,0},{}},
[105586]={0,{144,28,28.0,28,28,0,0},{}},
[105587]={1,{117,30,14.0,63,84,0,0},{}},
[105588]={1,{117,30,14.0,63,84,0,0},{}},
[105589]={1,{117,30,14.0,63,84,0,0},{}},
[105590]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771119,100},{20,38.9,90.7}},
[105591]={65,{4969,1360,1375.0,4125,4125,0,0},{},{20,41.1,84.4}},
[105592]={1,{142,24,28.0,84,84,0,0},{},{20,33.9,77.7}},
[105593]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771120,100},{20,45.0,85.2}},
[105594]={65,{44860,6434,713.0,12075,13037,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771130,100},{20,59.9,87.7}},
[105595]={98,{622937,29793,8104.0,102289,127889,0,0},{},{34,61.3,68.9}},
[105596]={63,{656213,154536,3255.0,31931,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,48.8,75.9}},
[105597]={63,{656213,154536,3255.0,31931,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,22.9,62.6}},
[105598]={63,{661304,154527,3255.0,31764,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,34.4,38.0}},
[105599]={63,{721081,170780,3255.0,32546,31085,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105600]={63,{715530,146542,3255.0,32716,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,50.1,69.8}},
[105601]={63,{656213,154536,3255.0,28789,68314,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,57.7,32.9}},
[105602]={65,{249492,72022,3437.0,40597,37625,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105603]={63,{661304,154527,3255.0,31764,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,28.8,64.0}},
[105604]={63,{927851,154305,3255.0,40360,40392,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{137,44.8,37.8}},
[105605]={63,{640887,154305,3255.0,31764,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105606]={63,{67180,18379,3255.0,15042,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{138,48.8,75.9}},
[105607]={63,{67180,18379,3255.0,15042,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{138,22.9,62.6}},
[105608]={63,{67701,18431,3255.0,14964,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{138,34.4,38.0}},
[105609]={63,{67006,34668,3255.0,14964,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105610]={63,{67180,18379,3255.0,15042,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{138,32.3,76.9}},
[105611]={63,{67180,18379,3255.0,15042,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500},{138,57.7,32.9}},
[105612]={65,{41825,25368,3437.0,18038,36768,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105613]={63,{65611,18327,3255.0,14964,15263,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105614]={63,{1416162,154536,3255.0,52354,36576,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500,209124,100000}},
[105615]={98,{622937,29793,8104.0,102289,127889,0,0},{},{34,68.8,67.6}},
[105616]={68,{10800751,100089,63194.0,85553,78807,4500,2500},{725317,5000,720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725558,200000,725178,200000,552083,10000,241751,10000}},
[105617]={68,{2001110,10852,63194.0,59807,59017,0,0},{720143,60000,720102,100000,725494,85000,725492,85000,725495,70000,725493,70000,725563,200000,725175,200000,552083,10000,241751,10000}},
[105618]={50,{6502336,10019,8932.0,16012,16025,0,0},{}},
[105619]={50,{1501470,10019,8932.0,16012,16025,0,0},{}},
[105620]={50,{1501470,6943,10012.0,16012,16025,0,0},{}},
[105621]={43,{4828,810,712.0,2432,2438,0,0},{}},
[105622]={43,{4828,810,712.0,2432,2438,0,0},{}},
[105623]={63,{715530,146542,3255.0,32716,30155,0,0},{720011,3000,720142,20000,720102,15000,725494,1500,725492,1500,725495,3500,725493,3500}},
[105624]={14,{4232,492,457.0,461,466,0,0},{720011,3000,722655,4097,722689,4097,722757,4097,720092,5000,204531,5000,720140,5000,211379,2167,723979,3000,721903,1967}},
[105625]={50,{6026,305,893.0,916,3242,0,0},{}},
[105626]={50,{10764,4025,893.0,9057,6029,0,0},{}},
[105627]={50,{20013,2003,893.0,1806,3242,0,0},{}},
[105628]={50,{51250,4019,2233.0,9057,9004,0,0},{}},
[105629]={43,{4872,816,1083.0,2416,2453,0,0},{}},
[105630]={0,{144,28,28.0,28,28,0,0},{}},
[105631]={0,{186,32,28.0,96,84,0,0},{}},
[105632]={50,{6063,1059,893.0,3215,3242,0,0},{}},
[105633]={50,{20501,1059,893.0,6815,6458,0,0},{}},
[105634]={40,{4405,719,642.0,2121,2141,0,0},{720289,5000}},
[105635]={65,{2382316,11602,3437.0,46825,46723,0,0},{}},
[105636]={65,{2382316,11602,3437.0,46825,46723,0,0},{}},
[105637]={65,{2382316,11602,3437.0,46825,46723,0,0},{}},
[105638]={40,{4405,719,642.0,2121,2141,0,0},{720289,5000}},
[105639]={10,{2027,408,327.0,374,408,0,0},{}},
[105640]={36,{3760,602,555.0,1767,1784,0,0},{720011,3000,723581,667,723683,667,723751,667,720098,5000,770110,100,720141,5000,201537,10,222616,400,723980,3000,721911,387}},
[105641]={73,{22000466,250581,42333.0,180026,180017,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725809,200000,725810,200000,725431,200000}},
[105642]={73,{19395148,40166,42333.0,113585,104273,4500,2500},{}},
[105643]={73,{188535237,167510,42333.0,180044,180017,4800,2800},{}},
[105644]={73,{188535237,167510,42333.0,180044,180017,4800,2800},{}},
[105645]={73,{188535237,167510,42333.0,180044,180017,4800,2800},{}},
[105646]={73,{188535237,167510,42333.0,180044,180017,4800,2800},{}},
[105647]={73,{19395148,40166,42333.0,113585,104273,4500,2500},{}},
[105648]={73,{19395148,40166,42333.0,113585,104273,4500,2500},{}},
[105649]={73,{19414063,167510,42333.0,114699,104273,4500,2500},{}},
[105650]={70,{17093,5131,3925.0,4758,4711,0,0},{}},
[105651]={67,{15785,4741,3627.0,4397,4352,0,0},{}},
[105652]={65,{703045,167769,3437.0,34448,34863,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,42.9,29.0}},
[105653]={67,{424160,6495,3627.0,36804,36476,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500}},
[105654]={67,{424160,6495,3627.0,36804,36476,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500}},
[105655]={67,{424160,6495,3627.0,36804,36476,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500}},
[105656]={65,{688358,192502,3437.0,26197,26290,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,25.3,82.0}},
[105657]={65,{908656,159525,3437.0,55076,55819,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,11.7,65.8}},
[105658]={65,{703045,194397,3437.0,30322,30100,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500}},
[105659]={65,{761791,167769,3437.0,38574,34863,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,35.6,72.5}},
[105660]={65,{697618,159285,3437.0,34626,32005,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,30.5,41.7}},
[105661]={65,{2964773,167769,3437.0,38574,32005,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,12.1,53.5}},
[105662]={65,{697618,167516,3437.0,34626,32005,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,45.2,25.1}},
[105663]={65,{703045,159525,3437.0,34448,32005,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,53.8,85.6}},
[105664]={0,{144,28,28.0,28,28,0,0},{}},
[105665]={70,{151273,8614,4225.0,32307,33401,0,0},{}},
[105666]={65,{789686,7190,3437.0,7210,8003,0,0},{},{140,42.7,67.8}},
[105667]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771109,100},{20,42.2,64.9}},
[105668]={66,{63200,5863,1480.0,16976,16906,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771110,100},{20,47.6,68.1}},
[105669]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771111,100},{20,46.0,60.6}},
[105670]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771112,100},{20,42.1,64.1}},
[105671]={66,{62621,5794,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105672]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771105,100,209637,60000,209629,75000},{20,43.7,39.1}},
[105673]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771106,100,209638,60000},{20,32.0,41.9}},
[105674]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771107,100},{20,39.6,38.5}},
[105675]={65,{60030,5511,1375.0,16007,16007,0,0},{240030,60000,240293,75000},{20,39.4,46.6}},
[105676]={65,{60202,5627,2084.0,16007,16089,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771108,100},{20,24.4,46.6}},
[105677]={73,{30018556,280509,42333.0,190565,189661,4800,2800},{725785,10000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725817,200000,725818,200000,240726,200000,725929,200000}},
[105678]={0,{144,28,28.0,28,28,0,0},{}},
[105679]={65,{703045,159525,3437.0,34448,32005,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,43.7,28.0}},
[105680]={0,{144,28,28.0,28,28,0,0},{}},
[105681]={70,{1010759,31237,41636.0,160521,100132,4000,2000},{}},
[105682]={0,{142,24,28.0,84,84,0,0},{}},
[105683]={1,{117,30,14.0,63,84,0,0},{}},
[105684]={1,{117,30,14.0,63,84,0,0},{200056,100000}},
[105685]={5,{38,50,71.0,160,163,0,0},{}},
[105686]={0,{144,28,28.0,28,28,0,0},{}},
[105687]={0,{144,28,28.0,28,28,0,0},{}},
[105688]={0,{144,28,28.0,28,28,0,0},{}},
[105689]={60,{10016,1541,1198.0,10030,10030,0,0},{}},
[105690]={60,{10016,1541,1198.0,10030,10030,0,0},{}},
[105691]={60,{10016,1541,1198.0,10030,10030,0,0},{}},
[105692]={60,{10016,1541,1198.0,10030,10030,0,0},{}},
[105693]={0,{144,28,28.0,28,28,0,0},{}},
[105694]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771100,100},{20,50.6,40.0}},
[105695]={0,{144,28,28.0,28,28,0,0},{}},
[105696]={1,{117,15,28.0,46,60,0,0},{}},
[105697]={65,{5047,1389,1375.0,4125,4125,0,0},{}},
[105698]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771101,100,209072,60000},{20,45.7,33.7}},
[105699]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771102,100,209071,60000},{20,56.9,24.6}},
[105700]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771103,100},{20,51.9,37.1}},
[105701]={70,{6049053,160205,41636.0,160521,100132,4000,2000},{720011,3000,720142,20000,720103,15000,725535,20000,725539,20000,725536,15000,725540,15000},{139,44.8,24.7}},
[105702]={70,{1003016,31237,41636.0,100016,142804,4000,2000},{}},
[105703]={70,{1003016,31237,41636.0,100016,100132,4000,2000},{}},
[105704]={0,{129,19,28.0,19,19,0,0},{}},
[105705]={98,{603120,35963,8104.0,112761,119866,0,0},{},{34,66.0,70.4}},
[105706]={0,{144,28,28.0,28,28,0,0},{}},
[105707]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[105708]={77,{215819,17615,1878.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771286,100},{24,47.8,28.4}},
[105709]={0,{144,28,28.0,28,28,0,0},{}},
[105710]={0,{144,28,28.0,28,28,0,0},{}},
[105711]={0,{144,28,28.0,28,28,0,0},{}},
[105712]={0,{144,28,28.0,28,28,0,0},{}},
[105713]={0,{144,28,28.0,28,28,0,0},{}},
[105714]={0,{144,28,28.0,28,28,0,0},{}},
[105715]={0,{144,28,28.0,28,28,0,0},{}},
[105716]={0,{144,28,28.0,28,28,0,0},{}},
[105717]={0,{144,28,28.0,28,28,0,0},{}},
[105718]={75,{10795188,207133,42822.0,195282,177314,4700,2700},{}},
[105719]={65,{5797,8293,1375.0,5183,4125,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105720]={65,{5797,8293,1375.0,5183,4125,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105721]={65,{5797,8293,1375.0,5183,4125,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105722]={66,{37345,1363,1412.0,12609,8940,0,0},{720011,5000}},
[105723]={66,{39879,1363,1412.0,8349,8940,0,0},{720011,5000}},
[105724]={66,{37345,1363,1412.0,12609,8940,0,0},{720011,5000}},
[105725]={66,{39879,1363,1412.0,8349,8940,0,0},{720011,5000}},
[105726]={65,{697618,159285,3437.0,34626,32005,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,36.9,12.6}},
[105727]={66,{37345,2783,1412.0,8349,8940,0,0},{}},
[105728]={66,{39879,2783,1412.0,8349,8940,0,0},{}},
[105729]={0,{144,28,28.0,84,84,0,0},{},{139,33.8,46.2}},
[105730]={0,{129,19,28.0,19,19,0,0},{}},
[105731]={70,{1400094,123001,18925.0,100539,100132,4000,2000},{}},
[105732]={70,{9795,2198,1570.0,2198,2214,0,0},{}},
[105733]={67,{500001,53616,3627.0,300041,300041,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105734]={67,{500001,77193,3627.0,300041,300084,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105735]={67,{5203,1458,1450.0,4375,4352,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105736]={67,{500001,63047,3627.0,300041,300084,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105737]={68,{4972,1489,1489.0,1489,1489,0,0},{}},
[105738]={0,{144,28,28.0,28,28,0,0},{}},
[105739]={67,{80047,2008,1450.0,20183,20023,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105740]={0,{186,32,28.0,96,84,0,0},{}},
[105741]={68,{60032,4284,3724.0,10638,10683,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105742]={67,{150005,2008,1450.0,20183,20023,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105743]={68,{15431,4842,3724.0,1489,1489,0,0},{},{20,48.6,85.1}},
[105744]={65,{703045,194397,3437.0,30322,32005,0,0},{}},
[105745]={70,{303847,3005,25136.0,80298,50026,0,0},{}},
[105746]={70,{1010759,20037,25136.0,96328,60031,0,0},{720011,3000,720142,20000,720103,15000,725535,20000,725539,20000,725536,15000,725540,15000},{140,42.5,20.3}},
[105747]={70,{21537,3005,25136.0,50031,85306,0,0},{}},
[105748]={70,{21537,5009,25136.0,50031,50026,0,0},{}},
[105749]={70,{800127,15583,11425.0,60618,60031,4000,2000},{}},
[105750]={65,{35995,6050,3437.0,5598,5610,0,0},{},{20,33.4,52.8}},
[105751]={0,{144,28,28.0,28,28,0,0},{},{139,19.1,71.0}},
[105752]={65,{176044,12075,3437.0,16089,17171,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105753]={65,{176044,12075,3437.0,16089,17171,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105754]={65,{176044,12075,3437.0,16089,17171,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105755]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105756]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,44.9,55.1}},
[105757]={67,{5203,1458,1450.0,4375,4352,0,0},{}},
[105758]={67,{14236596,6495,3627.0,445741,6006,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{139,20.2,71.0}},
[105759]={0,{144,28,28.0,28,28,0,0},{}},
[105760]={0,{144,28,28.0,28,28,0,0},{}},
[105761]={98,{603120,35963,8104.0,112761,119866,0,0},{},{34,65.8,69.1}},
[105762]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771104,100},{20,50.7,34.9}},
[105763]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771113,100},{20,48.8,67.2}},
[105764]={64,{58439,4503,1338.0,15539,15539,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771114,100}},
[105765]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771115,100,240281,60},{20,50.8,54.5}},
[105766]={66,{62621,5794,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771116,100},{20,43.7,58.3}},
[105767]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771117,100,240028,60000},{20,35.6,63.1}},
[105768]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771118,100,240029,60000},{20,34.9,63.6}},
[105769]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,28.5,87.3}},
[105770]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,22.3,91.7}},
[105771]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,27.9,87.2}},
[105772]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,21.7,91.5}},
[105773]={60,{134916,2626,1198.0,4771,9922,0,0},{},{141,15.9,30.2}},
[105774]={60,{134916,2626,1198.0,4771,9922,0,0},{},{144,0,0}},
[105775]={98,{1105221,75996,20261.0,101631,101874,0,0},{},{34,50.3,23.7}},
[105776]={97,{1087799,75070,20084.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771760,100},{34,74.3,57.5}},
[105777]={97,{1081902,80642,20084.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771761,100},{34,42.4,77.5}},
[105778]={73,{1500109,230153,19242.0,113585,149737,4500,2500},{}},
[105779]={73,{2000145,230153,19242.0,113585,104273,4500,2500},{}},
[105780]={73,{1025585,230153,19242.0,113585,104273,4500,2500},{}},
[105781]={73,{1500109,80045,19242.0,113585,104273,4500,2500},{}},
[105782]={64,{58026,5435,1338.0,15619,15539,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,61.5,76.1}},
[105783]={64,{58026,5435,1338.0,15619,15539,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,66.5,70.7}},
[105784]={64,{58026,5435,1338.0,15619,15539,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,69.7,61.7}},
[105785]={1,{186,32,28.0,96,84,0,0},{}},
[105786]={65,{49387,3974,520.0,15161,6957,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771121,100},{20,39.2,83.6}},
[105787]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771122,100},{20,36.2,84.2}},
[105788]={67,{113791,12206,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240653,75000,771159,100},{21,59.4,58.1}},
[105789]={65,{49387,5511,520.0,15161,6957,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771123,100},{20,33.1,86.5}},
[105790]={67,{113791,12206,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240653,75000,771160,100},{21,57.5,52.0}},
[105791]={65,{49387,5511,520.0,15161,13037,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771124,100},{20,36.9,85.1}},
[105792]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771125,100},{20,34.2,89.2}},
[105793]={67,{150212,12206,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240653,75000,771161,100},{21,58.4,49.6}},
[105794]={65,{49387,5511,520.0,15161,13037,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771126,100},{20,39.5,89.2}},
[105795]={65,{60030,5511,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771127,100},{20,36.8,76.7}},
[105796]={65,{49387,5511,520.0,15161,13037,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771128,100},{20,33.0,87.9}},
[105797]={67,{103385,12206,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240653,75000,771162,100},{21,58.8,49.2}},
[105798]={68,{116821,14046,1489.0,21923,19622,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771175,100},{21,56.0,84.6}},
[105799]={68,{116821,12549,1489.0,26415,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771176,100},{21,55.5,84.3}},
[105800]={73,{1500109,60078,19242.0,113585,104273,4500,2500},{}},
[105801]={66,{5183,1427,1412.0,4238,4238,0,0},{}},
[105802]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105803]={80,{5106033,38024,20237.0,18299,36427,0,0},{}},
[105804]={73,{1623736,530766,19242.0,113585,104273,4500,2500},{}},
[105805]={0,{144,28,28.0,28,28,0,0},{}},
[105806]={65,{4969,1360,1375.0,4125,4125,0,0},{},{20,40.9,84.1}},
[105807]={72,{26543532,235998,42097.0,170792,170275,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725805,200000,725806,200000,725424,200000}},
[105808]={70,{31964,7183,3925.0,6661,6642,0,0},{}},
[105809]={70,{31964,7183,3925.0,6661,6642,0,0},{}},
[105810]={72,{889292,186342,4135.0,71552,56265,0,0},{},{144,0,0}},
[105811]={100,{7602428,22197,17875.0,16720,16673,0,0},{},{143,46.4,46.7}},
[105812]={80,{41247,9916,5059.0,9192,9167,0,0},{726128,5000,720143,60000,726766,100000,726105,70000,726106,70000,726774,200000,726778,50000,725418,200000}},
[105813]={65,{8584028,93559,27363.0,76027,76120,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725440,200000}},
[105814]={0,{144,28,28.0,28,28,0,0},{}},
[105815]={68,{54431941,470097,74194.0,120150,121025,4500,2500},{}},
[105816]={1,{93,32,28.0,96,84,0,0},{}},
[105817]={70,{686050,20827,3925.0,6628,23084,0,0},{}},
[105818]={0,{144,28,28.0,84,84,0,0},{}},
[105819]={0,{186,32,28.0,96,84,0,0},{}},
[105820]={67,{58515,5905,1450.0,16976,16976,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771135,100},{20,56.5,88.5}},
[105821]={67,{58515,5905,1450.0,16976,16976,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771136,100},{20,57.2,86.8}},
[105822]={67,{58515,5905,1450.0,16976,16976,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771137,100},{20,57.1,90.0}},
[105823]={0,{186,32,28.0,96,84,0,0},{720011,5000}},
[105824]={66,{5183,1427,1412.0,4238,4238,0,0},{}},
[105825]={70,{459291,7183,3925.0,6661,6642,0,0},{}},
[105826]={70,{459291,7183,3925.0,6661,6642,0,0},{}},
[105827]={73,{406150,53217,9242.0,70921,43699,0,0},{}},
[105828]={73,{406150,54465,9242.0,70921,48427,0,0},{}},
[105829]={73,{406150,54465,9242.0,70921,48427,0,0},{}},
[105830]={73,{351682,36902,21742.0,50556,65882,0,0},{}},
[105831]={73,{206434,37310,10242.0,50556,64091,0,0},{}},
[105832]={73,{501470,46375,10242.0,76012,55519,0,0},{}},
[105833]={73,{406150,51922,10242.0,70921,43699,0,0},{}},
[105834]={73,{206434,37706,13503.3,50556,54521,0,0},{}},
[105835]={73,{1036382,87683,22533.0,106559,83702,0,0},{}},
[105836]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,31.8,86.6}},
[105837]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,16.2,89.3}},
[105838]={1,{142,24,28.0,84,84,0,0},{},{20,36.0,77.6}},
[105839]={1,{142,24,28.0,84,84,0,0},{},{20,36.6,77.6}},
[105840]={68,{112675,103812,3724.0,306854,200027,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105841]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,24.9,88.3}},
[105842]={65,{5797,8293,1375.0,5183,4125,0,0},{}},
[105843]={68,{116821,12549,1489.0,26415,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771177,100},{21,56.7,83.6}},
[105844]={64,{4803,1345,1338.0,4036,4015,0,0},{}},
[105845]={64,{4803,1345,1338.0,4036,4015,0,0},{}},
[105846]={64,{4803,1345,1338.0,4036,4015,0,0},{}},
[105847]={65,{4969,1360,1375.0,24753,4125,0,0},{}},
[105848]={68,{116821,12549,1489.0,26415,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771178,100},{21,55.3,83.0}},
[105849]={65,{60030,5906,1375.0,16007,16007,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000,771129,100},{20,36.3,90.7}},
[105850]={66,{61654,5676,1412.0,16486,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,47.8,50.5}},
[105851]={66,{61212,5764,1412.0,16570,16486,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000}},
[105852]={1,{-2,17,28.0,59,60,0,0},{}},
[105853]={0,{129,19,28.0,19,19,0,0},{}},
[105854]={0,{129,19,28.0,19,19,0,0},{}},
[105855]={65,{8389,1727,1375.0,8293,4125,0,0},{}},
[105856]={65,{4934,1382,1375.0,4146,4125,0,0},{720011,5000,720142,10000,725535,2000,725539,2000,720103,10000},{20,38.2,77.3}},
[105857]={65,{6932,1856,520.0,1925,1523,0,0},{},{20,43.6,70.9}},
[105858]={69,{4156082,22215,24913.0,59293,58121,0,0},{}},
[105859]={60,{24348,5092,2996.0,4724,4709,0,0},{720143,60000,720102,100000,725535,85000,725539,85000,725536,70000,725540,70000,725665,200000,725175,200000}},
[105860]={67,{55565,12660,11127.0,23612,27495,0,0},{}},
[105861]={67,{79375,14715,11127.0,23374,27495,0,0},{}},
[105862]={67,{79375,10956,11127.0,23374,27495,0,0},{}},
[105863]={70,{134180,6004,4225.0,27549,28313,0,0},{}},
[105864]={70,{2724463,35269,25136.0,50031,50026,0,0},{720143,60000,720102,100000,725535,85000,725539,85000,725536,70000,725540,70000,725668,200000,725176,200000}},
[105865]={65,{464447,7265,6437.0,16794,14369,0,0},{}},
[105866]={65,{74460,28538,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500}},
[105867]={65,{74460,28538,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,25.3,82.0}},
[105868]={65,{74460,28538,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,11.7,65.8}},
[105869]={65,{74460,38063,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500}},
[105870]={65,{74460,28538,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,35.6,72.5}},
[105871]={65,{73886,28459,3437.0,16794,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,30.5,41.7}},
[105872]={65,{73886,28459,3437.0,16794,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,45.2,25.1}},
[105873]={65,{74460,28538,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,53.8,85.6}},
[105874]={65,{74460,28538,3437.0,16708,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,43.7,27.6}},
[105875]={65,{73886,28459,3437.0,16794,17717,0,0},{720011,3000,720142,20000,720103,15000,725535,1500,725539,1500,725536,3500,725540,3500},{140,36.9,12.6}},
[105876]={65,{74460,38063,3437.0,16708,17717,0,0},{}},
[105877]={70,{31964,7183,3925.0,6661,6642,0,0},{720143,60000,720102,100000,725535,85000,725539,85000,725536,70000,725540,70000,725669,200000,725177,200000,240724,200000}},
[105878]={73,{150785,7887,4242.0,7280,7331,0,0},{}},
[105879]={100,{1840611,18041,8125.0,16720,16673,0,0},{}},
[105880]={70,{2202300,21250,19636.0,60019,60118,0,0},{720143,60000,720102,100000,725535,85000,725539,85000,725536,70000,725540,70000,725666,200000,725178,200000}},
[105881]={68,{10051,11893,3724.0,50027,50018,0,0},{}},
[105882]={68,{10051,11893,3724.0,50027,50018,0,0},{}},
[105883]={68,{10051,11893,3724.0,50027,50018,0,0},{}},
[105884]={70,{2501388,22631,19636.0,60019,60184,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[105885]={70,{2501388,22631,19636.0,60019,60184,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[105886]={67,{100149,10423,3627.0,50014,50014,0,0},{}},
[105887]={67,{50074,10423,3627.0,50014,50014,0,0},{}},
[105888]={65,{8584028,93559,27363.0,76027,76120,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725440,200000}},
[105889]={0,{142,24,28.0,84,84,0,0},{}},
[105890]={0,{142,24,28.0,84,84,0,0},{}},
[105891]={0,{142,24,28.0,84,84,0,0},{}},
[105892]={73,{397072,7928,4242.0,7280,7331,0,0},{}},
[105893]={70,{25005973,170027,16653.0,100016,100054,4800,2800},{725890,200000,720143,80000,720103,200000,725537,90000,725541,90000,725538,80000,725542,80000,725895,200000,771187,100,725245,200000}},
[105894]={70,{25005973,13839,16653.0,100016,100054,4800,2800},{725889,200000,720143,80000,720103,200000,725537,90000,725541,90000,725538,80000,725542,80000,725894,200000,240725,200000,771188,100,725245,200000}},
[105895]={65,{789686,7190,3437.0,7210,8003,0,0},{},{141,46.4,43.6}},
[105896]={70,{12500789,131645,41636.0,100016,100155,4000,2000},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[105897]={70,{2501388,22631,19636.0,60019,60184,0,0},{720011,3000,720142,20000,720102,15000,725311,1500,725313,1500,725312,3500,725314,3500}},
[105898]={1,{108,21,14.0,45,60,0,0},{}},
[105899]={1,{108,21,14.0,45,60,0,0},{}},
[105900]={1,{108,21,14.0,45,60,0,0},{}},
[105901]={67,{98182,12206,1450.0,19993,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771138,100,240558,60000},{21,76.4,19.1}},
[105902]={67,{113791,12206,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771139,100,240558,60000},{21,76.6,22.5}},
[105903]={67,{98182,10018,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771140,100,240558,60000},{21,76.7,23.8}},
[105904]={67,{150212,15122,1450.0,32243,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771141,100,240558,60000},{21,77.6,14.5}},
[105905]={67,{114618,12020,1450.0,45138,34337,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771142,100},{21,70.2,26.2}},
[105906]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771143,100},{21,70.7,24.8}},
[105907]={1,{132,17,28.0,59,60,0,0},{},{21,72.0,31.9}},
[105908]={67,{114618,9148,1450.0,21198,20379,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771144,100},{21,71.3,32.4}},
[105909]={67,{140822,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771145,100,240562,200000},{21,81.4,32.3}},
[105910]={70,{1002778,40502,9516.0,180245,180448,3500,2000},{}},
[105911]={0,{144,28,28.0,28,28,0,0},{}},
[105912]={0,{144,28,28.0,28,28,0,0},{}},
[105913]={0,{144,28,28.0,28,28,0,0},{}},
[105914]={0,{144,28,28.0,28,28,0,0},{}},
[105915]={0,{144,28,28.0,28,28,0,0},{}},
[105916]={0,{144,28,28.0,28,28,0,0},{}},
[105917]={0,{144,28,28.0,28,28,0,0},{}},
[105918]={0,{144,28,28.0,28,28,0,0},{}},
[105919]={0,{144,28,28.0,28,28,0,0},{}},
[105920]={1,{157,35,14.0,75,84,0,0},{}},
[105921]={10,{613,100,131.0,314,318,0,0},{}},
[105922]={0,{144,28,28.0,28,28,0,0},{}},
[105923]={0,{144,28,28.0,28,28,0,0},{}},
[105924]={0,{144,28,28.0,28,28,0,0},{}},
[105925]={0,{144,28,28.0,28,28,0,0},{}},
[105926]={97,{1081902,75003,20084.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771762,100},{34,42.2,43.0}},
[105927]={66,{39879,1363,1412.0,8349,8940,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770941,100}},
[105928]={66,{37345,1363,1412.0,12609,8940,0,0},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,770942,100}},
[105929]={37,{3926,691,577.0,2074,2077,0,0},{}},
[105930]={70,{31964,7183,3925.0,6661,6642,0,0},{725786,200000}},
[105931]={75,{18187141,56786,42822.0,126852,121330,4000,2000},{725785,5000,720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725931,200000,725415,200000,552099,10000,241825,10000}},
[105932]={70,{30427,7145,3925.0,6595,6642,0,0},{}},
[105933]={75,{15501320,165722,64233.0,132261,233297,4000,2000},{}},
[105934]={75,{15501320,137909,64233.0,132261,233297,4000,2000},{}},
[105935]={75,{8000615,200026,42822.0,190031,170188,4700,2700},{725785,5000,720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725933,200000,725425,200000,552100,10000,241826,10000}},
[105936]={72,{250160,42043,4135.0,130004,106335,0,0},{}},
[105937]={72,{250160,42077,20000.0,130004,106335,0,0},{}},
[105938]={72,{450077,42043,4135.0,130004,106335,0,0},{}},
[105939]={73,{5657,1697,1697.0,5091,5091,0,0},{}},
[105940]={73,{5657,1697,1697.0,5091,5091,0,0},{}},
[105941]={37,{3884,621,577.0,1865,1869,0,0},{}},
[105942]={37,{3917,626,877.0,1852,1882,0,0},{}},
[105943]={0,{144,28,28.0,28,28,0,0},{}},
[105944]={0,{144,28,28.0,28,28,0,0},{}},
[105945]={0,{144,28,28.0,28,28,0,0},{}},
[105946]={0,{144,28,28.0,28,28,0,0},{}},
[105947]={0,{144,28,28.0,28,28,0,0},{}},
[105948]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,33.2,64.0}},
[105949]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,34.5,64.0}},
[105950]={69,{119912,14436,1529.0,34085,31291,0,0},{},{21,23.1,72.4}},
[105951]={68,{116821,14046,1489.0,33154,32864,0,0},{},{21,22.8,70.2}},
[105952]={0,{144,28,28.0,28,28,0,0},{}},
[105953]={0,{144,28,28.0,28,28,0,0},{}},
[105954]={0,{144,28,28.0,28,28,0,0},{}},
[105955]={0,{144,28,28.0,28,28,0,0},{}},
[105956]={60,{437613,-3364,6591.0,4698,4709,0,0},{}},
[105957]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771147,100},{21,51.4,36.9}},
[105958]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771148,100,240229,60000},{21,53.6,44.6}},
[105959]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771149,100,240526,60000},{21,51.4,41.7}},
[105960]={68,{157774,12612,1489.0,28517,28094,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771150,100,240543,60000},{21,48.9,24.4}},
[105961]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771151,100,240594,60000},{21,54.4,39.2}},
[105962]={73,{30568404,18334,42333.0,190565,189661,4000,2000},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725815,200000,725816,200000,240091,200000,240727,200000,725927,200000}},
[105963]={0,{186,32,28.0,96,84,0,0},{},{144,0,0}},
[105964]={75,{6265745,172676,42822.0,191874,170188,4700,2700},{725785,5000,720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725934,200000,725434,200000}},
[105965]={73,{507954,147655,19242.0,160017,167560,0,0},{}},
[105966]={73,{300162,287779,19242.0,109105,167560,0,0},{}},
[105967]={73,{50496,7887,4242.0,312755,312806,0,0},{}},
[105968]={70,{5238,1570,1570.0,4711,4711,0,0},{}},
[105969]={70,{5238,1570,1570.0,4711,4711,0,0},{}},
[105970]={70,{16659,5117,3925.0,4734,4711,0,0},{}},
[105971]={0,{144,28,28.0,28,28,0,0},{}},
[105972]={67,{114618,12020,1450.0,21198,20379,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771146,100,240551,60000},{21,66.0,24.1}},
[105973]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771152,100},{21,60.4,48.4}},
[105974]={68,{117676,9409,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771153,100,240591,60000},{21,53.4,26.7}},
[105975]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771154,100},{21,62.2,26.3}},
[105976]={75,{10795188,207133,42822.0,195282,177314,4700,2700},{725785,10000,720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725935,200000,725924,200000}},
[105977]={0,{129,19,28.0,58,59,0,0},{}},
[105978]={72,{740752,7673,4135.0,56666,56715,0,0},{}},
[105979]={73,{941754,147901,19242.0,160017,167560,0,0},{}},
[105980]={73,{705725,112812,19242.0,175291,167560,0,0},{}},
[105981]={70,{686050,20827,3925.0,6628,23084,0,0},{}},
[105982]={70,{31964,7183,3925.0,6661,6642,0,0},{725804,200000}},
[105983]={98,{1099183,75927,20261.0,101802,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771763,100},{34,21.1,49.3}},
[105984]={0,{142,24,28.0,84,84,0,0},{},{215,49.1,87.1}},
[105985]={67,{150212,13664,1450.0,25681,25032,0,0},{}},
[105986]={68,{116821,14046,1489.0,24169,23324,0,0},{}},
[105987]={68,{154213,12549,1489.0,33154,25709,0,0},{}},
[105988]={68,{5395,1505,2257.0,4469,4492,0,0},{}},
[105989]={8,{428,108,106.0,326,319,0,0},{}},
[105990]={10,{484,131,131.0,131,131,0,0},{}},
[105991]={68,{116821,12549,1489.0,21923,20939,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771172,100},{21,53.4,66.6}},
[105992]={68,{116821,9554,1489.0,33154,32864,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771173,100},{21,52.0,66.8}},
[105993]={68,{116821,12549,1489.0,26415,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771174,100},{21,51.7,67.2}},
[105994]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771166,100},{21,63.4,63.1}},
[105995]={68,{118005,12612,2257.0,26282,25831,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240657,75000,771168,100},{21,62.8,73.0}},
[105996]={68,{117676,12359,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240658,75000,771170,100,240638,60000},{21,59.5,76.1}},
[105997]={68,{118005,12612,2257.0,26282,27748,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240282,75000,771171,100,240638,60000},{21,50.6,81.6}},
[105998]={68,{4972,1489,1489.0,4469,4469,0,0},{}},
[105999]={0,{144,28,28.0,28,28,0,0},{}},
[106000]={67,{113791,12206,1450.0,25681,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240656,75000,771163,100},{21,55.4,58.6}},
[106001]={0,{144,28,28.0,28,28,0,0},{}},
[106002]={99,{12178,3204,3176.0,9613,9529,0,0},{}},
[106003]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771155,100},{21,63.3,35.8}},
[106004]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771156,100},{21,63.5,34.6}},
[106005]={65,{789686,7190,3437.0,7210,8003,0,0},{},{144,0,0}},
[106006]={0,{144,28,28.0,28,28,0,0},{}},
[106007]={0,{144,28,28.0,28,28,0,0},{}},
[106008]={0,{144,28,28.0,28,28,0,0},{}},
[106009]={0,{144,28,28.0,28,28,0,0},{},{152,47.3,32.8}},
[106010]={68,{277070,14046,1489.0,24169,19622,0,0},{},{21,55.7,84.8}},
[106011]={30,{8021,1887,1344.0,8005,8008,0,0},{}},
[106012]={0,{186,32,28.0,96,84,0,0},{},{141,49.4,42.8}},
[106013]={1,{-12,17,28.0,59,60,0,0},{}},
[106014]={70,{1498371,142801,41636.0,147927,175625,0,0},{}},
[106015]={73,{10107237,190089,36833.0,292116,140148,4500,2500},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725820,200000,725418,200000}},
[106016]={73,{10002027,190089,36833.0,160068,140148,4500,2500},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725820,200000,725418,200000}},
[106017]={73,{10107237,190089,36833.0,292116,140148,4500,2500},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725820,200000,725418,200000}},
[106018]={72,{200093,18049,4135.0,60040,60040,0,0},{}},
[106019]={72,{200093,18049,4135.0,60040,60040,0,0},{}},
[106020]={72,{200093,18049,4135.0,60040,60040,0,0},{}},
[106021]={73,{9502923,200000,36833.0,140009,140148,4500,2500},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725821,200000,725423,200000}},
[106022]={73,{3537196,40042,9333.0,118649,65015,0,0},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725825,200000,725177,200000}},
[106023]={73,{3500376,40042,9333.0,65015,65015,0,0},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725825,200000,725177,200000}},
[106024]={73,{3537196,40042,9333.0,118649,65015,0,0},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725825,200000,725177,200000}},
[106025]={72,{50067,15023,4135.0,30020,30020,0,0},{}},
[106026]={72,{50067,15023,4135.0,30020,30020,0,0},{}},
[106027]={72,{50067,15023,4135.0,30020,30020,0,0},{}},
[106028]={73,{5001013,45022,9333.0,65015,65066,0,0},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725826,200000,725302,200000}},
[106029]={73,{19395148,15007,9333.0,113585,26423,0,0},{}},
[106030]={73,{19395148,15007,9333.0,113585,26423,0,0},{}},
[106031]={73,{19395148,15007,9333.0,113585,26423,0,0},{}},
[106032]={73,{19395148,15062,42333.0,113585,104273,4500,2500},{}},
[106033]={73,{19395148,15062,42333.0,113585,104273,4500,2500},{}},
[106034]={73,{19395148,15062,42333.0,113585,104273,4500,2500},{}},
[106035]={73,{188535237,145490,36833.0,140045,140148,4500,2500},{}},
[106036]={73,{188535237,145490,36833.0,140045,140148,4500,2500},{}},
[106037]={73,{188535237,145490,36833.0,140045,140148,4500,2500},{}},
[106038]={73,{188535237,145490,36833.0,140045,140148,4500,2500},{}},
[106039]={73,{188535237,167510,42333.0,65652,65095,0,0},{}},
[106040]={73,{188535237,167510,42333.0,65652,65095,0,0},{}},
[106041]={73,{188535237,167510,42333.0,65652,65095,0,0},{}},
[106042]={73,{188535237,167510,42333.0,65652,65095,0,0},{}},
[106043]={72,{10332751,190701,42097.0,106286,106397,0,0},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725819,200000,725309,200000}},
[106044]={72,{2875792,39359,9097.0,56666,21981,0,0},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725824,200000,725176,200000}},
[106045]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771157,100},{21,63.8,29.6}},
[106046]={68,{108757,13975,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771158,100,240606,60000},{21,47.4,20.5}},
[106047]={0,{162,84,70.0,84,84,0,0},{}},
[106048]={73,{10604278,192386,42333.0,119287,119342,4000,2000},{725785,10000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725823,200000,240727,200000,725919,200000}},
[106049]={73,{3117731,39087,9333.0,53101,30242,4000,2000},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725828,200000,240727,200000,725305,200000}},
[106050]={70,{81768,12314,3925.0,48995,6642,0,0},{}},
[106051]={70,{870906,37970,3925.0,81972,80135,0,0},{}},
[106052]={73,{10105175,203797,42333.0,147289,124364,4500,2500},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725822,200000,725429,100000}},
[106053]={73,{251824,20404,4242.0,63284,58243,0,0},{}},
[106054]={68,{5651671,48978,13694.0,70981,66407,0,0},{720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725827,200000,725304,200000}},
[106055]={73,{51381,16245,4242.0,31463,30751,0,0},{}},
[106056]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240655,75000,771164,100},{21,59.7,50.5}},
[106057]={67,{114941,10802,2198.0,45138,25151,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240654,75000,771165,100},{21,58.8,50.8}},
[106058]={68,{117676,9409,1489.0,32987,32864,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240659,75000,771169,100},{21,58.6,76.9}},
[106059]={1,{-12,17,28.0,59,60,0,0},{}},
[106060]={68,{117676,12359,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771167,100},{21,64.4,59.1}},
[106061]={67,{151304,1967,1450.0,25551,25032,0,0},{},{21,79.5,33.7}},
[106062]={67,{9800,1967,1450.0,25551,25032,0,0},{},{21,80.1,30.6}},
[106063]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,45.9,56.6}},
[106064]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,44.9,57.1}},
[106065]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,29.4,63.6}},
[106066]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,23.5,58.0}},
[106067]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,21.8,59.4}},
[106068]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,21.2,63.1}},
[106069]={68,{117676,12359,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771179,100},{21,21.9,60.4}},
[106070]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,21.2,63.2}},
[106071]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,21.8,66.0}},
[106072]={68,{108757,12485,1489.0,8760,8569,0,0},{}},
[106073]={69,{119912,12899,1529.0,27166,26402,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771180,100},{21,69.4,46.1}},
[106074]={69,{119912,12899,1529.0,27166,26402,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771181,100},{21,69.3,46.3}},
[106075]={68,{117676,13834,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771182,100},{21,65.8,53.4}},
[106076]={68,{117676,9409,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771183,100},{21,65.4,52.2}},
[106077]={68,{117676,12359,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771184,100},{21,65.9,62.5}},
[106078]={68,{117676,12359,1489.0,26282,25709,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771185,100},{21,67.3,55.5}},
[106079]={69,{111632,12834,1529.0,27030,26402,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,771186,100}},
[106080]={70,{1710415,207818,3925.0,100817,105256,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,15.0,65.0}},
[106081]={70,{1710415,181174,3925.0,80088,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,15.1,64.5}},
[106082]={70,{2021119,145650,3925.0,142308,80079,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,14.7,65.0}},
[106083]={70,{1710415,179842,3925.0,79381,78563,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,18.0,37.5}},
[106084]={70,{1710415,181174,3925.0,80088,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,51.3,55.6}},
[106085]={70,{1710415,190055,3925.0,100817,105256,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,56.4,57.1}},
[106086]={70,{1374612,190055,3925.0,63128,60767,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,19.5,65.0}},
[106087]={70,{1710415,190055,3925.0,80088,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,19.2,64.8}},
[106088]={70,{1710415,190055,3925.0,100817,105256,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,19.2,65.1}},
[106089]={70,{1542514,190055,3925.0,100817,105256,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,14.3,67.8}},
[106090]={70,{1542514,181174,3925.0,67839,64812,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,14.1,67.5}},
[106091]={70,{870906,56839,3925.0,53706,54700,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,27.3,30.3}},
[106092]={70,{1710415,190055,3925.0,80088,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,20.3,67.5}},
[106093]={70,{1710415,181174,3925.0,80088,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,20.3,68.1}},
[106094]={70,{1710415,154531,3925.0,100817,105256,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,20.3,67.8}},
[106095]={70,{2030331,189762,3925.0,101320,115367,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,54.0,56.7}},
[106096]={70,{1701378,118887,48925.0,77261,323458,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500,240094,100000},{141,45.3,62.8}},
[106097]={70,{1741272,181174,3925.0,80888,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,15.5,76.9}},
[106098]={70,{1702976,165707,58758.0,77261,125770,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,52.7,56.2}},
[106099]={70,{1702976,190307,4758.0,80088,80164,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{141,49.8,56.8}},
[106100]={65,{27968,6067,3437.0,5627,5610,0,0},{725785,5000,720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725932,200000,725419,200000}},
[106101]={0,{144,28,28.0,28,28,0,0},{},{120,42.9,81.7}},
[106102]={0,{144,28,28.0,28,28,0,0},{}},
[106103]={70,{1657541,188989,21425.0,77261,96781,0,0},{}},
[106104]={1,{150,30,28.0,90,84,0,0},{}},
[106105]={0,{144,28,28.0,28,28,0,0},{}},
[106106]={72,{934120,7673,4135.0,7115,7095,0,0},{}},
[106107]={8,{482,79,106.0,249,252,0,0},{},{2,46.7,80.6}},
[106108]={73,{19599163,230498,42333.0,365053,180017,4800,2800},{}},
[106109]={70,{16717,5142,4758.0,4711,4734,0,0},{}},
[106110]={1,{144,28,28.0,28,28,0,0},{}},
[106111]={67,{251260,1987,1450.0,45516,48668,0,0},{}},
[106112]={70,{356732,84150,3925.0,54242,30198,0,0},{},{141,26.4,24.0}},
[106113]={70,{865873,7180,4758.0,6561,6675,0,0},{}},
[106114]={77,{237429,33561,14695.0,150048,150070,4140,4140},{}},
[106115]={0,{150,30,28.0,90,84,0,0},{}},
[106116]={70,{50424,7183,3925.0,24028,6642,0,0},{}},
[106117]={0,{144,28,28.0,28,28,0,0},{}},
[106118]={0,{144,28,28.0,28,28,0,0},{}},
[106119]={70,{134319,10100,1570.0,28644,54700,0,0},{}},
[106120]={0,{144,28,28.0,28,28,0,0},{}},
[106121]={0,{146,32,48.0,84,90,0,0},{}},
[106122]={0,{144,28,28.0,28,28,0,0},{}},
[106123]={75,{1886783,8415,4464.0,2589,2607,0,0},{},{146,69.0,53.7}},
[106124]={90,{7755236,347365,23399.0,708007,719579,1600,900},{}},
[106125]={75,{2000085,400001,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106126]={75,{2000085,400001,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106127]={75,{8824,2723,1785.0,5571,8304,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,85.3,39.9}},
[106128]={75,{1000042,250000,4464.0,150010,150010,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,68.6,41.5}},
[106129]={90,{7755236,347365,23399.0,708007,719579,1600,900},{}},
[106130]={90,{6929830,360325,25799.0,708007,719579,1600,900},{}},
[106131]={90,{5674279,276626,21441.0,519430,524997,0,0},{}},
[106132]={75,{2000085,400001,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106133]={90,{26827952,359066,21441.0,785300,1173061,0,0},{}},
[106134]={95,{59118,15607,7241.0,14465,14425,0,0},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721771,200000,721772,200000,721795,100000,726062,200000}},
[106135]={0,{144,28,28.0,28,28,0,0},{}},
[106136]={0,{144,28,28.0,28,28,0,0},{}},
[106137]={0,{144,28,28.0,28,28,0,0},{}},
[106138]={0,{144,28,28.0,28,28,0,0},{}},
[106139]={0,{144,28,28.0,28,28,0,0},{}},
[106140]={0,{144,28,28.0,28,28,0,0},{}},
[106141]={0,{144,28,28.0,28,28,0,0},{}},
[106142]={0,{144,28,28.0,28,28,0,0},{}},
[106143]={0,{144,28,28.0,28,28,0,0},{}},
[106144]={0,{144,28,28.0,28,28,0,0},{}},
[106145]={0,{144,28,28.0,28,28,0,0},{}},
[106146]={0,{144,28,28.0,28,28,0,0},{}},
[106147]={0,{144,28,28.0,28,28,0,0},{}},
[106148]={0,{144,28,28.0,28,28,0,0},{}},
[106149]={0,{144,28,28.0,28,28,0,0},{}},
[106150]={68,{240928,2076,1489.0,28806,30479,0,0},{},{21,49.7,68.8}},
[106151]={0,{146,32,48.0,84,90,0,0},{}},
[106152]={98,{63375,17031,7761.0,15784,15740,0,0},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721785,200000,721795,100000,725431,200000}},
[106153]={98,{63375,17031,7761.0,15784,15740,0,0},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721790,200000,721795,100000,725302,200000}},
[106154]={98,{63375,17031,7761.0,15784,15740,0,0},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721786,200000,721795,100000,725433,200000}},
[106155]={98,{63375,17031,7761.0,15784,15740,0,0},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721791,200000,721795,100000,725304,200000}},
[106156]={67,{114618,12020,1450.0,21198,20379,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000,240551,60000}},
[106157]={67,{114618,9148,1450.0,21198,20379,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000}},
[106158]={68,{298470,2076,1489.0,51382,54329,0,0},{}},
[106159]={75,{2500106,400001,4464.0,200050,200103,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,70.3,43.2}},
[106160]={75,{2500106,400001,4464.0,200050,200103,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,52.9,75.5}},
[106161]={73,{8938477,91366,34282.0,83649,89315,0,0},{720011,5000,720142,10000,725777,85000,725778,85000,720103,10000,725779,70000,725780,70000,725804,200000,771189,100},{22,45.3,23.2}},
[106162]={70,{544756,101244,3925.0,54242,64812,0,0},{},{141,16.4,74.3}},
[106163]={70,{25005973,13839,16653.0,100016,100054,4800,2800},{}},
[106164]={67,{114618,12020,1450.0,25551,25032,0,0},{720011,5000,720142,10000,725537,2000,725541,2000,720103,10000},{21,68.2,51.7}},
[106165]={103,{4977805,86825,9479.0,405975,404973,0,0},{}},
[106166]={103,{4977805,86825,9479.0,405975,404973,0,0},{}},
[106167]={95,{20911,5151,3096.0,15328,15421,0,0},{}},
[106168]={95,{20911,5151,3096.0,15328,15421,0,0},{}},
[106169]={103,{1656552,67805,9479.0,149209,149021,0,0},{}},
[106170]={103,{1656552,67805,9479.0,149209,149021,0,0},{}},
[106171]={95,{11111,2922,2896.0,8767,8689,0,0},{}},
[106172]={95,{10336,2909,2896.0,8728,8689,0,0},{}},
[106173]={90,{9297,2599,3899.0,7729,7764,0,0},{}},
[106174]={0,{144,28,28.0,28,28,0,0},{}},
[106175]={101,{404718405,399800,51288.0,1056596,1055236,3000,3000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,725992,200000,725993,200000,721899,100000,726089,200000}},
[106176]={50,{9002,3506,2233.0,2901,3242,0,0},{}},
[106177]={93,{442708,28788,4484.0,103440,103960,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,242122,25000,727040,25000},{218,50.8,24.7}},
[106178]={93,{442708,28788,4484.0,103440,103960,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,242122,25000,727040,25000},{218,29.2,25.0}},
[106179]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,242122,25000,727040,25000},{218,26.7,26.5}},
[106180]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,242123,25000,727040,25000},{219,36.4,26.4}},
[106181]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,242123,25000,727040,25000},{219,41.0,52.2}},
[106182]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,242123,25000,727040,25000},{219,38.5,27.2}},
[106183]={93,{438318,28669,2964.0,103871,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,242124,25000,727040,25000},{220,33.9,47.1}},
[106184]={93,{438318,28669,2964.0,103871,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,242124,25000,727040,25000},{220,34.5,43.3}},
[106185]={93,{438318,28669,2964.0,103871,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,242124,25000,727040,25000},{220,29.3,46.7}},
[106186]={60,{134916,2626,1198.0,4771,9922,0,0},{}},
[106187]={70,{1010759,31237,41636.0,160521,100132,4000,2000},{}},
[106188]={68,{240928,2076,1489.0,28806,30479,0,0},{}},
[106189]={68,{240928,2076,1489.0,28806,30479,0,0},{}},
[106190]={68,{240928,2076,1489.0,28806,30479,0,0},{}},
[106191]={0,{9467,22,28.0,1027,4112,0,0},{}},
[106192]={70,{1010759,31237,41636.0,160521,100132,4000,2000},{}},
[106193]={101,{269900260,399490,51288.0,1054956,1055236,3000,3000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,725990,200000,725991,200000,721899,100000,726078,200000}},
[106194]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,42.6,73.2}},
[106195]={68,{116821,12549,1489.0,26415,25709,0,0},{},{21,42.6,72.9}},
[106196]={70,{544756,101244,3925.0,54242,64812,0,0},{}},
[106197]={0,{186,32,28.0,96,84,0,0},{}},
[106198]={80,{11001637,186763,46330.0,150119,150108,4800,2800},{}},
[106199]={80,{703293,35623,11130.0,130532,130593,4800,2800},{}},
[106200]={83,{30765347,218534,33980.0,153761,101596,0,0},{}},
[106201]={83,{44409,10885,5445.0,10091,10063,0,0},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726894,200000,726186,100000,725423,200000}},
[106202]={100,{63231,17957,8125.0,5525,5557,0,0},{}},
[106203]={99,{36389579,87166,17471.0,124174,124270,0,0},{}},
[106204]={99,{36389579,87166,17471.0,124174,124270,0,0},{}},
[106205]={99,{36389579,87166,17471.0,41391,41423,4800,2800},{}},
[106206]={75,{3001982,43712,26322.0,74576,73945,0,0},{720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725938,200000,725177,200000,552100,10000,241826,10000}},
[106207]={72,{70059,20049,4135.0,40043,40043,0,0},{}},
[106208]={72,{70059,20053,11635.0,40043,40043,0,0},{}},
[106209]={72,{150025,7673,4135.0,25008,25008,0,0},{}},
[106210]={101,{404718405,399800,51288.0,1056596,1055236,3000,3000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,725996,200000,725997,200000,721899,100000,727213,200000}},
[106211]={70,{2030331,189762,3925.0,101320,115367,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500}},
[106212]={75,{1000042,300000,4464.0,150010,150064,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,82.0,15.9}},
[106213]={75,{2000085,350058,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,79.7,43.9}},
[106214]={75,{1000042,300000,4464.0,150010,150064,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,81.0,46.8}},
[106215]={75,{1000042,349481,4464.0,149528,149582,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,74.0,46.3}},
[106216]={75,{1000042,350001,4464.0,150010,150064,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,53.0,40.4}},
[106217]={75,{1000042,350001,4464.0,150010,150064,0,0},{},{146,78.7,40.6}},
[106218]={90,{389275,23657,3899.0,89660,88745,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,243231,30000}},
[106219]={73,{19395148,230498,42333.0,200035,180017,4800,2800},{}},
[106220]={90,{389275,23657,3899.0,89660,88745,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,243231,30000}},
[106221]={0,{144,28,28.0,28,28,0,0},{},{146,80.6,28.4}},
[106222]={0,{144,28,28.0,28,28,0,0},{}},
[106223]={0,{144,28,28.0,28,28,0,0},{}},
[106224]={0,{144,28,28.0,28,28,0,0},{}},
[106225]={0,{144,28,28.0,28,28,0,0},{}},
[106226]={0,{144,28,28.0,28,28,0,0},{}},
[106227]={0,{144,28,28.0,28,28,0,0},{}},
[106228]={0,{144,28,28.0,28,28,0,0},{}},
[106229]={0,{144,28,28.0,28,28,0,0},{}},
[106230]={0,{144,28,28.0,28,28,0,0},{}},
[106231]={0,{144,28,28.0,28,28,0,0},{}},
[106232]={0,{144,28,28.0,28,28,0,0},{}},
[106233]={0,{144,28,28.0,28,28,0,0},{}},
[106234]={0,{144,28,28.0,28,28,0,0},{}},
[106235]={0,{144,28,28.0,28,28,0,0},{}},
[106236]={0,{144,28,28.0,28,28,0,0},{}},
[106237]={0,{144,28,28.0,28,28,0,0},{}},
[106238]={0,{144,28,28.0,28,28,0,0},{}},
[106239]={0,{144,28,28.0,28,28,0,0},{}},
[106240]={0,{144,28,28.0,28,28,0,0},{}},
[106241]={0,{144,28,28.0,28,28,0,0},{}},
[106242]={0,{144,28,28.0,28,28,0,0},{}},
[106243]={0,{144,28,28.0,28,28,0,0},{}},
[106244]={0,{144,28,28.0,28,28,0,0},{}},
[106245]={0,{144,28,28.0,28,28,0,0},{}},
[106246]={0,{144,28,28.0,28,28,0,0},{}},
[106247]={0,{144,28,28.0,28,28,0,0},{}},
[106248]={0,{144,28,28.0,28,28,0,0},{}},
[106249]={0,{144,28,28.0,28,28,0,0},{}},
[106250]={0,{144,28,28.0,28,28,0,0},{}},
[106251]={0,{144,28,28.0,28,28,0,0},{}},
[106252]={0,{144,28,28.0,28,28,0,0},{}},
[106253]={0,{144,28,28.0,28,28,0,0},{}},
[106254]={0,{144,28,28.0,28,28,0,0},{}},
[106255]={0,{144,28,28.0,28,28,0,0},{}},
[106256]={101,{135744437,213152,51288.0,1056596,1055236,3000,3000},{}},
[106257]={101,{135744437,175822,51288.0,1056596,1055236,3000,3000},{}},
[106258]={101,{135744437,213152,51288.0,1056596,1055236,3000,3000},{}},
[106259]={0,{142,24,28.0,84,84,0,0},{}},
[106260]={0,{142,24,28.0,84,84,0,0},{}},
[106261]={0,{142,24,28.0,84,84,0,0},{}},
[106262]={0,{144,28,28.0,28,28,0,0},{}},
[106263]={0,{144,28,28.0,28,28,0,0},{}},
[106264]={0,{144,28,28.0,28,28,0,0},{}},
[106265]={0,{144,28,28.0,28,28,0,0},{}},
[106266]={1,{132,17,28.0,59,60,0,0},{}},
[106267]={0,{142,24,28.0,84,84,0,0},{}},
[106268]={101,{8424590,158162,23312.0,243666,243946,0,0},{}},
[106269]={101,{2517119,264414,23312.0,243666,243946,0,0},{}},
[106270]={101,{8424590,264414,23312.0,243666,243946,0,0},{}},
[106271]={103,{1279306,24079,19138.0,6019,6054,0,0},{}},
[106272]={0,{144,28,28.0,28,28,0,0},{}},
[106273]={0,{144,28,28.0,28,28,0,0},{}},
[106274]={0,{144,28,28.0,28,28,0,0},{}},
[106275]={0,{144,28,28.0,28,28,0,0},{}},
[106276]={0,{144,28,28.0,28,28,0,0},{}},
[106277]={0,{144,28,28.0,28,28,0,0},{}},
[106278]={0,{144,28,28.0,28,28,0,0},{}},
[106279]={0,{144,28,28.0,28,28,0,0},{}},
[106280]={0,{144,28,28.0,28,28,0,0},{}},
[106281]={0,{144,28,28.0,28,28,0,0},{}},
[106282]={0,{144,28,28.0,28,28,0,0},{}},
[106283]={101,{135744437,250482,51288.0,664330,663579,2000,2000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726004,200000,721899,100000,725921,200000}},
[106284]={101,{28154850,119828,51288.0,468197,467750,1000,1000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726009,200000,721899,100000,725310,200000}},
[106285]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771765,100},{35,31.4,62.9}},
[106286]={101,{2785641,127805,23312.0,103789,104068,0,0},{}},
[106287]={101,{905991,203698,23312.0,103789,104068,0,0},{}},
[106288]={101,{2785641,203698,23312.0,103789,104068,0,0},{}},
[106289]={100,{66357,18041,8125.0,16720,16673,0,0},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721812,200000,721813,200000,725300,100000,726102,200000}},
[106290]={0,{144,28,28.0,28,28,0,0},{}},
[106291]={91,{441439,26790,2837.0,89114,87863,0,0},{},{30,73.9,30.5}},
[106292]={78,{40003127,220776,65591.0,268527,267971,4140,4140},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726018,200000,726019,200000,725460,100000,725461,50000,726072,200000}},
[106293]={77,{15017283,180117,19695.0,190054,190021,4140,4140},{}},
[106294]={77,{15017283,180117,19695.0,190054,190021,4140,4140},{}},
[106295]={77,{705088,172882,19695.0,190054,190021,4140,4140},{}},
[106296]={75,{12044,2564,1785.0,7768,7821,0,0},{}},
[106297]={78,{91505010,205673,87591.0,271089,303749,7000,2000},{}},
[106298]={0,{144,28,28.0,28,28,0,0},{}},
[106299]={0,{186,32,28.0,96,84,0,0},{726128,5000,720143,60000,720104,100000,552101,10000,241827,10000,725783,70000,725784,70000,726022,200000,726023,200000,725460,100000,725461,50000,726083,200000}},
[106300]={78,{80002475,205197,87591.0,297413,267971,5000,4000},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726020,200000,726021,200000,725460,100000,725461,50000,726078,200000}},
[106301]={75,{415797,70175,19464.0,436371,34101,7000,0},{}},
[106302]={75,{415797,75198,19464.0,34556,431180,0,7000},{}},
[106303]={75,{225674,8371,4464.0,80041,80041,0,0},{}},
[106304]={75,{225674,8371,4464.0,80041,80041,0,0},{}},
[106305]={75,{225674,50969,19464.0,88131,501252,0,0},{}},
[106306]={75,{415797,50969,19464.0,489946,80817,0,0},{}},
[106307]={78,{68719832,256919,54591.0,256972,237920,5000,5000},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726014,200000,726015,200000,725460,100000,725461,50000,726063,200000}},
[106308]={77,{737492,138472,14695.0,147118,149541,0,0},{},{147,29.2,33.7}},
[106309]={70,{16701,5076,3925.0,4711,4711,0,0},{}},
[106310]={78,{300098,22535,19814.0,170025,170007,0,0},{}},
[106311]={75,{19012,14773,19464.0,5357,23357,0,0},{}},
[106312]={67,{651594,41058,13627.0,88014,83188,0,0},{}},
[106313]={70,{855795,207818,3925.0,89039,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,15.0,65.0}},
[106314]={70,{855795,181174,3925.0,67839,54700,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,15.1,64.5}},
[106315]={70,{1011254,145650,3925.0,120543,54700,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,14.7,65.0}},
[106316]={70,{855795,179842,3925.0,67132,53184,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,17.4,44.5}},
[106317]={70,{855795,181174,3925.0,67839,54700,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,52.9,42.1}},
[106318]={70,{855795,190055,3925.0,89039,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,56.3,56.3}},
[106319]={70,{687893,190055,3925.0,51350,34478,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,19.5,65.0}},
[106320]={70,{855795,190055,3925.0,67839,54700,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,19.2,64.8}},
[106321]={70,{855795,190055,3925.0,89039,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,19.2,65.1}},
[106322]={70,{771844,190055,3925.0,89039,79978,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,14.3,67.8}},
[106323]={70,{771844,181174,3925.0,56061,39534,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,14.1,67.5}},
[106324]={70,{435201,56839,3925.0,41928,29423,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,40.7,50.8}},
[106325]={70,{855795,167853,3925.0,56061,39534,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,20.3,67.5}},
[106326]={70,{855795,167853,3925.0,56061,39534,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,20.3,68.1}},
[106327]={70,{855795,154531,3925.0,56061,39534,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,20.3,67.8}},
[106328]={70,{1018247,189762,3925.0,89484,90089,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,54.0,56.7}},
[106329]={70,{851273,118887,48925.0,65483,274181,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500,240094,100000},{142,50.7,43.7}},
[106330]={70,{871234,181174,3925.0,68517,54700,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,15.5,76.9}},
[106331]={70,{852073,165707,58758.0,65483,100433,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,52.9,54.6}},
[106332]={70,{852073,190307,4758.0,67839,54828,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{142,51.9,49.6}},
[106333]={70,{177255,84150,3925.0,42347,18420,0,0},{},{142,26.4,24.0}},
[106334]={70,{271267,101244,3925.0,42347,39534,0,0},{},{142,16.8,74.9}},
[106335]={70,{271267,101244,3925.0,42347,39534,0,0},{}},
[106336]={70,{1018247,189762,3925.0,89484,90089,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500}},
[106337]={67,{651594,41058,13627.0,88014,83188,0,0},{}},
[106338]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,15.0,65.0}},
[106339]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,15.1,64.5}},
[106340]={70,{98605,36618,4425.0,32647,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,14.7,65.0}},
[106341]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,18.0,37.5}},
[106342]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,52.9,42.1}},
[106343]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,56.3,56.3}},
[106344]={70,{83447,35808,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,19.5,65.0}},
[106345]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,19.2,64.8}},
[106346]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,19.2,65.1}},
[106347]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,14.3,67.8}},
[106348]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,14.1,67.5}},
[106349]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,27.4,32.9}},
[106350]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,20.3,67.5}},
[106351]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,20.3,68.1}},
[106352]={70,{83447,38460,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,20.3,67.8}},
[106353]={70,{122782,38380,3925.0,18464,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,54.0,56.7}},
[106354]={70,{83006,37272,8425.0,18373,21529,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500,240094,100000},{143,50.7,43.7}},
[106355]={70,{84952,38460,3925.0,18556,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,15.5,76.9}},
[106356]={70,{83084,46358,10158.0,18373,20370,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,51.7,56.2}},
[106357]={70,{83084,38528,4758.0,18373,20370,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500},{143,52.6,50.6}},
[106358]={70,{84952,38460,3925.0,18556,20323,0,0},{},{143,26.4,24.0}},
[106359]={70,{84952,38460,3925.0,18556,20323,0,0},{},{143,16.4,74.3}},
[106360]={70,{84952,38460,3925.0,18556,20323,0,0},{}},
[106361]={70,{122782,38380,3925.0,18464,20323,0,0},{720011,3000,720142,20000,720103,15000,725537,3500,725541,3500,725538,1500,725542,1500}},
[106362]={67,{74669,35863,3627.0,16845,19310,0,0},{}},
[106363]={71,{144432,14360,1611.0,55170,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771190,100},{22,48.9,30.5}},
[106364]={71,{127571,13689,2441.0,26158,27963,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771191,100},{22,50.0,31.8}},
[106365]={71,{127571,13689,2441.0,26158,27963,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771192,100},{22,42.2,26.7}},
[106366]={71,{117556,14360,1611.0,7913,9277,0,0},{},{144,0,0}},
[106367]={71,{117556,14360,1611.0,7913,9277,0,0},{},{144,0,0}},
[106368]={0,{144,28,28.0,28,28,0,0},{}},
[106369]={71,{127571,13689,2441.0,23741,38281,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771193,100,240940,60000},{22,38.6,44.3}},
[106370]={0,{144,28,28.0,28,28,0,0},{}},
[106371]={70,{108299,16494,1570.0,23314,24604,0,0},{}},
[106372]={70,{120420,14115,1570.0,23314,27109,0,0},{}},
[106373]={1,{117,30,14.0,63,84,0,0},{}},
[106374]={71,{135990,13689,1611.0,26418,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771194,100},{22,57.7,31.6}},
[106375]={71,{135990,13689,1611.0,26418,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771195,100},{22,62.8,35.2}},
[106376]={71,{135990,13689,1611.0,36185,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771196,100},{22,74.6,24.4}},
[106377]={71,{135990,13689,1611.0,26418,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771197,100},{22,62.6,32.8}},
[106378]={71,{135990,13689,1611.0,23976,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771198,100},{22,65.6,42.4}},
[106379]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771199,100,240822,60000,240967,5000},{22,50.9,39.1}},
[106380]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771200,100,240824,60000,240967,5000},{22,59.1,40.6}},
[106381]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771201,100,240818,60000,240819,60000,240967,5000},{22,55.8,44.0}},
[106382]={75,{65439838,205891,42822.0,302432,248364,6000,3500},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726012,200000,726013,200000,725460,100000,725461,50000,726058,200000}},
[106383]={75,{605919,43582,19464.0,168494,151867,4800,2800},{}},
[106384]={70,{1074300,8614,4225.0,32307,33401,0,0},{}},
[106385]={65,{14221421,8846,7563.0,7210,8003,0,0},{},{146,53.5,59.9}},
[106386]={75,{1033694,43582,19464.0,168494,151867,4800,2800},{}},
[106387]={75,{1366407,43582,19464.0,168494,151867,4800,2800},{}},
[106388]={83,{1007049,52617,15445.0,133177,99266,0,0},{}},
[106389]={83,{1007049,52617,15445.0,133177,99266,0,0},{}},
[106390]={91,{398526,24248,3992.0,91880,90796,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,243232,30000}},
[106391]={70,{123976,22387,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771202,100,240940,60000,240967,15000},{22,22.7,55.3}},
[106392]={70,{123976,13059,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771203,100,240754,60000,240967,5000,240940,60000},{22,21.7,53.8}},
[106393]={70,{95632,9949,1570.0,23084,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771204,100,240940,60000,240967,15000},{22,20.1,50.2}},
[106394]={70,{95632,9949,1570.0,23084,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771205,100,240940,60000,240967,15000},{22,21.1,52.5}},
[106395]={70,{123976,22387,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771206,100,240940,60000},{22,22.0,50.9}},
[106396]={70,{114565,13191,1570.0,25439,37132,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771207,100},{22,18.1,51.8}},
[106397]={70,{132541,13322,1570.0,35210,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771208,100,240940,60000},{22,25.6,34.8}},
[106398]={70,{132541,13322,1570.0,25693,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771209,100,240940,60000,240887,60000},{22,27.4,38.0}},
[106399]={70,{132541,13322,1570.0,23314,24604,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771210,100,240940,60000,240887,60000},{22,30.1,37.8}},
[106400]={70,{132541,13322,1570.0,25693,27109,0,0},{}},
[106401]={1,{-544,28,28.0,-562,60,0,0},{}},
[106402]={0,{144,28,28.0,28,28,0,0},{}},
[106403]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771211,100,240940,60000},{22,40.2,45.2}},
[106404]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771212,100,240940,60000},{22,45.7,45.3}},
[106405]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771213,100,240940,60000},{22,44.1,42.9}},
[106406]={71,{127221,13420,1611.0,23741,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771214,100,240940,60000},{22,44.1,46.0}},
[106407]={71,{127571,13689,2441.0,26158,27963,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771215,100},{22,45.7,22.5}},
[106408]={71,{127571,13689,2441.0,26158,27963,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000}},
[106409]={71,{127571,13689,2441.0,26158,27963,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771216,100},{22,45.8,21.5}},
[106410]={0,{186,32,28.0,96,84,0,0},{},{144,0,0}},
[106411]={71,{717882,36521,4029.0,40664,38103,0,0},{720011,5000,720142,10000,725777,5000,725778,5000,720103,10000,725779,1000,725780,1000,771217,100,240940,60000},{22,42.9,37.3}},
[106412]={71,{717882,25950,4029.0,40664,38103,0,0},{720011,5000,720142,10000,725777,5000,725778,5000,720103,10000,725779,1000,725780,1000,771218,100,240940,60000},{22,38.8,37.2}},
[106413]={70,{307976,6312,8636.0,4758,4711,0,0},{}},
[106414]={78,{132935884,205554,87591.0,188541,303749,4800,3000},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726024,200000,726025,200000,725460,100000,725461,50000,726088,200000}},
[106415]={70,{154704,22553,1570.0,24591,26207,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771219,100},{22,26.7,50.0}},
[106416]={70,{125916,13322,1570.0,25439,27109,0,0},{}},
[106417]={70,{154704,14908,1570.0,44284,39637,0,0},{}},
[106418]={70,{118194,10338,1570.0,24921,30116,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771220,100,240940,60000},{22,26.7,46.4}},
[106419]={70,{135313,13059,1570.0,34861,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771221,100,240940,60000},{22,26.1,53.9}},
[106420]={70,{125916,13322,1570.0,30150,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771222,100},{22,25.3,49.4}},
[106421]={70,{125916,13322,1570.0,30150,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771223,100},{22,29.4,49.5}},
[106422]={73,{1287380,192526,46282.0,83649,89315,0,0},{}},
[106423]={0,{144,28,28.0,28,28,0,0},{}},
[106424]={0,{144,28,28.0,28,28,0,0},{}},
[106425]={71,{123553,14503,1611.0,23976,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771224,100},{22,62.7,23.7}},
[106426]={71,{204389,14503,1611.0,23976,27833,0,0},{},{22,57.8,30.7}},
[106427]={72,{917912,186925,4135.0,72258,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106428]={72,{917912,186925,4135.0,72258,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106429]={72,{873862,186342,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106430]={72,{873862,186342,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106431]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106432]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106433]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106434]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106435]={72,{873862,186342,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106436]={72,{873862,186342,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106437]={75,{139800,11574,1785.0,29340,8259,0,0},{}},
[106438]={0,{144,28,28.0,28,28,0,0},{}},
[106439]={0,{144,28,28.0,28,28,0,0},{}},
[106440]={0,{144,28,28.0,28,28,0,0},{}},
[106441]={0,{144,28,28.0,28,28,0,0},{}},
[106442]={75,{2759452,22008,26322.0,72757,72629,4000,2000},{720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725936,200000,725176,200000,552099,10000,241825,10000}},
[106443]={0,{142,24,28.0,84,84,0,0},{}},
[106444]={83,{30752511,218534,33980.0,153761,101596,5000,3000},{}},
[106445]={72,{912430,7671,5010.0,7011,7130,3000,0},{}},
[106446]={72,{901746,186102,4135.0,71105,55333,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106447]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106448]={72,{901746,186102,4135.0,71105,55333,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{144,0,0}},
[106449]={78,{189605628,205554,87591.0,188541,303749,0,0},{}},
[106450]={83,{35031419,186944,33980.0,153761,121216,3700,1800},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726896,200000,726186,100000,725427,200000}},
[106451]={83,{11497425,128990,33980.0,173365,209526,0,0},{}},
[106452]={71,{204389,14503,1611.0,23976,27833,0,0},{},{22,62.4,26.7}},
[106453]={71,{204389,14503,1611.0,23976,27833,0,0},{},{22,56.1,25.4}},
[106454]={0,{144,28,28.0,28,28,0,0},{}},
[106455]={72,{153618,21265,1654.0,39717,45783,0,0},{},{22,32.4,56.7}},
[106456]={80,{650027,14411,5059.0,131888,138182,0,0},{}},
[106457]={0,{144,28,28.0,28,28,0,0},{}},
[106458]={0,{144,28,28.0,28,28,0,0},{}},
[106459]={72,{218423,14826,1654.0,24533,28572,0,0},{}},
[106460]={71,{97410,10382,1611.0,21429,24752,0,0},{}},
[106461]={70,{123976,13059,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771225,100,240967,20000},{22,46.3,78.5}},
[106462]={70,{123976,13059,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771226,100,240967,60000},{22,44.3,62.3}},
[106463]={70,{123976,13059,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771227,100},{22,47.0,78.1}},
[106464]={70,{123976,13059,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771228,100,240967,60000},{22,39.5,63.9}},
[106465]={70,{114565,13191,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771229,100},{22,25.6,69.1}},
[106466]={70,{114565,13191,1570.0,34861,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771230,100},{22,25.5,62.6}},
[106467]={70,{124319,13322,2379.0,25439,27237,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771231,100},{22,43.7,58.1}},
[106468]={1,{-517,-1976,28.0,-29916,84,0,0},{}},
[106469]={0,{167,22,28.0,67,59,0,0},{}},
[106470]={0,{186,32,28.0,96,84,0,0},{}},
[106471]={0,{186,32,28.0,96,84,0,0},{240857,100000}},
[106472]={0,{144,28,28.0,28,28,0,0},{}},
[106473]={72,{139508,14064,1654.0,27159,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,770872,100},{23,12.8,42.5}},
[106474]={70,{5668,1554,1570.0,4711,4711,0,0},{},{22,47.8,59.0}},
[106475]={70,{5668,1554,1570.0,4711,4711,0,0},{},{22,46.8,58.0}},
[106476]={70,{5668,1554,1570.0,4711,4711,0,0},{}},
[106477]={1,{-85,-976,28.0,-2916,84,0,0},{}},
[106478]={0,{144,28,28.0,28,28,0,0},{}},
[106479]={71,{144432,23225,1611.0,23741,27833,0,0},{}},
[106480]={65,{1274015,85845,213731.0,86561,87202,0,0},{}},
[106481]={70,{132541,13322,1570.0,23314,27109,0,0},{}},
[106482]={70,{162843,22839,1570.0,23314,27109,0,0},{}},
[106483]={72,{611635,15097,14597.0,11340,11385,0,0},{}},
[106484]={55,{20584,4254,3149.0,3893,3946,0,0},{}},
[106485]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202286,25000,727040,25000},{224,26.2,62.3}},
[106486]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202286,25000,727040,25000},{224,36.4,30.6}},
[106487]={93,{469341,28788,2964.0,104303,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202286,25000,727040,25000},{224,51.3,35.0}},
[106488]={71,{127221,13420,1611.0,26158,27833,0,0},{}},
[106489]={25,{2861,1241,451.0,1265,1609,0,0},{}},
[106490]={20,{1893,247,269.0,872,1009,0,0},{}},
[106491]={55,{16228,3275,1219.0,5606,2072,0,0},{}},
[106492]={50,{6720,1111,564.0,3197,6083,0,0},{}},
[106493]={20,{5408,885,672.0,577,888,0,0},{}},
[106494]={0,{186,32,28.0,96,84,0,0},{}},
[106495]={103,{835901,67805,14264.0,148736,149258,0,0},{}},
[106496]={103,{835901,67805,14264.0,148736,149258,0,0},{}},
[106497]={103,{1279306,24079,19138.0,6019,6054,0,0},{}},
[106498]={72,{118918,14899,2505.0,15729,18132,0,0},{},{22,24.4,49.3}},
[106499]={72,{118918,14899,2505.0,15729,18132,0,0},{},{22,25.3,46.7}},
[106500]={72,{118918,14899,2505.0,15729,18132,0,0},{}},
[106501]={0,{144,28,28.0,28,28,0,0},{}},
[106502]={0,{144,28,28.0,28,28,0,0},{}},
[106503]={0,{144,28,28.0,28,28,0,0},{}},
[106504]={0,{144,28,28.0,28,28,0,0},{}},
[106505]={0,{144,28,28.0,28,28,0,0},{}},
[106506]={0,{144,28,28.0,28,28,0,0},{}},
[106507]={72,{130888,14064,2505.0,26894,28705,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771270,100,241203,60000},{23,52.4,26.6}},
[106508]={25,{1203,421,133.0,1292,707,0,0},{}},
[106509]={1,{132,17,28.0,59,60,0,0},{}},
[106510]={71,{135990,13689,1611.0,26418,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771232,100,240940,60000},{22,33.8,45.8}},
[106511]={1,{3013,271,28.0,187,604,0,0},{}},
[106512]={71,{135990,12875,1611.0,21535,25265,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000}},
[106513]={70,{89850,11893,1570.0,22566,27611,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000}},
[106514]={71,{86501,11824,1611.0,21323,25265,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000}},
[106515]={72,{130888,14064,2505.0,26894,28705,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771271,100,240980,60000,241228,60000},{23,47.7,27.2}},
[106516]={1,{-12,17,28.0,59,276,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000}},
[106517]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[106518]={0,{142,24,28.0,84,84,0,0},{}},
[106519]={37,{3917,626,877.0,1852,1882,0,0},{}},
[106520]={0,{142,24,28.0,84,84,0,0},{}},
[106521]={0,{144,28,28.0,84,84,0,0},{}},
[106522]={37,{3884,621,577.0,1865,1869,0,0},{}},
[106523]={37,{3917,626,877.0,1852,1882,0,0},{}},
[106524]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[106525]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[106526]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[106527]={103,{1282649,24183,19138.0,18216,18164,3000,3000},{}},
[106528]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106529]={37,{3917,626,877.0,1852,1882,0,0},{}},
[106530]={37,{3917,626,877.0,1852,1882,0,0},{}},
[106531]={71,{278813,34507,1611.0,26449,19548,0,0},{}},
[106532]={65,{1274015,85845,213731.0,86561,87202,0,0},{}},
[106533]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771272,100},{23,43.2,28.9}},
[106534]={91,{398526,24248,3992.0,91880,90796,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,243232,30000}},
[106535]={0,{146,32,48.0,84,90,0,0},{}},
[106536]={0,{146,32,48.0,84,90,0,0},{}},
[106537]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[106538]={0,{186,32,28.0,96,84,0,0},{720011,5000}},
[106539]={0,{29079,124,192.0,84,90,0,0},{}},
[106540]={0,{144,28,28.0,28,28,0,0},{}},
[106541]={83,{11497425,135520,50480.0,173365,209526,0,0},{}},
[106542]={0,{144,28,28.0,28,28,0,0},{}},
[106543]={0,{144,28,28.0,28,28,0,0},{}},
[106544]={0,{144,28,28.0,28,28,0,0},{},{2,28.5,71.0}},
[106545]={65,{27968,6067,3437.0,5627,5610,0,0},{725957,200000}},
[106546]={65,{27968,6067,3437.0,5627,5610,0,0},{725958,200000,725649,200000}},
[106547]={0,{144,28,28.0,28,28,0,0},{}},
[106548]={1,{144,28,28.0,84,84,0,0},{}},
[106549]={70,{5238,1570,1570.0,4711,4711,0,0},{}},
[106550]={78,{68623451,319516,43591.0,586277,510973,0,0},{725785,10000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725965,200000,725966,200000,726102,200000,725927,200000,726039,100000,201931,100000}},
[106551]={75,{2000085,400001,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,74.8,57.2}},
[106552]={93,{417586,25467,4184.0,96462,95029,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,243233,30000}},
[106553]={75,{3001120,450054,9822.0,300021,300075,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,69.3,22.7}},
[106554]={93,{417586,25467,4184.0,96462,95029,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,243233,30000}},
[106555]={78,{38437735,153595,43591.0,586277,510973,0,0},{}},
[106556]={2,{179,34,38.0,115,115,0,0},{720011,5000,720140,10000,723910,2000,720091,10000,723978,10000,771246,100}},
[106557]={1,{142,24,28.0,84,84,0,0},{720011,5000,720140,10000,723910,2000,720091,10000,723978,10000,771247,100}},
[106558]={4,{257,56,60.0,180,180,0,0},{720011,5000,720140,10000,723911,2000,720091,10000,723978,10000,771248,100}},
[106559]={4,{257,56,60.0,180,180,0,0},{720011,5000,720140,10000,723911,2000,720091,10000,723978,10000,771249,100},{31,52.3,74.4}},
[106560]={5,{302,75,113.0,214,221,0,0},{720011,5000,720140,10000,723911,2000,720092,10000,723978,10000,771250,100},{31,52.6,77.7}},
[106561]={3,{222,53,80.0,147,154,0,0},{720011,5000,720140,10000,723911,2000,720091,10000,723978,10000,771251,100}},
[106562]={3,{218,45,49.0,147,147,0,0},{720011,5000,720140,10000,723910,2000,720091,10000,723978,10000,771252,100},{31,21.3,63.0}},
[106563]={9,{471,123,184.0,355,362,0,0},{720011,5000,720140,10000,723912,2000,720092,10000,723978,10000,771253,100},{31,65.3,34.3}},
[106564]={8,{427,111,166.0,319,326,0,0},{720011,5000,720140,10000,723912,2000,720092,10000,723978,10000,771254,100}},
[106565]={7,{380,90,94.0,283,283,0,0},{720011,5000,720140,10000,723912,2000,720092,10000,723978,10000,771255,100},{31,54.6,72.4}},
[106566]={9,{471,123,184.0,355,362,0,0},{720011,5000,720140,10000,723912,2000,720092,10000,723978,10000,771256,100},{31,59.0,50.1}},
[106567]={10,{515,135,203.0,393,400,0,0},{720011,5000,720140,10000,723912,2000,720092,10000,723978,10000,771257,100},{31,69.7,19.9}},
[106568]={92,{451885,27454,2900.0,91314,89893,0,0},{}},
[106569]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771613,100},{30,59.8,52.2}},
[106570]={0,{144,28,28.0,28,28,0,0},{}},
[106571]={78,{1110697,10883,4814.0,11023,12305,0,0},{}},
[106572]={78,{68623451,318331,43591.0,441845,446503,4800,3000},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725963,200000,725964,200000,726102,200000,725423,200000,726039,100000}},
[106573]={70,{114565,16331,1570.0,11620,9036,0,0},{}},
[106574]={70,{114565,16331,1570.0,11620,9036,0,0},{}},
[106575]={70,{114565,16331,1570.0,11620,9036,0,0},{}},
[106576]={70,{114565,16331,1570.0,11620,9036,0,0},{}},
[106577]={72,{16077,4418,1564.0,1715,1346,0,0},{}},
[106578]={0,{144,28,28.0,28,28,0,0},{}},
[106579]={0,{144,28,28.0,28,28,0,0},{}},
[106580]={0,{144,28,28.0,28,28,0,0},{},{359,0,0}},
[106581]={0,{144,28,28.0,28,28,0,0},{},{6,59.7,72.9}},
[106582]={70,{16271,5103,3925.0,4711,4711,0,0},{}},
[106583]={15,{2664,547,491.0,508,507,0,0},{}},
[106584]={10,{515,133,131.0,400,393,0,0},{}},
[106585]={12,{606,158,156.0,476,469,0,0},{}},
[106586]={13,{652,172,169.0,516,508,0,0},{}},
[106587]={70,{31964,7183,3925.0,6661,6642,0,0},{725752,200000,241005,50000,241016,30000}},
[106588]={70,{31964,7183,3925.0,6661,6642,0,0},{725752,200000,241005,50000,241017,30000}},
[106589]={0,{144,28,28.0,28,28,0,0},{}},
[106590]={0,{144,28,28.0,28,28,0,0},{}},
[106591]={0,{144,28,28.0,28,28,0,0},{}},
[106592]={75,{2812858,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,39.9,72.1}},
[106593]={75,{2442428,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,46.8,29.2}},
[106594]={75,{2442428,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,83.6,43.8}},
[106595]={1,{142,24,28.0,84,84,0,0},{}},
[106596]={80,{25037802,31342,46330.0,150081,150108,4800,2400},{726128,5000,720143,60000,726766,100000,726105,70000,726106,70000,726775,200000,726778,50000,725421,200000}},
[106597]={0,{144,28,28.0,28,28,0,0},{}},
[106598]={80,{1000308,24265,21059.0,150081,150108,0,0},{}},
[106599]={0,{144,28,28.0,28,28,0,0},{}},
[106600]={0,{144,28,28.0,28,28,0,0},{},{149,41.0,13.7}},
[106601]={30,{15547,426,1094.0,3413,5054,0,0},{}},
[106602]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[106603]={0,{144,28,28.0,28,28,0,0},{720011,5000}},
[106604]={78,{76276860,205197,87591.0,256972,303749,5000,6000},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726016,200000,726017,200000,725460,100000,725461,50000,726067,200000}},
[106605]={75,{796041,31334,19464.0,114919,104174,0,0},{}},
[106606]={75,{960709,21465,19464.0,88131,80817,0,0},{}},
[106607]={0,{144,28,28.0,28,28,0,0},{}},
[106608]={70,{5238,1570,1570.0,4711,4711,0,0},{}},
[106609]={80,{30014214,202030,46330.0,145056,145208,0,0},{726128,5000,720143,60000,726766,100000,726105,70000,726106,70000,726773,200000,726778,50000,725415,200000}},
[106610]={0,{144,28,28.0,28,28,0,0},{}},
[106611]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771131,100},{23,32.7,57.8}},
[106612]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771132,100},{23,33.3,64.0}},
[106613]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771133,100,241189,60000},{23,30.9,57.6}},
[106614]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720143,10000,720104,10000,725781,2000,725782,2000,771134,100},{23,24.9,61.8}},
[106615]={72,{218423,15657,1654.0,36999,33834,0,0},{},{23,29.7,56.4}},
[106616]={72,{218423,15657,1654.0,36999,33834,0,0},{},{23,29.2,56.3}},
[106617]={72,{120607,13926,1654.0,26894,28572,0,0},{720011,5000,720143,10000,720104,10000,725781,2000,725782,2000,771258,100},{23,33.3,63.2}},
[106618]={0,{144,28,28.0,28,28,0,0},{}},
[106619]={0,{144,28,28.0,28,28,0,0},{}},
[106620]={73,{982447,89389,4242.0,73773,40110,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,725783,1000,725784,1000,771259,100},{23,38.7,67.1}},
[106621]={30,{152372,437,437.0,437,442,0,0},{}},
[106622]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106623]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106624]={72,{901746,186925,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106625]={78,{95035952,319516,43591.0,586277,510973,4800,3000},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725959,200000,725960,200000,725929,200000,725429,200000,726039,100000}},
[106626]={0,{144,28,28.0,28,28,0,0},{}},
[106627]={80,{21006,6577,5059.0,6071,6071,0,0},{}},
[106628]={1,{473202,22,28.0,-21231,60,0,0},{}},
[106629]={0,{144,28,28.0,28,28,0,0},{}},
[106630]={72,{18008,5404,4135.0,5010,4962,0,0},{}},
[106631]={0,{186,32,28.0,96,84,0,0},{},{149,21.0,59.6}},
[106632]={3,{225,51,49.0,154,147,0,0},{}},
[106633]={72,{917912,186925,4135.0,72258,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106634]={72,{917912,186925,4135.0,72258,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106635]={78,{95035952,319516,43591.0,586277,510973,4800,2800},{725785,5000,720143,60000,720103,100000,725537,85000,725541,85000,725538,70000,725542,70000,725961,200000,725962,200000,726102,200000,725175,200000,726039,100000}},
[106636]={78,{38437735,319516,43591.0,586277,510973,0,0},{}},
[106637]={0,{144,28,28.0,28,28,0,0},{}},
[106638]={70,{5668,1554,1570.0,4711,4711,0,0},{}},
[106639]={83,{1399453,192075,20445.0,98216,97767,0,0},{}},
[106640]={83,{123759105,213615,88980.0,369406,312006,3000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726888,200000,726889,200000,726186,100000,726063,200000}},
[106641]={0,{144,28,28.0,28,28,0,0},{}},
[106642]={75,{2812858,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,69.3,35.6}},
[106643]={75,{2442428,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,69.1,36.0}},
[106644]={75,{2812858,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,51.7,37.1}},
[106645]={75,{2812858,136103,4464.0,329220,329273,0,0},{720011,300,720142,2000,720103,1500,725541,350,725537,350,725542,150,725538,150},{194,42.0,71.8}},
[106646]={0,{144,28,28.0,28,28,0,0},{}},
[106647]={75,{34635,136103,4464.0,329220,329273,0,0},{}},
[106648]={75,{1931823,8437,4464.0,196228,195335,0,0},{}},
[106649]={75,{1931823,8437,4464.0,196228,195335,0,0},{}},
[106650]={0,{144,28,28.0,28,28,0,0},{}},
[106651]={0,{144,28,28.0,28,28,0,0},{}},
[106652]={0,{150,30,28.0,90,84,0,0},{}},
[106653]={75,{225674,92442,29464.0,55986,51621,0,0},{}},
[106654]={78,{189366314,205435,87591.0,187645,303749,0,0},{}},
[106655]={75,{796041,175537,29464.0,173851,299124,0,0},{}},
[106656]={78,{41000654,205197,87591.0,150093,150264,5000,4000},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726030,200000,725460,50000,725461,25000,726055,200000}},
[106657]={75,{180045,28845,9464.0,200050,15415,7000,0},{}},
[106658]={75,{180045,40619,9464.0,15697,220027,0,7000},{}},
[106659]={10,{511,126,131.0,393,393,0,0},{}},
[106660]={10,{511,126,131.0,393,393,0,0},{}},
[106661]={10,{511,126,131.0,393,393,0,0},{}},
[106662]={10,{511,126,131.0,393,393,0,0},{}},
[106663]={10,{511,126,131.0,393,393,0,0},{}},
[106664]={10,{578,135,131.0,407,393,0,0},{}},
[106665]={13,{3090,522,584.0,603,611,0,0},{}},
[106666]={11,{851,219,252.0,451,458,0,0},{720011,5000,722653,20000,723978,50000,720091,50000}},
[106667]={11,{763,134,163.0,403,402,0,0},{720011,5000,722653,20000,723978,50000,720091,50000,241053,30000}},
[106668]={9,{608,95,118.0,352,352,0,0},{720011,5000,723504,20000,723978,50000,720091,50000,241053,30000}},
[106669]={10,{799,108,203.0,408,412,0,0},{720011,5000,723504,20000,723978,50000,720091,50000},{212,50.7,32.3}},
[106670]={10,{619,108,203.0,353,360,0,0},{720011,5000,722653,20000,723978,50000,720091,50000},{212,60.9,79.6}},
[106671]={10,{619,108,203.0,911,932,0,0},{720011,5000,722925,20000,723978,50000,720091,50000},{212,52.5,56.8}},
[106672]={90,{9297,2599,3899.0,7729,7764,0,0},{}},
[106673]={75,{173068,11407,1785.0,34556,37322,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771327,100},{24,22.1,84.0}},
[106674]={7,{558,99,148.0,161,258,0,0},{}},
[106675]={10,{578,135,131.0,407,393,0,0},{}},
[106676]={72,{218423,15657,1654.0,36999,33063,0,0},{},{23,29.3,55.9}},
[106677]={74,{136319,14765,1741.0,28552,30100,0,0},{},{23,50.7,51.7}},
[106678]={74,{137350,14550,1741.0,28413,30100,0,0},{}},
[106679]={71,{126281,13622,1611.0,26288,27833,0,0},{},{23,52.6,49.0}},
[106680]={74,{137350,14550,1741.0,28413,30100,0,0},{}},
[106681]={74,{126893,14694,1741.0,28413,30100,0,0},{}},
[106682]={74,{126893,14694,1741.0,28413,30100,0,0},{}},
[106683]={74,{126893,14694,1741.0,28413,30100,0,0},{}},
[106684]={0,{144,28,28.0,28,28,0,0},{}},
[106685]={0,{144,28,28.0,28,28,0,0},{}},
[106686]={0,{144,28,28.0,28,28,0,0},{}},
[106687]={0,{144,28,28.0,28,28,0,0},{}},
[106688]={0,{144,28,28.0,28,28,0,0},{}},
[106689]={0,{146,32,48.0,84,90,0,0},{}},
[106690]={0,{144,28,28.0,28,28,0,0},{},{194,52.3,16.1}},
[106691]={50,{309591,1088,903.0,3259,3351,0,0},{206045,10000,720011,300,720142,2000,720100,15000,724180,350,724185,350,724269,150}},
[106692]={20,{1448,260,269.0,743,751,0,0},{206045,10000,720011,300,720140,2000,720094,15000,724177,350,724182,350}},
[106693]={30,{9036,1440,1129.0,1402,1380,0,0},{206045,10000,720011,300,720141,2000,720096,15000,724178,350,724183,350}},
[106694]={40,{73154,2347,1627.0,2201,2161,0,0},{206045,10000,720011,300,720141,2000,720098,15000,724179,350,724184,350}},
[106695]={75,{192390,22018,1785.0,34556,37322,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771287,100},{24,26.0,73.8}},
[106696]={60,{208966,9938,2996.0,4673,11783,0,0},{241124,100000,206045,10000,720011,300,720142,2000,720102,15000,725253,350,725252,350,725254,150,725251,150}},
[106697]={65,{12724,-206,1375.0,20421,1870,0,0},{}},
[106698]={75,{1931823,37533,4464.0,330816,329273,0,0},{}},
[106699]={75,{1931823,37533,4464.0,223146,222123,0,0},{},{194,55.9,32.4}},
[106700]={0,{144,28,28.0,28,28,0,0},{}},
[106701]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106702]={72,{1094586,7673,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106703]={72,{1094586,12998,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106704]={72,{1094586,7673,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106705]={72,{1094586,12998,4135.0,71552,56265,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106706]={75,{2506999,50296,42822.0,70052,70129,4000,2000},{}},
[106707]={75,{2506999,30131,42822.0,70052,70129,4000,2000},{}},
[106708]={65,{27968,6067,3437.0,5627,5610,0,0},{725785,5000,720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725937,200000,725177,200000}},
[106709]={75,{168774,20249,675.0,32725,17845,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771288,100,242059,60000},{24,20.4,77.6}},
[106710]={78,{4478805,177298,43591.0,181868,186787,4000,2000},{}},
[106711]={78,{5233448,224704,43591.0,210754,197176,4000,2000},{}},
[106712]={0,{144,28,28.0,28,28,0,0},{}},
[106713]={0,{144,28,28.0,28,28,0,0},{}},
[106714]={103,{591300,30890,8479.0,130966,130757,0,0},{}},
[106715]={103,{591300,30890,8479.0,130966,130757,0,0},{}},
[106716]={75,{3090680,8415,4464.0,329220,329273,0,0},{}},
[106717]={0,{144,28,28.0,28,28,0,0},{}},
[106718]={1,{186,32,28.0,96,84,0,0},{}},
[106719]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771275,100},{23,67.6,58.2}},
[106720]={72,{142468,14198,1654.0,27886,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771276,100,241271,40000},{23,58.9,68.3}},
[106721]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771277,100,241271,60000},{23,67.1,59.5}},
[106722]={74,{136319,14765,1741.0,28552,30100,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771278,100}},
[106723]={72,{129561,13995,1654.0,27026,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771279,100}},
[106724]={10,{484,131,131.0,131,131,0,0},{}},
[106725]={10,{484,131,131.0,131,131,0,0},{}},
[106726]={75,{140863,14944,1785.0,29198,30890,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771280,100}},
[106727]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771281,100,241271,20000},{23,59.1,69.6}},
[106728]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771282,100},{23,59.2,50.9}},
[106729]={10,{578,135,131.0,407,393,0,0},{}},
[106730]={1,{-12,17,28.0,59,276,0,0},{}},
[106731]={0,{142,24,28.0,84,84,0,0},{}},
[106732]={0,{206,98,70.0,96,84,0,0},{}},
[106733]={0,{144,28,28.0,28,28,0,0},{}},
[106734]={75,{3626372,52054,40072.0,80095,80392,4700,2700},{}},
[106735]={75,{3626372,52054,40072.0,80095,80392,4700,2700},{720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725940,200000,725304,200000}},
[106736]={72,{183463,7673,4135.0,56666,56715,0,0},{}},
[106737]={73,{188278,36134,11742.0,58192,55519,0,0},{}},
[106738]={73,{215512,36134,11742.0,60738,60451,0,0},{}},
[106739]={0,{144,28,28.0,28,28,0,0},{}},
[106740]={75,{3110081,46292,26322.0,78167,75787,4700,2700},{720143,60000,720103,100000,725777,85000,725778,85000,725779,70000,725780,70000,725939,200000,725303,200000}},
[106741]={73,{156063,34892,11742.0,58192,57237,0,0},{}},
[106742]={73,{208847,34892,11742.0,42919,57237,0,0},{}},
[106743]={73,{32901,7887,4242.0,58192,58243,0,0},{}},
[106744]={10,{1600,347,327.0,325,318,0,0},{720140,5000,722653,200000,722925,200000,723504,200000,722382,200000,720091,200000,723978,200000,721901,3000}},
[106745]={72,{85208,40015,4135.0,19451,21034,0,0},{},{145,0,0}},
[106746]={72,{934120,9803,4135.0,7115,14817,0,0},{}},
[106747]={72,{91304,40181,4135.0,19642,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106748]={72,{91304,40181,4135.0,19642,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106749]={72,{86923,40015,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106750]={72,{86923,53110,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106751]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106752]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106753]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106754]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106755]={72,{86923,40015,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106756]={70,{82494,30471,3925.0,18373,20323,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106757]={72,{89696,39560,4135.0,19004,20102,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106758]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106759]={72,{89696,39560,4135.0,19004,20102,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500},{145,0,0}},
[106760]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106761]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106762]={72,{89696,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106763]={72,{91304,40181,4135.0,19642,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106764]={72,{91304,40181,4135.0,19642,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106765]={72,{121542,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106766]={72,{121542,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106767]={72,{121542,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106768]={72,{121542,40181,4135.0,19451,21034,0,0},{720011,3000,720142,20000,720103,15000,725777,3500,725778,3500,725779,1500,725780,1500}},
[106769]={75,{301874,20646,1785.0,51119,51766,0,0},{},{24,27.9,72.2}},
[106770]={75,{254617,18005,1285.0,55275,40428,0,0},{},{24,32.8,82.8}},
[106771]={0,{150,30,28.0,90,84,0,0},{}},
[106772]={74,{126893,14694,1741.0,28413,30100,0,0},{},{23,52.1,52.6}},
[106773]={75,{140863,14944,1785.0,29198,30890,0,0},{}},
[106774]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771273,100},{23,52.1,49.4}},
[106775]={74,{137350,14550,1741.0,28413,30100,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771274,100},{23,52.2,49.9}},
[106776]={74,{136319,14765,1741.0,28552,30100,0,0},{}},
[106777]={74,{136319,14765,1741.0,28552,28465,0,0},{}},
[106778]={74,{136319,14765,1741.0,28552,28465,0,0},{}},
[106779]={74,{136319,14765,1741.0,28552,30100,0,0},{}},
[106780]={74,{136319,14765,1741.0,28552,30100,0,0},{}},
[106781]={74,{136319,14765,1741.0,28552,30100,0,0},{}},
[106782]={1,{157,35,14.0,75,84,0,0},{}},
[106783]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106784]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106785]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106786]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106787]={0,{144,28,28.0,28,28,0,0},{}},
[106788]={0,{144,28,28.0,28,28,0,0},{}},
[106789]={0,{144,28,28.0,28,28,0,0},{}},
[106790]={0,{144,28,28.0,28,28,0,0},{}},
[106791]={93,{234779492,395847,48206.0,932368,831949,1600,900},{}},
[106792]={72,{4172597,84279,16540.0,24932,31572,0,0},{}},
[106793]={72,{120607,13926,1654.0,8964,9524,0,0},{},{23,29.9,20.2}},
[106794]={0,{144,28,28.0,28,28,0,0},{}},
[106795]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771263,100,241288,60000,241296,60000},{23,43.0,27.3}},
[106796]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771264,100,241286,60000,241287,60000},{23,40.1,25.8}},
[106797]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771265,100,241286,60000,241287,60000},{23,35.1,52.1}},
[106798]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771266,100,241291,60000},{23,37.4,33.5}},
[106799]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771267,100,241290,60000},{23,34.1,49.0}},
[106800]={72,{120607,14505,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771268,100},{23,25.3,39.5}},
[106801]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771269,100,241285,60000},{23,43.3,31.2}},
[106802]={70,{6060,1586,1570.0,4758,4711,0,0},{}},
[106803]={71,{-23096,1619,1611.0,4859,4835,0,0},{}},
[106804]={0,{144,28,28.0,28,28,0,0},{}},
[106805]={0,{144,28,28.0,28,28,0,0},{}},
[106806]={0,{144,28,28.0,28,28,0,0},{}},
[106807]={0,{144,28,28.0,28,28,0,0},{}},
[106808]={0,{144,28,28.0,28,28,0,0},{}},
[106809]={0,{186,32,28.0,96,84,0,0},{}},
[106810]={0,{186,32,28.0,96,84,0,0},{},{23,35.6,64.5}},
[106811]={77,{344585,42460,4695.0,27855,27124,0,0},{},{24,39.4,41.8}},
[106812]={80,{11001637,186763,46330.0,150119,150108,4800,2800},{}},
[106813]={80,{248647,4453,2023.0,9315,16756,0,0},{}},
[106814]={80,{30008075,189308,46330.0,160038,160130,0,2400},{726128,5000,720143,60000,726766,100000,726105,70000,726106,70000,726777,200000,726778,50000,725427,200000}},
[106815]={80,{7787,2042,2023.0,6128,6071,0,0},{}},
[106816]={80,{10019880,73550,46330.0,93011,93093,0,2400},{720143,60000,726766,100000,726105,70000,726106,70000,726772,200000,726778,25000,725305,200000}},
[106817]={80,{396669,8095,11130.0,6071,6071,0,0},{}},
[106818]={200,{164819,71738,26668.0,71738,72005,0,0},{}},
[106819]={0,{129,19,28.0,19,19,0,0},{}},
[106820]={200,{164819,71738,26668.0,71738,72005,0,0},{}},
[106821]={0,{144,28,28.0,28,28,0,0},{}},
[106822]={0,{144,28,28.0,28,28,0,0},{}},
[106823]={1,{144,28,28.0,28,28,0,0},{}},
[106824]={0,{144,28,28.0,28,28,0,0},{}},
[106825]={0,{129,19,28.0,19,19,0,0},{}},
[106826]={0,{129,19,28.0,19,19,0,0},{}},
[106827]={80,{39281,61810,20059.0,9106,9167,0,0},{}},
[106828]={74,{136319,14765,1741.0,28552,30100,0,0},{241329,40000}},
[106829]={0,{186,32,28.0,96,84,0,0},{}},
[106830]={0,{144,28,28.0,28,28,0,0},{}},
[106831]={1,{144,28,28.0,28,28,0,0},{}},
[106832]={1,{144,28,28.0,28,28,0,0},{}},
[106833]={83,{107772853,213880,88980.0,369406,275471,3000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726890,200000,726891,200000,726186,100000,726066,200000}},
[106834]={83,{1399453,163883,17945.0,98216,70527,0,0},{}},
[106835]={0,{144,28,28.0,28,28,0,0},{}},
[106836]={0,{144,28,28.0,28,28,0,0},{}},
[106837]={0,{144,28,28.0,28,28,0,0},{}},
[106838]={0,{144,28,28.0,28,28,0,0},{}},
[106839]={0,{144,28,28.0,28,28,0,0},{}},
[106840]={0,{144,28,28.0,28,28,0,0},{}},
[106841]={83,{107590797,213615,88980.0,206038,275471,0,0},{}},
[106842]={83,{743911,93106,17945.0,98216,56907,2800,0},{}},
[106843]={83,{1444173,164327,12945.0,98216,56907,0,0},{}},
[106844]={83,{1437874,164518,21595.0,98216,70665,0,0},{}},
[106845]={83,{1399453,163883,12945.0,98216,70527,0,0},{}},
[106846]={75,{3001120,450054,9822.0,300021,300075,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{146,64.8,43.2}},
[106847]={80,{397721,8133,11130.0,6128,6071,0,0},{},{152,50.2,13.5}},
[106848]={0,{186,32,28.0,96,84,0,0},{}},
[106849]={77,{194346,2787,1878.0,8362,8960,0,0},{},{24,29.7,39.1}},
[106850]={77,{336572,50870,4695.0,25307,27124,0,0},{},{24,35.9,35.0}},
[106851]={77,{336572,34050,4695.0,25307,27124,0,0},{},{24,37.2,32.3}},
[106852]={0,{144,28,28.0,28,28,0,0},{}},
[106853]={83,{26428882,218107,44980.0,153761,140836,5000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726892,200000,726186,100000,725419,200000}},
[106854]={70,{16276573,10416,8636.0,8517,9469,0,0},{},{151,50.4,46.8}},
[106855]={83,{1007049,52617,15445.0,133177,99266,0,0},{}},
[106856]={83,{1007049,52617,15445.0,133177,99266,0,0},{}},
[106857]={83,{1399453,185393,20445.0,98216,97767,4800,2800},{}},
[106858]={73,{19395148,40042,9333.0,65015,65015,0,0},{}},
[106859]={72,{130531,13789,1654.0,26894,28572,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771283,100,241271,20000}},
[106860]={0,{144,28,28.0,28,28,0,0},{}},
[106861]={0,{144,28,28.0,28,28,0,0},{}},
[106862]={0,{144,28,28.0,28,28,0,0},{}},
[106863]={75,{414734,49805,4464.0,29340,30890,0,0},{}},
[106864]={74,{120736,13891,1741.0,25927,28719,0,0},{}},
[106865]={74,{405285,45286,4352.0,33636,30100,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,725783,1000,725784,1000}},
[106866]={74,{137350,14550,1741.0,28413,30100,0,0},{}},
[106867]={75,{140863,14944,1785.0,29198,30890,0,0},{}},
[106868]={90,{11061587,120707,14170.0,58742,61825,0,0},{}},
[106869]={74,{97882,13823,1741.0,25801,27339,0,0},{}},
[106870]={74,{97882,13823,1741.0,25801,27339,0,0},{}},
[106871]={74,{97882,13823,1741.0,25801,27339,0,0},{}},
[106872]={74,{97882,13823,1741.0,25801,27339,0,0},{}},
[106873]={0,{144,28,28.0,28,28,0,0},{}},
[106874]={75,{150490,15236,1785.0,29481,30890,0,0},{}},
[106875]={75,{414734,49805,4464.0,29340,30890,0,0},{}},
[106876]={93,{56418,14716,6911.0,13640,13602,0,0},{}},
[106877]={85,{350387,20501,2286.0,80185,80187,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771501,100}},
[106878]={0,{150,30,28.0,90,84,0,0},{}},
[106879]={10,{613,100,131.0,314,318,0,0},{}},
[106880]={10,{613,100,131.0,314,318,0,0},{}},
[106881]={0,{142,24,28.0,84,84,0,0},{}},
[106882]={0,{142,24,28.0,84,84,0,0},{}},
[106883]={0,{142,24,28.0,84,84,0,0},{}},
[106884]={0,{142,24,28.0,84,84,0,0},{}},
[106885]={0,{142,24,28.0,84,84,0,0},{}},
[106886]={0,{144,28,28.0,28,28,0,0},{}},
[106887]={0,{144,28,28.0,28,28,0,0},{}},
[106888]={74,{126893,14694,1741.0,28413,30100,0,0},{}},
[106889]={0,{144,28,28.0,84,84,0,0},{}},
[106890]={83,{28604892,215292,39480.0,153761,140836,5000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726893,200000,726186,100000,725421,200000}},
[106891]={75,{2000135,351896,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106892]={75,{2000135,351896,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106893]={75,{2000135,351896,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106894]={75,{2000135,351896,4464.0,180013,180066,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[106895]={75,{150490,15236,1785.0,29481,30890,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771284,100},{23,64.6,37.6}},
[106896]={75,{150490,15236,1785.0,29481,30890,0,0},{720011,5000,720142,10000,720104,10000,725781,2000,725782,2000,771285,100},{23,64.9,30.1}},
[106897]={75,{414734,49805,4464.0,29340,30890,0,0},{}},
[106898]={75,{414734,49805,4464.0,29340,30890,0,0},{}},
[106899]={80,{459402,56543,5059.0,33391,35105,0,0},{}},
[106900]={80,{14643695,173587,46330.0,150058,150108,4800,2400},{726128,5000,720143,60000,726766,100000,726105,70000,726106,70000,726776,200000,726778,50000,725424,200000}},
[106901]={80,{1100086,191289,5059.0,88033,86395,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,19.1,52.7}},
[106902]={80,{1100086,191289,5059.0,88033,87723,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,16.8,55.5}},
[106903]={80,{1008042,191590,5059.0,89059,86395,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,27.6,82.5}},
[106904]={80,{1126332,191590,5059.0,89059,86395,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,25.5,80.8}},
[106905]={80,{1126332,194143,5059.0,89059,83042,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,22.6,81.4}},
[106906]={80,{1104825,186268,5059.0,82044,87723,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,37.1,18.2}},
[106907]={80,{1100086,193851,5059.0,88033,83042,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{149,28.2,82.0}},
[106908]={80,{1100086,191289,5059.0,88033,86395,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0}},
[106909]={72,{93033,13099,1654.0,24413,25941,0,0},{},{23,48.7,27.8}},
[106910]={72,{93033,13099,1654.0,24413,25941,0,0},{}},
[106911]={72,{93033,13099,1654.0,24413,25941,0,0},{}},
[106912]={72,{93033,13099,1654.0,24413,24462,0,0},{}},
[106913]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106914]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106915]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106916]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106917]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106918]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106919]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106920]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106921]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106922]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106923]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106924]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106925]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106926]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106927]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106928]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106929]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106930]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106931]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106932]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106933]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106934]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106935]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106936]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106937]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106938]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106939]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106940]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106941]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106942]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106943]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106944]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106945]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106946]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106947]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106948]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106949]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106950]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106951]={37,{3902,608,577.0,1852,1869,0,0},{}},
[106952]={93,{3073446,114032,6911.0,432062,439167,1500,900},{}},
[106953]={3,{394,170,160.0,147,154,0,0},{}},
[106954]={75,{830207,25119,9822.0,7923,7179,0,0},{726129,200000,726130,200000,726131,200000}},
[106955]={75,{830207,25119,9822.0,7923,7179,0,0},{726132,200000,726133,200000,726134,200000}},
[106956]={100,{640598498,47974,17875.0,16353,15503,0,0},{}},
[106957]={70,{67093,6413,3925.0,9713,5935,0,0},{}},
[106958]={5,{287,71,71.0,71,71,0,0},{}},
[106959]={95,{19487,4737,2896.0,14338,14425,0,0},{}},
[106960]={95,{57827,15458,7241.0,14338,14425,0,0},{}},
[106961]={95,{59118,15607,7241.0,14465,14425,0,0},{}},
[106962]={95,{313907923,380094,37931.0,873700,868472,3550,2500},{}},
[106963]={95,{184231162,404575,46731.0,1020058,978813,4600,2700},{}},
[106964]={95,{58669852,412328,47281.0,912123,997936,4500,2850},{}},
[106965]={95,{160434446,408481,50031.0,924665,1025595,4500,2800},{}},
[106966]={95,{171705990,380094,37931.0,873700,868472,3550,2500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721018,200000,721019,200000,721036,100000,726070,200000}},
[106967]={100,{1469101,20313,32501.0,3250,3250,0,0},{}},
[106968]={0,{186,32,28.0,96,84,0,0},{}},
[106969]={0,{186,32,28.0,96,84,0,0},{}},
[106970]={0,{186,32,28.0,96,84,0,0},{}},
[106971]={0,{186,32,28.0,96,84,0,0},{}},
[106972]={100,{1469101,20313,32501.0,3250,3250,0,0},{}},
[106973]={100,{1469101,20313,32501.0,3250,3250,0,0},{}},
[106974]={100,{106731429,342898,50875.0,555270,215576,0,0},{}},
[106975]={22,{1043,300,300.0,300,300,0,0},{}},
[106976]={23,{1096,316,316.0,316,316,0,0},{}},
[106977]={24,{1150,332,332.0,332,332,0,0},{}},
[106978]={95,{314321825,415394,48931.0,978685,978452,5200,2800},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721016,200000,721017,200000,721036,100000,726060,200000}},
[106979]={95,{314564941,403091,45631.0,952695,934460,5200,2800},{}},
[106980]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[106981]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[106982]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[106983]={51,{335383,4643,5231.0,3537,3495,0,0},{720011,3000,722328,200000,723654,200000,723756,200000,722566,200000,720100,5000,720270,100000,770318,1000,724242,5000,720026,5000,723982,3000}},
[106984]={98,{147553294,512042,47875.0,781352,536983,1800,1450},{}},
[106985]={98,{7335518,394872,21761.0,810856,808527,1800,1450},{}},
[106986]={98,{7335518,394872,21761.0,810856,808527,1800,1450},{}},
[106987]={98,{7996763,398124,21761.0,810856,808527,1800,1450},{}},
[106988]={98,{7335518,395522,21761.0,810856,808527,1800,1450},{}},
[106989]={95,{59118,15607,7241.0,14465,14425,0,0},{}},
[106990]={98,{7335518,396498,21761.0,810856,808527,1800,1450},{}},
[106991]={100,{3041697,442657,23125.0,256088,255582,0,0},{}},
[106992]={93,{4444557,381746,25168.0,669937,657922,1650,1350},{}},
[106993]={98,{367454503,432196,50075.0,1049489,1024151,5800,2200},{}},
[106994]={41,{2250,665,665.0,665,665,0,0},{}},
[106995]={42,{2327,689,689.0,689,689,0,0},{}},
[106996]={43,{2406,712,712.0,712,712,0,0},{}},
[106997]={44,{2486,737,737.0,737,737,0,0},{}},
[106998]={45,{2568,761,761.0,761,761,0,0},{}},
[106999]={46,{2651,787,787.0,787,787,0,0},{}},
[107000]={47,{2736,812,812.0,812,812,0,0},{}},
[107001]={48,{2823,839,839.0,839,839,0,0},{}},
[107002]={49,{2911,865,865.0,865,865,0,0},{}},
[107003]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107004]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107005]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107006]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107007]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107008]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107009]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107010]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107011]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107012]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107013]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107014]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107015]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107016]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107017]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107018]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107019]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107020]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107021]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107022]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107023]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107024]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107025]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107026]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107027]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107028]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107029]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107030]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[107031]={1,{132,17,28.0,59,60,0,0},{}},
[107032]={1,{132,17,28.0,59,60,0,0},{}},
[107033]={1,{132,17,28.0,59,60,0,0},{}},
[107034]={1,{132,17,28.0,59,60,0,0},{}},
[107035]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[107036]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[107037]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[107038]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[107039]={103,{1141097,102598,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107040]={103,{1141097,102598,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107041]={103,{365234,46760,21199.0,38158,35614,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107042]={103,{1141097,102598,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107043]={103,{1141097,102598,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107044]={103,{1159072,102992,21199.0,136072,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107045]={103,{1145330,113091,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107046]={103,{1145330,102992,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107047]={103,{1145330,102992,21199.0,135590,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107048]={103,{1138841,112992,21199.0,135831,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107049]={103,{1138841,123091,21199.0,135831,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107050]={103,{1295232,107472,21199.0,136341,161792,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107051]={103,{1207057,109790,21199.0,147554,155433,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107052]={103,{1138841,102893,21199.0,135831,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107053]={103,{1138841,102893,21199.0,135831,135844,0,0},{720011,3000,720142,60000,723989,100000,725569,3500,725570,3500,725571,1500,725572,1500}},
[107054]={1,{127,24,10.0,81,84,0,0},{}},
[107055]={75,{3001120,450054,9822.0,300021,300075,0,0},{}},
[107056]={80,{1008042,191362,5059.0,88449,75507,0,0},{}},
[107057]={0,{186,32,28.0,96,84,0,0},{}},
[107058]={0,{150,30,28.0,90,84,0,0},{}},
[107059]={0,{144,28,28.0,28,28,0,0},{}},
[107060]={0,{144,28,28.0,28,28,0,0},{}},
[107061]={0,{144,28,28.0,28,28,0,0},{}},
[107062]={0,{144,28,28.0,28,28,0,0},{}},
[107063]={75,{215347,46310,1285.0,24673,30870,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771289,100,242060,60000},{24,36.2,84.9}},
[107064]={75,{581043,23460,4464.0,34891,37322,0,0},{720011,5000,720142,10000,726766,10000,726103,5000,726104,5000,726105,1000,726106,1000,771290,100,242060,100000},{24,30.3,86.9}},
[107065]={0,{144,28,28.0,28,28,0,0},{}},
[107066]={75,{170917,12531,675.0,33077,17845,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771291,100,242060,60000},{24,31.1,77.0}},
[107067]={0,{144,28,28.0,28,28,0,0},{}},
[107068]={75,{205539,20646,1785.0,34891,37322,0,0},{},{24,33.9,80.4}},
[107069]={0,{144,28,28.0,28,28,0,0},{}},
[107070]={75,{2000085,400001,4464.0,180013,180066,0,0},{}},
[107071]={0,{186,32,28.0,96,84,0,0},{}},
[107072]={0,{144,28,28.0,28,28,0,0},{}},
[107073]={85,{58358,3543,2286.0,37736,31186,0,0},{}},
[107074]={70,{5248256,628,1570.0,10050,10066,0,0},{}},
[107075]={85,{43397,3442,1645.0,32222,37025,0,0},{}},
[107076]={80,{21507,6593,5059.0,6099,6071,0,0},{}},
[107077]={70,{865873,7180,4758.0,6561,6675,0,0},{}},
[107078]={0,{186,32,28.0,96,84,0,0},{},{151,31.4,50.2}},
[107079]={76,{211056,32287,2773.0,46485,50321,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771292,100}},
[107080]={76,{144832,13795,2773.0,27253,29527,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771293,100,241311,60000},{24,18.8,57.4}},
[107081]={76,{250791,21192,2773.0,51979,53292,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771294,100,241312,60000},{24,32.1,59.2}},
[107082]={76,{211056,21192,2773.0,40990,44380,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771295,100},{24,24.8,59.9}},
[107083]={76,{211056,21192,2773.0,40990,44380,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771296,100},{24,27.5,57.7}},
[107084]={76,{197284,20787,1831.0,46485,50097,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771297,100},{24,35.7,57.0}},
[107085]={76,{210493,20787,1831.0,40990,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771298,100},{24,27.5,54.3}},
[107086]={65,{14221421,8846,7563.0,7210,8003,0,0},{}},
[107087]={0,{144,28,28.0,28,28,0,0},{}},
[107088]={76,{532090,18109,4578.0,62144,61926,0,0},{720011,5000,720142,10000,726766,10000,726103,50000,726104,50000,726105,5000,726106,5000,771328,100,242027,200000},{24,53.4,63.1}},
[107089]={76,{180126,50540,1318.0,32103,36527,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771299,100,242056,60000},{24,53.1,63.3}},
[107090]={76,{180126,50540,1318.0,32103,34039,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771300,100,242056,60000},{24,45.7,69.5}},
[107091]={76,{248226,24771,1831.0,41187,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771301,100},{24,53.8,63.5}},
[107092]={76,{241671,26612,1831.0,41187,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771302,100},{24,47.4,62.1}},
[107093]={76,{195788,21090,1831.0,35666,38268,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771303,100,242057,60000},{24,54.9,59.9}},
[107094]={76,{197972,21090,693.0,39026,36527,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771304,100},{24,49.3,70.6}},
[107095]={76,{195788,21090,1831.0,35666,38268,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771305,100},{24,44.3,57.9}},
[107096]={76,{223703,24415,1831.0,40990,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771306,100,242058,60000},{24,53.2,82.3}},
[107097]={76,{162198,20787,693.0,38818,36527,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771307,100},{24,41.8,64.5}},
[107098]={76,{197284,20787,1831.0,40990,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771308,100},{24,55.1,61.9}},
[107099]={76,{154340,25040,949.0,35067,41417,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771309,100},{24,51.0,88.4}},
[107100]={76,{210493,20787,1831.0,40990,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771310,100},{24,52.1,89.2}},
[107101]={77,{216393,14164,2844.0,47724,51571,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771311,100},{24,29.7,49.4}},
[107102]={77,{216393,14164,2844.0,47724,51571,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771312,100},{24,30.1,50.9}},
[107103]={77,{457869,24829,5688.0,47724,51571,0,0},{720011,5000,720142,10000,726766,10000,726103,5000,726104,5000,726105,1000,726106,1000,771313,100}},
[107104]={77,{168416,21336,1878.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771314,100},{24,32.0,50.0}},
[107105]={77,{202275,21336,1878.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771315,100,242050,60000},{24,40.2,38.5}},
[107106]={77,{43136,6454,1878.0,25186,27124,0,0},{},{24,47.0,23.4}},
[107107]={77,{230510,21749,1878.0,48182,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771316,100},{24,28.5,41.6}},
[107108]={77,{230510,17957,1878.0,48182,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771317,100},{24,28.5,42.6}},
[107109]={77,{468000,26647,4695.0,48182,51342,0,0},{241356,75000,720142,10000,726766,10000,726103,5000,726104,5000,726105,1000,726106,1000,771318,100},{24,33.8,34.7}},
[107110]={77,{508927,9173,4695.0,48182,51342,0,0},{241356,75000,720142,10000,726766,10000,726103,5000,726104,5000,726105,1000,726106,1000,771319,100},{24,32.4,40.5}},
[107111]={0,{144,28,28.0,28,28,0,0},{}},
[107112]={0,{144,28,28.0,28,28,0,0},{}},
[107113]={77,{445642,9127,4695.0,50542,51342,0,0},{}},
[107114]={0,{144,28,28.0,28,28,0,0},{}},
[107115]={0,{144,28,28.0,28,28,0,0},{}},
[107116]={0,{144,28,28.0,28,28,0,0},{}},
[107117]={0,{150,30,28.0,90,84,0,0},{}},
[107118]={0,{144,28,28.0,28,28,0,0},{}},
[107119]={0,{186,32,28.0,96,84,0,0},{}},
[107120]={0,{186,32,28.0,96,84,0,0},{}},
[107121]={77,{219185,14164,1878.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771320,100},{24,42.6,23.3}},
[107122]={77,{219185,16060,1878.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771321,100},{24,37.8,19.5}},
[107123]={77,{219185,12268,1878.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771322,100},{24,36.7,18.8}},
[107124]={77,{640846,34136,4695.0,47724,51342,0,0},{720011,5000,720142,10000,726766,10000,726103,5000,726104,5000,726105,1000,726106,1000,771323,100},{24,34.0,19.1}},
[107125]={78,{200007,20008,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771330,100},{25,59.2,68.9}},
[107126]={78,{12882,2863,1925.0,8591,8608,0,0},{}},
[107127]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771344,100},{25,44.3,46.9}},
[107128]={0,{144,28,28.0,28,28,0,0},{}},
[107129]={0,{144,28,28.0,28,28,0,0},{}},
[107130]={0,{144,28,28.0,28,28,0,0},{}},
[107131]={0,{144,28,28.0,28,28,0,0},{}},
[107132]={77,{205430,21749,1878.0,36455,39233,0,0},{}},
[107133]={77,{205430,21749,1878.0,36455,39233,0,0},{}},
[107134]={74,{6233,1749,1741.0,5248,5223,0,0},{}},
[107135]={76,{210493,20787,1831.0,40990,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771324,100},{24,36.4,56.6}},
[107136]={76,{210493,20787,1831.0,40990,44182,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771325,100},{24,26.9,58.3}},
[107137]={75,{192390,13175,1785.0,34556,37322,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771326,100},{24,46.3,78.4}},
[107138]={77,{180574,17871,1878.0,36630,39233,0,0},{},{24,41.7,41.3}},
[107139]={77,{180574,17871,1878.0,36630,39233,0,0},{}},
[107140]={77,{180574,17871,1878.0,36630,39233,0,0},{}},
[107141]={77,{180574,17871,1878.0,36630,39233,0,0},{}},
[107142]={0,{144,28,28.0,84,84,0,0},{}},
[107143]={77,{180574,17871,1878.0,36630,39233,0,0},{},{24,30.9,49.5}},
[107144]={77,{180574,17871,1878.0,36630,39233,0,0},{}},
[107145]={78,{76276860,205197,87591.0,256972,303749,5000,6000},{}},
[107146]={75,{1936774,45059,19464.0,168494,150889,0,0},{}},
[107147]={0,{144,28,28.0,28,28,0,0},{}},
[107148]={0,{144,28,28.0,28,28,0,0},{}},
[107149]={0,{2642,104,154.0,84,84,0,0},{}},
[107150]={0,{150,30,28.0,90,84,0,0},{}},
[107151]={0,{146,32,28.0,84,84,0,0},{}},
[107152]={0,{144,28,28.0,28,28,0,0},{}},
[107153]={0,{144,28,28.0,28,28,0,0},{}},
[107154]={0,{144,28,28.0,28,28,0,0},{}},
[107155]={0,{144,28,28.0,28,28,0,0},{}},
[107156]={0,{144,28,28.0,28,28,0,0},{}},
[107157]={0,{144,28,28.0,28,28,0,0},{}},
[107158]={0,{144,28,28.0,28,28,0,0},{}},
[107159]={0,{144,28,28.0,28,28,0,0},{}},
[107160]={0,{144,28,28.0,28,28,0,0},{}},
[107161]={0,{144,28,28.0,28,28,0,0},{}},
[107162]={0,{144,28,28.0,28,28,0,0},{}},
[107163]={0,{144,28,28.0,28,28,0,0},{}},
[107164]={0,{144,28,28.0,28,28,0,0},{}},
[107165]={0,{144,28,28.0,28,28,0,0},{}},
[107166]={0,{144,28,28.0,28,28,0,0},{}},
[107167]={0,{142,24,28.0,84,84,0,0},{}},
[107168]={0,{142,24,28.0,84,84,0,0},{}},
[107169]={0,{144,28,28.0,28,28,0,0},{}},
[107170]={0,{144,28,28.0,28,28,0,0},{}},
[107171]={0,{144,28,28.0,28,28,0,0},{}},
[107172]={0,{144,28,28.0,28,28,0,0},{}},
[107173]={0,{144,28,28.0,28,28,0,0},{}},
[107174]={0,{144,28,28.0,28,28,0,0},{}},
[107175]={0,{144,28,28.0,28,28,0,0},{}},
[107176]={0,{144,28,28.0,28,28,0,0},{}},
[107177]={0,{144,28,28.0,28,28,0,0},{}},
[107178]={0,{144,28,28.0,28,28,0,0},{}},
[107179]={0,{144,28,28.0,28,28,0,0},{}},
[107180]={0,{144,28,28.0,28,28,0,0},{}},
[107181]={0,{144,28,28.0,28,28,0,0},{}},
[107182]={86,{310976,21024,2342.0,84739,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771503,100},{28,41.1,15.4}},
[107183]={75,{82257303,252284,77858.0,436371,407822,4800,3000},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,770832,10000},{15,40.1,70.2}},
[107184]={72,{3552590,66265,19135.0,106286,101721,0,0},{}},
[107185]={75,{82252352,230170,57858.0,438486,303062,4800,3000},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,770819,10000,207345,200000},{16,75.2,71.6}},
[107186]={72,{2314853,44232,4135.0,106810,70485,0,0},{}},
[107187]={75,{162994820,228617,117858.0,411569,722102,4800,4500},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,770928,10000}},
[107188]={75,{162994820,228617,117858.0,411569,722102,4800,4500},{}},
[107189]={72,{2699067,46838,9135.0,56666,48561,0,0},{}},
[107190]={75,{163008127,253094,81933.0,436371,408276,4800,2800},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,771187,10000}},
[107191]={72,{33020002,184029,46021.0,175754,179294,8300,2000},{}},
[107192]={75,{163008127,56897,81933.0,436371,408276,4800,2800},{726132,200000,726133,200000,726134,200000,725245,200000,720143,80000,771187,10000}},
[107193]={70,{25005973,13839,16653.0,383481,343579,4800,2800},{}},
[107194]={0,{144,28,28.0,28,28,0,0},{}},
[107195]={0,{144,28,28.0,28,28,0,0},{}},
[107196]={75,{27038100,192042,42822.0,135063,135174,0,0},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726027,200000,725460,50000,725461,25000,725918,200000}},
[107197]={70,{100041,83250,3925.0,6595,6642,0,0},{},{146,29.2,33.7}},
[107198]={75,{150006,8371,4464.0,70397,70451,0,0},{}},
[107199]={75,{5032217,41292,26322.0,100025,100072,0,0},{720143,60000,720104,100000,725783,70000,725784,70000,726032,200000,725460,25000,725461,12500,725301,200000}},
[107200]={70,{281753,24213,3925.0,6595,6642,0,0},{}},
[107201]={75,{60458,8371,4464.0,50628,50735,0,0},{}},
[107202]={0,{144,28,28.0,28,28,0,0},{}},
[107203]={0,{144,28,28.0,28,28,0,0},{}},
[107204]={0,{144,28,28.0,28,28,0,0},{}},
[107205]={1,{144,28,28.0,28,28,0,0},{}},
[107206]={0,{142,24,28.0,84,84,0,0},{}},
[107207]={0,{142,24,28.0,84,84,0,0},{}},
[107208]={0,{142,24,28.0,84,84,0,0},{}},
[107209]={0,{144,28,28.0,28,28,0,0},{}},
[107210]={0,{144,28,28.0,28,28,0,0},{}},
[107211]={0,{144,28,28.0,28,28,0,0},{}},
[107212]={0,{144,28,28.0,28,28,0,0},{}},
[107213]={80,{200005819,330354,20237.0,450025,450002,0,0},{}},
[107214]={0,{144,28,28.0,28,28,0,0},{}},
[107215]={79,{203441,20828,1974.0,64984,57783,0,0},{},{25,62.3,51.3}},
[107216]={0,{142,24,28.0,84,84,0,0},{}},
[107217]={75,{36375,8459,4464.0,7843,7821,0,0},{726126,200000}},
[107218]={78,{19003070,197853,95664.0,180019,180098,0,0},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726028,200000,725460,50000,725461,25000,725923,200000}},
[107219]={80,{500056,9815,5059.0,9106,9167,0,0},{}},
[107220]={80,{300176,9865,5059.0,11960,12021,0,0},{}},
[107221]={80,{40467491,12228,12257.0,9106,9210,0,0},{}},
[107222]={80,{500500,9937,6128.0,9106,9210,0,0},{}},
[107223]={78,{7020820,50495,95664.0,100351,100969,0,0},{720143,60000,720104,100000,725783,70000,725784,70000,726033,200000,725460,25000,725461,12500,725304,200000}},
[107224]={75,{176433,1732,4464.0,7768,7821,0,0},{}},
[107225]={75,{80012,8415,4464.0,7768,7821,0,0},{}},
[107226]={80,{40467491,12228,12257.0,9106,9210,0,0},{}},
[107227]={75,{176594,8478,5409.0,7768,7859,0,0},{}},
[107228]={83,{25003996,186944,33980.0,155193,101596,3000,5000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726895,200000,726186,100000,725425,200000},{151,29.9,37.5}},
[107229]={80,{450159,39115,20059.0,144253,144985,0,0},{}},
[107230]={75,{19012,5773,4464.0,5357,5357,0,0},{}},
[107231]={75,{19012,5773,4464.0,5357,5357,0,0},{}},
[107232]={75,{100004,22958,9464.0,43074,250159,0,0},{}},
[107233]={75,{200008,22958,9464.0,240071,40408,0,0},{}},
[107234]={78,{6502822,50542,49091.0,110056,110119,5000,4000},{720143,60000,720104,100000,725783,70000,725784,70000,726035,200000,725460,25000,725461,12500,725309,200000}},
[107235]={75,{60078,24967,19464.0,100078,25226,7000,0},{}},
[107236]={75,{60078,21421,19464.0,25180,104174,0,7000},{}},
[107237]={75,{20152,8371,4464.0,7768,7821,0,0},{}},
[107238]={75,{20152,8371,4464.0,7768,7821,0,0},{}},
[107239]={75,{70155,28365,19464.0,30055,100904,0,0},{}},
[107240]={75,{110080,30286,19464.0,100078,30131,0,0},{}},
[107241]={0,{142,24,28.0,84,84,0,0},{}},
[107242]={1,{144,28,28.0,84,84,0,0},{},{23,60.2,67.3}},
[107243]={0,{144,28,28.0,28,28,0,0},{}},
[107244]={0,{142,24,28.0,84,84,0,0},{}},
[107245]={0,{144,28,28.0,84,84,0,0},{},{23,49.0,27.5}},
[107246]={0,{144,28,28.0,84,84,0,0},{},{23,49.0,27.6}},
[107247]={0,{144,28,28.0,84,84,0,0},{},{23,48.9,27.8}},
[107248]={0,{144,28,28.0,84,84,0,0},{},{23,48.9,27.5}},
[107249]={0,{144,28,28.0,84,84,0,0},{}},
[107250]={0,{144,28,28.0,84,84,0,0},{},{23,50.1,51.4}},
[107251]={0,{144,28,28.0,84,84,0,0},{},{23,50.2,51.1}},
[107252]={0,{144,28,28.0,84,84,0,0},{},{23,50.1,51.0}},
[107253]={0,{144,28,28.0,84,84,0,0},{},{23,50.8,52.0}},
[107254]={0,{144,28,28.0,84,84,0,0},{},{23,59.9,44.9}},
[107255]={0,{144,28,28.0,84,84,0,0},{},{23,59.1,44.2}},
[107256]={0,{144,28,28.0,84,84,0,0},{},{23,59.2,44.2}},
[107257]={0,{150,30,28.0,90,84,0,0},{}},
[107258]={75,{5950,1785,1785.0,5357,5357,0,0},{}},
[107259]={0,{142,24,28.0,84,84,0,0},{}},
[107260]={0,{142,24,28.0,84,84,0,0},{}},
[107261]={1,{117,35,27.0,63,90,0,0},{}},
[107262]={75,{1886783,8415,4464.0,2589,2607,0,0},{},{147,69.0,53.7}},
[107263]={75,{1214310,194759,4464.0,82773,73369,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107264]={75,{1214310,194759,4464.0,82773,73369,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107265]={75,{8824,2564,1785.0,5089,16581,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,85.3,39.9}},
[107266]={75,{1000042,185235,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,82.2,20.2}},
[107267]={75,{1214310,194759,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,69.3,41.6}},
[107268]={75,{1176285,185235,4464.0,82773,73369,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,48.2,78.8}},
[107269]={75,{1214310,194759,4464.0,82773,73369,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,50.5,77.0}},
[107270]={75,{1000042,185235,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,41.4,40.1}},
[107271]={75,{1214310,194759,4464.0,82773,78392,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,79.7,43.9}},
[107272]={75,{1000042,185235,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,81.5,46.3}},
[107273]={75,{1000042,185235,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,74.0,46.3}},
[107274]={75,{1000042,185235,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,53.2,40.0}},
[107275]={75,{1000042,185235,4464.0,82773,62012,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,74.6,38.4}},
[107276]={65,{14221421,8846,7563.0,7210,8003,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107277]={75,{1214310,194759,4464.0,82773,73369,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{147,71.8,22.7}},
[107278]={75,{1053316,138055,4464.0,82773,78392,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107279]={75,{1053316,138055,4464.0,82773,78392,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107280]={75,{1053316,138055,4464.0,82773,78392,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107281]={75,{1053316,138055,4464.0,82773,78392,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107282]={75,{1886783,8415,4464.0,2589,2607,0,0},{},{148,69.0,53.7}},
[107283]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107284]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107285]={75,{5603,2564,1785.0,5089,7821,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,85.3,39.9}},
[107286]={75,{98293,44285,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,82.2,20.2}},
[107287]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,69.3,41.6}},
[107288]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,47.2,77.4}},
[107289]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,50.0,78.4}},
[107290]={75,{98293,44285,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,39.8,41.2}},
[107291]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,79.7,43.9}},
[107292]={75,{98293,44285,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,81.6,46.5}},
[107293]={75,{98293,44285,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,74.4,46.4}},
[107294]={75,{98293,44285,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,53.6,40.0}},
[107295]={75,{98293,44285,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,75.8,38.4}},
[107296]={65,{14221421,8846,7563.0,7210,8003,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107297]={75,{98293,47142,4464.0,21162,23396,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0},{148,72.0,22.6}},
[107298]={75,{95756,37738,4464.0,20626,21125,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107299]={75,{95756,37738,4464.0,20626,21125,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107300]={75,{95756,37738,4464.0,20626,21125,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107301]={75,{95756,37738,4464.0,20626,21125,0,0},{720011,3000,720142,20000,720104,15000,725781,3500,725782,3500,725783,1500,725784,1500,725460,0,725461,0}},
[107302]={75,{25007004,178272,42822.0,200478,160292,6000,3500},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726026,200000,725460,50000,725461,25000,725433,200000}},
[107303]={75,{300773,43582,19464.0,90703,90183,4800,2800},{}},
[107304]={75,{400017,43582,19464.0,90703,90183,4800,2800},{}},
[107305]={75,{550783,46980,19464.0,90703,90183,4800,2800},{}},
[107306]={65,{14221421,8846,7563.0,7210,8003,0,0},{},{147,53.5,59.9}},
[107307]={75,{3029135,47842,26322.0,90006,90085,6000,3500},{720143,60000,720104,100000,725783,70000,725784,70000,726031,200000,725460,25000,725461,12500,725176,200000}},
[107308]={75,{70915,20387,19464.0,50039,50079,4800,2800},{}},
[107309]={75,{90117,28070,19464.0,60111,60258,4800,2800},{}},
[107310]={75,{90117,27922,19464.0,60111,60258,4800,2800},{}},
[107311]={65,{14221421,8846,7563.0,7210,8003,0,0},{},{148,53.5,59.9}},
[107312]={77,{110013,17746,14695.0,90040,90112,4140,4140},{}},
[107313]={0,{144,28,28.0,28,28,0,0},{}},
[107314]={78,{18000840,187023,65591.0,180019,180317,4140,4140},{726128,5000,720143,60000,720104,100000,725783,70000,725784,70000,726029,200000,725460,50000,725461,25000,725927,200000}},
[107315]={77,{6000152,42353,19695.0,90040,90047,4140,4140},{}},
[107316]={77,{6000152,172882,19695.0,90040,90047,4140,4140},{}},
[107317]={77,{300037,22156,19695.0,90040,90047,4140,4140},{}},
[107318]={75,{12044,2564,1785.0,7768,7821,0,0},{}},
[107319]={77,{40605,5191,14695.0,80010,80060,4140,4140},{}},
[107320]={0,{144,28,28.0,28,28,0,0},{}},
[107321]={78,{4001446,41869,38091.0,105030,105132,4140,4140},{720143,60000,720104,100000,725783,70000,725784,70000,726034,200000,725460,25000,725461,12500,725307,200000}},
[107322]={77,{700087,32406,19695.0,90040,90047,4140,4140},{}},
[107323]={77,{700087,19142,19695.0,90040,90047,4140,4140},{}},
[107324]={77,{80210,22156,19695.0,80010,80121,4140,4140},{}},
[107325]={75,{12044,2564,1785.0,7768,7821,0,0},{}},
[107326]={0,{112,26,20.0,57,84,0,0},{}},
[107327]={0,{186,32,28.0,96,84,0,0},{}},
[107328]={8,{423,101,106.0,319,319,0,0},{}},
[107329]={0,{186,32,28.0,96,84,0,0},{}},
[107330]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[107331]={77,{606619,21749,1878.0,36805,39233,0,0},{},{24,27.4,39.6}},
[107332]={77,{606619,21749,1878.0,36805,39233,0,0},{},{24,27.4,42.3}},
[107333]={77,{606619,21749,1878.0,36805,39233,0,0},{},{24,28.4,42.3}},
[107334]={77,{606619,21749,1878.0,36805,39233,0,0},{},{24,29.5,39.3}},
[107335]={1,{164,91,70.0,28,28,0,0},{}},
[107336]={1,{164,91,70.0,28,28,0,0},{}},
[107337]={1,{164,91,70.0,28,28,0,0},{}},
[107338]={1,{164,91,70.0,28,28,0,0},{}},
[107339]={1,{164,91,70.0,28,28,0,0},{}},
[107340]={80,{1144110,9916,5059.0,9192,9167,0,0},{},{149,33.0,79.0}},
[107341]={1,{-2,17,28.0,59,60,0,0},{}},
[107342]={90,{102325,22371,11441.0,27598,27458,0,0},{}},
[107343]={80,{1144110,9916,5059.0,9192,9167,0,0},{}},
[107344]={80,{21059331,14233,11130.0,11705,13113,0,0},{},{149,26.0,50.3}},
[107345]={86,{330207,21024,2342.0,81226,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771502,100},{28,46.4,27.8}},
[107346]={99,{34103,10372,7941.0,9529,9529,0,0},{}},
[107347]={99,{34103,10372,7941.0,9529,9529,0,0},{}},
[107348]={99,{34103,10372,7941.0,9529,9529,0,0},{}},
[107349]={101,{135744437,213152,51288.0,1056596,1055236,0,0},{}},
[107350]={101,{135744437,213152,51288.0,1056596,1055236,0,0},{}},
[107351]={101,{135744437,213152,51288.0,1056596,1055236,0,0},{}},
[107352]={103,{71056,19655,8699.0,18216,18164,0,0},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726002,200000,721899,100000,725917,200000}},
[107353]={101,{46088689,138493,51288.0,664330,663579,2000,2000},{}},
[107354]={101,{46088689,101163,51288.0,664330,663579,2000,2000},{}},
[107355]={101,{46088689,138493,51288.0,664330,663579,2000,2000},{}},
[107356]={101,{28154850,119828,51288.0,468197,467750,1000,1000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726011,200000,721899,100000,725419,200000}},
[107357]={0,{146,32,48.0,84,90,0,0},{}},
[107358]={0,{144,28,28.0,84,84,0,0},{}},
[107359]={70,{114565,13191,1570.0,25439,27109,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000},{22,21.5,61.5}},
[107360]={0,{144,28,28.0,28,28,0,0},{},{149,61.0,51.4}},
[107361]={71,{97410,10382,1611.0,21429,24752,0,0},{},{22,21.7,62.6}},
[107362]={0,{142,24,28.0,84,84,0,0},{}},
[107363]={80,{1089583,23365,20059.0,150041,150331,0,0},{}},
[107364]={80,{1089583,23365,20059.0,144253,144985,0,0},{}},
[107365]={0,{144,28,28.0,28,28,0,0},{}},
[107366]={65,{5317,1389,1375.0,4168,4125,0,0},{}},
[107367]={55,{20584,4254,3149.0,3893,3946,0,0},{}},
[107368]={0,{144,28,28.0,28,28,0,0},{}},
[107369]={1,{2014,391,96.0,1763,64,0,0},{720726,100000,720725,100000,241869,200000}},
[107370]={80,{41247,9916,5059.0,9192,9167,0,0},{726128,5000,720143,60000,726766,100000,726105,70000,726106,70000,726776,200000,726778,50000,725424,200000}},
[107371]={75,{1600154,8459,4464.0,300009,300021,0,0},{}},
[107372]={75,{2000095,300174,4464.0,250026,250036,0,0},{}},
[107373]={75,{1550161,219077,4464.0,200042,200050,0,0},{}},
[107374]={80,{1600034,258079,10118.0,300057,300042,0,0},{}},
[107375]={0,{186,32,28.0,96,84,0,0},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,771329,10000}},
[107376]={75,{7461982,71926,37858.0,82773,67690,3000,3000},{}},
[107377]={75,{7461982,71926,37858.0,82773,67690,3000,3000},{}},
[107378]={75,{7461982,71926,37858.0,82773,67690,3000,3000},{}},
[107379]={75,{7461982,71926,37858.0,82773,67690,3000,3000},{}},
[107380]={75,{7461982,71926,37858.0,82773,67690,3000,3000},{}},
[107381]={75,{7461982,71926,37858.0,82773,67690,3000,3000},{}},
[107382]={103,{71056,19655,8699.0,18216,18164,0,0},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726007,200000,721899,100000,725303,200000}},
[107383]={101,{10221010,82498,51288.0,440178,439775,1000,1000},{}},
[107384]={101,{10221010,73166,51288.0,440178,439775,1000,1000},{}},
[107385]={101,{10221010,82498,51288.0,440178,439775,1000,1000},{}},
[107386]={101,{2777543,203844,28062.0,117776,118240,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,33.2,87.6}},
[107387]={101,{2777543,203844,28062.0,117776,118240,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,34.2,86.1}},
[107388]={101,{2883667,187149,23312.0,118520,147151,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,31.7,85.4}},
[107389]={101,{2839861,211111,23312.0,130568,139318,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,31.4,85.4}},
[107390]={101,{2839861,211111,23312.0,130568,139318,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,31.4,83.7}},
[107391]={101,{8400100,264603,28062.0,257654,258335,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,33.2,87.6}},
[107392]={101,{8400100,264603,28062.0,257654,258335,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,34.2,86.1}},
[107393]={101,{8492874,247813,23312.0,258615,287028,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,31.7,85.4}},
[107394]={101,{8449069,271776,23312.0,270663,279195,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,31.4,85.4}},
[107395]={101,{8449069,271776,23312.0,270663,279195,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,31.4,83.7}},
[107396]={77,{6255,1878,1878.0,1878,1878,0,0},{}},
[107397]={0,{144,28,28.0,28,28,0,0},{}},
[107398]={1,{257,-216,28.0,86,87,0,0},{},{358,47.3,35.9}},
[107399]={1,{117,30,14.0,63,84,0,0},{}},
[107400]={80,{108601,53136,5059.0,24285,28002,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,19.1,52.7}},
[107401]={80,{108601,53136,5059.0,24285,29329,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,22.0,53.1}},
[107402]={80,{111192,53219,5059.0,25009,28002,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,27.6,82.5}},
[107403]={80,{111192,53219,5059.0,25009,28002,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,25.5,80.8}},
[107404]={80,{111192,55469,5059.0,25009,31800,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,22.6,81.4}},
[107405]={80,{111192,53219,5059.0,24094,29329,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,37.1,18.2}},
[107406]={80,{108601,55386,5059.0,24285,31800,0,0},{720011,3000,720142,20000,726766,15000,726103,3500,726104,3500,726105,1500,726106,1500,726778,0},{150,28.3,82.6}},
[107407]={8,{423,101,106.0,319,319,0,0},{}},
[107408]={0,{144,28,28.0,28,28,0,0},{}},
[107409]={1,{-12,17,28.0,59,60,0,0},{}},
[107410]={1,{-1,51,28.0,59,60,0,0},{}},
[107411]={1,{132,17,28.0,59,60,0,0},{720289,1000}},
[107412]={1,{-2,17,28.0,59,60,0,0},{}},
[107413]={99,{71452,23204,34806.0,69529,69571,0,0},{}},
[107414]={0,{146,32,48.0,84,90,0,0},{}},
[107415]={0,{146,32,48.0,84,90,0,0},{}},
[107416]={0,{146,32,48.0,84,90,0,0},{}},
[107417]={0,{186,32,28.0,96,84,0,0},{}},
[107418]={0,{150,30,28.0,90,84,0,0},{}},
[107419]={76,{77804,2686,1831.0,30145,16051,0,0},{720011,5000},{24,34.9,77.5}},
[107420]={76,{39573,1950,693.0,20716,9873,0,0},{720011,5000}},
[107421]={66,{37345,2783,1412.0,8349,8940,0,0},{},{24,42.5,80.5}},
[107422]={1,{135,22,48.0,59,64,0,0},{},{358,27.3,11.1}},
[107423]={0,{144,28,28.0,28,28,0,0},{}},
[107424]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771614,100},{30,54.4,63.2}},
[107425]={90,{4986177,308579,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,34.4,55.4}},
[107426]={75,{249135,2589,1785.0,11518,14001,0,0},{},{163,37.6,59.4}},
[107427]={0,{144,28,28.0,28,28,0,0},{}},
[107428]={0,{144,28,28.0,28,28,0,0},{}},
[107429]={0,{144,28,28.0,28,28,0,0},{}},
[107430]={0,{144,28,28.0,28,28,0,0},{}},
[107431]={0,{144,28,28.0,28,28,0,0},{}},
[107432]={0,{144,28,28.0,28,28,0,0},{}},
[107433]={0,{144,28,28.0,28,28,0,0},{}},
[107434]={0,{144,28,28.0,28,28,0,0},{}},
[107435]={0,{144,28,28.0,28,28,0,0},{}},
[107436]={0,{144,28,28.0,28,28,0,0},{}},
[107437]={95,{1637070,45023,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720655,200000,202289,50000,727040,200000},{227,52.0,15.3}},
[107438]={80,{1100086,191289,5059.0,88033,86395,0,0},{}},
[107439]={80,{1100086,191289,5059.0,88033,86395,0,0},{}},
[107440]={80,{923537,128479,5059.0,82736,90537,0,0},{}},
[107441]={77,{13640,2087,1878.0,5661,6234,0,0},{}},
[107442]={75,{36375,8459,4464.0,7843,7821,0,0},{726721,200000}},
[107443]={70,{686050,20827,3925.0,6628,23084,0,0},{}},
[107444]={80,{41247,9916,5059.0,9192,9167,0,0},{726958,200000}},
[107445]={82,{43334,10553,5314.0,9783,9757,0,0},{726959,200000}},
[107446]={85,{46625,11575,5716.0,10730,10700,0,0},{720828,200000}},
[107447]={87,{48930,12301,5997.0,11402,11371,0,0},{727056,200000}},
[107448]={90,{52563,13462,6441.0,12478,12444,0,0},{720962,200000}},
[107449]={92,{55107,14288,6751.0,13243,13206,0,0},{721042,200000}},
[107450]={95,{59118,15607,7241.0,14465,14425,0,0},{721801,200000}},
[107451]={97,{61928,16544,7584.0,15333,15290,0,0},{725983,200000}},
[107452]={65,{8584028,93559,27363.0,76027,76120,0,0},{725317,5000,720143,60000,720102,100000,725311,85000,725313,85000,725312,70000,725314,70000,725440,200000}},
[107453]={80,{9015782,64206,46330.0,92048,92203,0,0},{720143,60000,726766,100000,726105,70000,726106,70000,726768,200000,726778,25000,725176,200000}},
[107454]={80,{41247,9916,5059.0,9192,9167,0,0},{720143,60000,726766,100000,726105,70000,726106,70000,726769,200000,726778,25000,725301,200000}},
[107455]={80,{3014528,63369,46330.0,92109,92203,4800,2800},{}},
[107456]={80,{202643,21715,11130.0,90461,90522,4800,2800},{}},
[107457]={80,{650027,14411,5059.0,131888,138182,0,0},{}},
[107458]={80,{3014528,63369,46330.0,92109,92203,4800,2800},{}},
[107459]={80,{8024631,12119,46330.0,92283,92203,4800,2400},{720143,60000,726766,100000,726105,70000,726106,70000,726770,200000,726778,25000,725302,200000}},
[107460]={80,{240519,4044,21059.0,92283,92203,0,0},{}},
[107461]={0,{129,19,28.0,19,19,0,0},{}},
[107462]={80,{8507403,73617,46330.0,93451,93093,4800,2400},{720143,60000,726766,100000,726105,70000,726106,70000,726771,200000,726778,25000,725303,200000}},
[107463]={80,{260054,39115,20059.0,85058,85076,0,0},{}},
[107464]={80,{723028,23365,20059.0,75061,75054,0,0},{}},
[107465]={80,{41247,9916,5059.0,9192,9167,0,0},{720143,60000,726766,100000,726105,70000,726106,70000,726771,200000,726778,25000,725303,200000}},
[107466]={80,{1089583,23365,20059.0,150041,150331,0,0},{}},
[107467]={80,{723028,23365,20059.0,75061,75054,0,0},{}},
[107468]={78,{200007,20008,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771331,100},{25,71.2,64.7}},
[107469]={78,{250061,22011,1925.0,66034,63071,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771332,100,242101,60000},{25,59.7,78.6}},
[107470]={79,{191210,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771351,100},{25,49.0,45.4}},
[107471]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771345,100,242140,60000},{25,50.8,30.4}},
[107472]={79,{215049,22019,1974.0,68053,65032,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771346,100,242166,60000},{25,51.9,29.8}},
[107473]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771352,100},{25,45.9,52.8}},
[107474]={78,{200007,20008,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771333,100},{25,68.1,63.7}},
[107475]={78,{200007,20008,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771334,100,242160,70000},{25,72.9,55.8}},
[107476]={78,{3000140,27138,10591.0,65052,63007,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771337,100,242446,200000},{25,66.8,77.4}},
[107477]={78,{3000140,20058,10591.0,65052,63007,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771350,100,242492,200000},{25,51.4,27.7}},
[107478]={75,{203724,20547,1785.0,29340,31545,0,0},{}},
[107479]={1,{144,28,28.0,84,84,0,0},{}},
[107480]={1,{144,28,28.0,84,84,0,0},{}},
[107481]={0,{144,28,28.0,28,28,0,0},{}},
[107482]={78,{120032,16517,1925.0,45004,42345,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771347,100},{25,51.5,34.3}},
[107483]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771353,100},{25,35.6,56.8}},
[107484]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771362,100},{25,55.0,41.1}},
[107485]={80,{2300056,24877,12257.0,65266,61548,0,0},{},{25,23.5,63.7}},
[107486]={80,{194065,21269,2023.0,66358,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771366,100,242231,60000},{25,17.1,59.2}},
[107487]={80,{194065,21269,2023.0,66358,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771367,100},{25,27.9,63.6}},
[107488]={80,{200060,23010,2023.0,66358,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771368,100},{25,17.9,64.2}},
[107489]={80,{500038,20011,5059.0,47864,48633,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771370,100},{25,23.8,37.5}},
[107490]={80,{224351,20020,2023.0,66985,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771371,100,242228,25000},{25,26.4,32.0}},
[107491]={80,{224351,21470,2023.0,66985,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771372,100,242228,35000},{25,24.2,29.4}},
[107492]={80,{22057,6610,5059.0,6128,6071,0,0},{},{151,31.2,32.6}},
[107493]={0,{144,28,28.0,28,28,0,0},{}},
[107494]={0,{144,28,28.0,28,28,0,0},{}},
[107495]={0,{144,28,28.0,28,28,0,0},{}},
[107496]={0,{144,28,28.0,28,28,0,0},{}},
[107497]={76,{131587,17493,2773.0,51979,53292,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,241312,60000}},
[107498]={80,{224351,21470,2023.0,66985,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771373,100,242228,10000},{25,20.4,39.6}},
[107499]={78,{200007,19016,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771335,100},{25,54.5,75.9}},
[107500]={78,{160019,17013,1925.0,55057,52038,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771336,100},{25,59.9,68.8}},
[107501]={78,{186539,16517,1925.0,60545,57331,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771348,100},{25,49.5,37.5}},
[107502]={78,{203125,20393,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771338,100},{25,64.5,30.8}},
[107503]={78,{203125,20393,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771339,100},{25,62.0,45.7}},
[107504]={78,{203125,20393,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771340,100},{25,62.8,44.4}},
[107505]={78,{203125,20393,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771341,100},{25,65.0,52.7}},
[107506]={78,{203125,20393,1925.0,63029,58033,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771342,100},{25,65.9,34.4}},
[107507]={79,{203441,20828,1974.0,64984,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771354,100},{25,32.1,47.5}},
[107508]={79,{203441,20828,1974.0,64984,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771355,100},{25,35.5,56.6}},
[107509]={80,{208503,21370,2023.0,66672,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771369,100},{25,23.2,62.8}},
[107510]={79,{203441,20828,1974.0,64984,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771356,100},{25,28.1,45.4}},
[107511]={78,{203125,20393,1925.0,63029,56056,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771343,100},{25,64.3,34.9}},
[107512]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771357,100},{25,32.4,49.1}},
[107513]={80,{194065,21269,2023.0,66358,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771358,100},{25,26.6,53.9}},
[107514]={79,{205015,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771349,100,242140,60000},{25,49.6,37.2}},
[107515]={83,{1007049,52617,15445.0,133177,99266,0,0},{}},
[107516]={83,{2076981,185978,24595.0,153761,141035,4800,2800},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,53.6,60.1}},
[107517]={83,{2076981,185978,24595.0,153761,141035,4800,2800},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,58.3,63.9}},
[107518]={83,{1216029,215613,12945.0,94949,86062,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,38.8,44.8}},
[107519]={83,{1216029,203215,15445.0,94622,84147,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,57.4,62.0}},
[107520]={83,{1216029,241804,15445.0,101483,102682,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,39.1,45.1}},
[107521]={83,{7246,2178,2178.0,2178,2178,0,0},{}},
[107522]={0,{144,28,28.0,28,28,0,0},{},{151,58.4,67.9}},
[107523]={0,{144,28,28.0,28,28,0,0},{},{151,44.9,43.5}},
[107524]={0,{186,32,28.0,96,84,0,0},{}},
[107525]={83,{25003996,186944,33980.0,155193,101596,0,0},{}},
[107526]={83,{400638,201917,20445.0,99131,97767,0,0},{}},
[107527]={83,{800915,27162,33980.0,10091,23923,0,0},{}},
[107528]={83,{900071,89147,5445.0,100912,100046,0,0},{}},
[107529]={83,{623920,176481,17945.0,75345,123070,0,0},{},{151,31.8,32.4}},
[107530]={80,{22057,6610,5059.0,6128,6071,0,0},{}},
[107531]={83,{1243713,229184,12945.0,95503,87615,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,20.7,37.7}},
[107532]={83,{1243713,235160,11445.0,95833,87615,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,24.9,35.8}},
[107533]={83,{1243713,248575,11445.0,109684,101596,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,20.9,36.5}},
[107534]={83,{2063039,298508,12945.0,174650,180823,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,20.7,37.7}},
[107535]={80,{2026401,277579,11059.0,162408,174977,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,24.9,35.8}},
[107536]={55,{500579,6564,6810.0,5071,5575,0,0},{}},
[107537]={77,{216393,14164,2844.0,47724,51571,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771311,100},{24,55.3,37.5}},
[107538]={77,{216393,14164,2844.0,47724,51571,0,0},{720011,5000,720142,10000,726766,10000,726103,2000,726104,2000,726105,100,726106,100,771312,100},{24,55.4,39.7}},
[107539]={80,{210124,21068,2023.0,66358,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771364,100},{25,17.8,55.5}},
[107540]={0,{144,28,28.0,28,28,0,0},{}},
[107541]={0,{144,28,28.0,28,28,0,0},{}},
[107542]={83,{1436619,163438,12945.0,98216,70527,4800,2800},{}},
[107543]={83,{1436619,163438,12945.0,98216,70527,4800,5600},{}},
[107544]={83,{900071,201917,20445.0,100912,329696,0,0},{}},
[107545]={83,{1446567,464406,12945.0,95602,85285,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107546]={83,{1528788,291998,12945.0,175482,86062,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107547]={83,{1222424,216786,12945.0,94949,84147,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107548]={83,{1327463,256196,15445.0,102137,102682,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107549]={0,{144,28,28.0,28,28,0,0},{}},
[107550]={50,{477070,3215,4913.0,1500,1116,0,0},{}},
[107551]={83,{1222424,216786,12945.0,94949,86062,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107552]={83,{1222424,216786,15445.0,95602,86062,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,33.3,27.3}},
[107553]={83,{1222424,216786,15445.0,95602,84147,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,29.6,32.1}},
[107554]={83,{1216029,228010,15445.0,95602,83220,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,36.9,24.5}},
[107555]={83,{1216029,215613,15445.0,95602,83220,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{151,32.9,28.1}},
[107556]={83,{1222424,216786,17945.0,94622,105462,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107557]={83,{1399453,192075,20445.0,98216,97767,0,0},{}},
[107558]={80,{28974,3304,2023.0,9106,9167,0,0},{}},
[107559]={75,{203736,5916,4839.0,1410,1964,0,0},{}},
[107560]={1,{21568,940,1254.0,320,331,0,0},{}},
[107561]={75,{1692280,8796,4464.0,2589,2607,0,0},{}},
[107562]={0,{144,28,28.0,28,28,0,0},{}},
[107563]={79,{191210,20533,1974.0,64677,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771363,100},{25,20.2,42.6}},
[107564]={0,{144,28,28.0,28,28,0,0},{}},
[107565]={0,{144,28,28.0,28,28,0,0},{}},
[107566]={80,{266835,19316,2023.0,45749,40695,0,0},{},{25,38.8,63.4}},
[107567]={80,{266835,19316,2023.0,45749,40695,0,0},{},{25,39.1,63.7}},
[107568]={80,{266835,19316,2023.0,45749,40695,0,0},{},{25,37.1,64.9}},
[107569]={0,{144,28,28.0,28,28,0,0},{}},
[107570]={0,{150,30,28.0,90,84,0,0},{}},
[107571]={79,{376749,36192,1974.0,88785,47486,0,0},{}},
[107572]={80,{469591,13934,1914.0,57448,25122,0,0},{}},
[107573]={0,{144,28,28.0,28,28,0,0},{},{152,46.2,22.8}},
[107574]={0,{186,32,28.0,96,84,0,0},{}},
[107575]={80,{1474993,7620,11218.0,7256,7030,0,0},{}},
[107576]={80,{66340,10078,5059.0,10006,6071,0,0},{}},
[107577]={80,{21583,6677,5069.0,6077,6155,0,0},{}},
[107578]={80,{1586679,24285,11130.0,6799,6981,0,0},{}},
[107579]={80,{396669,8095,11130.0,6071,6071,0,0},{}},
[107580]={80,{396669,8095,11130.0,6071,6071,0,0},{}},
[107581]={83,{71281519,280245,44980.0,369406,183906,5000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726878,200000,726879,200000,726186,100000,725927,200000}},
[107582]={83,{1851838,201473,20445.0,98216,97767,4800,2800},{}},
[107583]={83,{8914995,73116,44980.0,108018,97767,5000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726897,200000,726186,100000,725176,200000}},
[107584]={83,{313729,40680,20445.0,88414,76232,4800,2800},{}},
[107585]={80,{2026401,277579,11059.0,163021,173470,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,20.9,36.5}},
[107586]={83,{122780,55874,12945.0,26250,34797,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,21.1,37.7}},
[107587]={83,{122780,54061,11445.0,26580,34797,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,24.9,35.8}},
[107588]={83,{122780,54061,11445.0,27239,33244,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,20.9,36.5}},
[107589]={83,{75659448,226822,44980.0,369406,183906,5000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726880,200000,726881,200000,726186,100000,725929,200000}},
[107590]={83,{44409,10885,5445.0,10091,10063,0,0},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726882,200000,726883,200000,726186,100000,726055,200000}},
[107591]={83,{82099406,330608,33980.0,369406,183906,3000,3000},{}},
[107592]={83,{107772853,321384,39480.0,369406,183906,3700,1800},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726886,200000,726887,200000,726186,100000,726060,200000}},
[107593]={83,{90743350,262347,33980.0,372847,183906,0,0},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726884,200000,726885,200000,726186,100000,726058,200000},{152,29.9,37.5}},
[107594]={83,{90743350,262347,33980.0,174980,183906,0,0},{}},
[107595]={83,{994353,230110,20445.0,99131,111387,0,0},{}},
[107596]={83,{994353,185803,17945.0,174980,158286,0,0},{}},
[107597]={83,{2017118,345421,17945.0,173365,248510,0,0},{}},
[107598]={83,{2017118,345421,17945.0,173365,248510,0,0},{}},
[107599]={83,{994353,185803,17945.0,174980,158286,0,0},{}},
[107600]={83,{2018881,347278,24595.0,173365,248861,4800,2800},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,53.6,60.1}},
[107601]={83,{2018881,347278,24595.0,173365,248861,4800,2800},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,58.3,63.9}},
[107602]={83,{2017118,280831,12945.0,173365,179270,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,38.8,44.8}},
[107603]={83,{2017118,264684,15445.0,173038,213890,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,57.4,62.0}},
[107604]={83,{2017118,296979,15445.0,173365,213890,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,39.1,45.1}},
[107605]={83,{9355301,75249,39480.0,108018,97767,5000,3000},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726898,200000,726186,100000,725301,200000}},
[107606]={83,{9785862,71363,22980.0,108018,70527,3000,3000},{}},
[107607]={83,{44409,10885,5445.0,10091,10063,0,0},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726899,200000,726186,100000,725303,200000}},
[107608]={83,{10651754,71546,33980.0,109024,101596,0,0},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726900,200000,726186,100000,725304,200000},{153,29.9,37.5}},
[107609]={83,{10651754,71546,33980.0,109024,101596,0,0},{}},
[107610]={83,{234398,42010,15445.0,89237,74880,0,0},{}},
[107611]={83,{234398,42010,15445.0,89237,74880,0,0},{}},
[107612]={83,{322060,39522,12945.0,88414,62760,0,0},{}},
[107613]={83,{322060,39522,12945.0,88414,62760,0,0},{}},
[107614]={83,{234398,42010,15445.0,89237,74880,0,0},{}},
[107615]={83,{11497425,88222,31780.0,119976,113368,3700,1800},{726767,5000,720143,60000,726766,100000,726109,70000,726110,70000,726901,200000,726186,100000,725307,200000}},
[107616]={83,{120152,65003,24595.0,26334,46149,4800,2800},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,53.6,60.1}},
[107617]={83,{120152,65003,24595.0,26334,46149,4800,2800},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,58.3,63.9}},
[107618]={83,{120047,52566,12945.0,26334,33244,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,38.8,44.8}},
[107619]={83,{120047,49543,15445.0,26008,39664,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,57.4,62.0}},
[107620]={83,{120047,55588,15445.0,26334,39664,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,39.1,45.1}},
[107621]={0,{150,30,28.0,90,84,0,0},{}},
[107622]={10,{511,126,131.0,393,393,0,0},{}},
[107623]={0,{144,28,28.0,28,28,0,0},{}},
[107624]={101,{8318737,271549,23312.0,270243,279195,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,59.1,51.3}},
[107625]={0,{144,28,28.0,28,28,0,0},{}},
[107626]={0,{144,28,28.0,28,28,0,0},{}},
[107627]={80,{2300056,25057,12257.0,65266,63247,0,0},{}},
[107628]={0,{146,32,28.0,84,84,0,0},{}},
[107629]={0,{150,30,28.0,90,84,0,0},{}},
[107630]={80,{542706,29830,1914.0,8669,3984,0,0},{}},
[107631]={79,{203441,20828,1974.0,64984,57783,0,0},{},{25,44.4,50.0}},
[107632]={0,{142,24,28.0,84,84,0,0},{}},
[107633]={79,{487741,18497,4935.0,60580,58640,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771359,100,206548,30000},{25,34.2,56.1}},
[107634]={10,{484,131,131.0,131,131,0,0},{}},
[107635]={0,{144,28,28.0,28,28,0,0},{}},
[107636]={79,{203441,20828,1974.0,64984,57783,0,0},{},{25,28.2,57.9}},
[107637]={0,{142,24,28.0,84,84,0,0},{}},
[107638]={0,{142,24,28.0,84,84,0,0},{}},
[107639]={0,{142,24,28.0,84,84,0,0},{}},
[107640]={80,{500042,19017,5059.0,62158,60041,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771360,100},{25,31.2,45.5}},
[107641]={0,{144,28,28.0,28,28,0,0},{}},
[107642]={80,{13533,3049,2023.0,9149,9167,0,0},{}},
[107643]={0,{150,30,28.0,90,84,0,0},{}},
[107644]={83,{427707,8733,11980.0,6565,6534,0,0},{}},
[107645]={79,{218921,20926,1974.0,65291,59422,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771361,100,242195,40000},{25,29.3,49.5}},
[107646]={83,{2017118,278483,17945.0,173365,215743,0,0},{},{152,31.8,32.4}},
[107647]={83,{2399528,535767,12945.0,174018,178493,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107648]={83,{2535914,384738,12945.0,319418,179270,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107649]={83,{2027725,245114,12945.0,201007,204623,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107650]={83,{2377856,314655,15445.0,300661,306563,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,50.5,20.4}},
[107651]={83,{2027725,250098,12945.0,173365,179270,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,45.8,23.2}},
[107652]={83,{2027725,282360,15445.0,174018,179270,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,33.3,27.3}},
[107653]={83,{2027725,282360,15445.0,174018,213890,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,29.6,32.1}},
[107654]={83,{2017118,296979,15445.0,174018,212963,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,36.9,24.5}},
[107655]={83,{2017118,280831,15445.0,174018,212963,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,32.9,28.1}},
[107656]={83,{2027725,240000,17945.0,173038,216670,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{152,44.6,23.7}},
[107657]={83,{120047,52566,17945.0,26334,41517,0,0},{},{153,31.8,32.4}},
[107658]={83,{142806,113221,12945.0,26988,32467,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107659]={83,{150922,71188,12945.0,49538,33244,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107660]={83,{120678,52852,12945.0,26334,39664,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107661]={83,{120678,58897,15445.0,26988,39664,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107662]={83,{120678,52852,12945.0,26334,33244,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107663]={83,{120678,52852,15445.0,26988,33244,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,33.3,27.3}},
[107664]={83,{120678,52852,15445.0,26988,39664,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,29.6,32.1}},
[107665]={83,{120047,55588,15445.0,26988,38737,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,36.9,24.5}},
[107666]={83,{120047,52566,15445.0,26988,38737,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500},{153,32.9,28.1}},
[107667]={83,{120678,52852,17945.0,26008,42444,0,0},{720011,3000,720142,60000,726766,100000,726107,3500,726108,3500,726109,1500,726110,1500}},
[107668]={0,{150,30,28.0,90,84,0,0},{}},
[107669]={80,{220011,21370,2023.0,66672,60841,0,0},{}},
[107670]={75,{140863,14944,1785.0,29198,30890,0,0},{}},
[107671]={90,{11061587,120707,14170.0,58742,61825,0,0},{}},
[107672]={80,{2300056,25057,12257.0,65266,63247,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771365,100}},
[107673]={0,{144,28,28.0,28,28,0,0},{}},
[107674]={0,{144,28,28.0,28,28,0,0},{}},
[107675]={80,{230070,23057,2501.0,66672,60841,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771369,100}},
[107676]={83,{82099406,262347,33980.0,173365,183906,0,0},{}},
[107677]={77,{194346,2787,1878.0,8362,9227,0,0},{},{25,24.0,26.7}},
[107678]={83,{9785862,71363,22980.0,108018,70527,0,0},{}},
[107679]={80,{1711161,25349,20237.0,12199,12203,0,0},{}},
[107680]={0,{144,28,28.0,28,28,0,0},{}},
[107681]={0,{144,28,28.0,28,28,0,0},{}},
[107682]={0,{144,28,28.0,28,28,0,0},{}},
[107683]={0,{144,28,28.0,28,28,0,0},{}},
[107684]={100,{33813,10563,8125.0,9750,9750,0,0},{}},
[107685]={100,{2747220,34533,32501.0,16575,16673,0,0},{}},
[107686]={0,{144,28,28.0,28,28,0,0},{}},
[107687]={0,{142,24,28.0,84,84,0,0},{}},
[107688]={101,{8424590,264414,23312.0,257654,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,37.2,28.2}},
[107689]={101,{8424590,264414,23312.0,257654,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,33.8,84.0}},
[107690]={101,{8380156,264193,23312.0,258054,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,63.4,46.0}},
[107691]={101,{8395554,263530,23312.0,257654,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,71.9,63.4}},
[107692]={80,{230126,18385,3064.0,68058,65056,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771374,100},{26,62.7,20.2}},
[107693]={80,{227754,16266,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771375,100},{26,62.4,17.0}},
[107694]={80,{227754,18299,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771376,100},{26,51.9,40.7}},
[107695]={80,{211983,18213,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771377,100},{26,46.9,8.7}},
[107696]={80,{211983,18213,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771386,100},{26,52.4,54.0}},
[107697]={80,{245065,18385,2023.0,68701,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771387,100},{26,53.1,56.8}},
[107698]={83,{215151642,320992,21782.0,482274,484547,0,0},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,771474,10000},{26,54.3,57.8}},
[107699]={0,{129,19,28.0,19,19,0,0},{}},
[107700]={80,{229525,18041,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771395,100},{26,41.7,30.5}},
[107701]={80,{229525,18041,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771396,100},{26,48.6,29.3}},
[107702]={80,{245065,18385,2023.0,68701,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771397,100},{26,30.0,22.6}},
[107703]={80,{227754,18299,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771398,100},{26,37.2,30.2}},
[107704]={80,{227754,18299,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771388,100},{26,53.3,50.0}},
[107705]={80,{227754,16266,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771389,100},{26,54.2,55.8}},
[107706]={80,{300043,20428,2023.0,68701,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771392,100},{26,37.2,22.8}},
[107707]={80,{459059,18299,2023.0,167252,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771393,100},{26,37.5,28.6}},
[107708]={80,{459059,18299,2023.0,167252,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771394,100},{26,40.5,31.8}},
[107709]={81,{22916,2042,2074.0,7189,10889,0,0},{}},
[107710]={81,{251115,18864,2074.0,70475,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771399,100},{26,32.0,41.7}},
[107711]={81,{233395,18776,2074.0,70146,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771400,100},{26,37.1,36.4}},
[107712]={81,{285755,20860,2074.0,70146,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771401,100},{26,35.6,41.2}},
[107713]={81,{307450,20958,2074.0,70475,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771402,100},{26,27.1,51.8}},
[107714]={81,{307450,20958,2074.0,70475,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771403,100},{26,27.8,54.8}},
[107715]={81,{233395,18776,2074.0,70146,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771404,100},{26,27.8,51.0}},
[107716]={81,{233395,18776,2074.0,70146,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771405,100},{26,35.0,53.7}},
[107717]={81,{251115,18864,2074.0,70475,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771406,100},{26,27.2,50.8}},
[107718]={81,{235217,18513,2074.0,69818,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771407,100},{26,34.6,48.3}},
[107719]={81,{230732,16458,2074.0,69818,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771408,100},{26,33.8,53.7}},
[107720]={82,{241022,18994,2125.0,71615,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771411,100},{26,38.0,81.0}},
[107721]={82,{295094,21100,2125.0,71615,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771412,100},{26,36.1,77.3}},
[107722]={82,{241022,18994,2125.0,71615,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771413,100},{26,32.8,73.9}},
[107723]={83,{265777,16249,2178.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771433,100},{27,46.2,64.2}},
[107724]={82,{257286,19353,2125.0,72285,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771416,100},{26,48.4,81.3}},
[107725]={82,{315005,21498,2125.0,72285,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771417,100,242655,60000},{26,60.8,84.0}},
[107726]={82,{226990,13924,2125.0,67401,66492,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771418,100},{26,51.3,84.5}},
[107727]={82,{239149,19263,2125.0,71950,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771419,100},{26,61.3,70.4}},
[107728]={82,{607189,21369,5314.0,71950,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771420,100},{26,61.5,70.6}},
[107729]={82,{239149,19263,2125.0,71950,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771421,100},{26,55.5,80.5}},
[107730]={82,{607189,21369,5314.0,71950,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771422,100},{26,55.5,80.3}},
[107731]={81,{228945,16692,2074.0,70146,60484,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771423,100},{26,59.7,87.4}},
[107732]={82,{700074,20003,5314.0,72285,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771414,100},{26,40.3,69.9}},
[107733]={81,{607528,20845,5185.0,70475,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771409,100},{26,29.4,77.2}},
[107734]={0,{144,28,28.0,28,28,0,0},{}},
[107735]={81,{251115,18864,2074.0,70475,66316,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771410,100},{26,30.9,74.2}},
[107736]={80,{240392,16343,2023.0,68701,64778,0,0},{},{26,64.7,19.8}},
[107737]={0,{129,19,28.0,19,19,0,0},{}},
[107738]={80,{2300056,25057,12257.0,65266,63247,0,0},{720011,5000,720142,10000,726766,10000,726107,2000,726108,2000,726109,100,726110,100,771365,100},{25,23.5,74.5}},
[107739]={80,{229525,18041,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771378,100},{26,67.5,16.1}},
[107740]={80,{278849,20333,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771379,100,242580,200000},{26,62.5,16.8}},
[107741]={80,{223412,16266,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771380,100},{26,51.8,6.4}},
[107742]={80,{227754,18299,2023.0,68380,58952,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771381,100},{26,65.3,24.1}},
[107743]={80,{211983,18213,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771390,100}},
[107744]={80,{229525,18041,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771382,100},{26,60.7,16.5}},
[107745]={80,{229525,18041,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771383,100},{26,60.9,17.6}},
[107746]={81,{597081,20393,5185.0,69818,60484,0,0},{}},
[107747]={81,{238879,18864,2074.0,69818,60484,0,0},{}},
[107748]={80,{225149,16037,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771384,100},{26,72.9,19.1}},
[107749]={81,{235830,18864,3140.0,69818,60768,0,0},{},{26,42.7,56.5}},
[107750]={80,{229525,18041,2023.0,68058,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771391,100},{26,49.1,45.1}},
[107751]={80,{227754,18299,2023.0,68380,64778,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771385,100},{26,63.8,20.1}},
[107752]={80,{13533,3049,2023.0,9149,9167,0,0},{},{26,60.2,29.8}},
[107753]={0,{129,19,28.0,19,19,0,0},{}},
[107754]={1,{117,35,27.0,63,90,0,0},{}},
[107755]={37,{3902,608,577.0,1852,1869,0,0},{}},
[107756]={37,{3902,608,577.0,1852,1869,0,0},{}},
[107757]={37,{3902,608,577.0,1852,1869,0,0},{}},
[107758]={37,{3902,608,577.0,1852,1869,0,0},{}},
[107759]={83,{2304223,223208,5445.0,323663,323728,0,0},{}},
[107760]={83,{1851838,329397,5445.0,284455,284520,0,0},{}},
[107761]={0,{129,19,28.0,19,19,0,0},{}},
[107762]={85,{1598221,38189,6286.0,426087,371925,0,0},{}},
[107763]={80,{40291,10147,5064.0,9149,9430,0,0},{},{26,37.2,28.3}},
[107764]={80,{702965,9916,5059.0,9192,9167,0,0},{}},
[107765]={85,{1043955,20875,13216.0,130006,180002,0,0},{}},
[107766]={0,{144,28,28.0,28,28,0,0},{}},
[107767]={0,{129,19,28.0,19,19,0,0},{}},
[107768]={0,{144,28,28.0,28,28,0,0},{}},
[107769]={80,{23829,2002,2023.0,7047,10624,0,0},{}},
[107770]={0,{186,32,28.0,96,84,0,0},{}},
[107771]={0,{186,32,28.0,96,84,0,0},{}},
[107772]={80,{240392,16343,2023.0,68701,64778,0,0},{},{26,30.8,25.7}},
[107773]={80,{240392,16343,2023.0,68701,64778,0,0},{},{26,30.2,21.3}},
[107774]={10,{7600,467,327.0,5125,318,0,0},{}},
[107775]={10,{7600,467,327.0,5125,318,0,0},{}},
[107776]={0,{129,19,28.0,19,19,0,0},{}},
[107777]={0,{129,19,28.0,19,19,0,0},{}},
[107778]={80,{1711267,18893,20237.0,9106,9167,0,0},{}},
[107779]={55,{10048,3039,1345.0,2350,2540,0,0},{}},
[107780]={55,{10381,2794,981.0,2950,2540,0,0},{}},
[107781]={55,{10996,3354,2595.0,3114,3114,0,0},{}},
[107782]={55,{10048,3039,1345.0,2350,2540,0,0},{}},
[107783]={80,{13533,3049,2023.0,9149,9167,0,0},{},{26,61.0,30.1}},
[107784]={81,{213667,21923,2074.0,68396,60647,0,0},{}},
[107785]={81,{230732,16458,2074.0,69818,60484,0,0},{},{26,38.6,65.2}},
[107786]={0,{186,32,28.0,96,84,0,0},{}},
[107787]={63,{17584318,67939,53023.0,75920,61719,2700,1200},{720011,5000,720142,10000,725494,2000,725492,2000,720102,10000,725597,50000,725245,200000,240720,200000,770928,100}},
[107788]={0,{129,19,28.0,19,19,0,0},{}},
[107789]={80,{14562,3064,2023.0,9192,9167,0,0},{},{26,41.5,44.7}},
[107790]={0,{1,22,28.0,67,59,0,0},{}},
[107791]={62,{428611,15763,4667.0,24022,24252,0,0},{}},
[107792]={75,{162994820,228617,117858.0,411569,722102,4800,4500},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000},{19,38.1,15.8}},
[107793]={0,{129,19,28.0,19,19,0,0},{}},
[107794]={82,{236427,16888,2125.0,71615,67887,0,0},{720011,5000,720142,10000,726876,10000,726922,2000,726923,2000,726924,100,726925,100,771415,100},{26,40.4,71.6}},
[107795]={80,{12596,3035,2023.0,3035,3055,0,0},{},{26,35.1,72.5}},
[107796]={0,{129,19,28.0,19,19,0,0},{}},
[107797]={80,{15076,3049,2023.0,10634,9167,0,0},{},{26,40.9,80.5}},
[107798]={80,{13533,3049,2023.0,9149,9167,0,0},{},{26,34.2,72.3}},
[107799]={82,{608789,21211,5314.0,71615,67887,0,0},{720011,5000,720142,10000,726766,10000,726922,2000,726923,2000,726924,100,726925,100,771413,100}},
[107800]={1,{150,32,28.0,96,84,0,0},{}},
[107801]={1,{299,32,28.0,96,84,0,0},{}},
[107802]={72,{2699067,46838,9135.0,56666,48561,0,0},{}},
[107803]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,720142,5000}},
[107804]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,720142,5000}},
[107805]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,720142,5000}},
[107806]={50,{17654,5015,4733.0,2679,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[107807]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[107808]={50,{17654,6000,2233.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[107809]={50,{17654,6013,6733.0,3215,3242,0,0},{720011,3000,723925,4000,720142,5000,723982,3000,720100,3500,721915,2000}},
[107810]={101,{8395554,263530,23312.0,257654,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,61.6,79.1}},
[107811]={101,{8395554,263530,23312.0,257654,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,37.8,37.0}},
[107812]={101,{8380156,264193,23312.0,258054,257934,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{178,44.6,78.1}},
[107813]={101,{1013399,73161,23312.0,103789,104068,0,0},{}},
[107814]={101,{288391,103519,23312.0,103789,104068,0,0},{}},
[107815]={98,{33954058,17031,7761.0,485562,481421,0,0},{}},
[107816]={98,{33954058,17031,7761.0,485562,481421,0,0},{}},
[107817]={85,{2741743,223139,20716.0,250707,208974,5000,3000},{}},
[107818]={85,{2741743,223139,20716.0,250707,208974,5000,3000},{}},
[107819]={85,{2741743,223139,20716.0,250707,208974,5000,3000},{}},
[107820]={85,{2741743,223139,20716.0,250707,208974,5000,3000},{}},
[107821]={0,{129,19,28.0,19,19,0,0},{}},
[107822]={80,{41247,9916,5059.0,9192,9167,0,0},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726906,200000,726907,200000,726187,100000,726061,200000}},
[107823]={0,{186,32,28.0,96,84,0,0},{}},
[107824]={0,{129,19,28.0,19,19,0,0},{}},
[107825]={81,{235830,18864,3140.0,69818,60768,0,0},{},{26,42.3,57.0}},
[107826]={85,{2063093,181114,20716.0,182114,218013,0,0},{}},
[107827]={85,{2419331,181114,20716.0,202692,218013,0,0},{}},
[107828]={1,{108,21,14.0,45,60,0,0},{}},
[107829]={85,{281903,122981,5716.0,65506,10700,0,0},{}},
[107830]={85,{448530,21145,45575.0,6859,21859,0,0},{}},
[107831]={0,{186,32,28.0,96,84,0,0},{}},
[107832]={88,{97598666,314760,41013.0,495232,482988,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720839,200000,720840,200000,720853,100000,726073,200000},{157,55.9,51.5}},
[107833]={88,{8156187,284600,35513.0,458041,321364,0,0},{}},
[107834]={88,{95069275,309966,44876.0,490757,483714,5000,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720833,200000,720834,200000,720853,100000,726063,200000}},
[107835]={88,{2730177,12678,6142.0,495232,418218,0,0},{}},
[107836]={88,{102164258,282843,41013.0,490757,482988,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720837,200000,720838,200000,720853,100000,726070,200000}},
[107837]={88,{1324257,171768,21142.0,218032,259279,0,0},{}},
[107838]={0,{144,28,28.0,28,28,0,0},{},{157,55.4,26.0}},
[107839]={81,{307450,26192,2074.0,67334,61199,0,0},{720011,5000,720142,10000,726766,10000,726922,2000,726923,2000,726924,100,726925,100,771403,100},{26,21.4,52.5}},
[107840]={85,{3081402,244233,45575.0,182114,187115,5000,3000},{}},
[107841]={85,{2165951,222892,13216.0,183795,183333,0,0},{}},
[107842]={85,{1020801,156562,20716.0,92943,99678,5000,3000},{}},
[107843]={0,{129,19,28.0,19,19,0,0},{}},
[107844]={101,{1013399,103519,23312.0,103789,104068,0,0},{}},
[107845]={34,{1832,554,514.0,538,514,0,0},{}},
[107846]={1,{162,84,70.0,84,84,0,0},{}},
[107847]={0,{135,21,28.0,62,59,0,0},{}},
[107848]={85,{2165951,222892,13216.0,183795,183333,0,0},{}},
[107849]={80,{2095990,19249,11130.0,101122,103471,0,0},{}},
[107850]={100,{147880,5573,3250.0,16720,16673,0,0},{}},
[107851]={71,{127221,13420,1611.0,26158,27833,0,0},{720011,5000,720142,10000,725777,2000,725778,2000,720103,10000,771201,100,240818,60000,240819,60000,240967,5000}},
[107852]={88,{54012090,348968,35513.0,530017,611928,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720835,200000,720836,200000,720853,100000,726068,200000}},
[107853]={0,{144,28,28.0,28,28,0,0},{},{157,71.2,45.4}},
[107854]={88,{5678244,234107,16142.0,495232,418218,0,0},{}},
[107855]={88,{102293212,348968,35513.0,530017,611928,0,0},{}},
[107856]={0,{129,19,28.0,19,19,0,0},{}},
[107857]={85,{1542620,247717,15716.0,100724,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,35.5,91.9}},
[107858]={85,{81789530,287096,45575.0,426087,361989,5000,3000},{}},
[107859]={85,{95280957,287096,45575.0,426087,361989,5000,3000},{}},
[107860]={70,{8377792,7180,4758.0,6561,6675,0,0},{}},
[107861]={85,{74846234,180795,45575.0,209322,157095,5000,3000},{},{155,34.9,90.0}},
[107862]={85,{2415284,275848,18216.0,232253,252693,0,0},{}},
[107863]={85,{99515395,307670,45575.0,456486,361989,0,0},{}},
[107864]={85,{2129035,182489,13216.0,182114,183333,0,0},{}},
[107865]={85,{2165951,235305,13216.0,183795,183333,0,0},{}},
[107866]={80,{41247,9916,5059.0,9192,9167,0,0},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726908,200000,726909,200000,726187,100000,726065,200000}},
[107867]={85,{81789530,152060,12575.0,426087,113589,5500,2000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726910,200000,726911,200000,726187,100000,726070,200000}},
[107868]={88,{2730177,22158,16142.0,495232,30799,0,0},{}},
[107869]={88,{2730177,22158,16142.0,495232,30799,0,0},{}},
[107870]={88,{2730177,22158,16142.0,495232,30799,0,0},{}},
[107871]={88,{102433395,314760,41013.0,495232,482988,5000,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720841,200000,720842,200000,720853,100000,726078,200000}},
[107872]={88,{2730177,176298,20142.0,220020,224509,0,0},{}},
[107873]={88,{2683925,12678,6142.0,490757,11719,0,0},{}},
[107874]={88,{2538881,244007,12142.0,254887,271594,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{157,66.8,26.0}},
[107875]={88,{2552192,244610,12142.0,254445,270611,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{157,71.6,33.0}},
[107876]={88,{102337199,314760,41013.0,490757,482988,0,0},{}},
[107877]={88,{2538881,244007,12142.0,254887,271594,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{157,66.5,25.0}},
[107878]={88,{2552192,253561,13642.0,255624,270775,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[107879]={88,{2552192,253561,13642.0,255624,270775,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[107880]={88,{2552192,253561,13642.0,255624,270775,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[107881]={88,{2538881,252143,13642.0,255624,270775,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[107882]={88,{2538881,252143,13642.0,255624,270775,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[107883]={85,{3081402,223087,45575.0,456486,361989,5000,3000},{}},
[107884]={88,{1752606,252143,13642.0,255624,270775,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[107885]={85,{2415284,262685,15716.0,232253,216637,0,0},{}},
[107886]={85,{2415284,262685,15716.0,232253,184919,0,0},{}},
[107887]={85,{2415284,275848,18216.0,232253,216637,0,0},{}},
[107888]={85,{2415284,262685,15716.0,232253,184919,0,0},{}},
[107889]={85,{2355446,267626,16716.0,231191,216637,0,0},{}},
[107890]={85,{2355446,249198,13216.0,231191,289859,0,0},{}},
[107891]={84,{270146,18026,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771440,100},{27,28.5,58.9}},
[107892]={84,{272278,17777,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771441,100},{27,34.7,74.1}},
[107893]={85,{278909,18235,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771456,100},{27,28.5,58.1}},
[107894]={84,{272278,16671,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771442,100},{27,29.1,64.9}},
[107895]={83,{265777,16249,2178.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771425,100},{27,58.3,84.3}},
[107896]={83,{265777,15601,2178.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771426,100},{27,55.6,78.9}},
[107897]={84,{272278,17777,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771443,100},{27,26.8,67.0}},
[107898]={0,{142,24,28.0,84,84,0,0},{}},
[107899]={83,{263703,18448,2178.0,72413,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771429,100},{27,57.2,62.0}},
[107900]={83,{263703,18229,2178.0,72413,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771430,100},{27,54.0,57.6}},
[107901]={83,{265777,15817,2178.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771431,100},{27,53.9,77.6}},
[107902]={83,{265777,18407,2178.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771432,100},{27,55.3,68.9}},
[107903]={0,{142,24,28.0,84,84,0,0},{}},
[107904]={83,{263703,17572,2178.0,72413,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771434,100},{27,41.8,71.2}},
[107905]={83,{263703,17572,2178.0,72413,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771435,100},{27,41.0,73.3}},
[107906]={86,{8434,2320,2342.0,7026,7026,0,0},{}},
[107907]={84,{272278,16671,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771444,100},{27,32.9,68.5}},
[107908]={84,{272278,16671,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771445,100},{27,32.6,68.4}},
[107909]={84,{272278,16671,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771446,100},{27,33.1,67.8}},
[107910]={84,{666242,15765,5579.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771447,100},{27,33.1,64.2}},
[107911]={84,{270146,18026,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771449,100},{27,21.3,23.0}},
[107912]={84,{270146,15784,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771450,100},{27,19.1,17.7}},
[107913]={0,{150,30,28.0,90,84,0,0},{}},
[107914]={0,{144,28,28.0,28,28,0,0},{}},
[107915]={84,{270146,18026,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771451,100},{27,22.5,24.4}},
[107916]={84,{270146,18026,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771452,100},{27,21.9,19.0}},
[107917]={84,{270146,18026,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771438,100},{27,27.9,67.8}},
[107918]={84,{270146,15784,2231.0,74259,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771439,100},{27,28.7,67.8}},
[107919]={84,{270146,18026,2231.0,74259,66023,0,0},{},{27,33.6,71.8}},
[107920]={0,{144,28,28.0,28,28,0,0},{},{27,22.0,20.8}},
[107921]={85,{278909,18235,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771457,100},{27,35.7,30.4}},
[107922]={85,{279624,17883,3461.0,75795,67868,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771458,100},{27,21.1,44.8}},
[107923]={85,{278909,18235,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771460,100},{27,52.7,22.7}},
[107924]={85,{278909,17103,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771459,100},{27,32.4,35.6}},
[107925]={84,{272278,17777,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771453,100},{27,19.0,18.2}},
[107926]={84,{272278,16671,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771454,100},{27,23.9,29.0}},
[107927]={84,{272278,17777,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771455,100},{27,20.7,29.1}},
[107928]={85,{276717,18490,2286.0,76145,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771461,100},{27,50.4,37.7}},
[107929]={85,{276717,18490,2286.0,76145,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771462,100},{27,47.6,34.5}},
[107930]={85,{276717,19639,2286.0,76145,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771463,100},{27,47.7,34.0}},
[107931]={85,{276717,18490,2286.0,76145,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771464,100},{27,46.5,36.4}},
[107932]={85,{278909,18235,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771465,100},{27,47.7,26.5}},
[107933]={85,{278909,18235,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771466,100},{27,43.5,25.7}},
[107934]={85,{225858747,370889,22864.0,504020,508753,0,0},{726129,200000,726130,200000,726131,200000,725245,200000,720143,80000,770039,10000},{27,43.5,22.6}},
[107935]={0,{144,28,28.0,28,28,0,0},{},{28,43.7,22.2}},
[107936]={86,{283420,21317,2342.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771475,100},{28,40.7,71.5}},
[107937]={86,{286402,21415,3545.0,74199,73294,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771476,100},{28,33.5,70.1}},
[107938]={86,{286402,21415,3545.0,74199,73294,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771477,100},{28,39.0,62.4}},
[107939]={86,{283420,21317,2342.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771478,100},{28,38.3,68.5}},
[107940]={86,{283420,21317,2342.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771479,100},{28,39.1,67.6}},
[107941]={86,{290113,21415,2342.0,74199,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771480,100},{28,53.5,70.7}},
[107942]={86,{315810,21415,2342.0,81226,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771481,100},{28,53.3,71.4}},
[107943]={86,{560432,70665,5855.0,95279,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771482,100},{28,52.8,71.5}},
[107944]={0,{144,28,28.0,28,28,0,0},{}},
[107945]={89,{612258,75877,6290.0,84091,84743,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771523,100},{29,20.4,40.3}},
[107946]={86,{316892,21317,2342.0,81599,88238,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771488,100,243063,5000},{28,52.8,42.6}},
[107947]={86,{308524,21317,2342.0,81599,88238,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771489,100,243063,5000},{28,61.7,32.1}},
[107948]={86,{308524,21317,2342.0,81599,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771490,100,243063,5000},{28,61.7,32.8}},
[107949]={0,{144,28,28.0,28,28,0,0},{}},
[107950]={86,{300156,21317,2342.0,81599,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771491,100,243063,5000},{28,60.4,28.7}},
[107951]={0,{144,28,28.0,28,28,0,0},{}},
[107952]={86,{350008,21415,2342.0,81972,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771493,100,243063,5000},{28,54.7,39.7}},
[107953]={87,{572245,72425,5997.0,84031,82492,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771494,100}},
[107954]={87,{572245,72425,5997.0,87663,86390,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771495,100}},
[107955]={87,{550004,72425,5997.0,76768,74695,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771496,100}},
[107956]={88,{1111719,15417,24569.0,7438,7370,0,0},{243062,200000,243063,200000}},
[107957]={90,{4986177,305639,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,73.0,48.2}},
[107958]={90,{4986177,305639,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,55.3,71.3}},
[107959]={90,{4986177,308579,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,41.5,56.2}},
[107960]={90,{4986177,308579,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,13.6,68.7}},
[107961]={90,{4986177,311519,18941.0,633566,673015,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,37.7,54.3}},
[107962]={90,{4986177,308579,18941.0,633566,673015,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,37.5,53.5}},
[107963]={90,{4986177,302911,18941.0,630771,664833,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,41.0,56.3}},
[107964]={90,{193389078,368351,42770.0,827673,832120,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720858,200000,720859,200000,720878,100000,726056,200000},{160,68.7,66.3}},
[107965]={90,{203517608,371871,43870.0,850966,832120,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720860,200000,720861,200000,720878,100000,726063,200000},{160,61.7,33.9}},
[107966]={90,{213646138,371871,43870.0,866495,898018,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720862,200000,720863,200000,720878,100000,726070,200000},{160,47.1,36.9}},
[107967]={90,{218710402,378911,44970.0,882023,854086,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720864,200000,720865,200000,720878,100000,726075,200000},{160,29.2,62.6}},
[107968]={90,{228838932,382431,44970.0,905316,898018,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720866,200000,720867,200000,720878,100000,726082,200000},{160,18.7,49.9}},
[107969]={86,{285673,21024,2342.0,74199,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771509,100,243088,60000},{28,67.3,16.9}},
[107970]={86,{285673,21024,2342.0,74199,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771510,100,243088,60000},{28,70.1,17.1}},
[107971]={87,{537847,71728,5997.0,76072,74695,0,0},{}},
[107972]={87,{536411,72251,5997.0,76420,74695,0,0},{}},
[107973]={84,{272278,16671,2231.0,73917,66023,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771448,100},{27,22.4,79.7}},
[107974]={83,{265777,16249,2178.0,72077,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771427,100},{27,57.8,88.6}},
[107975]={83,{266464,17654,3297.0,72077,64772,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771428,100},{27,52.6,89.5}},
[107976]={83,{263703,17791,2178.0,72413,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771436,100},{27,40.3,69.1}},
[107977]={0,{144,28,28.0,28,28,0,0},{}},
[107978]={85,{36721167,191368,45575.0,161536,143396,5500,2000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726912,200000,726187,100000,725421,200000}},
[107979]={85,{81789530,191750,45575.0,426087,361989,5000,3000},{}},
[107980]={85,{1598221,38189,6286.0,426087,371925,0,0},{}},
[107981]={85,{844489,20875,13216.0,79956,72318,0,0},{}},
[107982]={85,{39018637,201538,45575.0,182114,187115,5000,3000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726913,200000,726187,100000,725423,200000}},
[107983]={85,{1996011,189350,20716.0,147817,121537,5000,3000},{}},
[107984]={85,{655097,107380,20716.0,92943,99678,5000,3000},{}},
[107985]={85,{90544791,201941,45575.0,422189,361989,5000,3000},{}},
[107986]={85,{38963818,180795,45575.0,182114,187115,5000,3000},{}},
[107987]={85,{1026162,173735,20716.0,147817,165256,5000,3000},{}},
[107988]={85,{1026162,173735,20716.0,147817,165256,5000,3000},{}},
[107989]={85,{1026162,173735,20716.0,147817,165256,5000,3000},{}},
[107990]={85,{1026162,173735,20716.0,147817,165256,5000,3000},{}},
[107991]={80,{41247,9916,5059.0,9192,9167,0,0},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726914,200000,726187,100000,725425,200000}},
[107992]={85,{39066676,202344,45575.0,183795,187115,5000,3000},{},{155,36.5,36.0}},
[107993]={85,{39066676,202344,45575.0,183795,187115,5000,3000},{}},
[107994]={85,{1706855,157593,20716.0,99802,85998,0,0},{}},
[107995]={85,{1706855,165433,20716.0,99802,85998,0,0},{}},
[107996]={85,{39066676,202344,45575.0,183795,187115,5000,3000},{}},
[107997]={85,{32320963,202344,45575.0,100724,99678,5000,3000},{}},
[107998]={80,{41247,9916,5059.0,9192,9167,0,0},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726915,200000,726187,100000,725427,200000}},
[107999]={85,{108485999,223087,45575.0,216410,208974,5000,3000},{},{155,37.7,9.7}},
[108000]={85,{2184342,201941,45575.0,182114,187115,5000,3000},{}},
[108001]={85,{2165951,195957,13216.0,183795,183333,0,0},{}},
[108002]={85,{1791953,142085,13216.0,183795,183333,0,0},{}},
[108003]={85,{41206469,223087,45575.0,216410,208974,0,0},{}},
[108004]={85,{1516328,155553,13216.0,113521,151614,0,0},{}},
[108005]={85,{1293288,149998,13216.0,183795,183333,0,0},{}},
[108006]={85,{81789530,350660,45575.0,426087,361989,5500,2000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726916,200000,726187,100000,725429,200000}},
[108007]={85,{3081402,159650,45575.0,106662,121537,5000,3000},{}},
[108008]={85,{90544791,201941,45575.0,285003,252693,0,0},{}},
[108009]={85,{90544791,223087,45575.0,285003,252693,5000,3000},{}},
[108010]={85,{74846234,201941,45575.0,285003,252693,5000,3000},{}},
[108011]={85,{74846234,201941,45575.0,285003,252693,5000,3000},{}},
[108012]={85,{3963030,156915,20716.0,209322,229959,5000,3000},{}},
[108013]={85,{3963030,156915,20716.0,232187,229959,5000,3000},{}},
[108014]={85,{3963030,171598,20716.0,232187,229959,5000,3000},{}},
[108015]={85,{3963030,171598,20716.0,232187,229959,5000,3000},{}},
[108016]={85,{3963030,156915,20716.0,232187,229959,5000,3000},{}},
[108017]={85,{74846234,201941,45575.0,209322,229959,5000,3000},{}},
[108018]={85,{1542620,247717,15716.0,100724,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500}},
[108019]={85,{1542620,247717,15716.0,100724,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,38.3,89.5}},
[108020]={85,{1542620,247717,15716.0,100724,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,38.6,89.7}},
[108021]={85,{1542620,247717,15716.0,100724,105622,0,0},{}},
[108022]={85,{1542620,247717,15716.0,100724,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,50.6,79.3}},
[108023]={85,{1542620,244412,18216.0,100724,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,52.1,78.3}},
[108024]={85,{1504402,237127,16716.0,100263,105622,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,39.4,86.9}},
[108025]={85,{1504402,220800,13216.0,100263,140703,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,39.0,86.5}},
[108026]={85,{1020801,236266,16716.0,92943,89763,0,0},{},{155,65.0,73.3}},
[108027]={85,{1020801,201813,15716.0,92943,89763,0,0},{},{155,65.8,68.0}},
[108028]={85,{1020801,201813,15716.0,92943,89763,0,0},{},{155,64.2,62.8}},
[108029]={85,{1026162,95092,18216.0,99802,89763,0,0},{}},
[108030]={85,{1542620,227857,11716.0,100724,89763,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,40.7,25.6}},
[108031]={85,{1542620,227857,11716.0,100724,89763,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,39.1,25.2}},
[108032]={85,{1542620,228694,18216.0,100724,121537,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500}},
[108033]={85,{1504402,213802,11716.0,100263,89763,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{155,51.5,41.9}},
[108034]={85,{1542620,228694,18216.0,100724,121537,0,0},{}},
[108035]={85,{1542620,202814,15716.0,100724,89763,0,0},{}},
[108036]={85,{1542620,202814,15716.0,100724,89763,0,0},{}},
[108037]={85,{1542620,212976,18216.0,100724,89763,0,0},{}},
[108038]={85,{1542620,202814,15716.0,100724,89763,0,0},{}},
[108039]={85,{1504402,206628,16716.0,100263,89763,0,0},{}},
[108040]={85,{1504402,192401,13216.0,100263,140703,0,0},{}},
[108041]={85,{9809355,91983,45575.0,113521,110608,5500,2000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726917,200000,726187,100000,725176,200000}},
[108042]={85,{81789530,92167,45575.0,426087,361989,5000,3000},{}},
[108043]={85,{1598221,38189,6286.0,426087,371925,0,0},{}},
[108044]={85,{246091,12040,6216.0,45343,26555,0,0},{}},
[108045]={85,{9823156,91800,45575.0,113521,110608,5000,3000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726918,200000,726187,100000,725302,200000}},
[108046]={85,{533196,38854,6216.0,86084,78770,5000,3000},{}},
[108047]={85,{655097,27313,6216.0,65506,56392,5000,3000},{}},
[108048]={85,{90544791,91983,45575.0,422189,361989,5000,3000},{}},
[108049]={85,{9809355,75067,45575.0,113521,99678,5000,3000},{}},
[108050]={85,{535996,48396,18716.0,92943,77819,5000,3000},{}},
[108051]={85,{535996,48396,18716.0,92943,77819,5000,3000},{}},
[108052]={85,{535996,48396,18716.0,92943,77819,5000,3000},{}},
[108053]={85,{535996,48396,18716.0,92943,77819,5000,3000},{}},
[108054]={80,{41247,9916,5059.0,9192,9167,0,0},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726919,200000,726187,100000,725304,200000}},
[108055]={85,{9835250,92167,45575.0,114569,110608,5000,3000},{},{156,36.5,36.0}},
[108056]={85,{9835250,92167,45575.0,114569,110608,5000,3000},{}},
[108057]={85,{353150,32083,6216.0,72365,30284,0,0},{}},
[108058]={85,{471896,32083,6216.0,72365,30284,0,0},{}},
[108059]={85,{9835250,85811,45575.0,93801,99678,5000,3000},{}},
[108060]={85,{9835250,92167,45575.0,114569,110608,5000,3000},{}},
[108061]={80,{41247,9916,5059.0,9192,9167,0,0},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726920,200000,726187,100000,725305,200000}},
[108062]={85,{36721167,96213,45575.0,113521,110608,5000,3000},{},{156,37.7,9.7}},
[108063]={85,{614486,75067,45575.0,113521,99678,5000,3000},{}},
[108064]={85,{794622,43770,13216.0,79956,40599,0,0},{}},
[108065]={85,{620090,88214,13216.0,93801,80248,0,0},{}},
[108066]={85,{11154946,96213,45575.0,113521,110608,0,0},{}},
[108067]={85,{168371,34342,13216.0,51787,56459,0,0},{}},
[108068]={85,{620090,86017,13216.0,93801,80248,0,0},{}},
[108069]={85,{81789530,350660,45575.0,426087,361989,5500,2000},{720819,5000,720143,60000,726876,100000,726924,70000,726925,70000,726921,200000,726187,100000,725308,200000}},
[108070]={85,{838751,36150,23575.0,113521,110075,5000,3000},{}},
[108071]={85,{9809355,33521,23575.0,163594,100988,5000,3000},{},{156,34.9,90.0}},
[108072]={85,{9809355,40094,23575.0,182114,174372,0,0},{}},
[108073]={85,{9809355,81442,34575.0,182114,255732,5000,3000},{}},
[108074]={85,{9809355,53921,45575.0,182114,208974,5000,3000},{}},
[108075]={85,{9809355,53921,45575.0,182114,208974,5000,3000},{}},
[108076]={85,{519395,37029,10716.0,72136,40978,5000,3000},{}},
[108077]={85,{519395,31814,10716.0,60704,40978,5000,3000},{}},
[108078]={85,{519395,36503,10716.0,60704,40978,5000,3000},{}},
[108079]={85,{519395,36503,10716.0,60704,40978,5000,3000},{}},
[108080]={85,{519395,31814,10716.0,60704,40978,5000,3000},{}},
[108081]={85,{9809355,52294,34575.0,186458,166967,5000,3000},{}},
[108082]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,35.5,91.9}},
[108083]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500}},
[108084]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,38.3,89.5}},
[108085]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,38.6,89.7}},
[108086]={85,{545290,32236,6216.0,76494,72056,0,0},{}},
[108087]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,50.6,79.3}},
[108088]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,52.1,78.3}},
[108089]={85,{531780,32159,6216.0,76145,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,39.4,86.9}},
[108090]={85,{531780,32159,6216.0,76145,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,39.0,86.5}},
[108091]={85,{533196,31929,6216.0,75795,72056,0,0},{},{156,65.0,73.3}},
[108092]={85,{533196,31929,6216.0,75795,72056,0,0},{},{156,65.8,68.0}},
[108093]={85,{533196,31929,6216.0,75795,72056,0,0},{},{156,64.2,62.8}},
[108094]={85,{413454,23691,6216.0,75795,72056,0,0},{}},
[108095]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,40.7,25.6}},
[108096]={85,{545290,32236,6216.0,76494,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,39.1,25.2}},
[108097]={85,{545290,32236,6216.0,76494,71310,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500}},
[108098]={85,{531780,32159,6216.0,76145,72056,0,0},{720011,3000,720142,60000,726876,100000,726922,3500,726923,3500,726924,1500,726925,1500},{156,51.5,41.9}},
[108099]={85,{545290,32236,6216.0,76494,71310,0,0},{}},
[108100]={85,{545290,31459,6216.0,76494,72056,0,0},{}},
[108101]={85,{545290,31459,6216.0,76494,72056,0,0},{}},
[108102]={85,{545290,31459,6216.0,76494,72056,0,0},{}},
[108103]={85,{545290,31459,6216.0,76494,72056,0,0},{}},
[108104]={85,{531780,31384,6216.0,76145,72056,0,0},{}},
[108105]={85,{531780,31384,6216.0,76145,72056,0,0},{}},
[108106]={85,{278909,17103,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771467,100},{27,52.0,25.2}},
[108107]={85,{278909,19368,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771468,100},{27,48.4,34.2}},
[108108]={85,{278909,17103,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771469,100},{27,42.2,31.4}},
[108109]={85,{278909,19368,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771470,100},{27,43.6,35.4}},
[108110]={85,{278909,17103,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771471,100},{27,46.7,21.4}},
[108111]={85,{278909,17103,2286.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771472,100},{27,48.7,26.1}},
[108112]={0,{129,19,28.0,19,19,0,0},{}},
[108113]={0,{186,32,28.0,96,84,0,0},{}},
[108114]={83,{1896799,224328,5445.0,221149,225708,0,0},{}},
[108115]={83,{1806599,223208,5445.0,219108,225708,0,0},{}},
[108116]={83,{1806599,223208,5445.0,219108,225708,0,0},{}},
[108117]={90,{947155,16414,14170.0,12366,12444,0,0},{}},
[108118]={86,{525034,69982,5855.0,74199,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771504,100}},
[108119]={90,{7079708,181747,6441.0,714411,623644,0,0},{}},
[108120]={0,{186,32,28.0,96,84,0,0},{}},
[108121]={0,{186,32,28.0,96,84,0,0},{}},
[108122]={0,{186,32,28.0,96,84,0,0},{}},
[108123]={0,{186,32,28.0,96,84,0,0},{}},
[108124]={0,{186,32,28.0,96,84,0,0},{}},
[108125]={0,{186,32,28.0,96,84,0,0},{}},
[108126]={0,{186,32,28.0,96,84,0,0},{}},
[108127]={0,{186,32,28.0,96,84,0,0},{}},
[108128]={0,{186,32,28.0,96,84,0,0},{}},
[108129]={0,{186,32,28.0,96,84,0,0},{}},
[108130]={0,{186,32,28.0,96,84,0,0},{}},
[108131]={80,{6736,2023,2025.0,2023,2033,0,0},{}},
[108132]={0,{129,19,28.0,19,19,0,0},{}},
[108133]={0,{129,19,28.0,19,19,0,0},{}},
[108134]={0,{129,19,28.0,19,19,0,0},{}},
[108135]={85,{682647,16219,5716.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100}},
[108136]={85,{682647,16219,5716.0,75795,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100}},
[108137]={0,{129,19,28.0,19,19,0,0},{}},
[108138]={89,{406422,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771537,100},{29,24.2,23.9}},
[108139]={89,{406422,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771541,100},{29,41.7,48.1}},
[108140]={89,{406422,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771542,100,243138,60000},{29,42.9,51.3}},
[108141]={89,{407447,25618,3808.0,85975,86736,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771543,100,243136,60000},{29,47.5,55.8}},
[108142]={83,{648444,13262,5445.0,72413,64497,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771437,100},{27,42.4,71.4}},
[108143]={70,{16276573,10416,8636.0,8517,9469,0,0},{},{157,45.3,45.4}},
[108144]={88,{92654756,319231,50876.0,490757,483714,5000,3000},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720831,200000,720832,200000,720853,100000,726058,200000,209464,200000}},
[108145]={30,{197372,2735,4376.0,437,437,0,0},{}},
[108146]={85,{276717,17342,2286.0,76145,67581,0,0},{720011,5000,720142,10000,726876,10000,726926,2000,726927,2000,726928,100,726929,100,771473,100},{27,54.6,29.5}},
[108147]={84,{272979,18110,3378.0,73917,66304,0,0},{},{27,17.0,80.1}},
[108148]={83,{7785,2188,2178.0,6565,6534,0,0},{}},
[108149]={88,{2194165,12678,6142.0,123324,100171,0,0},{}},
[108150]={88,{92676823,314760,41013.0,490757,482988,5000,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720829,200000,720830,200000,720853,100000,726054,200000},{157,56.5,71.6}},
[108151]={88,{2683925,188457,21142.0,218032,224509,0,0},{}},
[108152]={88,{1366596,188457,21142.0,218032,224509,0,0},{}},
[108153]={88,{1366596,188457,21142.0,218032,224509,0,0},{}},
[108154]={88,{2730177,12678,6142.0,197706,70687,0,0},{}},
[108155]={88,{1359469,187549,21142.0,218032,224509,0,0},{}},
[108156]={88,{1359469,187549,21142.0,218032,224509,0,0},{}},
[108157]={88,{38810980,209755,50876.0,232774,214859,5000,3000},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720844,200000,720853,100000,725425,200000,209464,200000}},
[108158]={88,{966331,171141,16142.0,107468,109521,0,0},{}},
[108159]={88,{966331,171141,16142.0,107468,109521,0,0},{}},
[108160]={88,{10561106,101968,50876.0,122210,125241,5000,3000},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720849,200000,720853,100000,725302,200000,209464,200000}},
[108161]={88,{363831,34032,8038.0,77984,69559,0,0},{}},
[108162]={88,{363831,34032,8038.0,77984,69559,0,0},{}},
[108163]={88,{37113698,249717,35513.0,219026,185767,5000,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720846,200000,720853,100000,725429,200000}},
[108164]={88,{10559081,116344,41013.0,130172,127654,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720851,200000,720853,100000,725305,200000}},
[108165]={85,{1933509,449024,22864.0,10631,10700,0,0},{}},
[108166]={88,{39477924,230773,46513.0,232774,259279,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720847,200000,720853,100000,725431,200000}},
[108167]={88,{813651,171768,21142.0,107468,102682,0,0},{}},
[108168]={88,{558347,28206,6742.0,77984,69501,0,0},{}},
[108169]={88,{11027972,84977,46513.0,122210,125053,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720852,200000,720853,100000,725309,200000}},
[108170]={85,{6100096,236109,6922.0,50004,50028,0,0},{}},
[108171]={84,{666242,15765,5579.0,73917,66023,0,0},{},{27,9.2,73.6}},
[108172]={84,{666242,15765,5579.0,73917,66023,0,0},{},{27,9.8,83.5}},
[108173]={84,{664479,15881,5579.0,74259,66023,0,0},{},{27,31.0,78.6}},
[108174]={84,{270146,18026,2231.0,74259,66023,0,0},{},{27,26.5,69.1}},
[108175]={88,{38578714,225008,41013.0,232774,225722,5000,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720843,200000,720853,100000,725423,200000},{158,56.5,71.6}},
[108176]={88,{39052432,229428,44876.0,232774,224898,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720845,200000,720853,100000,725427,200000}},
[108177]={88,{10563621,100953,35513.0,122210,108283,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720848,200000,720853,100000,725177,200000},{159,56.5,71.6}},
[108178]={88,{11044010,101968,50876.0,122210,125241,0,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720850,200000,720853,100000,725305,200000}},
[108179]={90,{6905308,359506,21441.0,711209,623644,0,0},{}},
[108180]={90,{6905308,343306,18941.0,711209,623644,0,0},{}},
[108181]={90,{6905308,359506,21441.0,711209,623644,0,0},{}},
[108182]={90,{193389078,368351,42770.0,827673,832120,0,0},{}},
[108183]={86,{308524,21317,2342.0,81599,88238,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771483,100},{28,42.1,73.9}},
[108184]={86,{285673,21024,2342.0,74199,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771484,100},{28,53.0,77.8}},
[108185]={86,{350363,21317,2342.0,81599,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771511,100},{28,83.8,42.8}},
[108186]={86,{350363,21317,2342.0,81599,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771512,100},{28,78.9,48.5}},
[108187]={86,{358731,21317,2342.0,88658,85187,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771513,100},{28,75.4,44.4}},
[108188]={86,{546265,69982,5855.0,88252,88238,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771497,100},{28,68.8,49.9}},
[108189]={86,{546265,69982,5855.0,84739,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771498,100},{28,70.1,56.0}},
[108190]={86,{571243,69982,5855.0,84739,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771499,100},{28,72.5,55.2}},
[108191]={86,{571243,69982,5855.0,84739,84425,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771500,100},{28,73.7,53.6}},
[108192]={90,{28108,8414,6441.0,7799,7729,0,0},{}},
[108193]={90,{12139252,206189,18941.0,909393,718474,0,0},{}},
[108194]={85,{8169,2296,2286.0,6890,6859,0,0},{},{28,48.6,50.0}},
[108195]={85,{8169,2296,2286.0,6890,6859,0,0},{},{28,51.5,47.6}},
[108196]={0,{150,30,28.0,90,84,0,0},{}},
[108197]={86,{286402,21415,3545.0,74199,73294,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771485,100},{28,42.3,68.3}},
[108198]={37,{3902,608,577.0,1852,1869,0,0},{}},
[108199]={85,{342077,20787,2286.0,72699,71310,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771505,100},{28,53.0,27.3}},
[108200]={85,{423777,20787,2286.0,80210,80933,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771506,100},{28,64.5,19.0}},
[108201]={85,{342077,20787,2286.0,79590,78770,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771507,100},{28,53.4,24.4}},
[108202]={85,{423777,20787,2286.0,86481,83096,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771508,100},{28,63.3,19.2}},
[108203]={0,{144,28,28.0,28,28,0,0},{}},
[108204]={86,{310976,21024,2342.0,81226,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771487,100},{28,53.2,47.7}},
[108205]={0,{144,28,28.0,28,28,0,0},{}},
[108206]={0,{144,28,28.0,28,28,0,0},{}},
[108207]={86,{523636,70494,5855.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771486,100},{28,63.8,71.2}},
[108208]={90,{4986177,307109,18691.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,64.3,70.9}},
[108209]={90,{4986177,307109,18691.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,48.0,23.3}},
[108210]={90,{4986177,305639,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,72.5,48.2}},
[108211]={88,{1621561,256094,16142.0,107468,107884,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{158,66.8,26.0}},
[108212]={88,{1630062,256463,21142.0,107026,146082,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{158,71.6,33.0}},
[108213]={88,{1621561,256094,18642.0,107468,147424,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{158,66.5,25.0}},
[108214]={88,{1630062,246548,13642.0,108205,107066,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108215]={88,{1630062,246548,13642.0,108205,107066,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108216]={88,{1630062,246548,13642.0,108205,107066,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108217]={88,{1621561,245170,13642.0,108205,107066,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108218]={88,{1621561,245170,13642.0,108205,107066,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108219]={88,{1359469,231224,13642.0,108205,107066,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108220]={88,{573194,34468,6642.0,81670,76441,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{159,66.8,26.0}},
[108221]={88,{576199,34296,6642.0,81227,75963,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{159,71.6,33.0}},
[108222]={88,{573194,34468,6642.0,81670,76441,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500},{159,66.5,25.0}},
[108223]={88,{576199,33963,6642.0,82407,76042,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108224]={88,{576199,33963,6642.0,82407,76042,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108225]={88,{576199,33963,6642.0,82407,76042,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108226]={88,{573194,34468,6642.0,82407,76042,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108227]={88,{573194,34468,6642.0,82407,76042,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108228]={88,{573194,34468,6642.0,82407,76042,0,0},{720011,3000,720142,60000,726876,100000,726926,3500,726927,3500,726928,1500,726929,1500}},
[108229]={86,{602605,70494,5855.0,95717,95864,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771492,100,243063,5000},{28,57.1,45.1}},
[108230]={86,{353148,21024,2342.0,88252,85187,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771514,100}},
[108231]={0,{144,28,28.0,28,28,0,0},{}},
[108232]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771526,100},{29,7.3,61.1}},
[108233]={90,{403745,26257,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771548,100},{29,49.5,46.3}},
[108234]={90,{397573,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771549,100,243152,60000},{29,53.5,45.3}},
[108235]={90,{406847,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771562,100},{29,58.6,22.6}},
[108236]={90,{394398,26139,2576.0,88512,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771555,100},{29,62.1,43.6}},
[108237]={88,{396913,24175,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771527,100,243152,60000},{29,27.2,57.5}},
[108238]={0,{144,28,28.0,28,28,0,0},{}},
[108239]={90,{397573,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771554,100},{29,51.4,44.8}},
[108240]={90,{406847,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771563,100},{29,59.9,28.5}},
[108241]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771528,100},{29,24.4,46.1}},
[108242]={88,{393763,24879,2456.0,84263,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771524,100},{29,19.5,42.1}},
[108243]={88,{393763,24879,2456.0,84263,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771525,100},{29,21.3,39.4}},
[108244]={89,{407447,25618,3808.0,85975,86736,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771544,100,243136,60000},{29,36.1,39.0}},
[108245]={89,{406422,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771545,100},{29,42.2,43.8}},
[108246]={89,{406422,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771546,100},{29,35.2,31.9}},
[108247]={89,{406422,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771547,100},{29,42.4,56.6}},
[108248]={89,{403186,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,18.2,22.9}},
[108249]={89,{403186,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,18.3,23.8}},
[108250]={0,{144,28,28.0,28,28,0,0},{}},
[108251]={90,{394398,26139,2576.0,88512,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771550,100},{29,50.3,47.4}},
[108252]={89,{404570,25618,2516.0,86756,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771538,100},{29,32.1,29.0}},
[108253]={89,{394908,25618,2516.0,86756,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771539,100},{29,32.6,20.8}},
[108254]={89,{404570,25618,2516.0,86756,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771540,100},{29,26.1,28.6}},
[108255]={90,{397573,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771551,100},{29,46.5,48.6}},
[108256]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771529,100},{29,15.9,52.3}},
[108257]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771530,100},{29,18.3,66.1}},
[108258]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771531,100},{29,17.1,60.6}},
[108259]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771532,100},{29,22.7,61.0}},
[108260]={88,{396913,24540,2456.0,81670,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771533,100},{29,19.7,51.4}},
[108261]={89,{452847,13176,6290.0,83711,84743,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771534,100}},
[108262]={0,{144,28,28.0,28,28,0,0},{}},
[108263]={90,{629234,78093,7799.0,85795,87072,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100}},
[108264]={90,{397573,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771552,100,243153,60000},{29,51.0,45.6}},
[108265]={90,{397573,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771553,100},{29,43.4,47.3}},
[108266]={90,{406847,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771564,100},{29,53.1,34.8}},
[108267]={90,{406847,25786,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771565,100},{29,56.6,25.1}},
[108268]={90,{407869,26257,3899.0,88114,88745,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771560,100,243145,60000,243150,60000},{29,57.9,46.1}},
[108269]={89,{397364,25157,2516.0,85975,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771561,100,243195,60000},{29,54.4,39.8}},
[108270]={93,{7174781,357516,19411.0,718530,737029,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,13.0,46.3}},
[108271]={93,{6842363,355643,19411.0,718530,737029,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,55.1,60.5}},
[108272]={93,{6848097,357917,23368.0,718530,738203,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,9.5,60.1}},
[108273]={93,{7146435,357516,19411.0,724958,737029,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,53.6,21.4}},
[108274]={93,{6842363,355643,19411.0,718530,737029,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,12.9,47.4}},
[108275]={93,{245582455,382648,48206.0,892397,941437,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720934,200000,720935,200000,720956,100000,726064,200000},{163,35.2,60.4}},
[108276]={93,{234887460,395847,48206.0,967357,831949,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720932,200000,720933,200000,720956,100000,726058,200000}},
[108277]={93,{5988230,350840,20911.0,760001,636542,1500,900},{}},
[108278]={93,{28896281,20883,15206.0,17322,19574,0,0},{},{163,43.5,70.0}},
[108279]={93,{272894352,391692,51536.0,925886,924784,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720938,200000,720939,200000,720956,100000,726076,200000},{163,53.4,53.8}},
[108280]={93,{284101400,394712,48206.0,959274,963421,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720940,200000,720941,200000,720956,100000,726083,200000}},
[108281]={93,{283837077,397003,47106.0,967357,963421,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720942,200000,720943,200000,720956,100000,726085,200000}},
[108282]={93,{289275924,396411,47106.0,967357,963421,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720944,200000,720945,200000,720956,100000,726087,200000}},
[108283]={90,{403598,26139,2576.0,88512,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771556,100}},
[108284]={90,{403598,26139,2576.0,88512,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771557,100},{29,71.6,47.3}},
[108285]={90,{403598,26139,2576.0,88512,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771558,100},{29,63.0,42.3}},
[108286]={88,{397918,24992,3719.0,83881,84768,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,771535,100},{29,23.7,36.0}},
[108287]={90,{629234,78093,7799.0,85795,87072,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,52.4,31.5}},
[108288]={90,{4986177,307697,18541.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{160,51.1,17.8}},
[108289]={90,{4986177,305639,18441.0,633566,655249,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500}},
[108290]={93,{6470570,359554,20911.0,628081,743793,1500,900},{}},
[108291]={90,{41461135,233061,44970.0,260880,256921,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720869,200000,720878,100000,725427,200000},{161,61.7,33.9}},
[108292]={90,{11126189,105208,44420.0,132769,132057,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720874,200000,720878,100000,725303,200000},{162,61.7,33.9}},
[108293]={90,{43486841,236498,45520.0,260880,256921,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720870,200000,720878,100000,725429,200000},{161,47.1,37.1}},
[108294]={90,{11581973,108519,44970.0,132769,132057,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720875,200000,720878,100000,725305,200000},{162,47.1,37.1}},
[108295]={90,{48044679,247417,47170.0,260880,263887,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720872,200000,720878,100000,725433,200000},{161,18.7,49.9}},
[108296]={90,{12088400,111977,47170.0,132769,132057,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720877,200000,720878,100000,725310,200000},{162,18.7,49.9}},
[108297]={90,{1010833,179751,20441.0,128887,125828,0,0},{}},
[108298]={90,{544759,35798,7016.0,78419,72748,0,0},{}},
[108299]={90,{952037,178312,19941.0,129467,124145,0,0},{}},
[108300]={90,{474191,35820,7016.0,78772,72748,0,0},{}},
[108301]={88,{396913,24540,2456.0,83881,84412,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,19.0,65.4}},
[108302]={90,{40954709,230092,44970.0,260880,242989,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720868,200000,720878,100000,725425,200000},{161,68.7,66.3}},
[108303]={90,{736672,181416,20441.0,128887,124145,0,0},{}},
[108304]={90,{736672,179751,20441.0,128887,117413,0,0},{}},
[108305]={90,{736672,179751,20441.0,128887,127511,0,0},{}},
[108306]={90,{45512547,230980,44970.0,260880,242989,0,0},{}},
[108307]={90,{45512547,238680,46070.0,260880,260404,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720871,200000,720878,100000,725431,200000},{161,29.2,62.7}},
[108308]={90,{2160706,182308,20891.0,129467,125828,0,0},{}},
[108309]={90,{10062694,104698,43870.0,132769,132057,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720873,200000,720878,100000,725177,200000},{162,68.7,66.3}},
[108310]={90,{325429,35706,6941.0,78419,72748,0,0},{}},
[108311]={90,{325429,35736,6991.0,78419,72232,0,0},{}},
[108312]={90,{325429,35736,6991.0,78419,72748,0,0},{}},
[108313]={90,{10062694,104698,43870.0,132769,132057,0,0},{}},
[108314]={90,{11581973,109771,46070.0,132769,132057,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720876,200000,720878,100000,725307,200000},{162,29.2,62.7}},
[108315]={90,{617545,35974,7041.0,78772,72748,0,0},{}},
[108316]={93,{5989540,342125,20911.0,711822,718045,1500,900},{}},
[108317]={93,{6090475,359554,20911.0,766800,768887,1500,900},{}},
[108318]={93,{6090475,359554,20911.0,766800,768887,1500,900},{}},
[108319]={93,{6090475,356459,20411.0,766800,768887,1500,900},{}},
[108320]={93,{6090475,359554,20911.0,766800,768887,1500,900},{}},
[108321]={93,{6090475,359554,20911.0,766800,768887,1500,900},{}},
[108322]={93,{6090475,359554,20911.0,766800,768887,1500,900},{}},
[108323]={93,{5755208,357768,20911.0,543632,540638,1500,900},{}},
[108324]={93,{4044639,357768,20911.0,543632,540638,1500,900},{}},
[108325]={93,{6090475,359554,20911.0,716589,743793,1500,900},{}},
[108326]={93,{6090475,359554,20911.0,716589,743793,1500,900},{}},
[108327]={86,{283420,21317,2342.0,74540,72985,0,0},{},{28,73.5,53.5}},
[108328]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771608,100}},
[108329]={95,{59118,15607,7241.0,14465,14425,0,0},{},{163,16.8,46.1}},
[108330]={0,{144,28,28.0,28,28,0,0},{}},
[108331]={93,{283837077,397003,47106.0,967357,963421,1600,900},{}},
[108332]={86,{523636,70494,5855.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100},{28,74.5,44.6}},
[108333]={86,{523636,70494,5855.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100},{28,82.2,44.1}},
[108334]={86,{420254,62713,5855.0,81599,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771517,100},{28,76.0,23.4}},
[108335]={93,{6090475,359554,20911.0,716589,743793,1500,900},{}},
[108336]={93,{5396134,359554,20911.0,665211,690441,1500,900},{}},
[108337]={93,{6090475,359554,20911.0,716589,743793,1500,900},{}},
[108338]={93,{6090475,359554,20911.0,641273,668510,1500,900},{}},
[108339]={93,{5861136,359937,25168.0,689635,691541,1500,900},{}},
[108340]={93,{7598989,376983,20911.0,766800,793981,1500,900},{}},
[108341]={93,{7432552,340426,20911.0,760001,793981,1500,900},{}},
[108342]={93,{6441820,359937,25168.0,689635,744893,1500,900},{}},
[108343]={93,{6808676,356579,19411.0,718530,737029,300,2500},{}},
[108344]={93,{245994021,384293,48206.0,976011,963421,1500,900},{}},
[108345]={88,{854135,12678,6142.0,86133,11719,0,0},{}},
[108346]={88,{1893528,172183,21142.0,107468,102682,0,0},{}},
[108347]={88,{1893528,164248,18642.0,107468,88912,0,0},{}},
[108348]={88,{291322,12678,6142.0,63819,11719,0,0},{}},
[108349]={88,{523506,33963,6642.0,77984,68470,0,0},{}},
[108350]={88,{523506,33963,6642.0,77984,68470,0,0},{}},
[108351]={90,{1696237,255098,13441.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,73.0,48.2}},
[108352]={90,{1696237,256184,13541.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,55.3,71.3}},
[108353]={90,{1696237,257813,13941.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,64.3,70.9}},
[108354]={90,{1696237,256456,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,48.0,23.3}},
[108355]={90,{1696237,257270,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,72.5,48.2}},
[108356]={90,{1696237,256999,13591.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,51.1,17.8}},
[108357]={90,{1696237,235451,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500}},
[108358]={90,{1696237,256727,13591.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,46.8,50.3}},
[108359]={90,{1696237,256999,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,34.4,55.4}},
[108360]={90,{1696237,257270,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,41.5,56.2}},
[108361]={90,{1696237,257813,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,13.6,68.7}},
[108362]={90,{1696237,260528,13941.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,37.7,54.3}},
[108363]={90,{1696237,258628,13841.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,37.5,53.5}},
[108364]={90,{1696237,257813,13691.0,121123,127310,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{161,41.0,56.3}},
[108365]={90,{1656747,256901,13691.0,40192,42436,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500}},
[108366]={90,{654423,36325,6866.0,82301,79468,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,73.0,48.2}},
[108367]={90,{654423,36356,6891.0,82301,79756,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,55.3,71.3}},
[108368]={90,{654423,36325,6866.0,82301,79180,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,64.3,70.9}},
[108369]={90,{654423,36325,6866.0,82301,79180,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,48.0,23.3}},
[108370]={90,{654423,36356,6866.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,72.5,48.2}},
[108371]={90,{654423,36419,6916.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,51.1,17.8}},
[108372]={90,{654423,33765,6881.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500}},
[108373]={90,{654423,36419,6916.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,46.8,50.3}},
[108374]={90,{654423,36419,6891.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,34.4,55.4}},
[108375]={90,{654423,36388,6891.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,41.5,56.2}},
[108376]={90,{654423,36451,6916.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,13.6,68.7}},
[108377]={90,{654423,36514,6941.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,37.7,54.3}},
[108378]={90,{654423,36419,6891.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,37.5,53.5}},
[108379]={90,{654423,36451,6916.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500},{162,41.0,56.3}},
[108380]={90,{654423,36388,6891.0,82301,80044,0,0},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500}},
[108381]={93,{6848097,357917,23368.0,718530,738203,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,12.7,54.0}},
[108382]={93,{6995768,357917,23368.0,718530,738203,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,56.0,35.5}},
[108383]={93,{7176605,357516,19411.0,724958,737029,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,67.8,28.9}},
[108384]={94,{427404,26097,4282.0,98825,97212,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,243234,30000}},
[108385]={93,{6995768,357917,23368.0,718530,738203,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,30.3,59.9}},
[108386]={94,{427404,26097,4282.0,98825,97212,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100,243234,30000}},
[108387]={93,{7174781,358011,19411.0,718779,737728,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,24.3,58.2}},
[108388]={93,{7137457,355643,19411.0,718530,737029,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,50.7,65.4}},
[108389]={93,{7055924,357516,19411.0,724958,737029,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{163,52.2,24.8}},
[108390]={86,{350363,21317,2342.0,81599,80611,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771518,100},{28,72.9,24.9}},
[108391]={84,{270146,20268,2231.0,70896,69670,0,0},{}},
[108392]={86,{285673,21024,2342.0,74199,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771519,100,243088,60000},{28,68.6,24.8}},
[108393]={87,{14914,3766,2399.0,3766,3790,0,0},{}},
[108394]={85,{24315,7449,5716.0,6890,6859,0,0},{}},
[108395]={90,{9892,2599,2576.0,7799,7729,0,0},{}},
[108396]={90,{9892,2599,2576.0,7799,7729,0,0},{}},
[108397]={90,{9892,2599,2576.0,7799,7729,0,0},{}},
[108398]={92,{1737052,150321,7251.0,93661,93722,0,0},{}},
[108399]={92,{18220,4414,4087.0,13125,13265,0,0},{}},
[108400]={92,{266642082,440894,27007.0,595916,601507,7500,0},{},{30,56.0,27.2}},
[108401]={92,{1035156,14219,6751.0,94147,94244,0,0},{}},
[108402]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[108403]={92,{4729366,44399,27007.0,94992,87746,0,0},{}},
[108404]={88,{102337199,314760,41013.0,490757,482988,5000,0},{720819,5000,720143,60000,726876,100000,726928,70000,726929,70000,720829,200000,720830,200000,720853,100000,726054,200000}},
[108405]={0,{186,32,28.0,96,84,0,0},{}},
[108406]={90,{450834,76926,2576.0,88114,88374,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,59.3,20.5}},
[108407]={90,{8561,2576,2576.0,2576,2576,0,0},{}},
[108408]={93,{49952505,267600,48206.0,278935,271145,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720947,200000,720956,100000,725429,200000},{164,35.8,60.2}},
[108409]={93,{2268393,199696,21911.0,137933,141531,1500,900},{}},
[108410]={93,{2268393,199696,21911.0,137933,141531,1500,900},{}},
[108411]={93,{55392328,269039,52736.0,278935,271576,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720949,200000,720956,100000,725433,200000},{164,53.4,53.8}},
[108412]={93,{2270294,200866,26368.0,137933,141740,1500,900},{}},
[108413]={93,{2270294,200866,26368.0,137933,141740,1500,900},{}},
[108414]={93,{12978842,124941,48206.0,142080,136038,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720952,200000,720956,100000,725303,200000},{165,35.2,60.4}},
[108415]={93,{648323,38417,7511.0,84020,77883,1500,900},{}},
[108416]={93,{648323,38417,7511.0,84020,77883,1500,900},{}},
[108417]={93,{14066943,125613,52736.0,142080,136255,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720954,200000,720956,100000,725308,200000},{165,53.4,53.8}},
[108418]={93,{648866,38852,9088.0,84020,78203,1500,900},{}},
[108419]={93,{648866,38852,9088.0,84020,78203,1500,900},{}},
[108420]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771578,100,243183,60000},{30,66.6,71.5}},
[108421]={92,{456679,27576,4387.0,90906,90269,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771579,100,243184,60000},{30,64.3,66.0}},
[108422]={92,{455543,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771580,100},{30,69.4,61.9}},
[108423]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771581,100},{30,65.3,73.1}},
[108424]={91,{445002,26429,2837.0,88715,87863,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771592,100},{30,72.4,49.3}},
[108425]={91,{445002,26429,2837.0,87923,87012,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771593,100},{30,80.0,36.8}},
[108426]={91,{445002,26429,2837.0,88715,87863,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771594,100},{30,79.1,43.7}},
[108427]={92,{456679,27576,4387.0,90906,90269,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771609,100},{30,62.4,18.8}},
[108428]={92,{455543,27086,2900.0,90096,89023,0,0},{},{30,57.4,29.1}},
[108429]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771610,100},{30,46.2,43.8}},
[108430]={80,{6736,2023,2025.0,2023,2033,0,0},{}},
[108431]={200,{22548931,449317,267826.0,71824,72129,0,0},{}},
[108432]={95,{314321825,415394,48931.0,978685,978452,5200,2800},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721016,200000,721017,200000,721036,100000,726060,200000},{166,73.6,69.4}},
[108433]={95,{314564941,403091,45631.0,952695,934460,5200,2800},{}},
[108434]={95,{171705990,380094,37931.0,873700,868472,3550,2500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721018,200000,721019,200000,721036,100000,726070,200000}},
[108435]={95,{58669852,412328,47281.0,912123,997936,4500,2850},{}},
[108436]={95,{160434446,408481,50031.0,924665,1025595,4500,2800},{}},
[108437]={95,{184231162,404575,46731.0,1020058,978813,4600,2700},{}},
[108438]={95,{314492692,407057,48931.0,987495,973915,5550,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721020,200000,721021,200000,721036,100000,726079,200000},{166,44.3,61.4}},
[108439]={95,{114966104,415389,33531.0,794574,788015,1750,950},{}},
[108440]={95,{341466947,410296,50031.0,971470,1006826,5800,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721022,200000,721023,200000,721036,100000,726085,200000},{166,73.3,44.1}},
[108441]={95,{343010366,422454,48931.0,1013680,1022444,5600,3200},{},{166,57.1,26.6}},
[108442]={95,{7355859,378205,20241.0,752982,807011,1900,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,83.0,72.1}},
[108443]={95,{7600489,381452,20741.0,804972,750023,1800,1250},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,62.4,64.6}},
[108444]={95,{7386783,383076,20991.0,752982,807011,2000,1300},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,51.9,58.8}},
[108445]={95,{7600489,382751,20941.0,804972,807011,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108446]={95,{7479554,386323,21491.0,752982,750023,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108447]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[108448]={95,{5999934,382427,20741.0,711390,712031,1500,800},{},{166,59.9,28.7}},
[108449]={85,{8234,2265,2286.0,6859,6859,0,0},{}},
[108450]={85,{8234,2265,2286.0,6859,6859,0,0},{}},
[108451]={85,{8234,2265,2286.0,6859,6859,0,0},{}},
[108452]={85,{8234,2265,2286.0,6859,6859,0,0},{}},
[108453]={93,{1835298,293238,16911.0,162816,134753,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,13.0,46.3}},
[108454]={93,{1825751,291582,16911.0,162816,134753,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,55.1,60.5}},
[108455]={93,{1827281,293593,20368.0,162816,135000,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,9.5,60.1}},
[108456]={93,{1866635,293238,16911.0,164272,134753,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,53.6,21.4}},
[108457]={93,{1825751,291582,16911.0,162816,134753,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,12.9,47.4}},
[108458]={94,{1602014,15156,7075.0,14047,14008,0,0},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243258,200000,726062,200000}},
[108459]={93,{1827281,293593,20368.0,162816,135000,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,12.7,54.0}},
[108460]={93,{1827281,293593,20368.0,162816,135000,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,56.0,35.5}},
[108461]={93,{1866635,293238,16911.0,164272,134753,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,67.8,28.9}},
[108462]={93,{1827281,293593,20368.0,162816,135000,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,30.3,59.9}},
[108463]={93,{1835298,293238,16911.0,162816,134753,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,24.3,58.2}},
[108464]={93,{1825751,291582,16911.0,162816,134753,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,50.7,65.4}},
[108465]={93,{1866635,293238,16911.0,164272,134753,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{164,52.2,24.8}},
[108466]={93,{708074,39460,7411.0,88167,85740,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,13.0,46.3}},
[108467]={93,{704391,39094,7411.0,88167,85740,300,2500},{},{165,55.1,60.5}},
[108468]={93,{704981,39538,8968.0,88167,86098,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,9.5,60.1}},
[108469]={93,{720164,38900,7411.0,88454,85206,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,53.6,21.4}},
[108470]={93,{704391,39094,7411.0,88167,85740,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,12.9,47.4}},
[108471]={91,{7096132,348630,22985.0,724994,725665,2000,1500},{}},
[108472]={93,{704981,39538,8968.0,88167,86098,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,12.7,54.0}},
[108473]={93,{704981,39538,8968.0,88167,86098,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,56.0,35.5}},
[108474]={93,{720164,39460,7411.0,88956,85740,400,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,67.8,28.9}},
[108475]={93,{704981,39538,8968.0,88167,86098,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,30.3,59.9}},
[108476]={93,{708074,39460,7411.0,88167,85740,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,24.3,58.2}},
[108477]={93,{704391,39094,7411.0,88167,85740,300,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,50.7,65.4}},
[108478]={93,{720164,39460,7411.0,88956,85740,500,2500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500},{165,52.2,24.8}},
[108479]={95,{6381997,383402,20741.0,759671,750023,1500,800},{}},
[108480]={93,{2209579,200177,21911.0,137933,141531,1500,900},{}},
[108481]={93,{251132726,379322,47106.0,967357,963421,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720936,200000,720937,200000,720956,100000,726071,200000}},
[108482]={93,{52671156,267600,48206.0,278935,271145,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720948,200000,720956,100000,725431,200000}},
[108483]={93,{13522573,124941,48206.0,142080,136038,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720953,200000,720956,100000,725306,200000}},
[108484]={93,{2319189,200659,21911.0,139167,141531,1500,900},{}},
[108485]={93,{58179080,268751,48206.0,281430,271145,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720950,200000,720956,100000,725917,200000}},
[108486]={93,{631513,38596,7511.0,84020,77883,1500,900},{}},
[108487]={93,{662841,38775,7511.0,84772,77883,1500,900},{}},
[108488]={93,{14627789,125478,48206.0,143351,136038,1600,900},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,720955,200000,720956,100000,725415,200000}},
[108489]={0,{129,19,28.0,19,19,0,0},{}},
[108490]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771611,100},{30,48.1,40.6}},
[108491]={92,{456679,27576,4387.0,90906,90269,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771612,100},{30,54.5,16.9}},
[108492]={92,{455543,26818,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771616,100},{30,55.2,59.1}},
[108493]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771617,100},{30,51.6,54.4}},
[108494]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771618,100},{30,47.6,47.7}},
[108495]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771619,100},{30,53.1,51.2}},
[108496]={92,{451885,27454,2900.0,91314,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771615,100},{30,54.5,55.6}},
[108497]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771620,100},{30,59.5,61.7}},
[108498]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771675,100},{33,41.0,53.6}},
[108499]={0,{146,32,28.0,84,84,0,0},{}},
[108500]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771621,100}},
[108501]={92,{455543,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771622,100},{30,58.5,51.7}},
[108502]={92,{462611,27576,2900.0,90906,89893,0,0},{},{30,59.4,47.9}},
[108503]={92,{462611,27576,2900.0,90906,89893,0,0},{},{30,60.5,43.9}},
[108504]={92,{746278,83338,8774.0,94147,94638,0,0},{},{30,59.4,43.8}},
[108505]={91,{474635,26910,2837.0,89514,87863,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771595,100},{30,66.9,21.0}},
[108506]={91,{726274,81026,7094.0,92294,92120,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771596,100},{30,66.6,19.2}},
[108507]={91,{441439,26790,2837.0,89114,87863,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771597,100},{30,67.4,16.9}},
[108508]={92,{451885,27454,2900.0,91314,89893,0,0},{},{30,56.7,9.1}},
[108509]={91,{441439,26790,2837.0,89114,87863,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771598,100}},
[108510]={95,{17987,4779,2896.0,4779,4808,0,0},{},{166,62.3,68.4}},
[108511]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[108512]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[108513]={95,{6381997,386650,21241.0,759671,750023,1500,800},{}},
[108514]={91,{728240,80457,7094.0,91880,92120,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771599,100},{30,78.4,41.0}},
[108515]={0,{144,28,28.0,28,28,0,0},{}},
[108516]={95,{114814701,419833,48931.0,995465,978452,5000,3500},{}},
[108517]={92,{420523,27331,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771582,100,243185,60000},{30,75.4,62.0}},
[108518]={95,{7537641,383076,20991.0,804972,750023,1800,950},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,78.8,71.1}},
[108519]={95,{7386783,386323,21491.0,752982,750023,2000,800},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,89.6,80.1}},
[108520]={95,{7400456,387947,21241.0,732186,731027,1600,750},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,87.1,84.1}},
[108521]={95,{7503741,383076,20991.0,763380,769019,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108522]={95,{7436587,386323,21491.0,747783,712031,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108523]={95,{6381997,383402,20741.0,759671,750023,1500,800},{}},
[108524]={95,{6462745,386650,21241.0,801263,807011,1000,750},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{166,84.4,67.8}},
[108525]={92,{420523,27331,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771583,100,243185,60000},{30,75.5,64.9}},
[108526]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771584,100,202979,80000},{30,69.9,57.4}},
[108527]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771585,100},{30,67.1,75.9}},
[108528]={92,{455543,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771586,100,243181,60000},{30,71.9,59.9}},
[108529]={95,{314492692,407057,48931.0,987495,973915,5550,3500},{}},
[108530]={89,{394201,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,15.8,60.4}},
[108531]={95,{17987,4779,2896.0,4779,4808,0,0},{}},
[108532]={95,{1913259,306173,19741.0,170757,171988,1900,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,83.0,72.1}},
[108533]={95,{1913259,306173,19741.0,170757,171988,1800,1250},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,62.4,64.6}},
[108534]={95,{1913259,306173,19741.0,170757,171988,2000,1300},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,51.9,58.8}},
[108535]={95,{1913259,306173,19741.0,170757,171988,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108536]={95,{1913259,306173,19741.0,170757,171988,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108537]={95,{1913259,306173,19741.0,170757,171988,1800,950},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,78.8,71.1}},
[108538]={95,{1913259,306173,19741.0,170757,171988,2000,800},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,89.6,80.1}},
[108539]={95,{1913259,306173,19741.0,170757,171988,1600,750},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,90.5,85.2}},
[108540]={95,{1913259,306173,19741.0,170757,171988,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108541]={95,{1913259,306173,19741.0,170757,171988,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108542]={95,{1955982,307808,19741.0,172274,171988,1000,750},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{167,84.4,67.8}},
[108543]={95,{738152,40126,7741.0,88202,88811,1900,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,83.0,72.1}},
[108544]={95,{738152,40126,7741.0,88202,88811,1800,1250},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,62.4,64.6}},
[108545]={95,{738152,40126,7741.0,88202,88811,2000,1300},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,51.9,58.8}},
[108546]={95,{738152,40126,7741.0,88202,88811,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108547]={95,{738152,40126,7741.0,88202,88811,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108548]={95,{738152,40126,7741.0,88202,88811,1800,950},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,78.8,71.1}},
[108549]={95,{738152,40126,7741.0,88202,88811,2000,800},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,89.6,80.1}},
[108550]={95,{738152,40126,7741.0,88202,88811,1600,750},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,90.3,84.4}},
[108551]={95,{738152,40126,7741.0,88202,88811,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108552]={95,{738152,40126,7741.0,88202,88811,2000,1500},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500}},
[108553]={95,{754635,40500,7741.0,88986,88811,1000,750},{720011,3000,720142,60000,723988,100000,721012,3500,721013,3500,721014,1500,721015,1500},{168,84.4,67.8}},
[108554]={91,{445002,26429,2837.0,87923,87012,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771600,100}},
[108555]={95,{20779,4821,2896.0,14465,14425,1000,750},{}},
[108556]={95,{6080682,385675,21241.0,752982,750023,1500,800},{}},
[108557]={92,{485839,27576,2900.0,91722,89893,0,0},{},{30,58.8,36.9}},
[108558]={0,{144,28,28.0,28,28,0,0},{}},
[108559]={92,{451885,27454,2900.0,91314,89893,0,0},{}},
[108560]={92,{484701,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771566,100},{32,63.4,63.2}},
[108561]={95,{157286068,415389,33531.0,794574,788015,1750,950},{}},
[108562]={90,{505788,10305,14170.0,2576,2576,0,0},{}},
[108563]={0,{144,28,28.0,28,28,0,0},{}},
[108564]={92,{28075,8777,6751.0,2700,2700,0,0},{}},
[108565]={0,{144,28,28.0,28,28,0,0},{}},
[108566]={0,{144,28,28.0,28,28,0,0},{}},
[108567]={92,{451885,27454,2900.0,91314,89893,0,0},{}},
[108568]={95,{6301249,383402,20741.0,718079,712031,1500,800},{}},
[108569]={95,{6301249,383402,20741.0,718079,712031,1500,800},{}},
[108570]={0,{150,30,28.0,90,84,0,0},{}},
[108571]={95,{343010366,422454,48931.0,1013680,1022444,6000,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721024,200000,721025,200000,721036,100000,726094,200000}},
[108572]={95,{55767082,269524,46731.0,292416,290216,5550,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721028,200000,721036,100000,725433,200000},{167,44.3,61.4}},
[108573]={95,{35204379,265463,46731.0,257656,257824,1750,950},{}},
[108574]={95,{1955982,307808,19741.0,172274,169762,1500,800},{}},
[108575]={95,{35204379,265463,46731.0,257656,257824,1750,950},{}},
[108576]={95,{1639838,302363,19241.0,172274,157774,1500,800},{}},
[108577]={95,{55767082,269524,46731.0,292416,290216,5550,3500},{}},
[108578]={95,{35204379,265463,46731.0,257656,257824,1750,950},{}},
[108579]={95,{60895352,273019,48381.0,292416,297212,5600,3200},{},{167,57.1,26.6}},
[108580]={95,{1863634,306990,19741.0,170757,157774,1500,800},{}},
[108581]={95,{1955982,307808,19741.0,172274,157774,1500,800},{}},
[108582]={95,{1955982,307808,19741.0,172274,157774,1500,800},{}},
[108583]={95,{60895352,274184,48931.0,292416,297212,6000,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721030,200000,721036,100000,725919,200000}},
[108584]={95,{14171118,127176,48931.0,149032,149371,5550,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721033,200000,721036,100000,725307,200000},{168,44.3,61.4}},
[108585]={95,{13582164,51282,17251.0,92547,90899,1750,950},{}},
[108586]={95,{754635,41731,7841.0,93369,90899,1500,800},{}},
[108587]={95,{13582164,51282,17251.0,92547,90899,1750,950},{}},
[108588]={95,{754635,41731,7841.0,93369,90899,1500,800},{}},
[108589]={95,{14171118,127176,48931.0,149032,149371,5550,3500},{}},
[108590]={95,{13582164,51282,17251.0,92547,90899,1750,950},{}},
[108591]={95,{15310733,128266,48931.0,149032,149371,5600,3200},{},{168,57.1,26.6}},
[108592]={95,{719006,41539,7841.0,92547,90899,1500,800},{}},
[108593]={95,{754635,41731,7841.0,93369,90899,1500,800},{}},
[108594]={95,{754635,41731,7841.0,93369,90899,1500,800},{}},
[108595]={95,{15310733,128266,48931.0,149032,149371,6000,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721035,200000,721036,100000,725416,200000}},
[108596]={95,{171861645,623938,48931.0,969190,1000448,4600,8200},{}},
[108597]={95,{171816365,553701,48931.0,948193,1022444,5400,7900},{}},
[108598]={98,{367454503,432196,50075.0,1049489,1024151,5800,2200},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721775,200000,721776,200000,721795,100000,726080,200000}},
[108599]={98,{397947979,433257,50405.0,1042488,1057172,5750,3000},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721777,200000,721778,200000,721795,100000,726086,200000},{169,25.1,20.5}},
[108600]={98,{429088101,434447,50625.0,1054269,1046165,5950,3500},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721779,200000,721780,200000,721795,100000,726092,200000},{169,14.7,8.6}},
[108601]={98,{367635064,432196,50075.0,1091494,1002137,6000,3500},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721781,200000,721782,200000,721795,100000,726095,200000},{169,11.6,40.7}},
[108602]={98,{367635064,432196,50075.0,1091494,1002137,6000,3500},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721783,200000,721784,200000,721795,100000,726097,200000},{169,33.2,71.3}},
[108603]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,64.9,62.7}},
[108604]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,63.0,61.3}},
[108605]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,55.7,51.0}},
[108606]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,58.2,63.8}},
[108607]={98,{7996763,401376,21761.0,810856,827541,1600,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,63.8,63.0}},
[108608]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,56.1,30.7}},
[108609]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,55.7,29.9}},
[108610]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{},{169,54.6,19.1}},
[108611]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{},{169,54.8,16.8}},
[108612]={98,{7996763,401376,21761.0,810856,827541,1700,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,47.4,26.8}},
[108613]={98,{7996763,401376,21761.0,810856,827541,1700,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,51.1,20.0}},
[108614]={98,{7996763,401376,21761.0,810856,827541,1700,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,49.7,22.8}},
[108615]={98,{7996763,401376,21761.0,810856,827541,1700,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,36.6,29.6}},
[108616]={98,{63375,17031,7761.0,15784,15740,0,0},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721773,200000,721774,200000,721795,100000,726072,200000}},
[108617]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,31.2,19.3}},
[108618]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,30.3,23.3}},
[108619]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,31.8,27.0}},
[108620]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,18.8,13.6}},
[108621]={98,{7810690,400858,21761.0,269102,275847,1400,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,22.2,12.8}},
[108622]={98,{7996763,401376,21761.0,810856,827541,1600,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,19.1,14.5}},
[108623]={98,{7996763,401376,21761.0,810856,827541,1600,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,19.6,13.1}},
[108624]={98,{7996763,401376,21761.0,810856,827541,1600,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,22.3,13.2}},
[108625]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,21.3,16.1}},
[108626]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,20.0,15.9}},
[108627]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,12.4,55.6}},
[108628]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,19.0,29.8}},
[108629]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,17.2,26.3}},
[108630]={98,{7996763,401376,21761.0,810856,827541,1500,1400},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,18.9,27.1}},
[108631]={98,{7810690,400858,21761.0,269102,275847,2000,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,26.1,76.0}},
[108632]={98,{7810690,400858,21761.0,269102,275847,2000,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,24.1,69.6}},
[108633]={98,{7810690,400858,21761.0,269102,275847,2000,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{169,24.8,69.0}},
[108634]={95,{52320675,269524,46731.0,280302,276224,5200,2800},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721026,200000,721036,100000,725429,200000},{167,73.6,69.4}},
[108635]={95,{60969149,275383,48931.0,295013,311204,5200,2800},{}},
[108636]={95,{1955982,342002,21241.0,172274,169762,1500,800},{}},
[108637]={95,{1955982,342002,21241.0,172274,169762,1500,800},{}},
[108638]={95,{1955982,342002,21241.0,172274,169762,1500,800},{}},
[108639]={95,{58036126,268359,48381.0,288378,304208,5800,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721029,200000,721036,100000,725917,200000},{167,73.3,44.1}},
[108640]={95,{1909580,307808,19741.0,154589,157774,1500,800},{}},
[108641]={95,{1863634,306990,19741.0,170757,157774,1500,800},{}},
[108642]={95,{14740926,127721,48931.0,149032,149371,5800,3500},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721034,200000,721036,100000,725309,200000},{168,73.3,44.1}},
[108643]={95,{754635,41731,7841.0,93369,90899,1500,800},{}},
[108644]={95,{13031502,126631,48931.0,149032,149371,5200,2800},{720821,5000,720143,60000,723988,100000,721014,70000,721015,70000,721031,200000,721036,100000,725301,200000},{168,73.6,69.4}},
[108645]={95,{13041577,126647,48931.0,145211,149371,5200,2800},{}},
[108646]={95,{754635,41603,7791.0,93369,90899,1500,800},{}},
[108647]={95,{754635,41603,7791.0,93369,90899,1500,800},{}},
[108648]={95,{754635,41603,7791.0,93369,90899,1500,800},{}},
[108649]={95,{719006,41539,7841.0,92547,90899,1500,800},{}},
[108650]={90,{808393,26139,2576.0,86183,86708,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100}},
[108651]={90,{808393,26139,2576.0,86183,86708,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100}},
[108652]={90,{8561,2576,2576.0,2576,2576,0,0},{}},
[108653]={98,{367635064,432196,50075.0,1091494,1002137,6000,3500},{}},
[108654]={89,{403186,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,25.0,28.6}},
[108655]={89,{403186,25502,2516.0,86366,86372,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100},{29,23.6,32.1}},
[108656]={90,{8561,2576,2576.0,2576,2576,0,0},{}},
[108657]={1,{-1,24,28.0,84,84,0,0},{}},
[108658]={98,{8197139,401894,21761.0,814407,827541,1700,1400},{}},
[108659]={90,{407869,26257,3899.0,88114,88745,0,0},{720011,5000,720142,10000,726877,10000,720928,2000,720929,2000,720930,100,720931,100}},
[108660]={98,{7335518,394872,21761.0,810856,808527,1800,1450},{}},
[108661]={98,{7335518,394872,21761.0,810856,808527,1800,1450},{}},
[108662]={98,{7335518,396498,21761.0,810856,808527,1800,1450},{}},
[108663]={98,{7996763,398124,21761.0,810856,808527,1800,1450},{}},
[108664]={98,{7335518,395522,21761.0,810856,808527,1800,1450},{}},
[108665]={98,{2628443,401894,21761.0,225203,234761,2000,1500},{}},
[108666]={98,{2628443,123830,21761.0,225203,234761,2000,1500},{}},
[108667]={98,{2628443,123830,21761.0,225203,234761,2000,1500},{}},
[108668]={98,{2628443,123830,21761.0,225203,234761,2000,1500},{}},
[108669]={0,{144,28,28.0,28,28,0,0},{}},
[108670]={92,{451885,27454,2900.0,93756,93374,0,0},{}},
[108671]={92,{451885,27454,2900.0,94570,94244,0,0},{}},
[108672]={94,{507809,28440,3030.0,94580,93173,0,0},{}},
[108673]={92,{484701,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771567,100},{32,53.5,56.7}},
[108674]={92,{832120,82398,7251.0,94147,94244,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771568,100}},
[108675]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771571,100},{32,47.1,40.4}},
[108676]={98,{7810690,400858,21761.0,807306,827541,2000,1500},{}},
[108677]={98,{8060625,401894,21761.0,807306,827541,2000,1500},{}},
[108678]={91,{7096132,348630,22985.0,724994,725665,2000,1500},{}},
[108679]={92,{456679,27576,4387.0,90906,90269,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771587,100,243186,60000},{30,74.9,64.4}},
[108680]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771588,100,243187,200000,720140,5000},{30,64.5,55.8}},
[108681]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771589,100,243188,200000,720140,5000},{30,69.0,78.4}},
[108682]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771590,100,243182,60000},{30,69.9,58.5}},
[108683]={92,{455543,27086,2900.0,90906,89893,0,0},{720011,5000,720142,10000,723988,10000,721012,2000,721013,2000,721014,100,721015,100,771591,100},{30,68.3,63.4}},
[108684]={98,{147553294,512042,47875.0,781352,536983,1800,1450},{}},
[108685]={98,{65278481,285523,50075.0,315062,319296,5750,3000},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721788,200000,721795,100000,725919,200000},{170,25.1,20.5}},
[108686]={98,{16412770,133961,50075.0,160712,160877,5750,3000},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721793,200000,721795,100000,725309,200000},{171,25.1,20.5}},
[108687]={98,{65367016,285842,50075.0,316442,319296,5950,3500},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721789,200000,721795,100000,725921,200000},{170,14.7,8.6}},
[108688]={98,{2061896,102474,20261.0,183292,177246,2000,1500},{}},
[108689]={98,{2061896,102474,20261.0,183292,177246,2000,1500},{}},
[108690]={98,{2061896,102474,20261.0,183292,177246,2000,1500},{}},
[108691]={98,{2061896,320650,20261.0,183292,177246,2000,1500},{}},
[108692]={98,{16435030,134110,50075.0,161415,160877,5950,3500},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721794,200000,721795,100000,725417,200000},{171,14.7,8.6}},
[108693]={98,{795498,43879,8361.0,94812,96222,2000,1500},{}},
[108694]={98,{795498,43879,8361.0,94812,96222,2000,1500},{}},
[108695]={98,{795498,43879,8361.0,94812,96222,2000,1500},{}},
[108696]={98,{795498,43879,8361.0,94812,96222,2000,1500},{}},
[108697]={95,{30121274,275083,48931.0,293715,311204,4600,8200},{}},
[108698]={95,{30121274,157021,48931.0,293715,311204,5400,7900},{}},
[108699]={95,{7332339,128687,48931.0,149694,156403,4600,8200},{}},
[108700]={95,{7332339,38960,48931.0,149694,156403,5400,7900},{}},
[108701]={98,{8197139,397016,21761.0,814407,827541,1900,1350},{}},
[108702]={98,{8197139,397016,21761.0,814407,827541,1900,1350},{}},
[108703]={98,{65278481,285523,50075.0,315062,319296,5800,2200},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721787,200000,721795,100000,725917,200000}},
[108704]={98,{16412770,133961,50075.0,160712,160877,5800,2200},{720821,5000,720143,60000,723988,100000,721192,70000,721193,70000,721792,200000,721795,100000,725308,200000}},
[108705]={98,{63375,17031,7761.0,15784,15740,0,0},{}},
[108706]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,31.9,71.2}},
[108707]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771684,100},{33,36.8,45.3}},
[108708]={92,{484701,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771569,100},{32,63.6,82.6}},
[108709]={92,{484701,27086,2900.0,90096,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771570,100},{32,42.8,59.4}},
[108710]={95,{519710,29139,3096.0,96892,95314,0,0},{}},
[108711]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771572,100},{32,35.0,47.7}},
[108712]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771573,100},{32,35.6,53.5}},
[108713]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771574,100},{32,24.5,44.7}},
[108714]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771575,100},{32,25.0,45.9}},
[108715]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771576,100},{32,48.2,86.9}},
[108716]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771577,100},{32,26.2,51.0}},
[108717]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771626,100},{32,21.8,45.1}},
[108718]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771627,100}},
[108719]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771628,100},{32,23.2,42.8}},
[108720]={94,{56338,15120,7075.0,13985,14008,0,0},{}},
[108721]={94,{56338,15120,7075.0,13985,14008,0,0},{}},
[108722]={0,{129,19,28.0,19,19,0,0},{}},
[108723]={92,{480808,27454,2900.0,90500,89023,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771629,100},{32,25.0,46.9}},
[108724]={92,{480808,27209,2900.0,89768,88240,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771630,100},{32,25.8,45.4}},
[108725]={93,{496140,27756,2964.0,92314,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771631,100},{32,63.2,54.4}},
[108726]={93,{496140,27756,2964.0,92314,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771632,100},{32,62.8,51.6}},
[108727]={93,{492145,28132,2964.0,88562,88408,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771633,100},{32,65.8,54.7}},
[108728]={94,{503708,28824,3030.0,95001,93173,0,0},{}},
[108729]={93,{492145,28132,2964.0,92727,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771634,100},{32,77.3,72.0}},
[108730]={93,{492145,28132,2964.0,92727,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771635,100},{32,75.8,70.6}},
[108731]={93,{496140,27756,2964.0,92314,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771636,100},{32,66.0,61.5}},
[108732]={93,{492145,28132,2964.0,92727,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771637,100},{32,80.4,87.9}},
[108733]={93,{496140,27756,2964.0,92314,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771638,100},{32,76.1,74.8}},
[108734]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100}},
[108735]={93,{849625,52398,7411.0,96893,96413,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100},{32,78.7,83.4}},
[108736]={98,{1997963,319782,20261.0,61097,59082,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,64.9,62.7}},
[108737]={98,{1997963,319782,20261.0,61097,59082,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,63.0,61.3}},
[108738]={98,{2045560,320216,20261.0,184098,177246,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,55.7,51.0}},
[108739]={98,{1997963,319782,20261.0,61097,59082,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,58.2,63.8}},
[108740]={98,{2045560,320216,20261.0,184098,177246,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,63.8,63.0}},
[108741]={98,{1997963,319782,20261.0,61097,59082,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,56.1,30.7}},
[108742]={98,{1997963,319782,20261.0,61097,59082,1650,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,55.7,29.9}},
[108743]={98,{1997963,319782,20261.0,61097,59082,1650,1450},{},{170,54.6,19.1}},
[108744]={98,{1997963,319782,20261.0,61097,59082,1750,1450},{},{170,54.8,16.8}},
[108745]={98,{2045560,320216,20261.0,184098,177246,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,47.4,26.8}},
[108746]={98,{2045560,320216,20261.0,184098,177246,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,51.1,20.0}},
[108747]={98,{2045560,320216,20261.0,184098,177246,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,49.7,22.8}},
[108748]={98,{2045560,320216,20261.0,184098,177246,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,36.6,29.6}},
[108749]={98,{1997963,319782,20261.0,61097,59082,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,31.2,19.3}},
[108750]={98,{1997963,319782,20261.0,61097,59082,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,30.3,23.3}},
[108751]={98,{1997963,319782,20261.0,61097,59082,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,31.8,27.0}},
[108752]={98,{1997963,319782,20261.0,61097,59082,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,18.8,13.6}},
[108753]={98,{1997963,319782,20261.0,61097,59082,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,22.2,12.8}},
[108754]={98,{2045560,320216,20261.0,184098,177246,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,19.1,14.5}},
[108755]={98,{2045560,320216,20261.0,184098,177246,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,19.6,13.1}},
[108756]={98,{2045560,320216,20261.0,184098,177246,1900,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,22.3,13.2}},
[108757]={98,{2045560,320216,20261.0,184098,177246,1900,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,21.3,16.1}},
[108758]={98,{2045560,320216,20261.0,184098,177246,1900,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{170,20.0,15.9}},
[108759]={98,{2045560,320216,20261.0,184098,177246,2000,1500},{},{170,12.4,55.6}},
[108760]={98,{2045560,320216,20261.0,184098,177246,2000,1500},{},{170,19.0,29.8}},
[108761]={98,{2045560,320216,20261.0,184098,177246,2000,1500},{},{170,17.2,26.3}},
[108762]={98,{2045560,320216,20261.0,184098,177246,2000,1500},{},{170,18.9,27.1}},
[108763]={98,{1997963,319782,20261.0,61097,59082,2000,1500},{},{170,26.1,76.0}},
[108764]={98,{1997963,319782,20261.0,61097,59082,2000,1500},{},{170,24.1,69.6}},
[108765]={98,{1997963,319782,20261.0,61097,59082,2000,1500},{},{170,24.8,69.0}},
[108766]={98,{770832,43429,8261.0,31604,31690,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,64.9,62.7}},
[108767]={98,{770832,43429,8261.0,31604,31690,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,63.0,61.3}},
[108768]={98,{789195,43529,8261.0,95229,95071,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,55.7,51.0}},
[108769]={98,{770832,43429,8261.0,31604,31690,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,58.2,63.8}},
[108770]={98,{789195,43529,8261.0,95229,95071,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,63.8,63.0}},
[108771]={98,{770832,43429,8261.0,31604,31690,1650,1350},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,56.1,30.7}},
[108772]={98,{770832,43429,8261.0,31604,31690,1650,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,55.7,29.9}},
[108773]={98,{770832,43429,8261.0,31604,31690,1650,1450},{},{171,54.6,19.1}},
[108774]={98,{770832,43429,8261.0,31604,31690,1750,1450},{},{171,54.8,16.8}},
[108775]={98,{789195,43529,8261.0,95229,95071,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,47.4,26.8}},
[108776]={98,{789195,43529,8261.0,95229,95071,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,51.1,20.0}},
[108777]={98,{789195,43529,8261.0,95229,95071,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,49.7,22.8}},
[108778]={98,{789195,43529,8261.0,95229,95071,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,36.6,29.6}},
[108779]={98,{770832,43429,8261.0,31604,31690,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,31.2,19.3}},
[108780]={98,{770832,43429,8261.0,31604,31690,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,30.3,23.3}},
[108781]={98,{770832,43429,8261.0,31604,31690,1750,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,31.8,27.0}},
[108782]={98,{770832,43429,8261.0,31604,31690,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,18.8,13.6}},
[108783]={98,{770832,43429,8261.0,31604,31690,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,22.2,12.8}},
[108784]={98,{789195,43529,8261.0,95229,95071,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,19.1,14.5}},
[108785]={98,{789195,43529,8261.0,95229,95071,1900,1450},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,19.6,13.1}},
[108786]={98,{789195,43529,8261.0,95229,95071,1900,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,22.3,13.2}},
[108787]={98,{789195,43529,8261.0,95229,95071,1900,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,21.3,16.1}},
[108788]={98,{789195,43529,8261.0,95229,95071,1900,1500},{720011,3000,720142,60000,723988,100000,721190,3500,721191,3500,721192,1500,721193,1500},{171,20.0,15.9}},
[108789]={98,{789195,43529,8261.0,95229,95071,2000,1500},{},{171,12.4,55.6}},
[108790]={98,{789195,43529,8261.0,95229,95071,2000,1500},{},{171,19.0,29.8}},
[108791]={98,{789195,43529,8261.0,95229,95071,2000,1500},{},{171,17.2,26.3}},
[108792]={98,{789195,43529,8261.0,95229,95071,2000,1500},{},{171,18.9,27.1}},
[108793]={98,{770832,43429,8261.0,31604,31690,2000,1500},{},{171,26.1,76.0}},
[108794]={98,{770832,43429,8261.0,31604,31690,2000,1500},{},{171,24.1,69.6}},
[108795]={98,{770832,43429,8261.0,31604,31690,2000,1500},{},{171,24.8,69.0}},
[108796]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,49.2,71.3}},
[108797]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,49.0,70.1}},
[108798]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,48.8,70.9}},
[108799]={100,{8076201,255535,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,50.6,71.1}},
[108800]={100,{395794680,322153,50875.0,1047800,1046471,3000,3000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721802,200000,721803,200000,725300,100000,726064,200000}},
[108801]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,52.4,56.0}},
[108802]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,52.6,56.5}},
[108803]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,45.2,52.1}},
[108804]={100,{395794680,322153,50875.0,1047800,1046471,3000,3000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721804,200000,721805,200000,725300,100000,726072,200000}},
[108805]={100,{8244878,255958,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,73.8,32.3}},
[108806]={100,{8244878,255958,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,74.3,27.7}},
[108807]={100,{8244878,255958,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,60.4,25.9}},
[108808]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,74.1,27.9}},
[108809]={100,{395794680,322153,50875.0,1047800,1046471,3000,3000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721806,200000,721807,200000,725300,100000,726080,200000}},
[108810]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,74.9,39.7}},
[108811]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,79.4,33.8}},
[108812]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,78.6,34.1}},
[108813]={100,{8201745,255747,23125.0,255696,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{172,79.3,32.6}},
[108814]={100,{198512203,322153,50875.0,1047800,1046471,3000,3000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721808,200000,721809,200000,725300,100000,726092,200000}},
[108815]={100,{8244878,255958,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,43.3,69.8}},
[108816]={100,{8076201,255535,23125.0,85101,85194,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,43.7,73.4}},
[108817]={100,{8076201,255535,23125.0,85101,85194,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,33.3,53.7}},
[108818]={100,{99912991,229756,50875.0,1046194,1046471,3000,3000},{}},
[108819]={100,{99912991,229756,50875.0,1046194,1046471,3000,3000},{}},
[108820]={100,{99912991,229756,50875.0,1046194,1046471,3000,3000},{}},
[108821]={100,{99912991,229756,50875.0,1046194,1046471,3000,3000},{}},
[108822]={100,{8076201,255535,23125.0,85101,85194,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,42.0,52.4}},
[108823]={100,{8244878,255958,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,34.6,53.8}},
[108824]={100,{8244878,255958,23125.0,255304,255582,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,27.8,48.9}},
[108825]={100,{165701488,276078,50875.0,1046194,1046471,3000,3000},{}},
[108826]={100,{231109206,275655,50875.0,348731,348823,3000,3000},{}},
[108827]={100,{8076201,255535,23125.0,85101,85194,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,41.8,39.0}},
[108828]={100,{8076201,255535,23125.0,85101,85194,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,38.1,43.9}},
[108829]={100,{8076201,255535,23125.0,85101,85194,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{175,37.4,48.1}},
[108830]={100,{395794680,322153,50875.0,1047800,1046471,3000,3000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721814,200000,721815,200000,725300,100000,727212,200000}},
[108831]={100,{198512203,322153,50875.0,1047800,1046471,3000,3000},{}},
[108832]={100,{66357,18041,8125.0,16720,16673,0,0},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721810,200000,721811,200000,725300,100000,726090,200000}},
[108833]={100,{66357,18041,8125.0,16720,16673,0,0},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721205,200000,725300,100000,725919,200000}},
[108834]={100,{66357,18041,8125.0,16720,16673,0,0},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721213,200000,725300,100000,725309,200000}},
[108835]={100,{66357,18041,8125.0,16720,16673,0,0},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721209,200000,725300,100000,725924,200000}},
[108836]={100,{66357,18041,8125.0,16720,16673,0,0},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721214,200000,725300,100000,725417,200000}},
[108837]={93,{492145,28132,2964.0,92727,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771639,100},{32,77.9,82.0}},
[108838]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771640,100},{32,77.7,73.4}},
[108839]={94,{509067,28952,4582.0,94580,93561,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771647,100},{32,28.7,40.9}},
[108840]={93,{492145,28132,2964.0,92727,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771641,100},{32,77.5,82.6}},
[108841]={93,{492145,28132,2964.0,92727,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771642,100},{32,78.8,77.0}},
[108842]={0,{135,21,28.0,62,59,0,0},{}},
[108843]={93,{496140,27756,2964.0,88167,88408,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771643,100},{32,82.8,86.2}},
[108844]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771648,100},{32,45.5,16.3}},
[108845]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,34.1,73.2}},
[108846]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771649,100},{32,48.0,19.8}},
[108847]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771650,100},{32,41.0,25.2}},
[108848]={94,{689014,44171,7575.0,99265,98627,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771651,100},{32,55.4,20.0}},
[108849]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771652,100},{32,45.8,27.7}},
[108850]={96,{16835607,112526,17405.0,104159,103196,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771685,100},{33,24.5,44.7}},
[108851]={95,{982854,64748,7741.0,101687,100888,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771653,100},{32,46.0,15.8}},
[108852]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,32.1,70.7}},
[108853]={94,{507809,28440,3030.0,94580,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771654,100},{32,47.9,20.1}},
[108854]={94,{507809,28440,3030.0,94580,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771655,100},{32,31.7,27.5}},
[108855]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771656,100},{32,49.5,18.2}},
[108856]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771705,100,243219,60000},{33,48.4,40.2}},
[108857]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771690,100},{33,36.7,22.5}},
[108858]={0,{135,21,28.0,62,59,0,0},{}},
[108859]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771658,100},{32,69.4,30.1}},
[108860]={96,{540093,30386,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100}},
[108861]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771659,100},{32,69.0,32.1}},
[108862]={94,{503708,28824,3030.0,95001,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771660,100},{32,71.1,31.4}},
[108863]={0,{150,30,28.0,90,84,0,0},{}},
[108864]={0,{144,28,28.0,28,28,0,0},{}},
[108865]={0,{150,30,28.0,90,84,0,0},{}},
[108866]={0,{150,30,28.0,90,84,0,0},{}},
[108867]={0,{142,24,28.0,84,84,0,0},{}},
[108868]={94,{507809,28440,3030.0,94580,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771661,100},{32,71.2,40.6}},
[108869]={94,{507809,28440,3030.0,94580,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771662,100},{32,64.8,18.1}},
[108870]={0,{144,28,28.0,28,28,0,0},{}},
[108871]={0,{144,28,28.0,28,28,0,0},{}},
[108872]={0,{144,28,28.0,28,28,0,0},{}},
[108873]={1,{132,17,28.0,59,60,0,0},{},{32,35.7,31.7}},
[108874]={0,{142,24,28.0,84,84,0,0},{243208,200000}},
[108875]={98,{1997963,319782,20261.0,61097,59082,1800,1450},{}},
[108876]={98,{2096816,320650,20261.0,184904,177246,1800,1450},{}},
[108877]={98,{1997963,319782,20261.0,61097,59082,1800,1450},{}},
[108878]={98,{2045560,320216,20261.0,184098,177246,1800,1450},{}},
[108879]={98,{1997963,319782,20261.0,61097,59082,1800,1450},{}},
[108880]={98,{37748066,407708,44575.0,61609,59082,1800,1450},{}},
[108881]={98,{770832,43680,8361.0,31604,32074,1800,1450},{}},
[108882]={98,{770832,43680,8361.0,31604,32074,1800,1450},{}},
[108883]={98,{770832,43680,8361.0,31604,32074,1800,1450},{}},
[108884]={98,{789195,43779,8361.0,95229,96222,1800,1450},{}},
[108885]={98,{770832,43680,8361.0,31604,32074,1800,1450},{}},
[108886]={98,{14563542,53947,18395.0,31868,32074,1800,1450},{}},
[108887]={0,{146,32,48.0,84,90,0,0},{}},
[108888]={0,{146,32,48.0,84,90,0,0},{}},
[108889]={0,{144,28,28.0,28,28,0,0},{}},
[108890]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108891]={0,{150,30,28.0,90,84,0,0},{}},
[108892]={0,{150,30,28.0,90,84,0,0},{}},
[108893]={0,{150,30,28.0,90,84,0,0},{}},
[108894]={0,{150,30,28.0,90,84,0,0},{}},
[108895]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108896]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108897]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108898]={93,{851938,52033,7411.0,96462,96413,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100},{32,66.5,44.5}},
[108899]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108900]={100,{100017,51191,23125.0,47320,47453,0,0},{}},
[108901]={0,{144,28,28.0,28,28,0,0},{}},
[108902]={0,{144,28,28.0,28,28,0,0},{},{81,48.4,47.6}},
[108903]={93,{496140,27756,2964.0,92314,91077,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771644,100},{32,72.5,86.8}},
[108904]={100,{2774271,255958,23125.0,256088,255582,0,0},{}},
[108905]={100,{2774271,255958,23125.0,256088,255582,0,0},{}},
[108906]={100,{2774271,255958,23125.0,256088,255582,0,0},{}},
[108907]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[108908]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108909]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108910]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108911]={93,{496140,27756,2964.0,89826,90187,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100,771645,100}},
[108912]={100,{132751378,229580,50875.0,658697,657964,2000,2000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721202,200000,725300,100000,725432,200000}},
[108913]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108914]={100,{27534057,92572,50875.0,436352,435960,1000,1000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721210,200000,725300,100000,725303,200000}},
[108915]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108916]={100,{132751378,229580,50875.0,658697,657964,2000,2000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721203,200000,725300,100000,725434,200000}},
[108917]={100,{2720786,195733,23125.0,116910,116829,0,0},{}},
[108918]={100,{2720786,195733,23125.0,116910,116829,0,0},{}},
[108919]={100,{2720786,195733,23125.0,116910,116829,0,0},{}},
[108920]={100,{2690812,195733,23125.0,116552,116829,0,0},{}},
[108921]={100,{27534057,92572,50875.0,436352,435960,1000,1000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721211,200000,725300,100000,725305,200000}},
[108922]={100,{952653,94019,20625.0,116727,116574,0,0},{}},
[108923]={100,{952653,94019,20625.0,116727,116574,0,0},{}},
[108924]={100,{952653,94019,20625.0,116727,116574,0,0},{}},
[108925]={100,{941534,94019,20625.0,116327,116574,0,0},{}},
[108926]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[108927]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[108928]={100,{2774271,255958,23125.0,256088,255582,0,0},{}},
[108929]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[108930]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[108931]={0,{144,28,28.0,28,28,0,0},{}},
[108932]={0,{150,30,28.0,90,84,0,0},{}},
[108933]={93,{849625,52398,7411.0,96893,96413,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100},{32,21.7,40.8}},
[108934]={93,{849625,52398,7411.0,96893,96413,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100},{32,21.7,40.6}},
[108935]={0,{150,30,28.0,90,84,0,0},{}},
[108936]={0,{150,30,28.0,90,84,0,0},{}},
[108937]={0,{144,28,28.0,28,28,0,0},{},{196,27.5,68.8}},
[108938]={90,{5003884,313731,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000}},
[108939]={90,{5003884,313731,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,24.1,78.9}},
[108940]={90,{5003884,313731,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,28.4,57.0}},
[108941]={90,{5003884,315201,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,31.6,57.0}},
[108942]={90,{5003884,318141,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,18.6,36.0}},
[108943]={90,{5003884,318141,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,21.8,36.1}},
[108944]={90,{5003884,315201,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,56.1,36.5}},
[108945]={90,{5003884,316671,23099.0,630713,674050,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,54.8,29.3}},
[108946]={90,{5003884,318141,22799.0,630713,656284,1600,900},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243223,5000},{196,71.3,72.8}},
[108947]={90,{193426257,386772,50398.0,785300,795443,6000,3500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243255,200000,726060,200000},{196,33.4,48.3}},
[108948]={90,{203556734,388532,50398.0,823947,845771,6000,3500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243255,200000,726066,200000},{196,55.6,49.2}},
[108949]={90,{213687210,388532,50998.0,847135,845771,6000,3500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243255,200000,726078,200000},{196,43.3,79.1}},
[108950]={90,{228882925,393812,51598.0,901240,943230,6000,3500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243259,200000,726092,200000},{196,82.8,88.9}},
[108951]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,33.8,25.4}},
[108952]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,24.4,35.8}},
[108953]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,80.0,44.9}},
[108954]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,33.1,26.9}},
[108955]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,64.3,54.3}},
[108956]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,63.2,62.6}},
[108957]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,53.0,74.2}},
[108958]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,36.4,66.8}},
[108959]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,22.6,51.4}},
[108960]={91,{7096132,348630,22985.0,724994,725665,1200,1000},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,49.8,24.4}},
[108961]={92,{7265761,353227,23174.0,742323,731873,1200,1500},{720011,3000,720142,60000,726877,100000,720854,3500,720855,3500,720856,1500,720857,1500,243224,5000},{197,76.9,24.8}},
[108962]={91,{234380139,400155,51970.0,922842,950273,4000,2500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243256,200000,726060,200000},{197,70.0,32.7}},
[108963]={91,{234380139,394872,51970.0,922842,950273,5000,2500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243256,200000,726066,200000},{197,73.5,68.3}},
[108964]={92,{239987297,400250,52349.0,944878,957455,5500,3000},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243256,200000,726078,200000},{197,44.6,69.7}},
[108965]={92,{239987297,401307,52349.0,944878,957455,6000,3500},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,243260,200000,726092,200000},{197,48.8,48.0}},
[108966]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000}},
[108967]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000}},
[108968]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000},{198,59.8,55.4}},
[108969]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000},{198,38.2,64.1}},
[108970]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000},{198,39.3,34.8}},
[108971]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000},{198,58.5,51.7}},
[108972]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000},{198,34.3,28.9}},
[108973]={93,{7375814,374464,23368.0,732512,738203,2000,1000},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243225,5000},{198,52.4,54.7}},
[108974]={93,{294644554,392753,51536.0,967357,964780,6000,2800},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243257,200000,726062,200000},{198,40.3,44.3}},
[108975]={93,{289207003,395006,52736.0,967357,964780,5500,3500},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243257,200000,726072,200000},{198,64.1,37.4}},
[108976]={93,{297363329,400786,51536.0,971504,977946,6000,3000},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243257,200000,726084,200000},{198,45.1,60.7}},
[108977]={93,{300082105,403059,50336.0,975652,977946,6000,3500},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243261,200000,726096,200000},{198,48.9,37.7}},
[108978]={94,{6147359,378756,26565.0,748659,785363,1250,1200},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000}},
[108979]={94,{6112286,370351,26565.0,744414,740895,1250,1200},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000}},
[108980]={94,{7600962,380285,23565.0,782841,732896,1250,1350},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,47.1,34.2}},
[108981]={94,{7503310,366674,26565.0,782841,732896,1300,1350},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,51.5,28.4}},
[108982]={94,{6198189,378756,26565.0,775113,785363,1650,1350},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,73.3,27.6}},
[108983]={94,{6104728,380946,28365.0,752819,744617,1650,1350},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,74.8,31.6}},
[108984]={94,{6112286,376696,27765.0,744414,740895,1650,1450},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,73.3,51.4}},
[108985]={94,{6147359,378756,26565.0,748659,785363,1850,1450},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,81.0,55.6}},
[108986]={94,{7501466,365973,26565.0,795931,753999,2000,1500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,55.5,72.5}},
[108987]={94,{7894872,378931,26565.0,787568,782640,2000,1500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,5000},{199,46.7,84.3}},
[108988]={94,{195873770,398590,48331.0,990288,972250,6000,3500},{},{199,60.5,42.2}},
[108989]={94,{178851945,403882,51931.0,850320,862300,6000,3500},{}},
[108990]={94,{307206802,409174,51931.0,990288,972250,6000,3500},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243258,200000,726072,200000},{199,86.3,38.0}},
[108991]={94,{307206802,409174,51931.0,990288,972250,6000,3500},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243258,200000,726084,200000},{199,59.9,73.8}},
[108992]={94,{307206802,412702,53131.0,990288,972250,6000,3500},{720820,5000,720143,60000,726877,100000,720930,70000,720931,70000,243262,200000,726096,200000},{199,36.9,72.6}},
[108993]={90,{13808210,353845,23999.0,708007,719579,1600,900},{}},
[108994]={90,{6929830,350605,23399.0,708007,719579,1600,900},{}},
[108995]={100,{2774271,255958,23125.0,256088,255582,0,0},{}},
[108996]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[108997]={0,{150,30,28.0,90,84,0,0},{}},
[108998]={0,{150,30,28.0,90,84,0,0},{}},
[108999]={0,{150,30,28.0,90,84,0,0},{}},
[109000]={0,{150,30,28.0,90,84,0,0},{}},
[109001]={94,{507809,28440,3030.0,94580,93173,0,0},{720011,5000,720142,10000,723988,10000,721190,2000,721191,2000,721192,100,721193,100}},
[109002]={100,{132751378,229580,50875.0,658697,657964,2000,2000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721204,200000,725300,100000,725922,200000}},
[109003]={100,{2690812,195733,23125.0,116552,116829,0,0},{}},
[109004]={100,{2690812,195733,23125.0,116552,116829,0,0},{}},
[109005]={100,{2720786,195733,23125.0,116910,116829,0,0},{}},
[109006]={100,{27534057,92572,50875.0,436352,435960,1000,1000},{720822,5000,720143,60000,723988,100000,721200,70000,721201,70000,721212,200000,725300,100000,725415,200000}},
[109007]={100,{941534,94019,20625.0,116327,116574,0,0},{}},
[109008]={100,{941534,94019,20625.0,116327,116574,0,0},{}},
[109009]={100,{952653,94019,20625.0,116727,116574,0,0},{}},
[109010]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,667,723516,667,723550,667,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100}},
[109011]={47,{14539,2777,1053.0,2169,2351,0,0},{720011,3000,723448,667,723516,667,723550,667,720099,5000,770451,100,720142,5000,211296,1400,723982,3000,550321,100}},
[109012]={0,{127,16,28.0,58,59,0,0},{}},
[109013]={0,{127,16,28.0,58,59,0,0},{}},
[109014]={0,{127,16,28.0,58,59,0,0},{}},
[109015]={103,{433713224,428937,52138.0,1158325,1158610,3000,3000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726696,200000,726697,200000,725916,100000,726080,200000}},
[109016]={103,{433832640,422707,52138.0,1158325,1158610,3000,3000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726698,200000,726699,200000,725916,100000,726088,200000}},
[109017]={103,{4477767,170665,23699.0,475786,476071,0,0},{}},
[109018]={103,{433117621,422036,52138.0,1158325,1158610,3000,3000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726700,200000,726701,200000,725916,100000,726102,200000}},
[109019]={103,{1702082,73764,8479.0,222083,222337,0,0},{}},
[109020]={103,{4462112,170082,23699.0,475786,476071,0,0},{}},
[109021]={103,{434220256,430303,52138.0,1162009,1158610,3000,3000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726702,200000,726703,200000,725916,100000,727212,200000}},
[109022]={103,{4528582,170665,23699.0,477299,476071,0,0},{}},
[109023]={103,{433649604,429962,52138.0,1160167,1158610,3000,3000},{}},
[109024]={103,{433832640,191939,52138.0,1158325,1158610,3000,3000},{}},
[109025]={103,{152478459,277503,52138.0,717519,717803,2000,2000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726706,200000,725916,100000,725923,200000}},
[109026]={103,{152520441,270791,52138.0,717519,717803,2000,2000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726707,200000,725916,100000,725925,200000}},
[109027]={103,{1543160,139804,23699.0,157268,157552,0,0},{}},
[109028]={103,{152269065,270361,52138.0,717519,717803,2000,2000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726708,200000,725916,100000,725927,200000}},
[109029]={103,{1289423,56865,8479.0,171205,171459,0,0},{}},
[109030]={103,{1537765,139326,23699.0,157268,157552,0,0},{}},
[109031]={103,{152656713,278387,52138.0,719801,717803,2000,2000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726709,200000,725916,100000,725929,200000}},
[109032]={103,{1560672,139804,23699.0,157768,157552,0,0},{}},
[109033]={103,{152456092,278166,52138.0,718660,717803,2000,2000},{}},
[109034]={103,{152520441,110781,52138.0,717519,717803,2000,2000},{}},
[109035]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771676,100},{33,44.8,54.8}},
[109036]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771663,100},{33,33.2,70.3}},
[109037]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771664,100},{33,38.3,62.8}},
[109038]={96,{533159,30386,4786.0,99254,97904,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100}},
[109039]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771665,100},{33,25.9,67.8}},
[109040]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771666,100},{33,24.1,66.1}},
[109041]={96,{540093,30386,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771704,100}},
[109042]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771667,100},{33,19.8,66.3}},
[109043]={97,{940136,57873,8084.0,106215,105553,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100}},
[109044]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,37.2,47.3}},
[109045]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771686,100},{33,30.5,40.1}},
[109046]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771687,100},{33,36.0,45.3}},
[109047]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,37.1,45.5}},
[109048]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,37.3,44.6}},
[109049]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771691,100},{33,37.3,22.3}},
[109050]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771692,100},{33,25.4,42.0}},
[109051]={96,{490900,30120,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,71.6,30.2}},
[109052]={97,{539805,30990,3233.0,102113,99732,0,0},{},{33,71.8,28.1}},
[109053]={96,{490900,30120,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771699,100},{33,68.0,31.5}},
[109054]={96,{531850,29853,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100},{33,72.2,31.6}},
[109055]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771700,100},{33,70.7,29.4}},
[109056]={97,{932691,57740,8084.0,106684,105553,0,0},{723988,0},{33,72.4,31.7}},
[109057]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771693,100},{33,54.8,72.2}},
[109058]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771694,100},{33,53.9,69.0}},
[109059]={96,{19781,4942,2964.0,14828,14852,0,0},{}},
[109060]={97,{539805,30990,3233.0,102113,99732,0,0},{}},
[109061]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771706,100},{33,41.2,58.9}},
[109062]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771695,100},{33,49.0,73.6}},
[109063]={97,{17231056,115195,17786.0,106684,105553,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771701,100},{33,67.6,31.4}},
[109064]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771677,100},{33,60.5,57.8}},
[109065]={95,{8858,4737,2896.0,14338,14425,0,0},{}},
[109066]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771678,100},{33,65.8,56.9}},
[109067]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771668,100},{33,9.6,64.8}},
[109068]={97,{940136,93597,8084.0,106215,105553,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100}},
[109069]={100,{66357,18041,8125.0,16720,16673,0,0},{}},
[109070]={100,{23297,5573,3250.0,16720,16673,0,0},{}},
[109071]={100,{23297,5573,3250.0,16720,16673,0,0},{}},
[109072]={91,{5810273,367694,20594.0,731527,781454,2000,1500},{}},
[109073]={91,{5810273,367694,20594.0,731527,781454,2000,1500},{}},
[109074]={91,{5810273,367694,20594.0,731527,781454,2000,1500},{}},
[109075]={92,{5984350,376597,20751.0,752503,805337,2000,1500},{}},
[109076]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[109077]={100,{363394,71668,23125.0,67988,68266,0,0},{}},
[109078]={100,{2743708,255958,23125.0,255304,255582,0,0},{}},
[109079]={92,{239987297,400602,52349.0,944878,957455,6000,3500},{}},
[109080]={92,{7422456,372292,20751.0,748988,787656,2000,1500},{}},
[109081]={100,{2687576,255535,23125.0,255304,255582,0,0},{}},
[109082]={91,{7249385,367694,20594.0,731527,781454,2000,1500},{}},
[109083]={103,{31547509,133640,52138.0,561104,561388,1000,1000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726711,200000,725916,100000,725304,200000}},
[109084]={103,{31556195,126470,52138.0,561104,561388,1000,1000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726712,200000,725916,100000,725307,200000}},
[109085]={103,{621631,75380,21199.0,135590,135844,0,0},{}},
[109086]={103,{31504186,126269,52138.0,561104,561388,1000,1000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726713,200000,725916,100000,725415,200000}},
[109087]={103,{1014316,48415,8479.0,145766,146020,0,0},{}},
[109088]={103,{1141097,75092,21199.0,135590,135844,0,0},{}},
[109089]={103,{31584390,134066,52138.0,562888,561388,1000,1000},{720822,5000,720143,60000,723989,100000,725571,70000,725572,70000,726714,200000,725916,100000,725418,200000}},
[109090]={103,{1159072,75380,21199.0,136072,135844,0,0},{}},
[109091]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,49.2,71.3}},
[109092]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,49.0,70.1}},
[109093]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,48.8,70.9}},
[109094]={100,{2635763,195409,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,50.6,71.1}},
[109095]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,52.4,56.0}},
[109096]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,52.6,56.5}},
[109097]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,45.2,52.1}},
[109098]={100,{2690812,195733,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,55.6,25.5}},
[109099]={100,{2690812,195733,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,55.3,22.6}},
[109100]={100,{2690812,195733,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,60.4,25.9}},
[109101]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{173,56.8,23.2}},
[109102]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109103]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109104]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109105]={100,{2676735,195571,23125.0,116731,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109106]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,49.2,72.1}},
[109107]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,49.0,70.8}},
[109108]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,48.8,71.7}},
[109109]={100,{921114,93845,20625.0,116327,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,50.6,71.8}},
[109110]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,52.4,56.6}},
[109111]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,52.6,57.1}},
[109112]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,45.2,52.7}},
[109113]={100,{941534,94019,20625.0,116327,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,55.6,25.8}},
[109114]={100,{941534,94019,20625.0,116327,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,55.3,22.8}},
[109115]={100,{941534,94019,20625.0,116327,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,60.4,26.2}},
[109116]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{174,56.8,23.5}},
[109117]={100,{936313,93932,20625.0,116527,116574,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109118]={100,{936313,88565,20625.0,104131,104199,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109119]={100,{936313,88565,20625.0,104131,104199,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109120]={100,{936313,88565,20625.0,104131,104199,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500}},
[109121]={100,{2690812,195733,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,43.3,69.8}},
[109122]={100,{2635763,195409,23125.0,38850,38943,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,43.7,73.4}},
[109123]={100,{2635763,195409,23125.0,38850,38943,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,33.3,53.7}},
[109124]={100,{2635763,195409,23125.0,38850,38943,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,42.0,52.4}},
[109125]={100,{2690812,195733,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,34.6,53.8}},
[109126]={100,{2690812,195733,23125.0,116552,116829,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,27.8,48.9}},
[109127]={100,{2635763,195409,23125.0,38850,38943,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,39.4,49.0}},
[109128]={100,{2635763,195409,23125.0,38850,38943,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,38.0,48.3}},
[109129]={100,{2635763,195409,23125.0,38850,38943,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{176,37.4,48.1}},
[109130]={100,{941534,88647,20625.0,103952,104199,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,43.3,69.8}},
[109131]={100,{921114,88483,20625.0,34650,34733,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,44.7,73.2}},
[109132]={100,{921114,88483,20625.0,34650,34733,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,33.3,53.7}},
[109133]={100,{921114,88483,20625.0,34650,34733,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,42.0,52.4}},
[109134]={100,{941534,88647,20625.0,103952,104199,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,34.6,53.8}},
[109135]={100,{941534,88647,20625.0,103952,104199,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,27.8,48.9}},
[109136]={100,{921114,88483,20625.0,34650,34733,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,39.4,49.0}},
[109137]={100,{921114,88483,20625.0,34650,34733,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,38.0,48.3}},
[109138]={100,{921114,88483,20625.0,34650,34733,0,0},{720011,3000,720142,60000,723988,100000,721194,3500,721195,3500,721200,1500,721201,1500},{177,37.4,48.1}},
[109139]={102,{8578587,272093,23504.0,330562,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,84.4,20.5}},
[109140]={102,{8578587,272093,23504.0,330562,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,80.9,23.9}},
[109141]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,85.1,17.9}},
[109142]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,83.7,19.1}},
[109143]={98,{63375,17031,7761.0,15784,15740,0,0},{720060,200000}},
[109144]={102,{8562702,272785,23504.0,331082,434303,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,83.8,16.6}},
[109145]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,83.1,17.9}},
[109146]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,84.5,18.4}},
[109147]={102,{8429613,272554,23504.0,330562,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,81.2,19.9}},
[109148]={102,{8429613,272554,23504.0,330562,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,61.7,40.4}},
[109149]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,70.1,47.6}},
[109150]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,62.6,50.6}},
[109151]={102,{8578587,272093,23504.0,330562,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,60.9,50.3}},
[109152]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,69.1,79.1}},
[109153]={102,{8562702,272785,23504.0,331082,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,66.8,81.2}},
[109154]={102,{8578587,272093,23504.0,330562,330844,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{181,68.7,78.6}},
[109155]={101,{28120347,119735,51288.0,467470,467750,1000,1000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726008,200000,721899,100000,725305,200000}},
[109156]={102,{2818593,211085,23504.0,138768,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,84.4,20.5}},
[109157]={102,{2818593,211085,23504.0,138768,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,80.9,23.9}},
[109158]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,85.1,17.9}},
[109159]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,83.7,19.1}},
[109160]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771669,100},{33,21.6,66.5}},
[109161]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771670,100},{33,21.8,68.3}},
[109162]={95,{527767,29662,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771671,100},{33,6.8,67.9}},
[109163]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771672,100},{33,13.0,64.0}},
[109164]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771673,100},{33,9.9,73.1}},
[109165]={102,{2813374,211622,23504.0,138986,182533,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,83.8,16.6}},
[109166]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,83.1,17.9}},
[109167]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,84.5,18.4}},
[109168]={102,{2769646,211443,23504.0,138768,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,81.2,19.9}},
[109169]={102,{2769646,211443,23504.0,138768,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,61.7,40.4}},
[109170]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,70.1,47.6}},
[109171]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,62.6,50.6}},
[109172]={102,{2818593,211085,23504.0,138768,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,60.9,50.3}},
[109173]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,69.1,79.1}},
[109174]={102,{2813374,211622,23504.0,138986,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,66.8,81.2}},
[109175]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771679,100}},
[109176]={95,{520993,29662,4683.0,96892,95710,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771680,100},{33,40.9,61.5}},
[109177]={96,{531850,29853,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771681,100},{33,47.8,40.4}},
[109178]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771682,100},{33,48.7,47.1}},
[109179]={96,{531850,29853,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771688,100},{33,35.6,47.0}},
[109180]={102,{2818593,211085,23504.0,138768,139050,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{182,68.7,78.6}},
[109181]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771689,100},{33,29.2,35.9}},
[109182]={96,{531850,29853,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771696,100},{33,54.7,66.1}},
[109183]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771697,100},{33,53.0,76.8}},
[109184]={96,{527534,30253,3164.0,99693,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771698,100},{33,57.1,67.7}},
[109185]={95,{519710,29139,3096.0,96892,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771683,100},{33,42.8,48.3}},
[109186]={96,{531850,29853,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771702,100},{33,56.6,24.9}},
[109187]={96,{531850,29853,3164.0,99254,97500,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771703,100},{33,57.5,19.4}},
[109188]={95,{16455013,110148,17031.0,101237,100888,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771674,100},{33,23.7,66.9}},
[109189]={103,{31542882,133959,52138.0,561996,561388,1000,1000},{}},
[109190]={103,{31556195,70201,52138.0,561104,561388,1000,1000},{}},
[109191]={103,{1752936,74291,8479.0,222873,222337,3000,3000},{}},
[109192]={103,{1752936,74291,8479.0,222873,222337,3000,3000},{}},
[109193]={103,{8952448,287940,23699.0,477299,476071,3000,3000},{}},
[109194]={0,{129,19,28.0,19,19,0,0},{}},
[109195]={92,{133767678,388973,49949.0,742323,788807,2000,1500},{}},
[109196]={90,{213646138,371871,43870.0,866495,898018,0,0},{720820,5000,720143,60000,726877,100000,720856,70000,720857,70000,720862,200000,720863,200000,720878,100000,726070,200000}},
[109197]={0,{144,28,28.0,28,28,0,0},{}},
[109198]={93,{7186912,374464,23368.0,664234,673780,3500,2000},{}},
[109199]={93,{7186912,374464,23368.0,664234,693664,3500,2100},{}},
[109200]={93,{5861136,374464,23368.0,720412,713548,3500,2000},{}},
[109201]={93,{5810669,374464,23368.0,692323,713548,3000,2200},{}},
[109202]={93,{5810669,374464,23368.0,692323,693664,3500,2000},{}},
[109203]={102,{1122796,95933,21004.0,124008,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,84.4,20.5}},
[109204]={102,{1122796,95933,21004.0,124008,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,80.9,23.9}},
[109205]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,85.1,17.9}},
[109206]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,83.7,19.1}},
[109207]={102,{1120595,96206,21004.0,124226,167743,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,83.8,16.6}},
[109208]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,83.1,17.9}},
[109209]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,84.5,18.4}},
[109210]={102,{1102158,96115,21004.0,124008,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,81.2,19.9}},
[109211]={102,{1102158,96115,21004.0,124008,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,61.7,40.4}},
[109212]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,70.1,47.6}},
[109213]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,62.6,50.6}},
[109214]={102,{1122796,95933,21004.0,124008,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,60.9,50.3}},
[109215]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,69.1,79.1}},
[109216]={102,{1120595,96206,21004.0,124226,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,66.8,81.2}},
[109217]={102,{1122796,95933,21004.0,124008,124260,0,0},{720011,3000,720142,60000,723989,100000,721246,3500,721247,3500,721248,1500,721249,1500},{183,68.7,78.6}},
[109218]={103,{1702082,73764,8479.0,222083,222337,0,0},{}},
[109219]={103,{1702082,73764,8479.0,222083,222337,0,0},{}},
[109220]={103,{1289423,56865,8479.0,171205,171459,0,0},{}},
[109221]={103,{1289423,56865,8479.0,171205,171459,0,0},{}},
[109222]={103,{1014316,48415,8479.0,145766,146020,0,0},{}},
[109223]={103,{1014316,48415,8479.0,145766,146020,0,0},{}},
[109224]={103,{430134685,414782,52138.0,1131683,1130171,0,0},{}},
[109225]={95,{515503,29531,3096.0,97323,95314,0,0},{720011,5000,720142,10000,723988,10000,721194,2000,721195,2000,721200,100,721201,100,771707,100},{33,33.9,74.9}},
[109226]={0,{144,28,28.0,28,28,0,0},{},{160,44.9,39.0}},
[109227]={101,{135578086,250287,51288.0,663299,663579,2000,2000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726003,200000,721899,100000,725919,200000}},
[109228]={93,{10392203,377384,25168.0,718530,719219,2000,1500},{}},
[109229]={93,{5962071,377384,25168.0,718530,795155,1350,900},{}},
[109230]={93,{5962071,377384,25168.0,718530,795155,1350,900},{}},
[109231]={93,{5962071,377384,25168.0,718530,795155,1350,900},{}},
[109232]={93,{5962071,377384,25168.0,718530,795155,1400,1250},{}},
[109233]={93,{4444557,381746,25168.0,669937,657922,1650,1350},{}},
[109234]={93,{4734899,381746,25168.0,669937,657922,1650,1400},{}},
[109235]={94,{4020043,362701,23565.0,761576,763650,1800,1500},{720011,3000,720142,60000,726877,100000,720928,3500,720929,3500,720930,1500,720931,1500,243226,2000}},
[109236]={93,{294644554,392753,51536.0,967357,964780,6000,2800},{}},
[109237]={33,{1686,495,495.0,1485,1485,0,0},{}},
[109238]={0,{144,28,28.0,28,28,0,0},{}},
[109239]={1,{603,167,70.0,1028,833,0,0},{}},
[109240]={92,{4729366,44399,27007.0,94992,87746,0,0},{726129,200000,726130,200000,726131,200000,725245,200000,720143,200000,771708,10000}},
[109241]={72,{8128821,83080,56540.0,34337,78534,0,0},{}},
[109242]={72,{3847331,19807,9647.0,31856,28572,0,0},{}},
[109243]={75,{10392181,91665,57858.0,39913,84357,0,0},{}},
[109244]={75,{4156744,21560,10372.0,34556,30890,0,0},{}},
[109245]={77,{10929923,112962,68781.0,44907,104823,0,0},{}},
[109246]={77,{6215708,26985,11155.0,47724,45512,0,0},{}},
[109247]={80,{13607775,123393,70237.0,51605,111888,0,0},{}},
[109248]={80,{6701224,29248,11955.0,51605,48974,0,0},{}},
[109249]={82,{14292864,133112,71257.0,57791,118215,0,0},{}},
[109250]={82,{7040296,31056,12516.0,54587,51408,0,0},{}},
[109251]={85,{19510870,144381,72864.0,65506,125909,0,0},{}},
[109252]={85,{7577350,33382,13400.0,58646,55258,0,0},{}},
[109253]={87,{20459468,171690,83990.0,72473,150678,0,0},{}},
[109254]={87,{10295421,40683,14294.0,76072,74695,0,0},{}},
[109255]={90,{26647629,185193,85764.0,81930,159779,0,0},{}},
[109256]={90,{11077166,43702,15270.0,81930,80044,0,0},{}},
[109257]={92,{27934253,198301,91612.0,90096,168071,0,0},{}},
[109258]={92,{11614585,45956,15954.0,86045,83802,0,0},{}},
[109259]={95,{32581617,213748,93684.0,101237,178012,0,0},{}},
[109260]={95,{12461695,49530,17031.0,92547,89740,0,0},{}},
[109261]={80,{7787,2042,2023.0,6128,6071,0,0},{}},
[109262]={83,{8375,2198,2178.0,6595,6534,0,0},{}},
[109263]={86,{8999,2363,2342.0,7091,7026,0,0},{}},
[109264]={89,{9662,2538,2516.0,7616,7548,0,0},{}},
[109265]={92,{10365,2724,2700.0,8174,8102,0,0},{}},
[109266]={94,{10858,2855,2830.0,8565,8490,0,0},{}},
[109267]={96,{11370,2990,2964.0,8972,8893,0,0},{}},
[109268]={98,{11903,3131,3104.0,9395,9313,0,0},{}},
[109269]={100,{12458,3278,3250.0,9835,9750,0,0},{}},
[109270]={102,{13035,3431,3401.0,10293,10205,0,0},{}},
[109271]={80,{7787,2042,2023.0,6128,6071,0,0},{}},
[109272]={83,{8375,2198,2178.0,6595,6534,0,0},{}},
[109273]={86,{8999,2363,2342.0,7091,7026,0,0},{}},
[109274]={89,{9662,2538,2516.0,7616,7548,0,0},{}},
[109275]={92,{10365,2724,2700.0,8174,8102,0,0},{}},
[109276]={94,{10858,2855,2830.0,8565,8490,0,0},{}},
[109277]={96,{11370,2990,2964.0,8972,8893,0,0},{}},
[109278]={98,{11903,3131,3104.0,9395,9313,0,0},{}},
[109279]={100,{12458,3278,3250.0,9835,9750,0,0},{}},
[109280]={102,{13035,3431,3401.0,10293,10205,0,0},{}},
[109281]={97,{99596340,475271,49686.0,518063,209201,0,0},{720822,5000,720143,60000,723989,100000,721200,70000,721201,70000,721802,200000,721803,200000,725300,100000,726064,200000}},
[109282]={98,{184222621,428660,50075.0,1021486,1046165,5400,7900},{}},
[109283]={97,{567303,33612,12090.0,100503,100912,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771722,100},{34,50.8,61.0}},
[109284]={97,{567303,33612,12090.0,100503,100912,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771723,100},{34,53.1,63.2}},
[109285]={97,{567303,33612,12090.0,100503,100912,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771724,100},{34,49.6,62.7}},
[109286]={97,{566717,33870,8033.0,101949,102190,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771725,100},{34,53.3,66.0}},
[109287]={97,{616166,29533,8033.0,101153,126774,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771726,100},{34,55.1,53.1}},
[109288]={97,{597056,35568,8033.0,111293,118579,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771727,100},{34,52.3,58.1}},
[109289]={97,{1081902,75003,20084.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771728,100},{34,48.5,66.6}},
[109290]={97,{597056,35568,8033.0,111293,118579,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771729,100},{34,42.6,75.5}},
[109291]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771730,100},{34,48.5,55.9}},
[109292]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771731,100},{34,46.8,48.9}},
[109293]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771732,100},{34,47.6,51.8}},
[109294]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771733,100},{34,50.2,54.3}},
[109295]={97,{567303,33612,12090.0,100503,100912,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771734,100},{34,45.9,53.4}},
[109296]={97,{566717,33389,8033.0,100503,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771735,100},{34,51.6,48.2}},
[109297]={97,{616166,29533,8033.0,101153,126774,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771736,100},{34,43.9,43.3}},
[109298]={97,{597056,35568,8033.0,111293,118579,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771737,100},{34,40.5,46.2}},
[109299]={97,{1081902,75003,20084.0,100671,100744,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771738,100},{34,42.1,41.3}},
[109300]={97,{597056,35568,8033.0,111293,118579,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771739,100},{34,40.5,42.3}},
[109301]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771740,100},{34,30.0,65.2}},
[109302]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771741,100},{34,29.7,63.4}},
[109303]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771742,100},{34,36.2,60.1}},
[109304]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771743,100},{34,20.5,61.2}},
[109305]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771744,100},{34,23.8,66.4}},
[109306]={98,{572256,33762,8104.0,101631,101874,0,0},{720011,5000,720142,10000,723989,10000,725984,2000,725985,2000,725986,100,725987,100,771745,100},{34,25.1,63.2}},
[109307]={1,{117,30,14.0,63,84,0,0},{}},
[109308]={1,{117,30,14.0,63,84,0,0},{}},
[109309]={1,{117,35,27.0,63,90,0,0},{}},
[109310]={101,{404718405,399800,51288.0,1056596,1055236,3000,3000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,725994,200000,725995,200000,721899,100000,726101,200000}},
[109311]={0,{144,28,28.0,28,28,0,0},{}},
[109312]={0,{150,30,28.0,90,84,0,0},{}},
[109313]={0,{150,30,28.0,90,84,0,0},{}},
[109314]={0,{144,28,28.0,28,28,0,0},{}},
[109315]={0,{150,30,28.0,90,84,0,0},{}},
[109316]={101,{135744437,250482,51288.0,664330,663579,2000,2000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726005,200000,721899,100000,725923,200000}},
[109317]={101,{28154850,119828,51288.0,468197,467750,1000,1000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726010,200000,721899,100000,725415,200000}},
[109318]={0,{144,28,28.0,28,28,0,0},{}},
[109319]={103,{2421418,35134,23699.0,6019,14754,0,0},{}},
[109320]={0,{144,28,28.0,28,28,0,0},{}},
[109321]={98,{1245725,80979,20261.0,118650,118893,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771766,100},{35,25.7,74.2}},
[109322]={98,{703088,37801,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771767,100},{35,60.3,77.1}},
[109323]={98,{703088,37801,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771768,100},{35,19.4,68.0}},
[109324]={98,{703088,37801,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771769,100},{35,36.9,69.8}},
[109325]={103,{2421418,35134,23699.0,18059,44264,0,0},{}},
[109326]={98,{703821,38057,12197.0,113787,114223,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771770,100},{35,19.8,79.1}},
[109327]={98,{1245725,80979,20261.0,118650,118893,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771771,100},{35,27.8,79.3}},
[109328]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771772,100},{35,51.7,82.6}},
[109329]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771773,100},{35,54.2,82.0}},
[109330]={98,{1243370,81200,20261.0,118850,118893,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771774,100},{35,54.5,83.6}},
[109331]={98,{700641,37993,8104.0,113979,155396,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771775,100},{35,55.3,79.2}},
[109332]={98,{679970,37929,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771776,100},{35,54.7,83.3}},
[109333]={98,{707736,38057,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771777,100},{35,53.7,83.5}},
[109334]={98,{703088,37801,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771778,100},{35,36.9,82.3}},
[109335]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771779,100},{35,43.5,82.8}},
[109336]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771780,100},{35,42.2,79.3}},
[109337]={98,{1243370,81200,20261.0,118850,118893,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771781,100},{35,40.9,80.4}},
[109338]={98,{700641,37993,8104.0,113979,155396,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771782,100},{35,39.3,80.5}},
[109339]={98,{679970,37929,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771783,100}},
[109340]={98,{707736,38057,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771784,100},{35,41.0,83.7}},
[109341]={98,{1250200,81273,20261.0,118650,118893,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771785,100},{35,25.2,65.5}},
[109342]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771786,100},{35,22.5,61.9}},
[109343]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771787,100},{35,21.7,60.9}},
[109344]={98,{1243370,81200,20261.0,118850,118893,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771788,100},{35,20.8,61.7}},
[109345]={98,{700641,37993,8104.0,113979,155396,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771789,100},{35,22.8,63.6}},
[109346]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771790,100},{35,23.0,59.6}},
[109347]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771791,100},{35,25.2,66.1}},
[109348]={98,{740140,51752,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771792,100},{35,42.6,59.2}},
[109349]={98,{700641,37993,8104.0,113979,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771793,100},{35,44.0,59.8}},
[109350]={98,{703088,37801,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771794,100},{35,41.2,60.7}},
[109351]={98,{703088,37801,8104.0,113787,114030,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771795,100},{35,43.9,57.8}},
[109352]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771796,100},{35,37.0,27.0}},
[109353]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771797,100},{35,44.0,48.6}},
[109354]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771798,100},{35,33.0,41.8}},
[109355]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771799,100},{35,42.6,29.0}},
[109356]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771800,100},{35,38.7,22.3}},
[109357]={99,{686368,38348,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771801,100},{35,39.6,28.2}},
[109358]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771802,100},{35,43.2,31.2}},
[109359]={99,{707520,38413,8176.0,115241,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771803,100},{35,64.1,45.3}},
[109360]={99,{707520,38413,8176.0,115241,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771804,100},{35,62.5,45.5}},
[109361]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771805,100},{35,62.0,46.2}},
[109362]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771806,100},{35,63.6,46.9}},
[109363]={99,{686368,38348,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771807,100},{35,65.2,44.0}},
[109364]={99,{707520,38413,8176.0,115241,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771808,100},{35,57.2,31.0}},
[109365]={99,{707520,38413,8176.0,115241,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771809,100},{35,58.9,22.4}},
[109366]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771810,100},{35,62.4,27.0}},
[109367]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771811,100},{35,62.6,24.2}},
[109368]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771812,100},{35,58.5,30.7}},
[109369]={99,{707520,38413,8176.0,115241,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771813,100},{35,27.4,18.9}},
[109370]={99,{707520,38413,8176.0,115241,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771814,100},{35,32.6,22.0}},
[109371]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771815,100},{35,21.9,15.1}},
[109372]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771816,100},{35,24.3,13.9}},
[109373]={99,{686368,38348,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771817,100},{35,27.5,13.5}},
[109374]={99,{710029,38217,8176.0,115045,115290,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771818,100},{35,22.4,18.0}},
[109375]={99,{1266445,82329,24613.0,119951,120401,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771819,100},{35,65.3,43.0}},
[109376]={99,{1263309,82189,20441.0,120155,120196,0,0},{}},
[109377]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771820,100},{35,62.7,23.3}},
[109378]={99,{1263309,82189,20441.0,120155,120196,0,0},{720011,5000,720142,10000,723989,10000,721246,2000,721247,2000,721248,100,721249,100,771821,100},{35,22.3,14.0}},
[109379]={0,{144,28,28.0,28,28,0,0},{}},
[109380]={0,{144,28,28.0,28,28,0,0},{}},
[109381]={99,{64851,17530,7941.0,16246,16200,0,0},{721244,200000}},
[109382]={100,{66357,18041,8125.0,16720,16673,0,0},{724077,200000}},
[109383]={100,{66357,18041,8125.0,16720,16673,0,0},{725577,200000}},
[109384]={100,{66357,18041,8125.0,16720,16673,0,0},{725577,200000}},
[109385]={101,{2796055,210935,23312.0,130365,139318,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,59.1,51.3}},
[109386]={101,{2785641,203698,23312.0,117776,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,37.2,28.2}},
[109387]={101,{2785641,203698,23312.0,117776,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,33.8,84.0}},
[109388]={101,{2770948,203528,23312.0,117959,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,63.4,46.0}},
[109389]={101,{2776040,203018,23312.0,117776,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,71.9,63.4}},
[109390]={101,{2776040,203018,23312.0,117776,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,61.6,79.1}},
[109391]={101,{2776040,203018,23312.0,117776,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,37.8,37.0}},
[109392]={101,{2770948,203528,23312.0,117959,118056,0,0},{720011,3000,720142,60000,723989,100000,725984,3500,725985,3500,725986,1500,725987,1500},{179,44.6,78.1}},
[109393]={101,{2545336,264414,23312.0,244423,243946,0,0},{}},
[109394]={103,{8430683,246892,8699.0,913230,331337,0,0},{}},
[109395]={101,{102257137,400111,51288.0,553110,551677,0,0},{}},
[109396]={101,{916147,203698,23312.0,104111,104068,0,0},{}},
[109397]={101,{34925118,250676,51288.0,356673,355848,0,0},{}},
[109398]={101,{291624,103519,23312.0,104111,104068,0,0},{}},
[109399]={101,{7992310,119921,51288.0,258455,257934,0,0},{}},
[109400]={0,{144,28,28.0,28,28,0,0},{}},
[109401]={0,{150,30,28.0,90,84,0,0},{}},
[109402]={102,{8578587,272093,23504.0,330562,330844,0,0},{}},
[109403]={0,{144,28,28.0,28,28,0,0},{}},
[109404]={0,{144,28,28.0,28,28,0,0},{}},
[109405]={102,{8578587,272093,23504.0,330562,330844,0,0},{}},
[109406]={102,{8429613,272554,23504.0,330562,330844,0,0},{}},
[109407]={103,{67714,19564,8699.0,18059,18164,0,0},{}},
[109408]={102,{2769646,211443,23504.0,138768,139050,0,0},{}},
[109409]={102,{1102158,96115,21004.0,124008,124260,0,0},{}},
[109410]={103,{3082970,453817,23699.0,262493,262777,0,0},{}},
[109411]={103,{3137879,453040,23699.0,262493,262777,0,0},{}},
[109412]={103,{3137879,453040,23699.0,262493,262777,0,0},{}},
[109413]={102,{2818593,211085,23504.0,138768,139050,0,0},{}},
[109414]={102,{2818593,211085,23504.0,138768,139050,0,0},{}},
[109415]={102,{1122796,95933,21004.0,124008,124260,0,0},{}},
[109416]={102,{1122796,95933,21004.0,124008,124260,0,0},{}},
[109417]={102,{8429613,272554,23504.0,330562,330844,0,0},{}},
[109418]={102,{2769646,211443,23504.0,138768,139050,0,0},{}},
[109419]={102,{1102158,96115,21004.0,124008,124260,0,0},{}},
[109420]={100,{2690812,195733,23125.0,116552,116829,0,0},{}},
[109421]={100,{941534,94019,20625.0,116327,116574,0,0},{}},
[109422]={99,{839176,42509,8176.0,127527,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770101,100},{36,60.9,21.4}},
[109423]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770116,100},{36,59.4,11.3}},
[109424]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770131,100},{36,53.5,19.2}},
[109425]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770174,100},{36,45.7,21.6}},
[109426]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770175,100},{36,32.2,54.1}},
[109427]={99,{1412504,87268,20441.0,124857,125102,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770181,100},{36,45.5,34.9}},
[109428]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770194,100},{36,35.7,49.9}},
[109429]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770197,100},{36,37.1,51.3}},
[109430]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770208,100},{36,34.0,49.5}},
[109431]={99,{814088,42436,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770209,100},{36,33.8,49.2}},
[109432]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770295,100},{36,33.5,35.1}},
[109433]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770381,100},{36,38.7,60.3}},
[109434]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770414,100},{36,33.0,56.1}},
[109435]={99,{887300,58182,8176.0,127527,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770425,100},{36,39.5,38.1}},
[109436]={99,{839176,42509,8176.0,127527,174667,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770426,100},{36,40.1,38.5}},
[109437]={99,{1409808,87508,20441.0,125069,125102,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770434,100},{36,38.2,37.0}},
[109438]={99,{839176,42509,8176.0,127527,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770443,100},{36,41.6,37.5}},
[109439]={99,{814088,42436,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770597,100},{36,38.8,39.3}},
[109440]={99,{839176,42509,8176.0,127527,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770615,100},{36,38.1,36.2}},
[109441]={99,{839176,42509,8176.0,127527,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770624,100},{36,42.9,34.4}},
[109442]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770706,100},{36,49.1,55.0}},
[109443]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770720,100},{36,48.8,56.9}},
[109444]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770737,100},{36,49.2,52.2}},
[109445]={99,{1412504,87268,20441.0,124857,125102,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770754,100},{36,47.7,52.4}},
[109446]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770755,100},{36,46.5,51.3}},
[109447]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770770,100},{36,57.5,60.3}},
[109448]={99,{842152,42292,8176.0,127310,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770865,100},{36,58.7,59.9}},
[109449]={100,{821829,42900,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770900,100},{36,57.9,53.6}},
[109450]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770923,100},{36,60.7,58.4}},
[109451]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770926,100},{36,55.5,57.7}},
[109452]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,770931,100},{36,60.3,56.9}},
[109453]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771234,100},{36,56.7,61.0}},
[109454]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771235,100},{36,58.7,53.0}},
[109455]={100,{850550,42753,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771241,100},{36,26.4,59.0}},
[109456]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771236,100},{36,26.0,46.5}},
[109457]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771237,100},{36,26.1,47.9}},
[109458]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771238,100},{36,21.0,46.5}},
[109459]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771239,100},{36,26.2,49.0}},
[109460]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771240,100},{36,21.1,49.7}},
[109461]={100,{821829,42900,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771242,100},{36,39.2,82.8}},
[109462]={100,{850550,42753,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771243,100},{36,45.1,84.1}},
[109463]={100,{850550,42753,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771244,100},{36,35.0,69.8}},
[109464]={100,{1435268,88318,20625.0,126227,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771245,100},{36,34.4,69.4}},
[109465]={100,{850550,42753,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771515,100},{36,43.7,78.1}},
[109466]={100,{821829,42900,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771516,100},{36,32.7,78.1}},
[109467]={100,{850550,42753,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771764,100},{36,31.4,61.0}},
[109468]={100,{850550,42753,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771822,100},{36,29.7,60.6}},
[109469]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771823,100},{36,33.9,79.1}},
[109470]={100,{895622,58678,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771824,100},{36,38.8,78.6}},
[109471]={100,{847498,42974,8250.0,128924,176152,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771825,100},{36,38.6,79.6}},
[109472]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771826,100},{36,32.7,74.0}},
[109473]={100,{847498,42974,8250.0,128924,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771827,100},{36,34.3,78.3}},
[109474]={100,{856317,43048,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771828,100},{36,35.3,80.9}},
[109475]={100,{821829,42900,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771829,100},{36,40.7,80.3}},
[109476]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771830,100},{36,39.6,38.7}},
[109477]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771831,100},{36,60.5,53.0}},
[109478]={100,{1432504,88565,20625.0,126444,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771832,100},{36,24.7,46.3}},
[109479]={100,{1436089,88717,24835.0,126227,126692,0,0},{},{36,18.8,47.2}},
[109480]={100,{1409251,88483,20625.0,126227,126475,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771833,100},{36,40.7,78.3}},
[109481]={100,{1432504,88565,20625.0,126444,126475,0,0},{}},
[109482]={100,{1432504,88565,20625.0,126444,126475,0,0},{},{36,38.2,26.9}},
[109483]={100,{1432504,88565,20625.0,126444,126475,0,0},{},{36,39.0,25.4}},
[109484]={100,{1432504,88565,20625.0,126444,126475,0,0},{},{36,46.5,39.8}},
[109485]={100,{1432504,88565,20625.0,126444,126475,0,0},{},{36,46.4,39.2}},
[109486]={103,{19171459,105844,9479.0,1133480,1130171,3000,3000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724133,200000,724134,200000,724168,100000,726076,200000}},
[109487]={103,{18605432,103777,9479.0,1131683,1130171,3000,3000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724135,200000,724136,200000,724168,100000,726086,200000}},
[109488]={103,{18077762,105509,9479.0,1129886,1130171,3000,3000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724137,200000,724138,200000,724168,100000,726098,200000}},
[109489]={103,{18605432,105676,13359.0,1131683,1592744,3000,3000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724139,200000,724155,200000,724168,100000,727208,200000}},
[109490]={103,{18605432,105676,9479.0,1131683,1130171,3000,3000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724156,200000,724157,200000,724168,100000,727221,200000}},
[109491]={103,{6638431,67805,9479.0,705536,703584,2000,2000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724158,200000,724168,100000,725921,200000}},
[109492]={103,{6442435,65798,9479.0,704418,703584,2000,2000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724159,200000,724168,100000,725923,200000}},
[109493]={103,{6259720,67590,9479.0,703299,703584,2000,2000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724160,200000,724168,100000,725925,200000}},
[109494]={103,{6442435,67697,9479.0,704418,703584,2000,2000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724161,200000,724168,100000,725927,200000}},
[109495]={103,{6442435,67697,9479.0,704418,703584,2000,2000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724162,200000,724168,100000,725929,200000}},
[109496]={103,{1374559,32618,9479.0,534358,532949,1000,1000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724163,200000,724168,100000,725304,200000}},
[109497]={103,{1333976,30668,9479.0,533511,532949,1000,1000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724164,200000,724168,100000,725306,200000}},
[109498]={103,{1296143,32515,9479.0,532664,532949,1000,1000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724165,200000,724168,100000,725310,200000}},
[109499]={103,{1333976,32567,9479.0,533511,532949,1000,1000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724166,200000,724168,100000,725417,200000}},
[109500]={103,{1333976,32567,9479.0,533511,532949,1000,1000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724167,200000,724168,100000,725422,200000}},
[109501]={103,{4830838,86687,9479.0,405332,533987,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,46.5,84.1}},
[109502]={103,{5070732,114259,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,40.5,80.3}},
[109503]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,45.9,79.8}},
[109504]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,41.3,36.0}},
[109505]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,37.0,75.6}},
[109506]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,43.2,80.8}},
[109507]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,46.8,83.6}},
[109508]={103,{4693830,86549,9479.0,404688,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,60.7,58.7}},
[109509]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,46.7,44.9}},
[109510]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,44.3,44.0}},
[109511]={103,{4830838,86687,9479.0,405332,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,62.8,50.1}},
[109512]={103,{4693830,86549,9479.0,404688,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,49.1,83.4}},
[109513]={103,{4847223,86274,9479.0,404688,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,20.1,37.9}},
[109514]={103,{4693830,86549,9479.0,404688,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,34.3,64.4}},
[109515]={103,{4847223,86274,9479.0,404688,404973,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,49.3,87.1}},
[109516]={103,{1607644,67697,9479.0,148973,196495,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,25.6,70.5}},
[109517]={103,{1687477,89230,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109518]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,25.4,71.9}},
[109519]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109520]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109521]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,37.1,77.3}},
[109522]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109523]={103,{1562049,67590,9479.0,148736,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109524]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109525]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109526]={103,{1607644,67697,9479.0,148973,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109527]={103,{1562049,67590,9479.0,148736,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500},{184,46.8,87.5}},
[109528]={103,{1613096,67375,9479.0,148736,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109529]={103,{1562049,67590,9479.0,148736,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109530]={103,{1613096,67375,9479.0,148736,149021,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109531]={103,{571994,30836,8479.0,130734,177325,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109532]={103,{603508,41798,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109533]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109534]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109535]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109536]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109537]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109538]={103,{553996,30781,8479.0,130502,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109539]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109540]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109541]={103,{571994,30836,8479.0,130734,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109542]={103,{553996,30781,8479.0,130502,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109543]={103,{574146,30671,8479.0,130502,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109544]={103,{553996,30781,8479.0,130502,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109545]={103,{574146,30671,8479.0,130502,130757,0,0},{720011,3000,720142,60000,720342,100000,724078,3500,724079,3500,724033,1500,724034,1500}},
[109546]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202289,25000,727040,25000},{227,52.6,70.8}},
[109547]={93,{441673,28312,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202289,25000,727040,25000},{227,51.8,24.2}},
[109548]={93,{442708,28788,4484.0,103440,103960,0,0},{720011,5000,720142,10000,726877,10000,720658,200000,202289,25000,727040,25000},{227,57.9,49.1}},
[109549]={93,{442708,28788,4484.0,103440,103960,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202290,25000,727040,25000},{228,52.1,60.7}},
[109550]={93,{442708,28788,4484.0,103440,103960,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202290,25000,727040,25000},{228,56.3,55.6}},
[109551]={93,{442708,28788,4484.0,103440,103960,0,0},{720011,5000,720142,10000,726877,10000,720659,200000,202290,25000,727040,25000},{228,55.7,56.0}},
[109552]={93,{448134,28788,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202291,25000,727040,25000},{229,61.3,27.4}},
[109553]={93,{448134,28788,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202291,25000,727040,25000},{229,51.1,62.7}},
[109554]={93,{448134,28788,2964.0,103440,103529,0,0},{720011,5000,720142,10000,726877,10000,720660,200000,202291,25000,727040,25000},{229,53.1,28.0}},
[109555]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109556]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109557]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109558]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109559]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109560]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109561]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109562]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109563]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109564]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109565]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109566]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109567]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109568]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109569]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109570]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109571]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109572]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109573]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109574]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109575]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109576]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109577]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109578]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109579]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109580]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109581]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109582]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109583]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109584]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109585]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109586]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109587]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109588]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109589]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109590]={100,{20171,5525,3250.0,16575,16673,0,0},{}},
[109591]={0,{144,28,28.0,28,28,0,0},{}},
[109592]={102,{417258394,222806,51709.0,1093815,1092380,3000,3000},{}},
[109593]={102,{138797357,147534,51709.0,684199,683407,2000,2000},{}},
[109594]={102,{29475616,81670,51709.0,500578,500075,1000,1000},{}},
[109595]={103,{37206,11384,10529.0,10439,10484,0,0},{}},
[109596]={103,{2454562,86825,14264.0,404688,405617,0,0},{}},
[109597]={103,{2454562,86825,14264.0,404688,405617,0,0},{}},
[109598]={103,{2454562,86825,14264.0,404688,405617,0,0},{}},
[109599]={103,{835901,67805,14264.0,148736,149258,0,0},{}},
[109600]={103,{313138,30890,12764.0,130502,130989,0,0},{}},
[109601]={103,{313138,30890,12764.0,130502,130989,0,0},{}},
[109602]={103,{313138,30890,12764.0,130502,130989,0,0},{}},
[109603]={103,{426619766,414782,52138.0,1103199,1101731,3000,3000},{}},
[109604]={103,{18453395,103777,9479.0,1103199,1101731,3000,3000},{720822,5000,720143,60000,720342,100000,721248,70000,721249,70000,721256,200000,721257,200000,721270,100000,727204,200000}},
[109605]={103,{6138360,65798,9479.0,690175,689364,2000,2000},{720822,5000,720143,60000,720342,100000,721248,70000,721249,70000,721263,200000,721270,100000,725925,200000}},
[109606]={103,{1303569,32567,9479.0,505027,504510,1000,1000},{720822,5000,720143,60000,720342,100000,721248,70000,721249,70000,721268,200000,721270,100000,725417,200000}},
[109607]={0,{144,28,28.0,28,28,0,0},{}},
[109608]={0,{144,28,28.0,28,28,0,0},{}},
[109609]={0,{144,28,28.0,28,28,0,0},{}},
[109610]={0,{144,28,28.0,28,28,0,0},{}},
[109611]={0,{144,28,28.0,28,28,0,0},{}},
[109612]={103,{430134685,414782,52138.0,1074714,1073292,0,0},{}},
[109613]={103,{430134685,414782,52138.0,1131683,1130171,0,0},{}},
[109614]={103,{430134685,414782,52138.0,1131683,1130171,0,0},{}},
[109615]={103,{430134685,414782,52138.0,1131683,1130171,0,0},{}},
[109616]={103,{18605432,103777,9479.0,1131683,1130171,3000,3000},{}},
[109617]={103,{6442435,65798,9479.0,704418,703584,3000,3000},{}},
[109618]={103,{1333976,34466,9479.0,533511,532949,3000,3000},{}},
[109619]={100,{985038,47187,12417.0,141077,141568,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771870,100}},
[109620]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771871,100}},
[109621]={100,{950763,47025,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771872,100}},
[109622]={100,{950763,47025,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771873,100}},
[109623]={100,{950763,47025,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771874,100}},
[109624]={100,{1585318,94094,24835.0,131177,131651,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771875,100}},
[109625]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771876,100}},
[109626]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771877,100}},
[109627]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771878,100}},
[109628]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771879,100}},
[109629]={100,{980460,47106,8250.0,141320,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771880,100}},
[109630]={100,{980460,47106,8250.0,141320,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771881,100}},
[109631]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771882,100}},
[109632]={100,{980460,47106,8250.0,141320,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771883,100}},
[109633]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771884,100}},
[109634]={100,{980460,47106,8250.0,141320,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771885,100}},
[109635]={100,{980460,47106,8250.0,141320,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771886,100}},
[109636]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771887,100}},
[109637]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771888,100}},
[109638]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771889,100}},
[109639]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771890,100}},
[109640]={100,{985038,47187,12417.0,141077,141568,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771891,100}},
[109641]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771892,100}},
[109642]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771893,100}},
[109643]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771894,100}},
[109644]={100,{847498,28925,8250.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771895,100}},
[109645]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771896,100}},
[109646]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771897,100}},
[109647]={100,{186816,13976,8250.0,37125,34650,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771898,100}},
[109648]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771899,100}},
[109649]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771900,100}},
[109650]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771901,100}},
[109651]={100,{1584413,93671,20625.0,131177,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771902,100}},
[109652]={100,{983990,46864,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771903,100}},
[109653]={100,{1584413,93671,20625.0,131177,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771904,100}},
[109654]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771905,100}},
[109655]={100,{980460,47106,8250.0,141320,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771906,100}},
[109656]={100,{990663,47187,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771907,100}},
[109657]={100,{990663,47187,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771908,100}},
[109658]={100,{1608960,94019,20625.0,131629,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771909,100}},
[109659]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771910,100}},
[109660]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771911,100}},
[109661]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771912,100}},
[109662]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771913,100}},
[109663]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771914,100}},
[109664]={100,{950763,47025,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771915,100}},
[109665]={100,{990663,47187,8250.0,141077,141325,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771916,100}},
[109666]={100,{875096,28975,8250.0,131629,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771917,100}},
[109667]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771918,100}},
[109668]={100,{1590181,94019,20625.0,131177,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771919,100}},
[109669]={100,{393504300,115502,45375.0,131177,131425,0,0},{}},
[109670]={100,{1555692,93845,20625.0,43725,43808,0,0},{}},
[109671]={100,{1555692,93845,20625.0,43725,43808,0,0},{}},
[109672]={100,{1581362,93932,20625.0,131403,131425,0,0},{}},
[109673]={100,{1581362,93932,20625.0,131403,131425,0,0},{}},
[109674]={100,{875096,28975,8250.0,131629,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771920,100}},
[109675]={0,{144,28,28.0,28,28,0,0},{}},
[109676]={0,{144,28,28.0,28,28,0,0},{}},
[109677]={0,{144,28,28.0,28,28,0,0},{}},
[109678]={0,{144,28,28.0,28,28,0,0},{}},
[109679]={0,{144,28,28.0,28,28,0,0},{}},
[109680]={0,{144,28,28.0,28,28,0,0},{}},
[109681]={0,{144,28,28.0,28,28,0,0},{}},
[109682]={0,{144,28,28.0,28,28,0,0},{}},
[109683]={0,{144,28,28.0,28,28,0,0},{}},
[109684]={0,{144,28,28.0,28,28,0,0},{}},
[109685]={0,{144,28,28.0,28,28,0,0},{}},
[109686]={0,{144,28,28.0,28,28,0,0},{}},
[109687]={0,{144,28,28.0,28,28,0,0},{}},
[109688]={0,{144,28,28.0,28,28,0,0},{}},
[109689]={0,{144,28,28.0,28,28,0,0},{}},
[109690]={0,{144,28,28.0,28,28,0,0},{}},
[109691]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771921,100}},
[109692]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771922,100}},
[109693]={100,{847498,28925,8250.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771923,100}},
[109694]={55,{21219,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,771924,1000,205833,60000,720142,10000,723983,10000}},
[109695]={70,{303847,3005,25136.0,80298,50026,0,0},{771925,1000}},
[109696]={70,{21537,3005,25136.0,50031,85306,0,0},{771926,1000}},
[109697]={70,{21537,5009,25136.0,50031,50026,0,0},{771927,1000}},
[109698]={100,{821829,42900,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771928,100}},
[109699]={100,{856317,43048,8250.0,128702,128950,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771929,100}},
[109700]={53,{18520,1203,978.0,4491,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771930,1000,720142,5000,723983,3000}},
[109701]={55,{24229,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,771931,1000,205915,60000,720142,10000,723983,10000}},
[109702]={53,{19007,1217,1484.0,4491,4546,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771932,1000,720142,5000,723983,3000}},
[109703]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771933,1000,720142,5000,723983,3000}},
[109704]={53,{19884,1210,978.0,4517,5445,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771934,1000,720142,5000,723983,3000}},
[109705]={53,{19884,1210,978.0,4517,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771935,1000,205362,5000,720142,5000,723983,3000}},
[109706]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771936,1000,720142,5000,723983,3000}},
[109707]={55,{21219,1283,1038.0,4828,4859,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,771937,1000,720142,10000,723983,10000}},
[109708]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771938,1000,720142,5000,723983,3000}},
[109709]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771939,1000,720142,5000,723983,3000}},
[109710]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771940,1000,720142,5000,723983,3000}},
[109711]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771941,1000,205663,65000,720142,5000,723983,3000}},
[109712]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771942,1000,205663,65000,720142,5000,723983,3000}},
[109713]={53,{22610,1217,978.0,4543,4521,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,3000,771943,1000,205663,65000,720142,5000,723983,3000}},
[109714]={70,{1010759,20037,25136.0,96328,60031,0,0},{720011,3000,720142,20000,720103,15000,725535,20000,725539,20000,725536,15000,725540,15000,771944,1000}},
[109715]={55,{57538,4893,2595.0,6074,6105,0,0},{771945,1000}},
[109716]={55,{57538,4893,2595.0,6074,6105,0,0},{771946,1000}},
[109717]={55,{57538,4893,2595.0,6074,6105,0,0},{771947,1000}},
[109718]={55,{57538,4893,2595.0,6074,6105,0,0},{771948,1000}},
[109719]={55,{57538,4893,2595.0,6074,6105,0,0},{771949,1000}},
[109720]={55,{57538,4893,2595.0,6074,6105,0,0},{771950,1000}},
[109721]={55,{57538,4893,2595.0,6074,6105,0,0},{771951,1000}},
[109722]={55,{22418,1297,1238.0,4828,5795,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,771952,1000,720142,10000,723983,10000}},
[109723]={52,{6440,1145,949.0,3475,3503,0,0},{720011,5000,722191,2000,722157,3500,724180,1000,724185,1500,720100,1000,771953,1000,720142,5000,723982,3000}},
[109724]={55,{58916,6327,2595.0,7517,7466,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,7720101,20000,771954,1000,720142,15000,723983,15000}},
[109725]={55,{58916,6327,2595.0,7517,7466,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,771955,1000,720142,15000,723983,15000}},
[109726]={55,{24229,1283,1038.0,5451,5482,0,0},{720011,5000,722193,2000,722159,3500,724499,1500,724500,1000,720101,15000,771956,1000,720142,10000,723983,10000}},
[109727]={55,{62896,6557,3095.0,7943,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,771957,1000,720142,15000,723983,15000}},
[109728]={99,{839176,42509,8176.0,127527,127555,0,0},{720011,5000,720142,10000,720342,10000,724078,2000,724079,2000,724033,100,724034,100,771958,100}},
[109729]={53,{31272,1210,978.0,5107,5108,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,771959,1000,206013,300000,720142,5000,723983,3000}},
[109730]={55,{64402,6327,2595.0,7987,8158,0,0},{720011,5000,722193,3000,722159,4500,724499,3000,724500,4500,724913,3000,720101,20000,7719560,1000,720142,15000,723983,15000}},
[109731]={53,{48254,3923,2446.0,6141,6135,0,0},{771961,1000}},
[109732]={86,{283420,21317,2342.0,74540,72985,0,0},{720011,5000,720142,10000,726877,10000,720854,2000,720855,2000,720856,100,720857,100,771962,100}},
[109733]={38,{4047,650,598.0,1952,1957,0,0},{720011,3000,722562,667,722562,667,722902,667,720099,5000,771963,1000,720141,5000,222520,400,723980,3000,721912,320}},
[109734]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,771964,1000,720142,5000,723983,3000}},
[109735]={55,{51236,5478,2595.0,6421,6538,0,0},{771965,1000}},
[109736]={0,{144,28,28.0,28,28,0,0},{771966,1000}},
[109737]={93,{7186912,374464,23368.0,664234,693664,3500,2100},{771967,1000}},
[109738]={35,{9993,1130,1338.0,1685,1702,0,0},{720011,3000,723341,3866,723409,3866,723477,3866,771968,1000,724922,20000,724261,10000,723980,20000,721909,15000}},
[109739]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771969,1000}},
[109740]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771970,1000}},
[109741]={100,{847498,28925,8250.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771971,1000}},
[109742]={48,{16569,3197,2097.0,2970,2995,0,0},{771972,1000}},
[109743]={100,{1035772,42726,8250.0,141816,167313,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771973,1000}},
[109744]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771974,1000}},
[109745]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771975,1000}},
[109746]={100,{1014498,49173,8250.0,152477,159888,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771976,1000}},
[109747]={100,{1581362,93932,20625.0,131403,131425,0,0},{720011,5000,720142,10000,723989,10000,725569,2000,725570,2000,725571,100,725572,100,771977,1000}},
[109748]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,771978,1000,205664,65000,720142,5000,723983,3000}},
[109749]={53,{48254,5110,2446.0,6141,6328,0,0},{720011,5000,724499,2000,724500,3500,724498,1500,724270,1000,724521,1000,720101,3000,771979,1000,720142,5000,723983,3000}},
[109750]={0,{144,28,28.0,28,28,0,0},{}},
[109751]={101,{28154850,119828,51288.0,468197,467750,1000,1000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726011,200000,771981,1000,721899,100000,725419,200000}},
[109752]={103,{1333976,32567,9479.0,533511,532949,1000,1000},{720822,5000,720143,60000,720342,100000,724033,70000,724034,70000,724167,200000,771982,1000,724168,100000,725422,200000}},
[109753]={103,{31542882,133959,52138.0,561996,561388,1000,1000},{771983,1000}},
[109754]={103,{31542882,133959,52138.0,561996,561388,1000,1000},{771984,1000}},
[109755]={103,{31542882,133959,52138.0,561996,561388,1000,1000},{771985,1000}},
[109756]={0,{144,28,28.0,28,28,0,0},{}},
[109757]={0,{144,28,28.0,28,28,0,0},{}},
[109758]={0,{144,28,28.0,28,28,0,0},{}},
[109759]={0,{144,28,28.0,28,28,0,0},{}},
[109760]={0,{144,28,28.0,28,28,0,0},{}},
[109761]={0,{144,28,28.0,28,28,0,0},{}},
[109762]={0,{144,28,28.0,28,28,0,0},{}},
[109763]={0,{144,28,28.0,28,28,0,0},{}},
[109764]={0,{144,28,28.0,28,28,0,0},{}},
[109765]={0,{144,28,28.0,28,28,0,0},{}},
[109766]={0,{144,28,28.0,28,28,0,0},{}},
[109767]={0,{144,28,28.0,28,28,0,0},{}},
[109768]={0,{144,28,28.0,28,28,0,0},{}},
[109769]={0,{144,28,28.0,28,28,0,0},{}},
[109770]={0,{144,28,28.0,28,28,0,0},{}},
[109771]={0,{144,28,28.0,28,28,0,0},{}},
[109772]={0,{144,28,28.0,28,28,0,0},{}},
[109773]={0,{144,28,28.0,28,28,0,0},{}},
[109774]={0,{144,28,28.0,28,28,0,0},{}},
[109775]={0,{144,28,28.0,28,28,0,0},{}},
[109776]={0,{144,28,28.0,28,28,0,0},{}},
[109777]={0,{144,28,28.0,28,28,0,0},{}},
[109778]={0,{144,28,28.0,28,28,0,0},{}},
[109779]={0,{144,28,28.0,28,28,0,0},{}},
[109780]={0,{144,28,28.0,28,28,0,0},{}},
[109781]={0,{144,28,28.0,28,28,0,0},{}},
[109782]={0,{144,28,28.0,28,28,0,0},{}},
[109783]={0,{144,28,28.0,28,28,0,0},{}},
[109784]={0,{144,28,28.0,28,28,0,0},{}},
[109785]={0,{144,28,28.0,28,28,0,0},{}},
[109786]={0,{144,28,28.0,28,28,0,0},{}},
[109787]={0,{144,28,28.0,28,28,0,0},{}},
[109788]={0,{144,28,28.0,28,28,0,0},{}},
[109789]={0,{144,28,28.0,28,28,0,0},{}},
[109790]={0,{144,28,28.0,28,28,0,0},{}},
[109791]={0,{144,28,28.0,28,28,0,0},{}},
[109792]={0,{144,28,28.0,28,28,0,0},{}},
[109793]={0,{144,28,28.0,28,28,0,0},{}},
[109794]={0,{144,28,28.0,28,28,0,0},{}},
[109795]={0,{144,28,28.0,28,28,0,0},{}},
[109796]={0,{144,28,28.0,28,28,0,0},{}},
[109797]={0,{144,28,28.0,28,28,0,0},{}},
[109798]={0,{144,28,28.0,28,28,0,0},{}},
[109799]={0,{144,28,28.0,28,28,0,0},{}},
[109800]={0,{144,28,28.0,28,28,0,0},{}},
[109801]={0,{144,28,28.0,28,28,0,0},{}},
[109802]={0,{144,28,28.0,28,28,0,0},{}},
[109803]={0,{144,28,28.0,28,28,0,0},{}},
[109804]={0,{144,28,28.0,28,28,0,0},{}},
[109805]={0,{144,28,28.0,28,28,0,0},{}},
[109806]={0,{144,28,28.0,28,28,0,0},{}},
[109807]={0,{144,28,28.0,28,28,0,0},{}},
[109808]={0,{144,28,28.0,28,28,0,0},{}},
[109809]={0,{144,28,28.0,28,28,0,0},{}},
[109810]={0,{144,28,28.0,28,28,0,0},{}},
[109811]={0,{144,28,28.0,28,28,0,0},{}},
[109812]={0,{144,28,28.0,28,28,0,0},{}},
[109813]={0,{144,28,28.0,28,28,0,0},{}},
[109814]={0,{144,28,28.0,28,28,0,0},{}},
[109815]={0,{144,28,28.0,28,28,0,0},{}},
[109816]={0,{144,28,28.0,28,28,0,0},{}},
[109817]={0,{144,28,28.0,28,28,0,0},{}},
[109818]={0,{144,28,28.0,28,28,0,0},{}},
[109819]={0,{144,28,28.0,28,28,0,0},{}},
[109820]={0,{144,28,28.0,28,28,0,0},{}},
[109821]={0,{144,28,28.0,28,28,0,0},{}},
[109822]={0,{144,28,28.0,28,28,0,0},{}},
[109823]={0,{144,28,28.0,28,28,0,0},{}},
[109824]={0,{144,28,28.0,28,28,0,0},{}},
[109825]={0,{144,28,28.0,28,28,0,0},{}},
[109826]={0,{144,28,28.0,28,28,0,0},{}},
[109827]={0,{144,28,28.0,28,28,0,0},{}},
[109828]={0,{144,28,28.0,28,28,0,0},{}},
[109829]={0,{144,28,28.0,28,28,0,0},{}},
[109830]={0,{144,28,28.0,28,28,0,0},{}},
[109831]={0,{144,28,28.0,28,28,0,0},{}},
[109832]={0,{144,28,28.0,28,28,0,0},{}},
[109833]={0,{144,28,28.0,28,28,0,0},{}},
[109834]={0,{144,28,28.0,28,28,0,0},{}},
[109835]={0,{144,28,28.0,28,28,0,0},{}},
[109836]={0,{144,28,28.0,28,28,0,0},{}},
[109837]={0,{144,28,28.0,28,28,0,0},{}},
[109838]={0,{144,28,28.0,28,28,0,0},{}},
[109839]={0,{144,28,28.0,28,28,0,0},{}},
[109840]={0,{144,28,28.0,28,28,0,0},{}},
[109841]={0,{144,28,28.0,28,28,0,0},{}},
[109842]={0,{144,28,28.0,28,28,0,0},{}},
[109843]={0,{144,28,28.0,28,28,0,0},{}},
[109844]={0,{144,28,28.0,28,28,0,0},{}},
[109845]={0,{144,28,28.0,28,28,0,0},{}},
[109846]={0,{144,28,28.0,28,28,0,0},{}},
[109847]={0,{144,28,28.0,28,28,0,0},{}},
[109848]={0,{144,28,28.0,28,28,0,0},{}},
[109849]={0,{144,28,28.0,28,28,0,0},{}},
[109850]={0,{144,28,28.0,28,28,0,0},{}},
[109851]={0,{144,28,28.0,28,28,0,0},{}},
[109852]={0,{144,28,28.0,28,28,0,0},{}},
[109853]={0,{144,28,28.0,28,28,0,0},{}},
[109854]={0,{144,28,28.0,28,28,0,0},{}},
[109855]={0,{144,28,28.0,28,28,0,0},{}},
[109856]={0,{144,28,28.0,28,28,0,0},{}},
[109857]={0,{144,28,28.0,28,28,0,0},{}},
[109858]={0,{144,28,28.0,28,28,0,0},{}},
[109859]={0,{144,28,28.0,28,28,0,0},{}},
[109860]={0,{144,28,28.0,28,28,0,0},{}},
[109861]={0,{144,28,28.0,28,28,0,0},{}},
[109862]={0,{144,28,28.0,28,28,0,0},{}},
[109863]={0,{144,28,28.0,28,28,0,0},{}},
[109864]={0,{144,28,28.0,28,28,0,0},{}},
[109865]={0,{144,28,28.0,28,28,0,0},{}},
[109866]={0,{144,28,28.0,28,28,0,0},{}},
[109867]={0,{144,28,28.0,28,28,0,0},{}},
[109868]={0,{144,28,28.0,28,28,0,0},{}},
[109869]={0,{144,28,28.0,28,28,0,0},{}},
[109870]={0,{144,28,28.0,28,28,0,0},{}},
[109871]={0,{144,28,28.0,28,28,0,0},{}},
[109872]={0,{144,28,28.0,28,28,0,0},{}},
[109873]={0,{144,28,28.0,28,28,0,0},{}},
[109874]={0,{144,28,28.0,28,28,0,0},{}},
[109875]={0,{144,28,28.0,28,28,0,0},{}},
[109876]={0,{144,28,28.0,28,28,0,0},{}},
[109877]={0,{144,28,28.0,28,28,0,0},{}},
[109878]={0,{144,28,28.0,28,28,0,0},{}},
[109879]={0,{144,28,28.0,28,28,0,0},{}},
[109880]={0,{144,28,28.0,28,28,0,0},{}},
[109881]={0,{144,28,28.0,28,28,0,0},{}},
[109882]={0,{144,28,28.0,28,28,0,0},{}},
[109883]={0,{144,28,28.0,28,28,0,0},{}},
[109884]={0,{144,28,28.0,28,28,0,0},{}},
[109885]={0,{144,28,28.0,28,28,0,0},{}},
[109886]={0,{144,28,28.0,28,28,0,0},{}},
[109887]={0,{144,28,28.0,28,28,0,0},{}},
[109888]={0,{144,28,28.0,28,28,0,0},{}},
[109889]={0,{144,28,28.0,28,28,0,0},{}},
[109890]={0,{144,28,28.0,28,28,0,0},{}},
[109891]={0,{144,28,28.0,28,28,0,0},{}},
[109892]={0,{144,28,28.0,28,28,0,0},{}},
[109893]={0,{144,28,28.0,28,28,0,0},{}},
[109894]={0,{144,28,28.0,28,28,0,0},{}},
[109895]={0,{144,28,28.0,28,28,0,0},{}},
[109896]={0,{144,28,28.0,28,28,0,0},{}},
[109897]={0,{144,28,28.0,28,28,0,0},{}},
[109898]={0,{144,28,28.0,28,28,0,0},{}},
[109899]={0,{144,28,28.0,28,28,0,0},{}},
[109900]={0,{144,28,28.0,28,28,0,0},{}},
[109901]={0,{144,28,28.0,28,28,0,0},{}},
[109902]={0,{144,28,28.0,28,28,0,0},{}},
[109903]={0,{144,28,28.0,28,28,0,0},{}},
[109904]={0,{144,28,28.0,28,28,0,0},{}},
[109905]={0,{144,28,28.0,28,28,0,0},{}},
[109906]={0,{144,28,28.0,28,28,0,0},{}},
[109907]={0,{144,28,28.0,28,28,0,0},{}},
[109908]={0,{144,28,28.0,28,28,0,0},{}},
[109909]={0,{144,28,28.0,28,28,0,0},{}},
[109910]={0,{144,28,28.0,28,28,0,0},{}},
[109911]={0,{144,28,28.0,28,28,0,0},{}},
[109912]={0,{144,28,28.0,28,28,0,0},{}},
[109913]={0,{144,28,28.0,28,28,0,0},{}},
[109914]={0,{144,28,28.0,28,28,0,0},{}},
[109915]={0,{144,28,28.0,28,28,0,0},{}},
[109916]={0,{144,28,28.0,28,28,0,0},{}},
[109917]={0,{144,28,28.0,28,28,0,0},{}},
[109918]={0,{144,28,28.0,28,28,0,0},{}},
[109919]={0,{144,28,28.0,28,28,0,0},{}},
[109920]={0,{144,28,28.0,28,28,0,0},{}},
[109921]={0,{144,28,28.0,28,28,0,0},{}},
[109922]={0,{144,28,28.0,28,28,0,0},{}},
[109923]={0,{144,28,28.0,28,28,0,0},{}},
[109924]={0,{144,28,28.0,28,28,0,0},{}},
[109925]={0,{144,28,28.0,28,28,0,0},{}},
[109926]={0,{144,28,28.0,28,28,0,0},{}},
[109927]={0,{144,28,28.0,28,28,0,0},{}},
[109928]={0,{144,28,28.0,28,28,0,0},{}},
[109929]={0,{144,28,28.0,28,28,0,0},{}},
[109930]={0,{144,28,28.0,28,28,0,0},{}},
[109931]={0,{144,28,28.0,28,28,0,0},{}},
[109932]={0,{144,28,28.0,28,28,0,0},{}},
[109933]={0,{144,28,28.0,28,28,0,0},{}},
[109934]={0,{144,28,28.0,28,28,0,0},{}},
[109935]={0,{144,28,28.0,28,28,0,0},{}},
[109936]={0,{144,28,28.0,28,28,0,0},{}},
[109937]={0,{144,28,28.0,28,28,0,0},{}},
[109938]={0,{144,28,28.0,28,28,0,0},{}},
[109939]={0,{144,28,28.0,28,28,0,0},{}},
[109940]={0,{144,28,28.0,28,28,0,0},{}},
[109941]={0,{144,28,28.0,28,28,0,0},{}},
[109942]={0,{144,28,28.0,28,28,0,0},{}},
[109943]={0,{144,28,28.0,28,28,0,0},{}},
[109944]={0,{144,28,28.0,28,28,0,0},{}},
[109945]={0,{144,28,28.0,28,28,0,0},{}},
[109946]={0,{144,28,28.0,28,28,0,0},{}},
[109947]={0,{144,28,28.0,28,28,0,0},{}},
[109948]={0,{144,28,28.0,28,28,0,0},{}},
[109949]={0,{144,28,28.0,28,28,0,0},{}},
[109950]={0,{144,28,28.0,28,28,0,0},{}},
[109951]={0,{144,28,28.0,28,28,0,0},{}},
[109952]={0,{144,28,28.0,28,28,0,0},{}},
[109953]={0,{144,28,28.0,28,28,0,0},{}},
[109954]={0,{144,28,28.0,28,28,0,0},{}},
[109955]={0,{144,28,28.0,28,28,0,0},{}},
[109956]={0,{144,28,28.0,28,28,0,0},{}},
[109957]={0,{144,28,28.0,28,28,0,0},{}},
[109958]={0,{144,28,28.0,28,28,0,0},{}},
[109959]={0,{144,28,28.0,28,28,0,0},{}},
[109960]={0,{144,28,28.0,28,28,0,0},{}},
[109961]={0,{144,28,28.0,28,28,0,0},{}},
[109962]={0,{144,28,28.0,28,28,0,0},{}},
[109963]={0,{144,28,28.0,28,28,0,0},{}},
[109964]={0,{144,28,28.0,28,28,0,0},{}},
[109965]={0,{144,28,28.0,28,28,0,0},{}},
[109966]={0,{144,28,28.0,28,28,0,0},{}},
[109967]={0,{144,28,28.0,28,28,0,0},{}},
[109968]={0,{144,28,28.0,28,28,0,0},{}},
[109969]={0,{144,28,28.0,28,28,0,0},{}},
[109970]={0,{144,28,28.0,28,28,0,0},{}},
[109971]={0,{144,28,28.0,28,28,0,0},{}},
[109972]={0,{144,28,28.0,28,28,0,0},{}},
[109973]={0,{144,28,28.0,28,28,0,0},{}},
[109974]={0,{144,28,28.0,28,28,0,0},{}},
[109975]={0,{144,28,28.0,28,28,0,0},{}},
[109976]={0,{144,28,28.0,28,28,0,0},{}},
[109977]={0,{144,28,28.0,28,28,0,0},{}},
[109978]={0,{144,28,28.0,28,28,0,0},{}},
[109979]={0,{144,28,28.0,28,28,0,0},{}},
[109980]={0,{144,28,28.0,28,28,0,0},{}},
[109981]={0,{144,28,28.0,28,28,0,0},{}},
[109982]={0,{144,28,28.0,28,28,0,0},{}},
[109983]={0,{144,28,28.0,28,28,0,0},{}},
[109984]={0,{144,28,28.0,28,28,0,0},{}},
[109985]={0,{144,28,28.0,28,28,0,0},{}},
[109986]={0,{144,28,28.0,28,28,0,0},{}},
[109987]={0,{144,28,28.0,28,28,0,0},{}},
[109988]={0,{144,28,28.0,28,28,0,0},{}},
[109989]={0,{144,28,28.0,28,28,0,0},{}},
[109990]={0,{144,28,28.0,28,28,0,0},{}},
[109991]={0,{144,28,28.0,28,28,0,0},{}},
[109992]={0,{144,28,28.0,28,28,0,0},{}},
[109993]={0,{144,28,28.0,28,28,0,0},{}},
[109994]={0,{144,28,28.0,28,28,0,0},{}},
[109995]={95,{1637070,45023,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720655,200000,200023,50000,727040,200000},{215,33.0,23.2}},
[109996]={101,{135744437,250482,51288.0,664330,663579,2000,2000},{720822,5000,720143,60000,723989,100000,725986,70000,725987,70000,726006,200000,721899,100000,725925,200000}},
[109997]={95,{1637533,45398,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720657,200000,200025,50000,727040,100000},{217,50.7,32.4}},
[109998]={95,{1637144,45492,18734.0,108227,108770,0,0},{720011,5000,720142,10000,726877,10000,720655,200000,242122,50000,727040,200000},{218,19.2,74.0}},
[109999]={95,{1637070,45023,17031.0,108227,108320,0,0},{720011,5000,720142,10000,726877,10000,720656,200000,242123,50000,727040,100000},{219,37.1,72.9}},
[130000]={95,{1636828,45304,17031.0,108677,108320,0,0},{720011,5000,720142,10000,726877,10000,720657,200000,242124,50000,727040,100000}},
[130001]={0,{144,28,28.0,28,28,0,0},{}},
[130002]={0,{144,28,28.0,28,28,0,0},{}},
[130003]={0,{144,28,28.0,28,28,0,0},{}},
[130004]={0,{144,28,28.0,28,28,0,0},{}},
[130005]={0,{144,28,28.0,28,28,0,0},{}},
}
|
--[[----------------------------------------------------------------------------------------------------
<auto-generated>
This file was generated by: lua-apps/scripts/Localization/Locales/GenerateAllLocales.py
Changes to this file should always follow:
Building an Internationalized Feature - Engineer's Guide:
https://confluence.roblox.com/display/IN/Building+an+Internationalized+Feature+-+Engineer%27s+Guide
Sync up with newly-updated translations:
https://confluence.roblox.com/display/MOBAPP/Sync+up+with+newly-updated+translations
</auto-generated>
--------------------------------------------------------------------------------------------------------]]
return{
["Application.ConfirmPhoneNumber.Label.VerifyPhone"] = [[電話番号を確認]],
["Application.ConfirmPhoneNumber.Action.Ok"] = [[OK]],
["Application.ConfirmPhoneNumber.Action.Edit"] = [[編集]],
["Application.ConfirmPhoneNumber.Message.Confirmation"] = [[認証コードを %s にテキスト送信します。SMS利用料金が発生する場合があります。]],
["Application.ConfirmPhoneNumber.Label.VerifyPhoneNumber"] = [[電話番号を確認]],
["Application.ConfirmPhoneNumber.Action.UseEmail"] = [[代わりにメールアドレスを使用]],
["Application.ConfirmPhoneNumber.Label.EnterCode"] = [[%s に送信されたコードを入力]],
["Application.ConfirmPhoneNumber.Action.ChangeNumber"] = [[番号を変更]],
["Application.Logout.Action.Logout"] = [[ログアウト]],
["Application.Logout.Title.Logout"] = [[ログアウト]],
["Application.Logout.Message.Confirmation"] = [[ログアウトしてもよろしいですか?]],
["Authentication.CrossDevice.Heading.QuickLogin"] = [[クイックログイン]],
["Authentication.CrossDevice.Heading.LoginAnotherDevice"] = [[他のデバイスにログイン]],
["Authentication.CrossDevice.Heading.LoginWarning"] = [[ログインするには以下を確認:]],
["Authentication.CrossDevice.Label.Warning1"] = [[• あなたがリクエストしたコードのみを入力]],
["Authentication.CrossDevice.Label.Warning2"] = [[• 他のユーザーのコードは絶対に入力しない]],
["Authentication.CrossDevice.Label.EnterCode"] = [[コードでクイックログインを入力]],
["Authentication.CrossDevice.Action.Enter"] = [[入力]],
["Authentication.CrossDevice.Heading.Warning"] = [[警告!]],
["Authentication.CrossDevice.Label.ConfirmationMessage1"] = [[以下にサインインしようとしています: %s]],
["Authentication.CrossDevice.Label.ConfirmationMessage2"] = [[この新しいデバイスから、あなたのアカウント、Robux、インベントリにアクセスできます。]],
["Authentication.CrossDevice.Label.ConfirmationMessage3"] = [[本人確認をしてください。]],
["Authentication.CrossDevice.Action.ConfirmLogin"] = [[ログインを認証]],
["Authentication.CrossDevice.Action.Done"] = [[完了]],
["Authentication.CrossDevice.Action.CancelLogin"] = [[キャンセル]],
["Authentication.CrossDevice.Action.TryAgain"] = [[再試行]],
["Authentication.CrossDevice.Response.LoginSuccess"] = [[ログインできました]],
["Authentication.CrossDevice.Response.LoginFail"] = [[ログインできませんでした]],
["Authentication.CrossDevice.Label.DeviceLoggedIn"] = [[%s がログイン済み]],
["Authentication.CrossDevice.Label.CodeNotVerified"] = [[コードによるクイックログインが認証されませんでした。]],
["Authentication.CrossDevice.Heading.LoginCode"] = [[コードでクイックログイン]],
["Authentication.CrossDevice.Label.DevicePrompt"] = [[ログイン済みのデバイスに行って、このコードを入力して探索する]],
["Authentication.CrossDevice.Label.LoginInstructions"] = [[ログイン済みのデバイス上で以下へ行く:]],
["Authentication.CrossDevice.Label.LoginLocation"] = [[コードを入力するには、 <b>アカウント設定 > クイックログイン</b> 。]],
["Authentication.CrossDevice.Label.HaveQuestions"] = [[ご質問はありますか?]],
["Authentication.CrossDevice.Action.LearnMore"] = [[もっと詳しく]],
["Authentication.CrossDevice.Label.ConfirmOnDevice"] = [[他のデバイス上でログインを確認]],
["Authentication.CrossDevice.Label.LogginInAs"] = [[%sとしてログイン中]],
["Authentication.CrossDevice.Response.InvalidCode"] = [[入力したコードは無効です。正しく入力したかどうか、確認してください。]],
["Authentication.CrossDevice.Label.DeviceLoggedInLocation"] = [[ロケーション: {location}]],
["Authentication.CrossDevice.Label.InvalidLocationError"] = [[ログインしようとしているデバイスとあなたの場所が一致しませんでした。同じネットワーク上でもう一度お試しください。]],
["Authentication.CrossDevice.Label.NotAvailableOnNetwork"] = [[この機能はこのネットワークでは利用できません。後でもう一度お試しください]],
["Authentication.CrossDevice.Action.Next"] = [[次へ]],
["Authentication.CrossDevice.Action.GoBack"] = [[戻る]],
["Authentication.Login.Label.Username"] = [[ユーザーネーム]],
["Authentication.Login.Response.IncorrectUsernamePassword"] = [[ユーザーネーム、またはパスワードが間違っています。]],
["Authentication.Login.Label.Password"] = [[パスワード]],
["Authentication.Login.Action.LogInCapitalized"] = [[ログイン]],
["Authentication.Login.Label.ForgotUsernamePassword"] = [[ユーザーネームかパスワードをお忘れですか?]],
["Authentication.Login.Heading.Login"] = [[ログイン]],
["Authentication.Login.Action.ForgotPasswordOrUsernameQuestionCapitalized"] = [[パスワード、またはユーザーネームをお忘れですか?]],
["Authentication.Login.Response.IncorrectEmailOrPassword"] = [[メールアドレスまたはパスワードが間違っています。]],
["Authentication.Login.Response.IncorrectPhoneOrPassword"] = [[電話番号またはパスワードが間違っています。]],
["Authentication.Login.Response.UnverifiedEmailLoginWithUsername"] = [[メールアドレスが認証されていません。ユーザーネームでログインしてください。]],
["Authentication.Login.Label.UsernameEmailPhone"] = [[ユーザーネーム/メールアドレス/電話番号]],
["Authentication.Login.Label.EmailNeedsVerification"] = [[メール確認の手続きが必要です]],
["Authentication.Login.Action.SendVerificationEmail"] = [[確認メールを送信]],
["Authentication.Login.Label.UnverifiedEmailInstructions"] = [[メールアドレスでログインするためには、まず認証が必要です。ユーザーネームでログインすることもできます。]],
["Authentication.Login.Action.WeChatLogin"] = [[WeChatログイン]],
["Authentication.Login.WeChat.NotInstalled"] = [[WeChatがインストールされていません]],
["Authentication.Login.Response.MoreThanOneUsername"] = [[メールアドレスが複数のユーザーネームに関連付けられています。ユーザーネームでログインしてください。]],
["Authentication.Login.Response.ServiceUnavailable"] = [[サービスが利用できません。後でもう一度お試しください。]],
["Authentication.Login.Response.LoginWithUsernameUnknownError"] = [[何らかの問題が発生しました。ユーザーネームでログインしてください。]],
["Authentication.Login.Response.SomethingWentWrong"] = [[何らかの問題が発生しました。後でもう一度お試しください。]],
["Authentication.Login.Label.QQ"] = [[テンセントQQ]],
["Authentication.Login.Label.WeChat"] = [[WeChat]],
["Authentication.Login.Response.TencentLoginFailurePleaseTryAgain"] = [[ログイン失敗。もう一度お試しください]],
["Authentication.Login.Label.TencentNotInstalled"] = [[{var1} がインストールされていません。]],
["Authentication.Login.Response.TencentRealNameUnVerified"] = [[{var1} で、本名の認証が行われていません。本名の認証を行った {var1} アカウントを使用してやり直してください。{var2}]],
["Authentication.Login.Label.TencentUserCancel"] = [[{var1} からログアウトしました。{var1} にログインしてください。]],
["Authentication.Login.Label.TencentVersionNotSupported"] = [[{var1} バージョンには対応していません。]],
["Authentication.Login.Label.WeChatNotInstalled"] = [[WeChatがインストールされていません]],
["Authentication.Login.Label.WeChatUserCancel"] = [[WeChatからログアウトしました。WeChatにログインしてください。]],
["Authentication.Login.Action.QQLogin"] = [[テンセントQQログイン]],
["Authentication.Login.WeChat.ReputationScoreTooLow"] = [[あなたのゲーム信頼度スコアが低すぎるため、ログイン機能が使えません。]],
["Authentication.Login.WeChat.ReputationScoreInfo"] = [[もっと詳しく]],
["Authentication.Login.Tencent.ReputationScoreTooLow"] = [[あなたのゲーム信頼度スコアが低すぎるため、ログイン機能が使えません。]],
["Authentication.Login.Tencent.ReputationScoreInfo"] = [[もっと詳しく]],
["Authentication.Login.Response.TencentReputationScoreTooLow"] = [[あなたのゲーム信頼度スコアは <{var1} ポイントです。あなたのゲームプレイ行動に基づいて、今回はこのアプリにはログインできません。]],
["Authentication.Login.Label.AccountRecoveryPromptBody"] = [[アカウントを復元しますか?]],
["Authentication.Login.Label.QQUserCancel"] = [[テンセントQQからログアウトしています。テンセントQQにログインしてください。]],
["Authentication.Login.QrCodeLoginTitle"] = [[ログインするにはQRコードをスキャン]],
["Authentication.Login.QrCodeLoginDescription"] = [[QRコードをスキャンしてモバイルのテンセントアプリを使用。問題がある場合は、テンセントアプリをアップデートしてください。]],
["Authentication.ResetPassword.Response.ResetPasswordStarted"] = [[続ける前に、パスワードをリセットする必要があります。]],
["Authentication.ResetPassword.Heading.AccountRecoveryPrompt.Title"] = [[ユーザーネームかパスワードをお忘れですか?]],
["Authentication.ResetPassword.Description.AccountRecoveryPrompt.Body"] = [[アカウントを復元しますか?]],
["Authentication.SignUp.Label.Birthday"] = [[生年月日]],
["Authentication.SignUp.Label.Gender"] = [[性別]],
["Authentication.SignUp.Label.SignUp"] = [[新規登録]],
["Authentication.SignUp.Response.BadUsername"] = [[ユーザーネームがRobloxには適切ではありません。]],
["Authentication.SignUp.Response.InvalidEmail"] = [[メールアドレスが無効です。]],
["Authentication.SignUp.Response.PasswordComplexity"] = [[もっと複雑なパスワードを作成してください。]],
["Authentication.SignUp.Response.PasswordMatchesUsername"] = [[パスワードにはユーザーネームは使えません。]],
["Authentication.SignUp.Response.PasswordWrongShort"] = [[パスワードは英数字8文字以上であることが必須。]],
["Authentication.SignUp.Response.UsernameAlreadyInUse"] = [[このユーザーネームはすでに使われています。]],
["Authentication.SignUp.Response.UsernameInvalidCharacters"] = [[A-z、A-Z、0-9、および下線 _ のみ使用できます。]],
["Authentication.SignUp.Response.UsernameInvalidLength"] = [[ユーザーネームは英数字3〜20文字以内にする必要があります。]],
["Authentication.SignUp.Response.UsernameInvalidUnderscore"] = [[ユーザーネームの最初と最後に下線 _ は使用不可。]],
["Authentication.SignUp.Response.UsernamePrivateInfo"] = [[ユーザーネームに個人情報が含まれています。]],
["Authentication.SignUp.Response.UsernameTooManyUnderscores"] = [[ユーザーネームには下線 _ の2つ以上の使用不可。]],
["Authentication.SignUp.Label.EmailRequirementsUnder13"] = [[保護者のメールアドレス]],
["Authentication.SignUp.Response.SignUpPasswordTooShortError"] = [[パスワードは英数字8文字以上であることが必須です。]],
["Authentication.SignUp.Description.ByTappingSign"] = [[上記の「新規登録」をタップすると、 以下に同意したことになります。 ]],
["Authentication.SignUp.Response.BirthdayMustBeSetFirst"] = [[最初に誕生日を設定する必要があります。]],
["Authentication.SignUp.Label.Male"] = [[男性]],
["Authentication.SignUp.Label.Female"] = [[女性]],
["Authentication.SignUp.Description.UsernameHint"] = [[本名を使用しないでください。]],
["Authentication.SignUp.Description.PasswordMinLength"] = [[最低8文字]],
["Authentication.SignUp.Label.Continue"] = [[続ける]],
["Authentication.SignUp.Label.WhensYourBirthday"] = [[生年月日はいつですか?]],
["Authentication.SignUp.Response.InvalidPhoneNumber"] = [[無効な電話番号。]],
["Authentication.SignUp.Response.PhoneNumberAlreadyLinked"] = [[すでに他のアカウントと関連付けられている番号です。]],
["Authentication.SignUp.Response.InvalidCode"] = [[コードが無効。]],
["Authentication.SignUp.Label.PhoneNumber"] = [[電話番号]],
["Authentication.SignUp.Description.UsernamePage"] = [[これはRobloxでのあなたの名前になります。本名は使わないでください。]],
["Authentication.SignUp.Label.UsernameError1"] = [[文字、数字と下線 _ のみを含む]],
["Authentication.SignUp.Label.UsernameError2"] = [[英数字3文字以上20文字以内]],
["Authentication.SignUp.Label.UsernameError3"] = [[はすでに使用されていません]],
["Authentication.SignUp.Label.UsernameError4"] = [[はRobloxに適切です]],
["Authentication.SignUp.Label.UsernameError5"] = [[始めまたは終わりに下線 _ を含まない]],
["Authentication.SignUp.Label.UsernameError6"] = [[下線 _ の使用は最大で1つ]],
["Authentication.SignUp.Label.UsernameError7"] = [[個人情報を含みません]],
["Authentication.SignUp.Description.PasswordPage"] = [[パスワードを人に教えないでください。]],
["Authentication.SignUp.Label.PasswordError1"] = [[英数字8文字以上]],
["Authentication.SignUp.Label.PasswordError2"] = [[ユーザーネームと同一ではない]],
["Authentication.SignUp.Label.PasswordError3"] = [[分かりやすいパスワードではない]],
["Authentication.SignUp.Heading.UsernamePage"] = [[ユーザーネームを選択]],
["Authentication.SignUp.Heading.PasswordPage"] = [[パスワードを作成]],
["Authentication.SignUp.Heading.SelectStartingAvatar"] = [[初期キャラクターを選択]],
["Authentication.SignUp.Heading.VerificationPage"] = [[アカウントを認証]],
["Authentication.SignUp.Description.VerificationPage"] = [[「新規登録」をクリックすると、 仲裁条項を含む 利用規約に同意し、プライバシーポリシー を承認したことになります。]],
["Authentication.SignUp.Label.NoVerificationCode"] = [[コードを受け取りませんでしたか?]],
["Authentication.SignUp.Label.Resend"] = [[再送信]],
["Authentication.SignUp.Label.TooManyAttempts"] = [[試行回数が多すぎます。後でもう一度お試しください。]],
["Authentication.SignUp.Label.EmailInUse"] = [[メールアドレスがすでに使用されています。]],
["Authentication.SignUp.Label.SMSFeeWarning"] = [[電話番号の確認のためSMSメッセージを送信します。SMS通信料が発生するかもしれません。]],
["Authentication.SignUp.Label.EnterVerificationCode"] = [[以下に送信された6桁のコードを入力してください:]],
["Authentication.SignUp.Heading.CountryCodeSelector"] = [[国を選択]],
["Authentication.SignUp.Label.EmailAddress"] = [[メールアドレス]],
["Authentication.SignUp.Label.ErrorsWithUsername"] = [[ユーザーネームにエラーがあります。]],
["Authentication.SignUp.Label.ErrorsWithPassword"] = [[パスワードにエラーがあります。]],
["Authentication.SignUp.Label.ConfirmBirthday"] = [[生年月日を確認してください]],
["Authentication.SignUp.Label.OptionalGender"] = [[性別(任意)]],
["Authentication.SignUp.Label.EmailOptional"] = [[メールアドレス(オプション)]],
["Authentication.SignUp.Label.EmailRequirementsUnder13Optional"] = [[保護者のメールアドレス(オプション)]],
["Authentication.SignUp.Response.UsernameMustBeSetFirst"] = [[最初にユーザーネームを設定する必要があります。]],
["Authentication.SignUp.Label.ParentEmailAddress"] = [[保護者のメールアドレス]],
["Authentication.SignUp.Action.UsePhoneNumber"] = [[電話番号を使う]],
["Authentication.SignUp.Action.UseEmail"] = [[メールアドレスを使う]],
["Authentication.SignUp.Description.ConfirmPassword"] = [[パスワードを確認]],
["Authentication.SignUp.Response.PasswordsDoNotMatch"] = [[パスワードが一致しません。]],
["Authentication.SignUp.Response.PasswordMustBeSetFirst"] = [[まずパスワードを設定する必要があります。]],
["Authentication.TwoStepVerification.Label.EnterEmailCode"] = [[今メールで送信したコードを入力してください。]],
["Authentication.TwoStepVerification.Label.EnterTextCode"] = [[今テキストメッセージで送信したコードを入力してください。]],
["Authentication.TwoStepVerification.Label.InvalidCode"] = [[無効なコード]],
["Authentication.TwoStepVerification.Label.TwoStepVerification"] = [[2段階認証]],
["Authentication.TwoStepVerification.Response.InvalidCode"] = [[無効なコード。]],
["Authentication.TwoStepVerification.Response.TooManyAttempts"] = [[試行回数が多すぎます。後でもう一度お試しください。]],
["Authentication.TwoStepVerification.Label.TrustThisDevice"] = [[このデバイスを30日間信頼する]],
["Authentication.TwoStepVerification.Label.CodeInputPlaceholderText"] = [[{codeLength}桁のコードを入力してください]],
["Authentication.TwoStepVerification.Label.SimpleNeedHelp"] = [[ヘルプが必要ですか?]],
["Authentication.TwoStepVerification.Action.ClickHere"] = [[ここをクリック]],
["Authentication.TwoStepVerification.Label.DidNotReceive"] = [[コードを受け取りませんでしたか?]],
["Authentication.TwoStepVerification.Label.Resend"] = [[再送信]],
["Authentication.TwoStepVerification.Label.CharacterCodeInputPlaceholderText"] = [[{codeLength} 文字のコードを入力]],
["Common.AlertsAndOptions.Description.KoreaScreentimeToastText"] = [[過剰な体験の使用は日常生活に支障をきたすことがあります。Robloxを {NumberOfHours} 時間訪問しました。]],
["Common.AlertsAndOptions.Title.Warning"] = [[警告]],
["Common.BuildersClub.Label.BuildersClubMembership"] = [[Builders Club メンバーシップ]],
["Common.BuildersClub.Label.BuildersClubMembershipTurbo"] = [[Turbo Builders Club メンバーシップ]],
["Common.BuildersClub.Label.BuildersClubMembershipOutrageous"] = [[Outrageous Builders Club メンバーシップ]],
["Common.Presence.Label.Online"] = [[オンライン]],
["Common.Presence.Label.Offline"] = [[オフライン]],
["Common.VisitGame.Label.Play"] = [[参加]],
["CommonUI.Controls.Birthdaypicker.Label.Date"] = [[日付]],
["CommonUI.Controls.Label.April"] = [[4月]],
["CommonUI.Controls.Label.August"] = [[8月]],
["CommonUI.Controls.Label.December"] = [[12月]],
["CommonUI.Controls.Label.February"] = [[2月]],
["CommonUI.Controls.Label.January"] = [[1月]],
["CommonUI.Controls.Label.July"] = [[7月]],
["CommonUI.Controls.Label.June"] = [[6月]],
["CommonUI.Controls.Label.March"] = [[3月]],
["CommonUI.Controls.Label.May"] = [[5月]],
["CommonUI.Controls.Label.November"] = [[11月]],
["CommonUI.Controls.Label.October"] = [[10月]],
["CommonUI.Controls.Label.September"] = [[9月]],
["CommonUI.Controls.Label.Day"] = [[日]],
["CommonUI.Controls.Label.Year"] = [[年]],
["CommonUI.Controls.Action.Back"] = [[戻る]],
["CommonUI.Controls.Action.Confirm"] = [[確認]],
["CommonUI.Controls.Label.AutoUpgradeIdle"] = [[Robloxのアップデートが必要です!何もしなければ、Robloxが {time} {unit} 以内に自動的に再起動します。]],
["CommonUI.Controls.Label.AutoUpgradeForce"] = [[Robloxのアップデートが必要です!この体験を訪問するには、アップデートをインストールする必要があります。]],
["CommonUI.Controls.Label.Seconds"] = [[秒]],
["CommonUI.Controls.Label.Minutes"] = [[分]],
["CommonUI.Controls.Label.JanuaryAbbreviated"] = [[1月]],
["CommonUI.Controls.Label.FebruaryAbbreviated"] = [[2月]],
["CommonUI.Controls.Label.MarchAbbreviated"] = [[3月]],
["CommonUI.Controls.Label.AprilAbbreviated"] = [[4月]],
["CommonUI.Controls.Label.AugustAbbreviated"] = [[8月]],
["CommonUI.Controls.Label.SeptemberAbbreviated"] = [[9月]],
["CommonUI.Controls.Label.OctoberAbbreviated"] = [[10月]],
["CommonUI.Controls.Label.NovemberAbbreviated"] = [[11月]],
["CommonUI.Controls.Label.DecemberAbbreviated"] = [[12月]],
["CommonUI.Controls.Label.ForceUpdateTitle"] = [[アップデートが必要です]],
["CommonUI.Controls.ForceUpdateBody"] = [[アップデートするにはRobloxを再起動する必要があります。Robloxを再起動してください。]],
["CommonUI.Controls.ForceUpdateConfirmButton"] = [[Robloxを閉じる]],
["CommonUI.Controls.Label.ForceUpdateBody"] = [[アップデートするにはRobloxを再起動する必要があります。Robloxを再起動してください。]],
["CommonUI.Controls.Action.CloseRoblox"] = [[Robloxを閉じる]],
["CommonUI.Controls.Action.Search"] = [[サーチ]],
["CommonUI.Features.Label.Avatar"] = [[アバター]],
["CommonUI.Features.Label.Blog"] = [[ブログ]],
["CommonUI.Features.Label.BuildersClub"] = [[メンバーシップ]],
["CommonUI.Features.Label.Catalog"] = [[カタログ]],
["CommonUI.Features.Label.Chat"] = [[チャット]],
["CommonUI.Features.Label.Events"] = [[イベント]],
["CommonUI.Features.Label.Friends"] = [[友達]],
["CommonUI.Features.Label.Game"] = [[体験]],
["CommonUI.Features.Label.Groups"] = [[グループ]],
["CommonUI.Features.Label.Help"] = [[ヘルプ]],
["CommonUI.Features.Label.Home"] = [[ホーム]],
["CommonUI.Features.Label.Inventory"] = [[インベントリ]],
["CommonUI.Features.Label.Messages"] = [[メッセージ]],
["CommonUI.Features.Label.More"] = [[その他]],
["CommonUI.Features.Label.Profile"] = [[プロフィール]],
["CommonUI.Features.Label.Settings"] = [[設定]],
["CommonUI.Features.Label.TermsOfService"] = [[利用規約]],
["CommonUI.Features.Label.PrivacyPolicy"] = [[プライバシーポリシー]],
["CommonUI.Features.Label.About"] = [[情報]],
["CommonUI.Features.Label.AboutUs"] = [[当社について]],
["CommonUI.Features.Label.Careers"] = [[採用情報]],
["CommonUI.Features.Label.Parents"] = [[保護者の方へ]],
["CommonUI.Features.Label.Terms"] = [[規約]],
["CommonUI.Features.Label.Privacy"] = [[プライバシー]],
["CommonUI.Features.Label.Version"] = [[バージョン]],
["CommonUI.Features.Label.MoreEvents"] = [[今後もイベント盛りだくさん!]],
["CommonUI.Features.Heading.GameDetails"] = [[体験の詳細]],
["CommonUI.Features.Label.Players"] = [[人]],
["CommonUI.Features.Label.Create"] = [[制作]],
["CommonUI.Features.Label.TermsOfUse"] = [[利用規約]],
["CommonUI.Features.Label.Badges"] = [[バッジ]],
["CommonUI.Features.Label.MyFeed"] = [[マイフィード]],
["CommonUI.Features.Label.CreateGames"] = [[制作]],
["CommonUI.Features.Label.VersionWithNumber"] = [[バージョン:{versionNumber}]],
["CommonUI.Features.Label.Challenge"] = [[チャレンジ]],
["CommonUI.Features.Heading.ItemDetails"] = [[アイテム詳細]],
["CommonUI.Features.Label.Startup"] = [[スタートアップ]],
["CommonUI.Features.Label.Discussions"] = [[ディスカッション]],
["CommonUI.Features.Label.DevSubs"] = [[サブスクリプション]],
["CommonUI.Features.Label.FMODCredits"] = [[Firelight Studios からの FMOD 使用]],
["CommonUI.Features.Label.Discover"] = [[見つけよう]],
["CommonUI.Features.Label.Billing"] = [[ご請求]],
["CommonUI.Features.Label.Trades"] = [[取引]],
["CommonUI.Features.Label.DisplayName"] = [[表示名]],
["CommonUI.Features.Label.Premium"] = [[Premium]],
["CommonUI.Features.Label.CreationCenter"] = [[制作センター]],
["CommonUI.Features.Label.LoginCode"] = [[ログインコード]],
["CommonUI.Features.Label.PrivacyGuidelinesChildren"] = [[子供向けプライバシーガイドライン]],
["CommonUI.Features.Label.LuobuRiderTerms"] = [[Luobuライダー利用規約]],
["CommonUI.Features.Label.TencentNotice"] = [[お知らせ]],
["CommonUI.Features.Label.Licensing"] = [[ライセンス供与]],
["CommonUI.Features.Action.Restart"] = [[再起動]],
["CommonUI.Features.Heading.VRDisconnected"] = [[ヘッドセットへの接続が切断されました]],
["CommonUI.Features.Description.RestartApp"] = [[プレイし続けるには、アプリを再起動してください。]],
["CommonUI.Messages.Label.Password"] = [[パスワード]],
["CommonUI.Messages.Description.And"] = [[および]],
["CommonUI.Messages.Action.OK"] = [[OK]],
["CommonUI.Messages.Label.Alert"] = [[アラート]],
["CommonUI.Messages.Action.Apply"] = [[適用]],
["CommonUI.Messages.Action.Reset"] = [[リセット]],
["CommonUI.Messages.Label.ToExitFullscreen"] = [[全画面表示を終了]],
["CommonUI.Messages.Message.IEUpgradeCallToAction"] = [[Robloxで最高の体験をするにはInternet Explorer 11が必要です。この機能にアクセスするには、Internet Explorerをアップグレードしてください!
今すぐブラウザをアップデートしますか?]],
["CommonUI.Messages.Message.NoLicenses"] = [[ライセンスがありません]],
["CommonUI.Messages.Response.NoResults"] = [[結果なし]],
["CommonUI.Messages.Response.PageError"] = [[ページの読み込みエラー]],
["CommonUI.UserAgreements.Popup.Title"] = [[更新済み規約]],
["CommonUI.UserAgreements.Popup.Message"] = [[Roblox上でプレイし続けるには、当社の更新済み利用規約に同意してください。以下のセクションで変更がありました。]],
["CommonUI.UserAgreements.Popup.Agree"] = [[同意する]],
["CommonUI.UserAgreements.Popup.Agreement.TermsOfService"] = [[利用規約]],
["CommonUI.UserAgreements.Popup.Agreement.PrivacyPolicy"] = [[プライバシーポリシー]],
["CommonUI.UserAgreements.Popup.Agreement.RiderTerms"] = [[特約]],
["CommonUI.UserAgreements.Popup.Agreement.ChildrenPrivacyPolicy"] = [[子供向けプライバシー保護ガイドライン]],
["CommonUI.UserAgreements.Popup.DefaultAgreementTitle"] = [[更新済み規約]],
["CoreScripts.InGameMenu.Actions.BlockPlayer"] = [[プレイヤーをブロック]],
["CoreScripts.InGameMenu.Actions.UnblockPlayer"] = [[プレイヤーのブロック解除]],
["CoreScripts.InGameMenu.Action.Restart"] = [[再起動]],
["CoreScripts.InGameMenu.Message.RestartApp"] = [[プレイし続けるには、アプリを再起動してください。]],
["CoreScripts.InGameMenu.Heading.VRDisconnected"] = [[ヘッドセットへの接続が切断されました]],
["CoreScripts.PurchasePrompt.PurchaseDetails.InvalidBuildersClub"] = [[このアイテムを買うには{BC_LEVEL}である必要があります。「アップグレード」をクリックしてBuilders Clubをアップグレードしてください!]],
["CoreScripts.PurchasePrompt.PurchaseFailed.NotEnoughRobux"] = [[このアイテムは、お手持ちのRobuxでは購入できません。www.roblox.comでRobuxを追加購入してください。]],
["CoreScripts.PurchasePrompt.PurchaseFailed.PurchaseDisabled"] = [[体験内購入が一時的に無効になっているため、購入できませんでした。アカウントへの課金は行われていません。後でもう一度お試し下さい。]],
["CoreScripts.PurchasePrompt.PurchaseFailed.UnknownFailureNoItemName"] = [[問題が発生したため、購入を完了できませんでした。アカウントは課金されていません。後でもう一度お試し下さい。]],
["CoreScripts.PurchasePrompt.PurchaseFailed.UnknownFailure"] = [[問題が発生したため、{ITEM_NAME} の購入を完了できませんでした。アカウントは課金されていません。後でもう一度お試し下さい。]],
["CoreScripts.PurchasePrompt.PurchaseFailed.NotForSale"] = [[このアイテムは現在売られていません。アカウントは課金されていません。]],
["CoreScripts.PurchasePrompt.PurchaseFailed.Under13"] = [[アカウントが13歳未満用です。このアイテムの購入は許可されていません。アカウントは課金されていません。]],
["CoreScripts.PurchasePrompt.PurchaseFailed.AlreadyOwn"] = [[このアイテムはすでに持っています。アカウントは課金されていません。]],
["Feature.unused"] = [[警告]],
["Feature.AccountSecurityPrompt.Action.AbortDismissForeverAddEmail"] = [[メールアドレスを追加]],
["Feature.AccountSecurityPrompt.Action.AbortDismissForeverChangePassword"] = [[パスワードを変更]],
["Feature.AccountSecurityPrompt.Action.ChangeEmail"] = [[メールアドレスを変更]],
["Feature.AccountSecurityPrompt.Action.ConfirmDismissForeverAddEmail"] = [[はい]],
["Feature.AccountSecurityPrompt.Action.ConfirmDismissForeverChangePassword"] = [[はい]],
["Feature.AccountSecurityPrompt.Action.ContinueAddEmail"] = [[続ける]],
["Feature.AccountSecurityPrompt.Action.ContinueChangePassword"] = [[続ける]],
["Feature.AccountSecurityPrompt.Action.DismissForever"] = [[30日間、これを表示しない]],
["Feature.AccountSecurityPrompt.Action.RemindMeLater"] = [[あとで通知する]],
["Feature.AccountSecurityPrompt.Action.ResendPasswordResetEmail"] = [[パスワード再送メールアドレスリセット]],
["Feature.AccountSecurityPrompt.Action.SecureAccount"] = [[アカウントを保護する]],
["Feature.AccountSecurityPrompt.Action.SubmitChangePassword"] = [[パスワードを変更]],
["Feature.AccountSecurityPrompt.Action.UnlockAccountPin"] = [[アカウントをアンロック]],
["Feature.AccountSecurityPrompt.Message.Error.Email.FeatureDisabled"] = [[この機能は現在、無効になっています。後でもう一度お試しください。]],
["Feature.AccountSecurityPrompt.Message.Error.Email.TooManyAccountsOnEmail"] = [[このメールアドレスに関連付けられているメールアドレスが多すぎます。]],
["Feature.AccountSecurityPrompt.Message.Error.Email.TooManyAttemptsToUpdateEmail"] = [[メールアドレスのアップデート試行回数が多すぎます。後でもう一度お試しください。]],
["Feature.AccountSecurityPrompt.Message.Error.Email.InvalidEmailAddress"] = [[メールアドレスが無効です。]],
["Feature.AccountSecurityPrompt.Message.Error.Email.Default"] = [[不明なエラーが発生しました。]],
["Feature.AccountSecurityPrompt.Message.Error.Input.InvalidEmail"] = [[メールアドレスが無効です。]],
["Feature.AccountSecurityPrompt.Message.Error.Input.PasswordsDoNotMatch"] = [[新しいパスワードが確認欄のものと一致しません。]],
["Feature.AccountSecurityPrompt.Message.Error.Password.Flooded"] = [[試行回数が多すぎます。後でもう一度お試しください。]],
["Feature.AccountSecurityPrompt.Message.Error.Password.InvalidPassword"] = [[新しいパスワードは、セキュリティ要件を満たしていません。]],
["Feature.AccountSecurityPrompt.Message.Error.Password.InvalidCurrentPassword"] = [[現在のパスワードが間違っています。]],
["Feature.AccountSecurityPrompt.Message.Error.Password.PinLocked"] = [[お持ちのアカウントはPINでロックされています。]],
["Feature.AccountSecurityPrompt.Message.Error.Password.Default"] = [[不明なエラーが発生しました。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordReset.UserDoesNotHaveEmail"] = [[お持ちのアカウントに関連付けられたメールアドレスはありません。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordReset.Default"] = [[不明なエラーが発生しました。]],
["Feature.AccountSecurityPrompt.Message.Error.Pin.NoAccountPin"] = [[お持ちのアカウントにPINが設定されていません。]],
["Feature.AccountSecurityPrompt.Message.Error.Pin.AccountLocked"] = [[お持ちのアカウントはロックされています。]],
["Feature.AccountSecurityPrompt.Message.Error.Pin.Flooded"] = [[試行回数が多すぎます。後でもう一度お試しください。]],
["Feature.AccountSecurityPrompt.Message.Error.Pin.IncorrectPin"] = [[PINが間違っています。]],
["Feature.AccountSecurityPrompt.Message.Error.Pin.Default"] = [[不明なエラーが発生しました。]],
["Feature.AccountSecurityPrompt.Description.AddYourEmailUnder13"] = [[お持ちのアカウントを保護するには、保護者のメールアドレスを追加してパスワードをリセットしてください。]],
["Feature.AccountSecurityPrompt.Description.AddYourEmail"] = [[お持ちのアカウントを保護するには、保護者のメールアドレスを追加してパスワードをリセットしてください。]],
["Feature.AccountSecurityPrompt.Description.AreYouSureDismissForeverAddEmailUnder13"] = [[お持ちのアカウントが何者かによって承諾なしに使われているかもしれません。お持ちのアカウントを保護するには、保護者のメールアドレスを追加してパスワードをリセットしてください。]],
["Feature.AccountSecurityPrompt.Description.AreYouSureDismissForeverAddEmail"] = [[お持ちのアカウントが何者かによって承諾なしに使われているかもしれません。お持ちのアカウントを保護するには、メールアドレスを追加してパスワードをリセットしてください。]],
["Feature.AccountSecurityPrompt.Description.AreYouSureDismissForeverChangePassword"] = [[お持ちのアカウントが何者かによって承諾なしに使われているかもしれません。お持ちのアカウントを保護するには、パスワードを変更してください。]],
["Feature.AccountSecurityPrompt.Description.ChangeYourPassword"] = [[お持ちのアカウントを保護するには、パスワードを変更してください。]],
["Feature.AccountSecurityPrompt.Description.ChangeYourPasswordSuccess"] = [[パスワードが変更されました。]],
["Feature.AccountSecurityPrompt.Description.CheckYourEmailUnder13"] = [[当社から {emailAddress} に送付したメールを保護者の方にチェックしてもらい、パスワードをリセットするための指示に従ってください。受信箱をリフレッシュしたり、スパムフォルダをチェックする必要があるかもしれません。]],
["Feature.AccountSecurityPrompt.Description.CheckYourEmail"] = [[当社から {emailAddress} に送付したメールをチェックして、パスワードをリセットするための指示に従ってください。受信箱をリフレッシュしたり、スパムフォルダをチェックする必要があるかもしれません。]],
["Feature.AccountSecurityPrompt.Description.EnterYourAccountPin"] = [[パスワードを変更するには、このアカウントのPINを入力してください。]],
["Feature.AccountSecurityPrompt.Description.UnusualActivity"] = [[お持ちのアカウントに通常とは異なる活動が検知されました。]],
["Feature.AccountSecurityPrompt.Header.AccountPinExpired"] = [[アカウントPINが有効期限切れです]],
["Feature.AccountSecurityPrompt.Header.AccountPinRequired"] = [[アカウントPINを入力してください]],
["Feature.AccountSecurityPrompt.Header.AddYourEmailUnder13"] = [[保護者のメールアドレスを追加]],
["Feature.AccountSecurityPrompt.Header.AddYourEmail"] = [[メールアドレスを追加]],
["Feature.AccountSecurityPrompt.Header.AreYouSure"] = [[確定しますか]],
["Feature.AccountSecurityPrompt.Header.ChangeYourPassword"] = [[パスワードを変更してください]],
["Feature.AccountSecurityPrompt.Header.CheckYourEmailUnder13"] = [[保護者のメールをチェックしてください]],
["Feature.AccountSecurityPrompt.Header.CheckYourEmail"] = [[メールをチェックしてください]],
["Feature.AccountSecurityPrompt.Header.Success"] = [[完了]],
["Feature.AccountSecurityPrompt.Label.AccountPin"] = [[アカウントPIN]],
["Feature.AccountSecurityPrompt.Label.ConfirmNewPassword"] = [[新しいパスワードを確認]],
["Feature.AccountSecurityPrompt.Label.CurrentPassword"] = [[現在のパスワード]],
["Feature.AccountSecurityPrompt.Label.MinutesSeconds"] = [[{minutes} 分 {seconds} 秒]],
["Feature.AccountSecurityPrompt.Label.NewPassword"] = [[新しいパスワード]],
["Feature.AccountSecurityPrompt.Label.TimeRemaining"] = [[残り時間]],
["Feature.AccountSecurityPrompt.Label.YourEmailUnder13"] = [[保護者のメールアドレス]],
["Feature.AccountSecurityPrompt.Label.YourEmail"] = [[あなたのメールアドレス]],
["Feature.AccountSecurityPrompt.Action.DismissTemporary"] = [[今はしない]],
["Feature.AccountSecurityPrompt.Description.ChangeYourPasswordClickHere"] = [[お持ちのアカウントを保護するには、ここをクリックしてパスワードを変更してください。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordValidation.Default"] = [[不明なエラーが発生しました。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordValidation.WeakPassword"] = [[パスワードは、半角数字2桁とアルファベット4文字、記号1つを含む半角英数字で少なくとも8文字以上であることが必須です。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordValidation.ShortPassword"] = [[パスワードは英数字8文字以上であることが必須です。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordValidation.PasswordSameAsUsername"] = [[パスワードにはユーザーネームは使えません。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordValidation.ForbiddenPassword"] = [[このパスワードは使用できません。別のパスワードを選択してください。]],
["Feature.AccountSecurityPrompt.Message.Error.PasswordValidation.DumbStrings"] = [[もっと複雑なパスワードを作成してください。]],
["Feature.AccountSecurityPrompt.Message.Error.PromptAssignments.Default"] = [[エラーが発生しました。後でもう一度お試しください。]],
["Feature.AccountSettings.Heading.Tab.AccountInfo"] = [[アカウント情報]],
["Feature.AccountSettings.Heading.Tab.Security"] = [[セキュリティ]],
["Feature.AccountSettings.Heading.Tab.Privacy"] = [[プライバシー]],
["Feature.AccountSettings.Heading.Tab.Billing"] = [[ご請求]],
["Feature.AccountSettings.Heading.Tab.Notifications"] = [[通知]],
["Feature.AccountSettings.Label.TencentReputation"] = [[テンセントのゲーム信頼度]],
["Feature.AccountSettings.Heading.Tab.ParentalControls"] = [[保護者コントロール]],
["Feature.AccountSettings.OptOutBeta.Title"] = [[デスクトップアプリベータ版]],
["Feature.AccountSettings.OptOutBeta.Content"] = [[ベータ版をやめて以前のウェブ体験に戻りたい場合は、こちらでできます。]],
["Feature.AccountSettings.OptOutBeta.DisableButton"] = [[ベータ版を無効化]],
["Feature.AccountSettings.OptOutBetaDialog.Title"] = [[「デスクトップアプリベータ版」を無効化しますか?]],
["Feature.AccountSettings.OptOutBetaDialog.Content"] = [[気が変わった場合は、同じウェブバナーからベータ版を再度、使えます。]],
["Feature.AccountSettings.OptOutBetaDialog.ConfirmButton"] = [[はい。無効化して退出]],
["Feature.AccountSettings.OptOutBeta.Title.Mac"] = [[デスクトップアプリベータ版]],
["Feature.AccountSettings.OptOutBetaDialog.Title.Mac"] = [[「デスクトップアプリベータ版」を無効化しますか?]],
["Feature.AccountSettings.OptOutBetaDialog.ContentSurvey"] = [[ベータ版をやめた理由について詳しくお聞きしたいです。終了時にRobloxアンケートが開くので感想をお聞かせください!]],
["Feature.AddFriends.Label.NoRequests"] = [[リクエストなし]],
["Feature.AddFriends.Label.FriendRequests"] = [[友達リクエスト]],
["Feature.AddFriends.Label.NoWechatFriendsSuggestion"] = [[Wechat の友達が見つかりませんでした]],
["Feature.AddFriends.Label.NoQQFriendsSuggestion"] = [[テンセントの友達が見つかりませんでした]],
["Feature.AddFriends.Label.WechatFriends"] = [[Wechat の友達]],
["Feature.AddFriends.Label.QQFriends"] = [[テンセントの友達]],
["Feature.AddFriends.Label.LoadMore"] = [[さらに読み込む]],
["Feature.AddFriends.Label.YouAreFriends"] = [[友達になりました]],
["Feature.AddFriends.Action.ScanQrCode"] = [[QRコードをスキャン]],
["Feature.AddFriends.Label.MyQrCode"] = [[マイQRコード]],
["Feature.AddFriends.Action.ShowQrCode"] = [[QRコードを表示]],
["Feature.AddFriends.Title.CameraPermission"] = [[カメラ権限]],
["Feature.AddFriends.Description.CameraPermissionWarning"] = [[カメラアクセスが有効化されていません。QRコードスキャン機能を使用するには、お持ちのスマホの「設定」 > 「アプリ」 > 「Roblox」 でカメラへのアクセスを許可してください。]],
["Feature.AddFriends.Action.ShowMore"] = [[さらに表示]],
["Feature.AddFriends.Action.IgnoreAll"] = [[すべて無視する]],
["Feature.Avatar.Heading.All"] = [[すべて]],
["Feature.Avatar.Heading.Clothing"] = [[服装]],
["Feature.Avatar.Heading.Animations"] = [[アニメ]],
["Feature.Avatar.Heading.Outfits"] = [[服装]],
["Feature.Avatar.Label.Hat"] = [[帽子]],
["Feature.Avatar.Label.Hair"] = [[髪]],
["Feature.Avatar.Label.Face"] = [[顔]],
["Feature.Avatar.Label.Neck"] = [[首]],
["Feature.Avatar.Label.Front"] = [[正面]],
["Feature.Avatar.Label.Back"] = [[背面]],
["Feature.Avatar.Label.Waist"] = [[腰]],
["Feature.Avatar.Label.Shirts"] = [[シャツ]],
["Feature.Avatar.Label.Pants"] = [[ズボン]],
["Feature.Avatar.Label.Gear"] = [[ギア]],
["Feature.Avatar.Label.FaceAccessories"] = [[顔用アクセサリ]],
["Feature.Avatar.Label.NeckAccessories"] = [[首用アクセサリ]],
["Feature.Avatar.Label.ShoulderAccessories"] = [[肩用アクセサリ]],
["Feature.Avatar.Label.FrontAccessories"] = [[正面用アクセサリ]],
["Feature.Avatar.Label.BackAccessories"] = [[背面用アクセサリ]],
["Feature.Avatar.Label.WaistAccessories"] = [[腰用アクセサリ]],
["Feature.Avatar.Label.Faces"] = [[顔]],
["Feature.Avatar.Label.Head"] = [[頭]],
["Feature.Avatar.Label.Heads"] = [[頭]],
["Feature.Avatar.Label.Torso"] = [[胴体]],
["Feature.Avatar.Label.Torsos"] = [[胴体]],
["Feature.Avatar.Label.LeftArms"] = [[左腕]],
["Feature.Avatar.Label.RightArms"] = [[右腕]],
["Feature.Avatar.Label.LeftLegs"] = [[左足]],
["Feature.Avatar.Label.RightLegs"] = [[右足]],
["Feature.Avatar.Label.SkinTone"] = [[スキンのトーン]],
["Feature.Avatar.Label.Scale"] = [[スケール]],
["Feature.Avatar.Label.Walk"] = [[歩く]],
["Feature.Avatar.Label.Run"] = [[走る]],
["Feature.Avatar.Label.Fall"] = [[落下]],
["Feature.Avatar.Label.Jump"] = [[ジャンプ]],
["Feature.Avatar.Label.Swim"] = [[泳ぐ]],
["Feature.Avatar.Label.Climb"] = [[登る]],
["Feature.Avatar.Label.Idle"] = [[待機]],
["Feature.Avatar.Label.IdleAnimations"] = [[待機アニメ]],
["Feature.Avatar.Label.ClimbAnimations"] = [[登るアニメ]],
["Feature.Avatar.Label.SwimAnimations"] = [[泳ぐアニメ]],
["Feature.Avatar.Label.JumpAnimations"] = [[ジャンプのアニメ]],
["Feature.Avatar.Label.FallAnimations"] = [[落下アニメ]],
["Feature.Avatar.Label.RunAnimations"] = [[走るアニメ]],
["Feature.Avatar.Label.WalkAnimations"] = [[歩くアニメ]],
["Feature.Avatar.Label.MyCostumes"] = [[マイコスチューム]],
["Feature.Avatar.Label.PresetCostumes"] = [[プリセットコスチューム]],
["Feature.Avatar.Message.EmptyRecentItems"] = [[最近のアイテムがありません。]],
["Feature.Avatar.Message.ReachedMaxOutfits"] = [[服装の数が上限に達しました。]],
["Feature.Avatar.Message.InvalidOutfitName"] = [[名前は、不適切な言葉が使用されておらず、100文字未満である必要があります。]],
["Feature.Avatar.Action.Update"] = [[アップデート]],
["Feature.Avatar.Action.Rename"] = [[名前を変更する]],
["Feature.Avatar.Action.Delete"] = [[削除]],
["Feature.Avatar.Action.Cancel"] = [[キャンセル]],
["Feature.Avatar.Message.DefaultClothing"] = [[アバターにデフォルトのコスチュームが適用されています - 持っているコスチュームを装備してみましょう。]],
["Feature.Avatar.Heading.Body"] = [[ボディ]],
["Feature.Avatar.Action.Save"] = [[保存]],
["Feature.Avatar.Message.HatLimitTooltip"] = [[帽子は3つまで装備できます]],
["Feature.Avatar.Heading.Recommended"] = [[おすすめ]],
["Feature.Avatar.Heading.Recent"] = [[最近]],
["Feature.Avatar.Label.Height"] = [[身長]],
["Feature.Avatar.Label.Width"] = [[横幅]],
["Feature.Avatar.Label.BodyType"] = [[ボディタイプ]],
["Feature.Avatar.Label.Proportions"] = [[プロポーション]],
["Feature.Avatar.Action.Done"] = [[完了]],
["Feature.Avatar.Label.FullView"] = [[全体表示]],
["Feature.Avatar.Label.ReturnToEdit"] = [[編集に戻る]],
["Feature.Avatar.Label.SwitchToR6"] = [[R6に切り替え]],
["Feature.Avatar.Label.SwitchToR15"] = [[R15に切り替え]],
["Feature.Avatar.Heading.RecentAll"] = [[最近のすべて]],
["Feature.Avatar.Label.Hats"] = [[帽子]],
["Feature.Avatar.Label.Shoulder"] = [[肩]],
["Feature.Avatar.Label.Shirt"] = [[シャツ]],
["Feature.Avatar.Message.RecentItems"] = [[最近のアイテム]],
["Feature.Avatar.Action.Wear"] = [[装備]],
["Feature.Avatar.Action.TakeOff"] = [[外す]],
["Feature.Avatar.Action.ViewDetails"] = [[詳細を表示]],
["Feature.Avatar.Message.ScalingWarning"] = [[スケールはR15アバター以外では無効です]],
["Feature.Avatar.Message.AnimationsWarning"] = [[アニメはR15アバター以外では無効です]],
["Feature.Avatar.Action.ShopNow"] = [[今すぐ買う]],
["Feature.Avatar.Action.ShopInCatalog"] = [[カタログから買う]],
["Feature.Avatar.Message.NoNetworkConnection"] = [[接続中]],
["Feature.Avatar.Label.By"] = [[作:]],
["Feature.Avatar.Label.Name"] = [[名前]],
["Feature.Avatar.Label.Detail"] = [[詳細]],
["Feature.Avatar.Label.CurrentlyWearing"] = [[装備中]],
["Feature.Avatar.Message.EmptyOutfits"] = [[服装を所有してしません]],
["Feature.Avatar.Message.EmptyAssetHats"] = [[帽子がありません]],
["Feature.Avatar.Message.EmptyAssetHair"] = [[髪がありません]],
["Feature.Avatar.Message.EmptyAssetFaceAccessories"] = [[顔用アクセサリがありません]],
["Feature.Avatar.Message.EmptyAssetNeckAccessories"] = [[首用アクセサリがありません]],
["Feature.Avatar.Message.EmptyAssetShoulderAccessories"] = [[肩用アクセサリがありません]],
["Feature.Avatar.Message.EmptyAssetFrontAccessories"] = [[正面用アクセサリがありません]],
["Feature.Avatar.Message.EmptyAssetBackAccessories"] = [[背面用アクセサリがありません]],
["Feature.Avatar.Message.EmptyAssetWaistAccessories"] = [[腰用アクセサリがありません]],
["Feature.Avatar.Message.EmptyAssetShirts"] = [[シャツがありません]],
["Feature.Avatar.Message.EmptyAssetPants"] = [[ズボンがありません]],
["Feature.Avatar.Message.EmptyAssetFaces"] = [[顔がありません]],
["Feature.Avatar.Message.EmptyAssetHeads"] = [[頭がありません]],
["Feature.Avatar.Message.EmptyAssetTorsos"] = [[胴体がありません]],
["Feature.Avatar.Message.EmptyAssetRightArms"] = [[右腕がありません]],
["Feature.Avatar.Message.EmptyAssetLeftArms"] = [[左腕がありません]],
["Feature.Avatar.Message.EmptyAssetRightLegs"] = [[右足がありません]],
["Feature.Avatar.Message.EmptyAssetLeftLegs"] = [[左足がありません]],
["Feature.Avatar.Message.EmptyAssetGear"] = [[ギアがありません]],
["Feature.Avatar.Message.EmptyAssetClimbAnimations"] = [[登るアニメがありません]],
["Feature.Avatar.Message.EmptyAssetJumpAnimations"] = [[ジャンプのアニメがありません]],
["Feature.Avatar.Message.EmptyAssetFallAnimations"] = [[落下アニメがありません]],
["Feature.Avatar.Message.EmptyAssetIdleAnimations"] = [[待機アニメがありません]],
["Feature.Avatar.Message.EmptyAssetWalkAnimations"] = [[歩くアニメがありません]],
["Feature.Avatar.Message.EmptyAssetRunAnimations"] = [[走るアニメがありません]],
["Feature.Avatar.Message.EmptyAssetSwimAnimations"] = [[泳ぎアニメーションがありません]],
["Feature.Avatar.Message.EmptyCurrentlyWearing"] = [[現在何も装備していません]],
["Feature.Avatar.Label.ByCreatorName"] = [[作: {creatorName}]],
["Feature.Avatar.Message.ReachedMaxCostumes"] = [[コスチューム数が上限に達しました。]],
["Feature.Avatar.Message.FailedDeleteCostume"] = [[コスチュームを削除できませんでした。]],
["Feature.Avatar.Message.EmptyCostumes"] = [[コスチュームを所有してしません]],
["Feature.Avatar.Message.FailedToLoadAvatar"] = [[アバターを読み込めませんでした]],
["Feature.Avatar.Label.Equip"] = [[装備]],
["Feature.Avatar.Message.ChooseEmoteSlot"] = [[スロットを選ぶ]],
["Feature.Avatar.Label.YourEmotes"] = [[自分のエモート]],
["Feature.Avatar.Heading.Emotes"] = [[エモート]],
["Feature.Avatar.Message.EmptyAssetEmotes"] = [[エモートがありません]],
["Feature.Avatar.Message.ChooseEmote"] = [[エモートを選ぶ]],
["Feature.Avatar.Message.ErrorSaveEmotes"] = [[エモートを保存できません。後でもう一度お試しください。]],
["Feature.Avatar.R6"] = [[R6]],
["Feature.Avatar.R16"] = [[R16]],
["Feature.Avatar.R15"] = [[R15]],
["Feature.Avatar.Label.R6"] = [[R6]],
["Feature.Avatar.Label.R15"] = [[R15]],
["Feature.Avatar.Message.ChooseEmoteSlotOrEmote"] = [[スロットかエモートを選ぶ]],
["Feature.Avatar.Action.Shop"] = [[買う]],
["Feature.Avatar.Heading.SaveCostume"] = [[キャラクターを保存]],
["Feature.Avatar.Label.EnterCostumeName"] = [[この新しいキャラクターの名前を入力]],
["Feature.Avatar.Label.BodyStyle"] = [[ボディスタイル]],
["Feature.Avatar.Label.HeadSize"] = [[頭のサイズ]],
["Feature.Avatar.Label.BodySize"] = [[ボディサイズ]],
["Feature.Avatar.Label.BodyShape"] = [[ボディの型]],
["Feature.Avatar.Label.R6R15"] = [[R6/R15]],
["Feature.Avatar.Label.CostumeWarning"] = [[名前に使用できるのは、文字、半角英数字、およびスペースだけです。]],
["Feature.Avatar.Label.Skin"] = [[スキン]],
["Feature.Avatar.Action.ShopForMore"] = [[もっと買う]],
["Feature.Avatar.Label.NoItems"] = [[{itemType} がありません]],
["Feature.Avatar.Message.R6AnimationToast"] = [[{type} はR6アバターには対応していません]],
["Feature.Avatar.Label.BodyScales"] = [[ボディスケール]],
["Feature.Avatar.Message.R6AnimationError"] = [[R15アバターに切り替えてアニメを表示]],
["Feature.Avatar.Message.R6EmotesError"] = [[R15アバターに切り替えてエモートを表示]],
["Feature.Avatar.Message.R6BodyScaleError"] = [[R15アバターに切り替えてボディスタイルをカスタマイズ]],
["Feature.Avatar.Message.InvalidName"] = [[無効な名前]],
["Feature.Avatar.Label.Emote"] = [[エモート]],
["Feature.Avatar.Label.TShirt"] = [[Tシャツ]],
["Feature.Avatar.Heading.WearConfirmation"] = [[アイテムを装備]],
["Feature.Avatar.Label.WearConfirmation"] = [[このアイテムはすでに持っています。装備しますか?]],
["Feature.Avatar.Label.InvalidOutfitName"] = [[名前は、不適切な言葉が使用されておらず、{characterLimit} 文字未満である必要があります。]],
["Feature.Avatar.Message.AlreadyAcquired"] = [[このアイテムはすでに入手しています。]],
["Feature.Avatar.Message.EquipCostumeConfirmation"] = [[このキャラクターを保存していません。このコスチュームを装備してよろしいですか?]],
["Feature.Avatar.Message.InvalidItem"] = [[このアイテムは存在しません。]],
["Feature.Avatar.Label.Arms"] = [[腕]],
["Feature.Avatar.Label.Legs"] = [[足]],
["Feature.Avatar.Label.Build"] = [[体型]],
["Feature.Avatar.Message.FaceNotVisible"] = [[選択済みの顔は、この頭では表示されません。]],
["Feature.Avatar.Action.Select"] = [[選択]],
["Feature.Avatar.Action.SelectSlot"] = [[スロットを選択]],
["Feature.Avatar.Action.SlotEmote"] = [[エモートを装備]],
["Feature.Avatar.Action.UnslotEmote"] = [[エモート装備を外す]],
["Feature.Avatar.Action.CustomizeAvatar"] = [[アバターをカスタマイズ]],
["Feature.Avatar.Label.QuickMenuLandingPageTitle"] = [[アバターオプション]],
["Feature.Avatar.Label.QuickMenuCustomizeTitle"] = [[オプションをカスタマイズ]],
["Feature.Avatar.EmoteAlreadyAssigned"] = [[このエモートは、すでにスロットに割り当てられています。]],
["Feature.Avatar.Action.Pan"] = [[パン]],
["Feature.Avatar.Action.Zoom"] = [[ズーム]],
["Feature.Avatar.Action.Rotate"] = [[回転]],
["Feature.Avatar.Action.DefaultView"] = [[デフォルト表示]],
["Feature.Avatar.Action.ShowMore"] = [[さらに表示]],
["Feature.Avatar.Action.ShowLess"] = [[表示を減らす]],
["Feature.Avatar.Message.UnableToSaveAvatar"] = [[今回はアバターを保存できませんでした。]],
["Feature.Avatar.Action.SaveAsNew"] = [[新規として保存]],
["Feature.Avatar.Action.UpdateExistingCharacter"] = [[既存のキャラクターをアップデート]],
["Feature.Avatar.Message.FailedUpdateOutfit"] = [[服装をアップデートできませんでした]],
["Feature.Avatar.Message.UpdateOutfitSuccess"] = [[アップデート済み!]],
["Feature.Avatar.Heading.SelectToUpdate"] = [[選択してアップデート]],
["Feature.Avatar.Heading.UsedName"] = [[使用済みの名前]],
["Feature.Avatar.Label.UsedNameLong"] = [[この名前をすでに使用したようです。それでも保存しますか?]],
["Feature.Avatar.Heading.Manage"] = [[管理する]],
["Feature.Avatar.Label.CountSelected"] = [[{itemCount} 点を選択済み]],
["Feature.Avatar.Label.SelectItem"] = [[アイテムを選択]],
["Feature.Avatar.Message.InvalidAssetsInOutfit"] = [[この服装の中のアイテムにもう利用できないものがあります。]],
["Feature.Avatar.Heading.DeleteCharacter"] = [[このキャラクターを削除しますか?]],
["Feature.Avatar.Label.NoLongerAvailableInCollection"] = [[このコレクションではもう利用できません]],
["Feature.Avatar.Heading.DeleteAssets"] = [[アセットを削除]],
["Feature.Avatar.Label.MultiNoLongerAvailableInCollection"] = [[これらのアセットは、このコレクションではもう利用できません:]],
["Feature.Avatar.Heading.DuplicateCharacter"] = [[キャラクターを複製]],
["Feature.Avatar.Label.SavedSimilarCharacter"] = [[似たキャラクターをすでに保存しているようです:]],
["Feature.Avatar.Label.SavedSimilarCharacterNoName"] = [[似たキャラクターをすでに保存しているようです]],
["Feature.Avatar.Label.ManageItems"] = [[アイテムを管理]],
["Feature.Avatar.Message.InvalidAssetsEquipped"] = [[装備済みのアイテムの中にもう利用できないものがあります。]],
["Feature.Avatar.Heading.RenameCharacter"] = [[キャラクターを名前を変更]],
["Feature.Avatar.Label.EnterNewCostumeName"] = [[このキャラクターの新しい名前を入力]],
["Feature.Avatar.Message.RenameCostumeSuccess"] = [[名前を変更済み!]],
["Feature.Avatar.Message.FailedRenameCostume"] = [[キャラクターの名前を変更できませんでした]],
["Feature.Avatar.Action.GotIt"] = [[OK]],
["Feature.Avatar.Action.SelectMultipleItems"] = [[複数のアイテムを選択]],
["Feature.Avatar.Action.CancelSelection"] = [[選択をキャンセル]],
["Feature.Avatar.Action.Unselect"] = [[選択解除]],
["Feature.Avatar.Label.Creations"] = [[作品]],
["Feature.Avatar.Label.Purchased"] = [[購入済み]],
["Feature.Avatar.Label.Outerwear"] = [[上着]],
["Feature.Avatar.Label.Tops"] = [[トップス]],
["Feature.Avatar.Label.Bottoms"] = [[ボトムス]],
["Feature.Avatar.Label.LeftShoes"] = [[靴(左)]],
["Feature.Avatar.Label.RightShoes"] = [[靴(右)]],
["Feature.Avatar.Label.Shoes"] = [[靴]],
["Feature.Avatar.Label.ClassicShirts"] = [[定番のシャツ]],
["Feature.Avatar.Label.ClassicTShirts"] = [[定番のTシャツ]],
["Feature.Avatar.Label.ClassicPants"] = [[定番のズボン]],
["Feature.Avatar.Label.Jacket"] = [[ジャケット]],
["Feature.Avatar.Label.Jackets"] = [[ジャケット]],
["Feature.Avatar.Label.Sweater"] = [[セーター]],
["Feature.Avatar.Label.Sweaters"] = [[セーター]],
["Feature.Avatar.Label.Shorts"] = [[短パン]],
["Feature.Avatar.Label.LeftShoe"] = [[靴(左)]],
["Feature.Avatar.Label.RightShoe"] = [[靴(右)]],
["Feature.Avatar.Label.DressesAndSkirts"] = [[ワンピースとスカート]],
["Feature.Avatar.Label.Accessory"] = [[アクセサリ]],
["Feature.Avatar.Label.LayeredClothingR15Warning"] = [[このアイテムを有効化するには、ボディタイプをR15にアップデートしてください。]],
["Feature.Avatar.Label.LayeredClothingSwitchR6Warning"] = [[R6 キャラクターには制限があります。切り替えた場合、すべての対応済みアイテムは削除されます。]],
["Feature.Avatar.Action.Switch"] = [[切り替え]],
["Feature.Avatar.Action.EditProfilePicture"] = [[プロフィール写真を編集]],
["Feature.Avatar.Action.ProfilePictureEditor"] = [[プロフィール写真エディタ]],
["Feature.Avatar.Action.ProfilePicturePreview"] = [[プロフィール写真のプレビュー]],
["Feature.Avatar.Message.SelectEmote"] = [[アバターにポーズを取らせるにはエモートを選択!]],
["Feature.Avatar.Message.Emote"] = [[エモート]],
["Feature.Avatar.ProfilePictureEditor.NoEmotes"] = [[エモートなし]],
["Feature.Avatar.Action.DefaultPosition"] = [[デフォルト位置]],
["Feature.Avatar.Message.ThisLooksGreat"] = [[ステキです!]],
["Feature.Avatar.Message.ClickSave"] = [[プロフィール写真を変更するには <b>保存</b> をクリック]],
["Feature.Avatar.Message.FailedWritePPE"] = [[プロフィール写真をアップデートできませんでした]],
["Feature.Avatar.Label.PPEEmoteR15Warning"] = [[選択して、エモートにしてアバターにポーズを取らせるには R15 に切り替えてください。]],
["Feature.Avatar.Label.PPEPickEmoteHeader"] = [[エモートを選ぶ]],
["Feature.Avatar.Label.PPEPickEmoteBody"] = [[アバターにポーズを取らせるにはエモートを選択!]],
["Feature.Avatar.Label.PPEPositionCameraHeader"] = [[カメラの調整]],
["Feature.Avatar.Label.PPEFinalHeader"] = [[プレビュー]],
["Feature.Avatar.Label.PPEViewFullButton"] = [[アバター全体を表示]],
["Feature.Avatar.Label.PPEFinalSubheader"] = [[完了!]],
["Feature.Avatar.Label.PPEFinalBody"] = [[アプリ全体でプロフィール写真は両方の表示方法で使われます。]],
["Feature.Avatar.Label.PPEViewCloseupButton"] = [[ズーム表示]],
["Feature.Avatar.Label.PPEFinishedToast"] = [[プロフィール写真を変更しました!]],
["Feature.Avatar.Action.Default"] = [[デフォルト]],
["Feature.Billing.Action.UpgradeMembership"] = [[メンバーシップをアップグレード]],
["Feature.Billing.Action.JoinBuildersClub"] = [[Builders Clubに加入]],
["Feature.Billing.Label.RenewalDate"] = [[更新日]],
["Feature.Billing.Label.ExpirationDate"] = [[終了日]],
["Feature.Billing.Label.RenewalDateMessage"] = [[%s に自動更新されます。]],
["Feature.Billing.Label.ExpirationDateMessage"] = [[%s に終了します。]],
["Feature.Billing.Label.BillingHelpMessage"] = [[ご請求とお支払いについては、ご請求のヘルプページを見てください。]],
["Feature.Billing.Label.MembershipType.None"] = [[あなたは、まだメンバーではありません。今すぐBuilders Clubに加入してください!]],
["Feature.Billing.Label.MembershipType.OBC"] = [[Outrageous Builders Clubメンバーシップ]],
["Feature.Billing.Label.MembershipType.TBC"] = [[Turbo Builders Clubメンバーシップ]],
["Feature.Billing.Label.MembershipType.BC"] = [[Builders Clubメンバーシップ]],
["Feature.Billing.Label.MembershipType.Premium450"] = [[Roblox Premium 450]],
["Feature.Billing.Label.MembershipType.Premium1000"] = [[Roblox プレミアム 1000]],
["Feature.Billing.Label.MembershipType.Premium2200"] = [[Roblox Premium 2200]],
["Feature.Billing.Heading.MembershipStatus"] = [[メンバーシップ状況]],
["Feature.Billing.Description.JoinPremium"] = [[まだメンバーではありません。今すぐ加入してください!]],
["Feature.Billing.Description.JoinBC"] = [[あなたは、まだメンバーではありません。今すぐBuilders Clubに加入してください!]],
["Feature.Billing.Action.JoinPremium"] = [[加入]],
["Feature.BuyRobux.Heading.Banner"] = [[Robuxを購入]],
["Feature.BuyRobux.Description.Banner"] = [[Robuxを買って体験内でアバターのアップグレードや特殊能力を購入しましょう。 Roblox Premiumのサブスクリプション契約をして、ボーナス機能と毎月もっとRobuxをゲット。Premiumはキャンセルするまで、毎月課金されます。]],
["Feature.BuyRobux.Label.BannerPremiumLink"] = [[詳細はこちら]],
["Feature.BuyRobux.Heading.SubscriptionList"] = [[サブスクリプション契約して もっとゲットしよう!]],
["Feature.BuyRobux.Heading.RobuxListNonPremium"] = [[Robuxを購入]],
["Feature.BuyRobux.Heading.RobuxListPremium"] = [[Robuxを10%オフでゲット]],
["Feature.BuyRobux.Description.RobuxListPremium"] = [[Premiumユーザーとして、Robuxで割引きをもらえます!]],
["Feature.BuyRobux.Label.PerMonth"] = [[{Robux}/月]],
["Feature.BuyRobux.Label.Price"] = [[{CurrencySymbol}{Amount}]],
["Feature.BuyRobux.Description.LegalText"] = [[Robuxを買うと、制限があり返金不可で譲渡不可で取り消し可能なRobuxを使うライセンスを受け取るだけで、これには現実の通貨での価値はありません。その他の制限については、利用規約をご覧ください。18歳未満の場合は、購入する前に必ず両親か法的な保護者の許可があることを確かめてください。許可のない購入をすることは、お持ちのアカウントの削除につながることがあります。]],
["Feature.BuyRobux.Label.TermsOfUse"] = [[利用規約はここからごらんください]],
["Feature.Catalog.Label.CategoryType"] = [[タイプ]],
["Feature.Catalog.Label.Filter.Creator"] = [[クリエーター]],
["Feature.Catalog.Label.Filter.Genre"] = [[ジャンル]],
["Feature.Catalog.Response.NoItemsFound"] = [[アイテムが見つかりません。]],
["Feature.Catalog.LabelFeatured"] = [[注目]],
["Feature.Catalog.LabelAccessories"] = [[アクセサリ]],
["Feature.Catalog.LabelShirts"] = [[シャツ]],
["Feature.Catalog.LabelTShirts"] = [[Tシャツ]],
["Feature.Catalog.LabelPants"] = [[ズボン]],
["Feature.Catalog.LabelAccessoryHats"] = [[帽子]],
["Feature.Catalog.LabelAccessoryFace"] = [[顔]],
["Feature.Catalog.LabelAccessoryNeck"] = [[首]],
["Feature.Catalog.LabelAccessoryShoulder"] = [[肩]],
["Feature.Catalog.LabelAccessoryFront"] = [[正面]],
["Feature.Catalog.LabelAccessoryBack"] = [[背面]],
["Feature.Catalog.LabelAccessoryWaist"] = [[腰]],
["Feature.Catalog.LabelFree"] = [[無料]],
["Feature.Catalog.LabelOffSale"] = [[非売品]],
["Feature.Catalog.LabelNoResellers"] = [[再販者なし]],
["Feature.Catalog.Label.Ios"] = [[iOS]],
["Feature.Catalog.Label.Sale"] = [[セール]],
["Feature.Catalog.Label.New"] = [[新着]],
["Feature.Catalog.Label.Bundle"] = [[バンドル]],
["Feature.Catalog.Label.Owned"] = [[所有しています]],
["Feature.Catalog.Label.Favorites"] = [[お気に入り]],
["Feature.Catalog.Label.Emotes"] = [[エモート]],
["Feature.Catalog.Label.Character"] = [[キャラクター]],
["Feature.Catalog.Label.Outfit"] = [[服装]],
["Feature.Catalog.Label.Body"] = [[ボディ]],
["Feature.Catalog.Label.Animation"] = [[アニメ]],
["Feature.Catalog.Label.Purchases"] = [[購入]],
["Feature.Catalog.Label.Recommendations"] = [[あなたへのおすすめ]],
["Feature.Catalog.Label.Movement"] = [[動作]],
["Feature.Catalog.Lable.BodyShape"] = [[ボディの型]],
["Feature.Catalog.Label.Face"] = [[顔]],
["Feature.Catalog.Label.Head"] = [[頭]],
["Feature.Catalog.Label.Hair"] = [[髪]],
["Feature.Catalog.Label.Gear"] = [[ギア]],
["Feature.Catalog.Label.WaistAccessories"] = [[腰用アクセサリ]],
["Feature.Catalog.Label.BackAccessories"] = [[背面用アクセサリ]],
["Feature.Catalog.Label.FrontAccessories"] = [[正面用アクセサリ]],
["Feature.Catalog.Label.ShoulderAccessories"] = [[肩用アクセサリ]],
["Feature.Catalog.Label.FaceAccessories"] = [[顔用アクセサリ]],
["Feature.Catalog.Label.NeckAccessories"] = [[首用アクセサリ]],
["Feature.Catalog.Label.Limited"] = [[限定]],
["Feature.Catalog.Label.BodyShape"] = [[ボディの型]],
["Feature.Catalog.Feature.Catalog.Label.CharacterUppercase"] = [[キャラクター]],
["Feature.Catalog.Feature.Catalog.LabelFeaturedUppercase"] = [[注目]],
["Feature.Catalog.Feature.Catalog.Label.OutfitUppercase"] = [[服装]],
["Feature.Catalog.Feature.Catalog.Label.BodyUppercase"] = [[ボディ]],
["Feature.Catalog.Feature.Catalog.Label.AnimationUppercase"] = [[アニメ]],
["Feature.Catalog.Label.AnimationUppercase"] = [[アニメ]],
["Feature.Catalog.Label.BodyUppercase"] = [[ボディ]],
["Feature.Catalog.Label.CharacterUppercase"] = [[キャラクター]],
["Feature.Catalog.Label.OutfitUppercase"] = [[服装]],
["Feature.Catalog.Catalog.Label.FeaturedUppercase"] = [[注目]],
["Feature.Catalog.Label.FeaturedUppercase"] = [[注目]],
["Feature.Catalog.Label.CommunityCreations"] = [[ コミュニティの作品]],
["Feature.Catalog.Action.EditAvatar"] = [[アバターを編集]],
["Feature.Catalog.Response.Throttled"] = [[リクエストの間隔が短すぎます。1分後にもう一度お試しください。]],
["Feature.Catalog.Action.Sell"] = [[売る]],
["Feature.Catalog.Action.Customize"] = [[カスタマイズ]],
["Feature.Catalog.Action.Share"] = [[シェア]],
["Feature.Catalog.Label.AvailableForSale"] = [[販売中]],
["Feature.Catalog.Label.OnSale"] = [[販売中]],
["Feature.Catalog.Heading.Sellers"] = [[販売者]],
["Feature.Catalog.Label.OriginalPrice"] = [[元の価格]],
["Feature.Catalog.Label.QuantitySold"] = [[売れた数]],
["Feature.Catalog.Label.AveragePrice"] = [[平均価格]],
["Feature.Catalog.Label.Edition"] = [[版]],
["Feature.Catalog.Heading.ConfirmPrice"] = [[価格を確認]],
["Feature.Catalog.Label.SellCut"] = [[獲得:]],
["Feature.Catalog.Label.RemoveSellItem"] = [[このアイテムを削除してよろしいですか?]],
["Feature.Catalog.Heading.RemoveSellItem"] = [[アイテムを削除]],
["Feature.Catalog.Label.MinimumAmount"] = [[最低数値は 0 を超える必要があります。]],
["Feature.Catalog.Action.GoCustomize"] = [[カスタマイズへ]],
["Feature.Catalog.Label.WearAfterPurchase"] = [[購入後にアイテムを装備]],
["Feature.Catalog.Action.Buy"] = [[購入]],
["Feature.Catalog.Heading.InsufficientFunds"] = [[Robuxが不足しています]],
["Feature.Catalog.Label.InsufficientFunds"] = [[Robuxが不足しているため、このアイテムを購入できません。]],
["Feature.Catalog.Label.CurrentBalance"] = [[現在の残高:]],
["Feature.Catalog.Label.PurchaseConfirmation"] = [[{creatorName} が作成した {itemName} を {itemPrice} で購入しますか?]],
["Feature.Catalog.Label.RobuxFee"] = [[{feePercentage}% の手数料差引き後:]],
["Feature.Catalog.Heading.BuyItem"] = [[アイテムを購入]],
["Feature.Catalog.Action.Cancel"] = [[キャンセル]],
["Feature.Catalog.Label.BuyConfirmation"] = [[{creatorName} さんから {itemName} を購入しますか?]],
["Feature.Catalog.Label.PriceColon"] = [[価格:]],
["Feature.Catalog.Action.Favorite"] = [[お気に入り]],
["Feature.Catalog.Action.RemoveFavorite"] = [[お気に入り]],
["Feature.Catalog.Action.Report"] = [[報告する]],
["Feature.Catalog.Label.ShopToAvatarPage"] = [[アバターのカスタマイズのためショップを終了]],
["Feature.Catalog.Label.NoSellersWarning"] = [[申し訳ありません。このアイテムを売っている人はいません。]],
["Feature.Catalog.Label.ItemsCount"] = [[{itemCount} 個のアイテム]],
["Feature.Catalog.Label.ItemCount"] = [[{itemCount} 個のアイテム]],
["Feature.Catalog.Label.AverageSellPrice"] = [[平均販売価格:]],
["Feature.Catalog.Label.SellSuccess"] = [[販売中のアイテム]],
["Feature.Catalog.Action.Remove"] = [[削除]],
["Feature.Catalog.Heading.SellItem"] = [[アイテムを売る]],
["Feature.Catalog.Label.Price"] = [[価格]],
["Feature.Catalog.Heading.Resellers"] = [[再販者]],
["Feature.Catalog.Label.Featured"] = [[注目]],
["Feature.Catalog.Label.Resell"] = [[再販する]],
["Feature.Catalog.Label.AvailableForSaleUpper"] = [[販売中]],
["Feature.Catalog.Label.OnSaleUpper"] = [[販売中]],
["Feature.Catalog.Label.Characters"] = [[キャラクター]],
["Feature.Catalog.Label.Get"] = [[ゲットする]],
["Feature.Catalog.Label.BuyRobux"] = [[Robuxを購入]],
["Feature.Catalog.Label.Purchased"] = [[購入済み!]],
["Feature.Catalog.Label.NoLongerAvailable"] = [[このアイテムはご利用できません]],
["Feature.Catalog.Heading.NotForSale"] = [[非売品]],
["Feature.Catalog.Heading.ItemRemoved"] = [[アイテム削除済み]],
["Feature.Catalog.Feature.Catalog.Label.Community"] = [[コミュニティ]],
["Feature.Catalog.Label.Community"] = [[コミュニティ]],
["Feature.Catalog.Label.BodyShapes"] = [[ボディの型]],
["Feature.Catalog.Heading.NoSellers"] = [[販売者なし]],
["Feature.Catalog.Action.Rent"] = [[レンタル]],
["Feature.Catalog.Label.TShirt"] = [[Tシャツ]],
["Feature.Catalog.Label.Emote"] = [[エモート]],
["Feature.Catalog.Label.Clothing"] = [[服装]],
["Feature.Catalog.Label.SellPageUpsell"] = [[Premiumメンバーシップをお持ちのユーザーだけが購入できます。]],
["Feature.Catalog.Heading.PremiumOnly"] = [[Premium限定]],
["Feature.Catalog.Action.Upgrade"] = [[アップグレード]],
["Feature.Catalog.Heading.FreeItem"] = [[アイテムをゲット]],
["Feature.Catalog.Label.FreeItemConfirmation"] = [[{creatorName} さんから{itemName} を無料でゲットしますか?]],
["Feature.Catalog.Heading.FreeItemConfirmation"] = [[アイテムをゲット]],
["Feature.Catalog.Heading.AvatarShop"] = [[アバターショップ]],
["Feature.Catalog.Action.ClearAll"] = [[すべて消す]],
["Feature.Catalog.Label.Category"] = [[カテゴリ]],
["Feature.Catalog.Label.FreeUpperCase"] = [[無料]],
["Feature.Catalog.Label.Sort"] = [[並べ替え]],
["Feature.Catalog.Label.FilterTypeToFilter"] = [[{filterType}: {filter}]],
["Feature.Catalog.Label.Relevance"] = [[関連度]],
["Feature.Catalog.Label.Bestselling"] = [[ベストセラー]],
["Feature.Catalog.Label.PriceHighToLow"] = [[価格(高い順)]],
["Feature.Catalog.Label.PriceLowToHigh"] = [[価格(安い順)]],
["Feature.Catalog.Label.RecentlyUpdated"] = [[最近アップデート]],
["Feature.Catalog.Label.MostFavorited"] = [[一番人気]],
["Feature.Catalog.Label.SortBy"] = [[並べ替え]],
["Feature.Catalog.Label.Premium"] = [[Premium]],
["Feature.Catalog.Label.DNA"] = [[DNA]],
["Feature.Catalog.Label.Shape"] = [[形]],
["Feature.Catalog.Label.Faces"] = [[顔]],
["Feature.Catalog.Label.Tops"] = [[トップス]],
["Feature.Catalog.Label.None"] = [[なし]],
["Feature.Catalog.Label.AvailableToPremiumMembers"] = [[Premiumに加入済みのためご利用できます]],
["Feature.Catalog.Label.PremiumOnly"] = [[Premiumユーザーのみがご利用できます]],
["Feature.Catalog.Label.PrePremiumPrice"] = [[(アイテムの価格:]],
["Feature.Catalog.Label.PremiumDiscount"] = [[Premiumがあると {percent}% お得]],
["Feature.Catalog.Label.GetPremiumAndPrice"] = [[Premiumに加入して以下の価格で購入: ]],
["Feature.Catalog.Message.ReportCatalogItemPhrase"] = [[当社のモデレータチームに規約違反報告を送信できます。アイテムを調査してから、適切な対処をします。]],
["Feature.Catalog.Label.ReportItem"] = [[アイテムを報告]],
["Feature.Catalog.Action.Submit"] = [[送信]],
["Feature.Catalog.Message.NotEnoughRobux"] = [[このアイテムは、お手持ちのRobuxでは購入できません。www.roblox.comでRobuxを追加購入してください。]],
["Feature.Catalog.Heading.CatalogOptions"] = [[カタログオプション]],
["Feature.Catalog.Heading.QuickMenu"] = [[クイックメニュー]],
["Feature.Catalog.Label.Search"] = [[サーチ]],
["Feature.Catalog.Label.CustomizeAvatar"] = [[アバターをカスタマイズ]],
["Feature.Catalog.Action.ItemOptions"] = [[アイテムオプション]],
["Feature.Catalog.Label.CatalogOptions"] = [[カタログオプション]],
["Feature.Catalog.Label.QuickMenu"] = [[クイックメニュー]],
["Feature.Catalog.Action.Search"] = [[サーチ]],
["Feature.Catalog.Label.QuickMenuShopTitle"] = [[ショップオプション]],
["Feature.Catalog.Action.OpenDetails"] = [[詳細を開く]],
["Feature.Catalog.Action.CloseDetails"] = [[詳細を閉じる]],
["Feature.Catalog.Label.BuyConfirmationIncludingWarning"] = [[エンターテイメントは節度を持って合理的に消費しましょう。{creatorName} さんから {itemName} を購入しますか?]],
["Feature.Catalog.Label.Redeemed"] = [[引き換えできました!]],
["Feature.Catalog.Label.NotAvailable"] = [[今回、このアイテムは利用できません]],
["Feature.Catalog.Label.AlreadyOwned"] = [[アイテムはすでに所有済みです]],
["Feature.Catalog.Label.AppleOnly"] = [[Apple 限定]],
["Feature.Catalog.Message.NewClothingItems"] = [[新しい服装アイテムを近日公開。また後でチェックしてください!]],
["Feature.Chat.Response.Sending"] = [[送信中]],
["Feature.Chat.Response.ChatNameFullyModerated"] = [[チャットグループ名が規制対象です。]],
["Feature.Chat.Heading.LeaveGroup"] = [[グループを終了]],
["Feature.Chat.Label.SearchWord"] = [[サーチ]],
["Feature.Chat.Action.Add"] = [[追加]],
["Feature.Chat.Action.Leave"] = [[終了]],
["Feature.Chat.Action.Remove"] = [[削除]],
["Feature.Chat.Action.Cancel"] = [[キャンセル]],
["Feature.Chat.Description.NameGroupChat"] = [[チャットグループに名前を付ける]],
["Feature.Chat.Heading.NewChatGroup"] = [[新規チャットグループ]],
["Feature.Chat.Label.SeeLess"] = [[見る数を減らす]],
["Feature.Chat.Label.InputPlaceHolder.SearchForFriends"] = [[友達をサーチ]],
["Feature.Chat.Label.AddFriends"] = [[友達を追加する]],
["Feature.Chat.Label.ChatDetails"] = [[チャット詳細]],
["Feature.Chat.Label.General"] = [[一般]],
["Feature.Chat.Label.Members"] = [[メンバー]],
["Feature.Chat.Label.ViewProfile"] = [[プロフィールを見る]],
["Feature.Chat.Label.ChatGroupName"] = [[チャットグループ名]],
["Feature.Chat.Action.Stay"] = [[そのまま]],
["Feature.Chat.Action.Create"] = [[作成]],
["Feature.Chat.Action.Send"] = [[送信]],
["Feature.Chat.Action.Save"] = [[保存]],
["Feature.Chat.Message.ToastText"] = [[チャットグループには友達を{friendNum}人まで追加できます。]],
["Feature.Chat.Message.NoConnectionMsg"] = [[接続中...]],
["Feature.Chat.Message.Default"] = [[このチャットでは、全員があなたのメッセージを見れるわけではありません。]],
["Feature.Chat.Message.MessageFilterForReceivers"] = [[このチャットでは、全員があなたのメッセージを見れるわけではありません。]],
["Feature.Chat.Message.MessageContentModerated"] = [[メッセージは、規制により送信されませんでした。]],
["Feature.Chat.Label.PrivacySettings"] = [[プライバシー設定]],
["Feature.Chat.Label.ChatInputPlaceholder"] = [[発言してください]],
["Feature.Chat.Action.Confirm"] = [[OK]],
["Feature.Chat.Heading.FailedToLeaveGroup"] = [[グループを終了できませんでした]],
["Feature.Chat.Message.FailedToLeaveGroup"] = [[{CONVERSATION_TITLE} の会話を終了できませんでした。]],
["Feature.Chat.Heading.FailedToRemoveUser"] = [[ユーザーを削除できませんでした]],
["Feature.Chat.Message.FailedToRemoveUser"] = [[{CONVERSATION_TITLE} の会話からユーザー、{USERNAME} さんを削除することができませんでした。]],
["Feature.Chat.Heading.FailedToRenameConversation"] = [[会話の名前を変更できませんでした]],
["Feature.Chat.Message.FailedToRenameConversation"] = [[会話「{EXISTING_NAME}」の名前を「{NEW_NAME}」に変更できませんでした。]],
["Feature.Chat.Message.LeaveGroup"] = [[このグループでチャットを続けることはできません。]],
["Feature.Chat.Message.MakeFriendsToChat"] = [[チャットを始めてRoblox上で友達を作ろう]],
["Feature.Chat.Label.NotSet"] = [[設定されていません]],
["Feature.Chat.Heading.Option"] = [[オプション]],
["Feature.Chat.Action.RemoveFromGroup"] = [[グループから削除]],
["Feature.Chat.Action.RemoveUser"] = [[ユーザーを削除]],
["Feature.Chat.Message.RemoveUser"] = [[このチャットグループから{USERNAME}さんを削除してよろしいですか?]],
["Feature.Chat.Message.RemovedFromConversation"] = [[あなたはグループから削除されました。]],
["Feature.Chat.Action.ReportUser"] = [[ユーザーを報告]],
["Feature.Chat.Label.SearchForFriendsAndChat"] = [[会話をサーチ]],
["Feature.Chat.Action.SeeMoreFriends"] = [[もっと見る({NUMBER_OF_FRIENDS})]],
["Feature.Chat.Label.Sent"] = [[送信済み]],
["Feature.Chat.Heading.ShareGameToChat"] = [[チャットして体験を共有]],
["Feature.Chat.Message.TurnOnChat"] = [[友達とチャットするには、「プライバシー設定」でチャットを有効にしてください。]],
["Feature.Chat.Action.ViewAssetDetails"] = [[詳細を表示]],
["Feature.Chat.Label.ByBuilder"] = [[作:{USERNAME}]],
["Feature.Chat.Message.AlreadyPinnedGame"] = [[この体験は、すでにピン留め済みです。他をお試しください。]],
["Feature.Chat.Message.PinFailed"] = [[体験をピン留めすることができませんでした。後でもう一度お試しください。]],
["Feature.Chat.Message.UnpinFailed"] = [[体験のピン留めを外すことができませんでした。後でもう一度お試しください。]],
["Feature.Chat.Drawer.ShowMore"] = [[さらに表示]],
["Feature.Chat.Drawer.ShowLess"] = [[表示を減らす]],
["Feature.Chat.Drawer.NoGames"] = [[ピン留め済みまたは進行中の体験はありません]],
["Feature.Chat.Drawer.Recommended"] = [[おすすめ]],
["Feature.Chat.Drawer.Loading"] = [[読み込み中]],
["Feature.Chat.Drawer.PinnedGame"] = [[ピン留め済み]],
["Feature.Chat.Drawer.Play"] = [[訪問]],
["Feature.Chat.Drawer.Join"] = [[参加]],
["Feature.Chat.Drawer.PlayGame"] = [[体験を訪問]],
["Feature.Chat.Drawer.PinGame"] = [[ピン留め]],
["Feature.Chat.Drawer.UnpinGame"] = [[ピンを外す]],
["Feature.Chat.Drawer.ViewDetails"] = [[詳細を表示]],
["Feature.Chat.Label.NoDescriptionYet"] = [[まだ詳細はありません。]],
["Feature.Chat.Message.GameLinkWasModerated"] = [[この体験へのリンクは、規制により送信されませんでした。]],
["Feature.Chat.ShareGameToChat.BrowseGames"] = [[閲覧]],
["Feature.Chat.ShareGameToChat.By"] = [[作:{creatorName}]],
["Feature.Chat.ShareGameToChat.Popular"] = [[人気]],
["Feature.Chat.ShareGameToChat.Recent"] = [[最近]],
["Feature.Chat.ShareGameToChat.Favorites"] = [[お気に入り]],
["Feature.Chat.ShareGameToChat.FriendActivity"] = [[友達のアクティビティ]],
["Feature.Chat.ShareGameToChat.NoPopularGames"] = [[人気の体験はありません]],
["Feature.Chat.ShareGameToChat.NoRecentGames"] = [[最近のものはありません]],
["Feature.Chat.ShareGameToChat.NoFavoriteGames"] = [[お気に入りはありません]],
["Feature.Chat.ShareGameToChat.NoFriendActivity"] = [[友達のアクティビティはありません]],
["Feature.Chat.ShareGameToChat.GameNotAvailable"] = [[利用できません]],
["Feature.Chat.ShareGameToChat.FailedToShareTheGame"] = [[体験をシェアできません。後でもう一度お試しください。]],
["Feature.Chat.Heading.ChatWithFriends"] = [[友達とチャット]],
["Feature.Chat.Action.StartChatWithFriends"] = [[チャット]],
["Feature.Chat.Action.Hello"] = [[こんにちは]],
["Feature.Chat.Label.UnsupportedMessageType"] = [[このメッセージを表示するには、アプリをアップデートしてください。]],
["Feature.Chat.Label.NotImplementedMessageType"] = [[メッセージを表示できませんでした。]],
["Feature.Chat.Feature.Chat.ConversationEntry.GameLinkPreview"] = [[http://www.roblox.com/games/...]],
["Feature.Chat.ConversationEntry.GameLinkPreview"] = [[http://www.roblox.com/games/...]],
["Feature.Chat.UnreadMessagesWidget"] = [[{NUMBER_OF_UNREAD_MESSAGES} 件は未開封です]],
["Feature.Chat.NoChatConversations"] = [[チャットなし]],
["Feature.Chat.Response.Failed"] = [[失敗]],
["Feature.Chat.Response.NetworkError"] = [[ネットワークエラー]],
["Feature.Chat.Label.UnknownUser"] = [[未知のユーザー]],
["Feature.Chat.Label.EditPrivacySettings"] = [[プライバシー設定の編集]],
["Feature.Chat.Message.OneUserTyping"] = [[{DISPLAY_NAME} さんが入力中です...]],
["Feature.Chat.Message.TwoUsersTyping"] = [[{DISPLAY_NAME_1} さんと {DISPLAY_NAME_2} さんが入力中です...]],
["Feature.Chat.Message.SeveralUsersTyping"] = [[何人かのユーザーが入力中...]],
["Feature.ContactMethodUpsell.Action.AddYourEmail"] = [[メールアドレスを追加]],
["Feature.ContactMethodUpsell.Description.HomePageUpsellCardAddEmailText"] = [[友達やアバター、Robuxへのアクセスをキープするには、メールアドレスを追加。]],
["Feature.DevSubs.UserManagement.ShowInactive"] = [[非アクティブなサブスクリプションを表示]],
["Feature.DevSubs.UserManagement.HideInactive"] = [[非アクティブなサブスクリプションを非表示にする]],
["Feature.DevSubs.UserManagement.MonthlyPrice"] = [[{robuxAmount} / 月]],
["Feature.DevSubs.Action.CancelSubscription"] = [[サブスクリプションをキャンセル]],
["Feature.DevSubs.Message.ConfirmCancellation"] = [[サブスクリプションをキャンセルしてよろしいですか?]],
["Feature.DevSubs.Label.RenewalDate"] = [[更新日: {date}]],
["Feature.DevSubs.Label.ExpirationDate"] = [[期限: {date}]],
["Feature.DevSubs.Label.DiscontinueDate"] = [[解約日: {date}]],
["Feature.DevSubs.Action.RenewSubscription"] = [[サブスクリプションを更新]],
["Feature.DevSubs.Label.ActiveSubscriptions"] = [[アクティブなサブスクリプション]],
["Feature.DevSubs.Label.InactiveSubscriptions"] = [[非アクティブなサブスクリプション]],
["Feature.Discussions.ChatInputBar.NoSendPermission"] = [[このチャンネルに投稿する権限がありません。]],
["Feature.DownloadApp.Heading.Warning"] = [[警告!]],
["Feature.EmptyStatePage.Message.NoInternet"] = [[インターネット接続がありません]],
["Feature.Favorites.Label.Favorite"] = [[お気に入り]],
["Feature.Favorites.Label.Favorited"] = [[お気に入りに登録済み]],
["Feature.Friends.Label.Friends"] = [[友達]],
["Feature.Friends.Action.Accept"] = [[承認する]],
["Feature.Friends.Action.Unfriend"] = [[友達解除]],
["Feature.Friends.Action.FindFriends"] = [[友達を見つける]],
["Feature.Friends.Label.SearchFriends"] = [[友達をサーチ]],
["Feature.Friends.Action.InviteProviderFriends"] = [[{provider} の友達を招待する]],
["Feature.Friends.Label.All"] = [[すべて]],
["Feature.Friends.Label.InGame"] = [[体験内]],
["Feature.Friends.Label.NoResults"] = [[結果が見つかりませんでした.]],
["Feature.Friends.Label.Inactive"] = [[停止中]],
["Feature.Friends.Action.Add"] = [[追加]],
["Feature.Friends.Label.Pending"] = [[保留中]],
["Feature.Friends.Label.SentFromWithContext"] = [[{gameName} から送信されました]],
["Feature.Friends.Action.IgnoreAllFriendRequestsPrompt"] = [[友達リクエストをすべて無視してよろしいですか?]],
["Feature.Friends.Label.Cancel"] = [[キャンセル]],
["Feature.Friends.Action.Apply"] = [[適用]],
["Feature.Friends.Heading.FilterBy"] = [[フィルタ条件]],
["Feature.Friends.Action.ShowMore"] = [[さらに表示]],
["Feature.Friends.Message.ViewAndConnectTooltip"] = [[友達リクエストを表示して、すでに知っている友達と繋がる。]],
["Feature.Friends.Message.AddFriendTooltip"] = [[ここを押して友達を追加]],
["Feature.Friends.Label.IgnoreAllDoesntIgnoreAll300"] = [[ご注意: これで「すべて無視」ボタンをクリックするたびに、最大で最近の300件の友達リクエストを削除します。]],
["Feature.Friends.Feature.Friends.Heading.AddFriends"] = [[友達を追加]],
["Feature.Friends.Feature.Friends.Heading.SearchFriends"] = [[友達をサーチ]],
["Feature.Friends.Feature.Friends.Footer.InviteOrAddFriends"] = [[すでに知り合いになっている友達を招待または追加。]],
["Feature.Friends.Feature.Friends.Label.InviteOrAddFriends"] = [[すでに知り合いになっている友達を招待または追加。]],
["Feature.Friends.Label.InviteOrAddFriends"] = [[すでに知り合いになっている友達を招待または追加。]],
["Feature.Friends.Action.AccountDeleted"] = [[アカウントが削除されました]],
["Feature.Friends.Action.FriendRemoved"] = [[友達が削除されました]],
["Feature.GameBadges.HeadingGameBadges"] = [[バッジ]],
["Feature.GameDetails.Label.By"] = [[作:]],
["Feature.GameDetails.Label.About"] = [[情報]],
["Feature.GameDetails.Label.Store"] = [[ストア]],
["Feature.GameDetails.Label.Leaderboards"] = [[リーダーボード]],
["Feature.GameDetails.Label.Servers"] = [[サーバー]],
["Feature.GameDetails.Heading.Description"] = [[詳細]],
["Feature.GameDetails.Label.Playing"] = [[アクティブ]],
["Feature.GameDetails.Label.Visits"] = [[訪問数]],
["Feature.GameDetails.Label.Created"] = [[作成日]],
["Feature.GameDetails.Label.Updated"] = [[アップデート済み]],
["Feature.GameDetails.Label.MaxPlayers"] = [[サーバーのサイズ]],
["Feature.GameDetails.Label.Genre"] = [[ジャンル]],
["Feature.GameDetails.Label.GameCopyLocked"] = [[この体験はコピーガードされています]],
["Feature.GameDetails.Label.ReportAbuse"] = [[規約違反を報告]],
["Feature.GameDetails.Heading.RecommendedGames"] = [[おすすめの体験]],
["Feature.GameDetails.Action.ShareGameToChat"] = [[チャットしてシェア]],
["Feature.GameDetails.Label.FavoriteButton"] = [[お気に入り]],
["Feature.GameDetails.Label.Developer"] = [[開発者]],
["Feature.GameDetails.Label.PassesAndGear"] = [[パスとギア]],
["Feature.GameDetails.Heading.PurchaseGame"] = [[この体験をアンロック]],
["Feature.GameDetails.Action.Unlock"] = [[アンロック]],
["Feature.GameDetails.Action.BuyRobux"] = [[Robuxを購入]],
["Feature.GameDetails.Message.PurchaseGame"] = [[{gameName}へのアクセスをR${X}でアンロックしますか?]],
["Feature.GameDetails.Message.BuyMoreRobuxToPurchaseGame"] = [[{gameName} へのアクセスをアンロックするには、あと R${shortfallPrice} のRobuxが必要です。Robuxを買い足しますか?]],
["Feature.GameDetails.Label.Sessions"] = [[セッション]],
["Feature.GameDetails.Label.Votes"] = [[{votes} 票]],
["Feature.GameDetails.Action.InviteFriends"] = [[友達を招待]],
["Feature.GameDetails.Action.Report"] = [[報告する]],
["Feature.GameDetails.Label.Follow"] = [[フォロー]],
["Feature.GameDetails.Label.Followed"] = [[フォローしました]],
["Feature.GameDetails.Heading.Recommended"] = [[おすすめ]],
["Feature.GameDetails.Message.LeaveRobloxForAnotherSite"] = [[Robloxを終了して、別のプライバシーポリシーで管理された別サイトに移動しようとしています。]],
["Feature.GameDetails.Message.LeaveRobloxInquiry"] = [[Robloxを終了しますか?]],
["Feature.GameDetails.Action.Continue"] = [[続ける]],
["Feature.GameDetails.Label.Group"] = [[グループ]],
["Feature.GameDetails.Message.BuyMoreRobuxToPurchaseGameV2"] = [[{gameName} へのアクセスをアンロックするには、あと {shortfallPrice} のRobuxが必要です。Robuxを買い足しますか?]],
["Feature.GameDetails.Message.PurchaseGameV2"] = [[{gameName} へのアクセスを {X} Robux でアンロックしますか?]],
["Feature.GameDetails.CreatePrivateGame"] = [[プライベートゲームを作成]],
["Feature.GameDetails.Action.CreatePrivateGame"] = [[プライベートサーバーを作成]],
["Feature.GameDetails.Action.JoinFriendsInGame"] = [[友達に参加]],
["Feature.GameDetails.Heading.YouMightAlsoLike"] = [[あなたへのおすすめ]],
["Feature.GameDetails.Label.GenreAll"] = [[すべて]],
["Feature.GameDetails.Label.GenreBuilding"] = [[建築]],
["Feature.GameDetails.Label.LabelGenreHorror"] = [[ホラー]],
["Feature.GameDetails.Label.LabelGenreTownAndCity"] = [[都市開発]],
["Feature.GameDetails.Label.GenreMilitary"] = [[ミリタリー]],
["Feature.GameDetails.Label.GenreComedy"] = [[コメディ]],
["Feature.GameDetails.Label.GenreMedieval"] = [[中世]],
["Feature.GameDetails.Label.GenreAdventure"] = [[アドベンチャー]],
["Feature.GameDetails.Label.GenreSciFi"] = [[SF]],
["Feature.GameDetails.Label.GenreNaval"] = [[海軍]],
["Feature.GameDetails.Label.GenreFPS"] = [[FPS]],
["Feature.GameDetails.Label.GenreRPG"] = [[RPG]],
["Feature.GameDetails.Label.LabelGenreSports"] = [[スポーツ]],
["Feature.GameDetails.Label.GenreFighting"] = [[格闘]],
["Feature.GameDetails.Label.GenreWestern"] = [[ウエスタン]],
["Feature.GameDetails.Label.Rating"] = [[レーティング]],
["Feature.GameDetails.Label.VotesNoTotal"] = [[このゲームに賛成票を入れました]],
["Feature.GameDetails.Message.ExternalLinkWarning"] = [[「続ける」をクリックすると、Robloxが所有、管理していないサイトに移動します。Robloxとは異なる利用規約やプライバシーポリシーが適用される場合があります。]],
["Feature.GameDetails.Message.LeavingRobloxTitle"] = [[Robloxではないサイトに移動中]],
["Feature.GameDetails.Label.ContentRating"] = [[コンテンツレーティング]],
["Feature.GameDetails.Label.VoiceEnabled"] = [[ボイス有効化済み]],
["Feature.GameDetails.Label.Yes"] = [[はい]],
["Feature.GameDetails.Label.No"] = [[いいえ]],
["Feature.GameFollows.TooltipFollowLimitReached"] = [[上限に到達しました。ほかの体験のフォロー解除をしてこちらをフォローしてください。]],
["Feature.GameGear.Heading.GearForThisGame"] = [[ギア]],
["Feature.GameLeaderboard.Label.Clans"] = [[クラン]],
["Feature.GameLeaderboard.Heading.Clans"] = [[クラン]],
["Feature.GameLeaderboard.Heading.Players"] = [[人]],
["Feature.GameLeaderboard.Label.NoResults"] = [[結果が見つかりませんでした]],
["Feature.GamePage.LabelPlayingPhrase"] = [[{playerCount} 人が訪問中]],
["Feature.GamePage.ActionSeeAll"] = [[すべて見る]],
["Feature.GamePage.LabelNoSearchResults"] = [[結果が見つかりませんでした]],
["Feature.GamePage.LabelCancelField"] = [[キャンセル]],
["Feature.GamePage.LabelShowingResultsFor"] = [[以下の結果を表示中:]],
["Feature.GamePage.LabelSearchInsteadFor"] = [[元の検索ワード:]],
["Feature.GamePage.LabelSearchYouMightMean"] = [[次の検索結果を表示しています:]],
["Feature.GamePage.Label.Sponsored"] = [[スポンサー付き]],
["Feature.GamePage.Message.EndOfList"] = [[最後まで到達しました!]],
["Feature.GamePage.Action.BackToTop"] = [[トップに戻る]],
["Feature.GamePage.LabelFilterMyFavorites"] = [[あなたのお気に入り]],
["Feature.GamePage.LabelFilterRecentlyPlayed "] = [[最近プレイしたもの]],
["Feature.GamePage.QuickLaunch.ViewDetails"] = [[タップしてゲームの詳細を表示。]],
["Feature.GamePage.QuickLaunch.LaunchError.RequestFailed"] = [[ネットワークのリクエストが失敗しました。]],
["Feature.GamePage.QuickLaunch.LaunchError.UnplayableOtherReason"] = [[不明なエラーが発生しました。]],
["Feature.GamePage.QuickLaunch.LaunchError.GuestProhibited"] = [[ゲストはこの体験に参加できません。]],
["Feature.GamePage.QuickLaunch.LaunchError.GameUnapproved"] = [[この体験は承認されていません。]],
["Feature.GamePage.QuickLaunch.LaunchError.UniverseRootPlaceIsPrivate"] = [[この体験はプライベート設定になっています。]],
["Feature.GamePage.QuickLaunch.LaunchError.InsufficientPermissionFriendsOnly"] = [[この体験のプレイを許可されていません。]],
["Feature.GamePage.QuickLaunch.LaunchError.InsufficientPermissionGroupOnly"] = [[この体験のプレイを許可されていません。]],
["Feature.GamePage.QuickLaunch.LaunchError.DeviceRestricted"] = [[この体験はお持ちのデバイスではプレイできません。]],
["Feature.GamePage.QuickLaunch.LaunchError.UnderReview"] = [[この体験は現在レビュー中です。]],
["Feature.GamePage.QuickLaunch.LaunchError.PurchaseRequired"] = [[この体験を訪問するには購入が必要です。]],
["Feature.GamePage.QuickLaunch.LaunchError.AccountRestricted"] = [[アカウントが制限されています。]],
["Feature.GamePage.QuickLaunch.LaunchError.TemporarilyUnavailable"] = [[現在、この体験は訪問できません。]],
["Feature.GamePage.LabelSearchInsteadForPlayersNamed"] = [[代わりに以下の人の名前でサーチ:]],
["Feature.GamePage.ActionSeeAllGameSort"] = [[{gameSort} をすべて見る]],
["Feature.GamePage.Action.SeeAllSearchResults"] = [[すべてのサーチ結果を見る]],
["Feature.GamePass.Heading.PassesForThisGame"] = [[パス]],
["Feature.GenreExplorer.Heading.Categories"] = [[カテゴリ]],
["Feature.Groups.Message.UnkownError"] = [[不明なエラーが発生しました。]],
["Feature.Home.HeadingFriends"] = [[友達({friendCount} 人)]],
["Feature.Home.ActionSeeAll"] = [[すべて見る]],
["Feature.Home.Action.ViewMyFeed"] = [[マイフィードを表示]],
["Feature.Home.PeopleList.ChatWith"] = [[{username} さんとチャット]],
["Feature.Home.PeopleList.AddNearbyFriendTip"] = [[友達と一緒にRobloxをもっと楽しもう!]],
["Feature.Home.Robux"] = [[Robux]],
["Feature.Home.Message.NoChallenges"] = [[チャレンジはありません]],
["Feature.Home.Message.NoItems"] = [[アイテムなし]],
["Feature.Home.AddFriendHintTitle"] = [[ここを押して友達を追加!]],
["Feature.Home.AddProviderFriendHintTitle"] = [[ここを押して {provider} の友達を追加!]],
["Feature.Home.Label.AvatarItemRecommendations"] = [[あなたのためのアバターアイテム]],
["Feature.IdVerification.Label.PIIAgreement"] = [[個人情報規約]],
["Feature.IdVerification.Label.PIITransfer"] = [[個人情報移転]],
["Feature.IdVerification.Label.AgreeTerms"] = [[利用規約に同意して、プライバシーポリシーを承認する]],
["Feature.IdVerification.Action.BankAccount"] = [[銀行口座]],
["Feature.IdVerification.Action.Phone"] = [[電話]],
["Feature.IdVerification.Action.IPIN"] = [[I PIN]],
["Feature.IdVerification.Heading.SignupHaveFun"] = [[新規登録して楽しもう!]],
["Feature.IdVerification.Heading.AgreeTerms"] = [[以下のすべてに同意してください:]],
["Feature.IdVerification.Description.ChooseOption"] = [[以下のオプションから1つを選んでください:]],
["Feature.IdVerification.Label.AgreeTermsWithLink"] = [[{termsOfUseLink} に同意して、{privacyPolicyLink} を承認する]],
["Feature.IdVerification.Description.TermsOfUse"] = [[利用規約]],
["Feature.IdVerification.Description.PrivacyPolicy"] = [[プライバシーポリシー]],
["Feature.IdVerification.Heading.ParentalConsentAgreement"] = [[私は提示されたユーザーの両親、または法的保護者で以下に同意します。]],
["Feature.IdVerification.Description.PersonalInfoForUser"] = [[ご自分以外の方のためにRobloxに新規登録する場合は、以下でユーザーご本人の生年月日と性別を使ってください。]],
["Feature.IdVerification.Description.ParentChooseOption"] = [[保護者に以下のオプションから1つを選んでもらってください。]],
["Feature.IdVerification.Description.ChooseIdentityOptions"] = [[本人確認のために以下から方法を一つ選んでください。]],
["Feature.IdVerification.Description.ParentChooseIdentityOptions"] = [[保護者に以下のオプションから1つを選んでもらってください。]],
["Feature.IdVerification.Heading.LeavingRoblox"] = [[Robloxではないサイトに移動中]],
["Feature.IdVerification.Action.Continue"] = [[続ける]],
["Feature.IdVerification.Heading.Thankyou"] = [[ありがとうございます!]],
["Feature.IdVerification.Description.KCBRedirectionDescription"] = [[ロブロクシアンの皆さまへのご注意 - 「続ける」をクリックすると、第三者ID認証ウェブサイトにリダイレクトされます。そのウェブサイトは、Robloxの関連企業ではなく、Robloxは所有も運営もしておらず、そのウェブサイト上で提供されるサービスには、第三者サービスの別途の利用規約と条件が適用されます。]],
["Feature.IdVerification.Description.VerificationNotComplete"] = [[システムが本人確認書類を認証できませんでした。もう一度お試しください]],
["Feature.IdVerification.Title.VerificatonError"] = [[認証エラー]],
["Feature.IdVerification.Action.TryAgain"] = [[再試行]],
["Feature.IdVerification.Action.StartVerification"] = [[認証を開始]],
["Feature.IdVerification.Title.VerificationRequired"] = [[認証が必要です]],
["Feature.IdVerification.Title.VerificationError"] = [[認証エラー]],
["Feature.IdVerification.Description.VerificationRequired"] = [[続けるには、本人確認をしてください]],
["Feature.Moderation.Title.Ban1Day"] = [[1日間アクセス禁止にされました]],
["Feature.Moderation.Title.Ban3Day"] = [[3日間アクセス禁止にされました]],
["Feature.Moderation.Feature.Moderation.Title.Ban7Day"] = [[7日間アクセス禁止にされました]],
["Feature.Moderation.Title.Ban7Day"] = [[7日間アクセス禁止にされました]],
["Feature.Moderation.Title.Ban14Day"] = [[14日間アクセス禁止にされました]],
["Feature.Moderation.Title.Delete"] = [[アカウントが削除されました]],
["Feature.Moderation.Action.Reactivate"] = [[アカウントを再有効化する]],
["Feature.Moderation.Action.Agree"] = [[同意する]],
["Feature.Moderation.Link.CommunityGuidelines"] = [[Robloxコミュニティガイドライン]],
["Feature.Moderation.Link.TermsOfUse"] = [[利用規約]],
["Feature.Moderation.Link.SupportForm"] = [[サポートフォーム]],
["Feature.Moderation.Messages.SubTitle"] = [[コンテンツ審査スタッフがあなたのRobloxでの言動を当社の利用規約に違反していると判断しました。]],
["Feature.Moderation.Messages.ReviewedTitle"] = [[審査済み]],
["Feature.Moderation.Messages.ModeratorNoteTitle"] = [[モデレータの記録]],
["Feature.Moderation.Messages.CommunityGuideline"] = [[Robloxをあらゆる年齢のユーザーにとって楽しいものにするために、Robloxコミュニティガイドラインに従ってください。]],
["Feature.Moderation.Messages.ReactivateAgreement"] = [[以下に同意することで、お持ちのアカウントを再有効化できます:]],
["Feature.Moderation.Messages.AccountDisabledUntil"] = [[アカウントが停止されました。 以下を実行すれば、再有効化できます:]],
["Feature.Moderation.Messages.AccountTerminated"] = [[アカウントは強制終了されました。]],
["Feature.Moderation.Messages.Appeal"] = [[もし、異議申し立てを希望する場合は、サポートフォームからご連絡ください。]],
["Feature.Moderation.Title.Warn"] = [[警告]],
["Feature.Moderation.Title.Ban"] = [[アカウントが停止処分済みです]],
["Feature.PlacesList.Label.GenreExplorerName"] = [[カテゴリ]],
["Feature.PlayerSearchResults.Heading.PlayerResultsFor"] = [[{startSpan}{keyword}{endSpan} の人物検索結果]],
["Feature.PlayerSearchResults.Label.NoMatchesAvailable"] = [[「{keyword}」に該当するものはありません]],
["Feature.PlayerSearchResults.Label.EnterMinCharacters"] = [[{keywordMinLength}文字以上入力してください。]],
["Feature.PlayerSearchResults.Label.UnsafeInput"] = [[安全でない入力がありました。もう一度検索してください。]],
["Feature.PlayerSearchResults.Label.ShowingCountOfResults"] = [[{countStartSpan}{resultsStart} - {resultsInPage}/{countEndSpan}{totalStartSpan}{totalResults}{totalEndSpan}]],
["Feature.PlayerSearchResults.Label.AlsoKnownAsAbbreviation"] = [[以前のユーザーネーム]],
["Feature.PlayerSearchResults.Label.ThisIsYou"] = [[これがあなたです]],
["Feature.PlayerSearchResults.Label.YouAreFriends"] = [[友達になりました]],
["Feature.PlayerSearchResults.Label.YouAreFollowing"] = [[フォローしています]],
["Feature.PlayerSearchResults.Action.AddFriend"] = [[友達を追加]],
["Feature.PlayerSearchResults.Action.AcceptRequest"] = [[リクエストを承認する]],
["Feature.PlayerSearchResults.Action.RequestSent"] = [[リクエストを送信しました]],
["Feature.PlayerSearchResults.Action.Chat"] = [[チャット]],
["Feature.PlayerSearchResults.Action.JoinGame"] = [[参加]],
["Feature.PlayerSearchResults.Label.Search"] = [[サーチ]],
["Feature.PlayerSearchResults.Label.NoResultsFound"] = [[結果が見つかりませんでした]],
["Feature.PlayerSearchResults.Label.KeywordTooShort"] = [[少なくとも3文字入力してください]],
["Feature.Premium.Label.RobloxPremium450"] = [[Roblox Premium 450]],
["Feature.Premium.Label.RobloxPremium1000"] = [[Roblox Premium 1000]],
["Feature.Premium.Label.RobloxPremium450OneMonth"] = [[Roblox Premium 450 一ヶ月]],
["Feature.Premium.Label.RobloxPremium1000OneMonth"] = [[Roblox Premium 1000 一ヶ月]],
["Feature.Premium.Label.RobloxPremium2200OneMonth"] = [[Roblox Premium 2200 一ヶ月]],
["Feature.Premium.Label.RobloxPremium2200"] = [[Roblox Premium 2200]],
["Feature.Premium.Label.PremiumPlanName"] = [[Premium {type}]],
["Feature.Premium.Label.AmountPerMonth"] = [[{amount}{subTextStart}/月額{subTextEnd}]],
["Feature.PremiumMigration.PopUp.Title"] = [[Builders Clubは現在はRobloxプレミアムです]],
["Feature.PremiumMigration.PopUp.Body"] = [[これからは、サブスクリプション契約者は一日ごとのRobux額ではなく、一ヶ月ごとのご利用額を一度にお渡しします。今日は、お持ちのアカウントに今月お渡しする予定だった残りの {robuxAmount} Robuxをお支払いします。
詳しくは、Roblox受信トレイをチェックしてください。]],
["Feature.PremiumMigration.Feature.PremiumMigration.Description.Body"] = [[これからは、サブスクリプション契約者は一日ごとのRobux額ではなく、一ヶ月ごとのご利用額を一度にお渡しします。今日は、お持ちのアカウントに今月お渡しする予定だった残りの {robuxAmount} Robuxをお支払いします。
詳しくは、Roblox受信トレイをチェックしてください。]],
["Feature.PremiumMigration.Feature.PremiumMigration.Heading.Title"] = [[Builders Clubは現在はRobloxプレミアムです]],
["Feature.PremiumMigration.Description.Body"] = [[これからは、一日ごとのRobux額ではなく、サブスクリプション更新日に一ヶ月ごとにご利用できる総額を一度にお渡しします。今日は、お持ちのアカウントに今月お渡しする予定だった額をお支払いします:R${robuxAmount}。
詳しくは、Roblox受信トレイをチェックしてください。]],
["Feature.PremiumMigration.Heading.Title"] = [[Builders Clubは現在はRobloxプレミアムです]],
["Feature.PremiumMigration.Heading.WebviewTitle"] = [[Robloxプレミアム]],
["Feature.PremiumMigration.Description.BodyV2"] = [[これからは、サブスクリプション更新日に一ヶ月分のRobux総額をお渡しします。今日は今月分のRobuxから今月すでに受け取った額を差し引いたものをお渡しします:{robuxAmount} Robux。
詳しくは、Roblox受信トレイをチェックしてください。]],
["Feature.PremiumUpsell.Label.PremiumBenefitListDesc"] = [[Roblox Premiumについてくるもの:]],
["Feature.PremiumUpsell.Label.RobuxPerMonth"] = [[毎月{robux} Robux]],
["Feature.PremiumUpsell.Label.PremiumOnlyBenefits"] = [[Premium限定特典にアクセス]],
["Feature.PremiumUpsell.Label.AvatarShopBenefits"] = [[アバターショップで限定アイテムと割引済みアイテムにアクセス]],
["Feature.PremiumUpsell.Title.GetPremium"] = [[Premiumをゲット]],
["Feature.PremiumUpsell.Action.RobuxPerMonth"] = [[{currencySymbol}{robux}/月]],
["Feature.PremiumUpsell.Label.Disclosure"] = [[サブスクリプション契約を <b>{currencySymbol}{price}/毎月で申し込む。いつでもキャンセルできます。</b> Robloxの利用規約とプライバシーポリシーが適用されます。]],
["Feature.PremiumUpsell.Action.Subscribe"] = [[定期購入する]],
["Feature.PrivateServers.Heading.VipServers"] = [[VIPサーバー]],
["Feature.Profile.Label.About"] = [[情報]],
["Feature.PromotedChannels.Message.SocialLinkoffPlatformModalTitle"] = [[Robloxではないサイトに移動中]],
["Feature.PromotedChannels.Message.SocialLinkoffPlatformModalBody"] = [[ロブロクシアンの皆さまへお知らせ – 「続ける」をクリックすると、Robloxが所有や運営をしていない小売ウェブサイトへリダイレクトされます。それらのサイトには異なる規約やプライバシーポリシーがあるかもしれません。{lineBreak} ネット上で商品を購入するには、18歳以上であることが必須となりますのでご注意ください。またのご利用をお待ちしております!]],
["Feature.PromotedChannels.Message.SocialLinkoffPlatformModalContinueButtonText"] = [[続ける]],
["Feature.PromotedChannels.Message.SocialLinkoffPlatformModalCancelButtonText"] = [[キャンセル]],
["Feature.Screentime.Description.TimeWarning"] = [[警告: 過剰な体験の使用は日常生活に支障をきたすことがあります。Roblox上で {NumberOfHours} 時間プレイしました。]],
["Feature.Screentime.Description.CurfewMessage"] = [[今回は、Robloxを訪問できません。
両親か保護者の方が設定の中にある保護者コントロールで追加規制時間を変更することができます。]],
["Feature.Screentime.Description.HeartbeatConsecutiveFailure"] = [[内部エラーです。ログインし直してください。]],
["Feature.ServerList.Heading.OtherServers"] = [[その他のサーバー]],
["Feature.ServerList.Heading.ServersMyFriendsAreIn"] = [[友達のいるサーバー]],
["Feature.ShopDialog.Heading.LeavingRoblox"] = [[Robloxではないサイトに移動中]],
["Feature.ShopDialog.Action.Cancel"] = [[キャンセル]],
["Feature.ShopDialog.Description.AgeWarning"] = [[オンラインで商品を買うには、18歳以上である必要があります。AmazonストアはRoblox.comのサイトの一部でないため、別のプライバシーポリシーで管理されています。]],
["Feature.ShopDialog.Description.AmazonRedirect"] = [[当社のAmazonストアにアクセスしようとしています。{shopLink}でRobloxの商品ストアに移動します。]],
["Feature.ShopDialog.Description.RetailWebsiteRedirect"] = [[Robloxご利用者へのお知らせ – 「続ける」をクリックすると、Robloxが所有、管理していない販売用サイトに移動します。Robloxとは異なる利用規約やプライバシーポリシーが適用される場合があります。]],
["Feature.ShopDialog.Description.PurchaseAgeWarning"] = [[オンラインで商品を買うには、18歳以上である必要があります。またのご利用をお待ちしています!]],
["Feature.ShopDialog.Action.Continue"] = [[続ける]],
["Feature.ShopDialog.Description.WebsiteRedirect"] = [[ご注意:「続ける」をクリックすると、Robloxによって所有、運営、またはコントロールされていない第三者のウェブサイトにリダイレクトされます。当社はそのような第三者のウェブサイトのプライバシーやセキュリティ慣行に責任を持ちません。そのようなサイト上のプライバシー慣行を知るには各サイトのプライバシーポリシーをご参照ください。]],
["Feature.SocialShare.Action.Share"] = [[シェア]],
["Feature.SocialShare.Action.Redirect"] = [[リダイレクト中...]],
["Feature.SocialShare.Response.Error"] = [[何らかの問題が発生しました。]],
["Feature.SocialShare.Response.Error.Subtext"] = [[また後でお試しください。]],
["Feature.SocialTab.Label.Chats"] = [[チャット]],
["Feature.SocialTab.Label.Social"] = [[ソーシャル]],
["Feature.SocialTab.Label.Groups"] = [[グループ]],
["Feature.SocialTab.Label.AddFriendHint"] = [[ここを押して友達を追加]],
["Feature.SocialTab.Label.AddFriendHintBody"] = [[友達を追加してRobloxを楽しもう!]],
["Feature.SocialTab.Label.Connect"] = [[接続]],
["Feature.SocialTab.Label.ConfirmSendFriendRequest"] = [[このユーザーに友達リクエストを送信しますか?]],
["Feature.SupportAStar.Description.Tooltip"] = [[Star Codeを入力して、お気に入りのVideo Starをサポートしよう!購入額の5%がスターに支払われますが、支払ったRobuxをキープできます。]],
["Feature.SupportAStar.Label.TapHere"] = [[ここをタップ]],
["Feature.SupportAStar.Label.TapHere2"] = [[してStar Codeを追加]],
["Feature.SupportAStar.Heading.SupportAStar"] = [[スターをサポート]],
["Feature.SupportAStar.Label.InputFieldPlaceholder"] = [[「Star Codeを入力」]],
["Feature.SupportAStar.Error.InvalidCode"] = [[無効なコード]],
["Feature.SupportAStar.Label.Submit"] = [[追加]],
["Feature.SupportAStar.Label.Supporting"] = [[サポート中なのは]],
["Feature.SupportAStar.Label.Remove"] = [[削除]],
["Feature.Toast.NetworkingError.UnableToConnect"] = [[接続できませんでした。後でもう一度お試しください。]],
["Feature.Toast.NetworkingError.SomethingIsWrong"] = [[問題が発生しました。もう一度お試しください。]],
["Feature.Toast.NetworkingError.Unauthorized"] = [[ログアウトされました。もう一度ログインしてください。]],
["Feature.Toast.NetworkingError.Forbidden"] = [[権限がありません。]],
["Feature.Toast.NetworkingError.NotFound"] = [[コンテンツが見つかりませんでした。]],
["Feature.Toast.NetworkingError.Timeout"] = [[タイムアウトしました。もう一度お試しください]],
["Feature.Toast.NetworkingError.TooManyRequests"] = [[サーバーが混雑しています。後でもう一度お試しください。]],
["Feature.Toast.NetworkingError.ServiceUnavailable"] = [[サービスが利用できません。後でもう一度お試しください。]],
["Feature.Toast.Heading.PurchaseMessage.Success"] = [[アンロック済み]],
["Feature.Toast.Message.PurchaseMessage.Success"] = [[{gameName}へのアクセスをR${price}でアンロックしました。]],
["Feature.Toast.VoteError.PlayGame"] = [[評価する前に、この体験を訪問することが必須です。]],
["Feature.Toast.VoteError.FloodCheckThresholdMet"] = [[頻繁に投票しすぎです。]],
["Feature.Toast.VoteError.AssetNotVoteable"] = [[体験には投票できません。]],
["Feature.Toast.VoteError.Default"] = [[動作が利用できません。]],
["Feature.Toast.Message.PurchaseMessage.SuccessV3"] = [[{gameName} へのアクセスを {price} Robuxでアンロックしました。]],
["Feature.Toast.RequestFriendError.AlreadyFriends"] = [[このユーザーとはすでに友達です。]],
["Feature.Toast.RequestFriendError.BefriendOneself"] = [[自分自身を友達として追加はできません。]],
["Feature.Toast.RequestFriendError.DuplicateRequest"] = [[このユーザーには保留中の友達リクエストがすでにあります。]],
["Feature.Toast.RequestFriendError.UnknownUser"] = [[未知のユーザー]],
["Feature.Toast.ScanQrCodeError.InvalidQrCode"] = [[QRコードが無効です]],
["Feature.Toast.ScanQrCodeError.UnrecognizableQrCode"] = [[QRコードが認識できません。もう一度お試しください。]],
["Feature.VerificationUpsell.Heading.AddEmail"] = [[まず、アカウントを認証してください]],
["Feature.VerificationUpsell.Heading.VerifyEmail"] = [[メールをチェックしてください]],
["Feature.VerificationUpsell.Description.AddEmailTextOver13"] = [[購入を続けるには、メールアドレスを追加してください。]],
["Feature.VerificationUpsell.Description.AddEmailTextUnder13"] = [[購入を続けるには、保護者のメールアドレスを追加してもらってください。]],
["Feature.VerificationUpsell.Label.EmailInputPlaceholder"] = [[あなたのメールアドレス]],
["Feature.VerificationUpsell.Label.EmailInputPlaceholderUnder13"] = [[保護者のメールアドレス]],
["Feature.VerificationUpsell.Label.EmailInputPlaceholderOver13"] = [[あなたのメールアドレス]],
["Feature.VerificationUpsell.Action.Continue"] = [[続ける]],
["Feature.VerificationUpsell.Description.EnterPassword"] = [[パスワードを入力して下さい。]],
["Feature.VerificationUpsell.Label.PasswordInputPlaceholder"] = [[アカウントのパスワードの確認]],
["Feature.VerificationUpsell.Description.VerifyEmailBody"] = [[当社から{emailAddress} に送信した確認メールにあるリンクをクリックしてください。]],
["Feature.VerificationUpsell.Action.SendConfirmationEmail"] = [[確認メールを送信]],
["Feature.VerificationUpsell.Action.ResendConfirmationEmail"] = [[確認メールを再送信]],
["Feature.VerificationUpsell.Message.InvalidEmailAddress"] = [[メールアドレスが無効です。]],
["Feature.VerificationUpsell.Message.WrongPassword"] = [[パスワードが間違っています。もう一度お試しください。]],
["Feature.VerificationUpsell.Message.ConfirmationEmailNotSent"] = [[確認メールが送信されませんでした。後でもう一度お試しください。]],
["Feature.VerificationUpsell.Action.ChangeEmail"] = [[メールアドレスの変更]],
["Feature.VerificationUpsell.Action.Sent"] = [[送信済み]],
["Feature.VerificationUpsell.Description.LogoutAddEmailTextOver13"] = [[アクセス拒否されないように、ログアウトする前にメールアドレスを登録してください。]],
["Feature.VerificationUpsell.Description.LogoutAddEmailTextUnder13"] = [[アクセス拒否されないように、ログアウトする前に保護者のメールアドレスを登録してください。]],
["Feature.VerificationUpsell.Heading.VerifyOnLogout"] = [[アクセス拒否されないように注意!]],
["Feature.VerificationUpsell.Action.Logout"] = [[飛ばす。とにかくログアウトする]],
["Feature.VerificationUpsell.Action.GenericSkip"] = [[飛ばす]],
["Feature.VerificationUpsell.Description.IDVerificationAddEmailText"] = [[年齢確認の前にメールアドレスを入力してください。これは、お持ちのアカウントにアクセスできなくなったときのための復元手段となります。 ]],
["Feature.VerificationUpsell.Action.ChangeNumber"] = [[番号を変更]],
["Feature.VerificationUpsell.Action.Edit"] = [[編集]],
["Feature.VerificationUpsell.Action.Ok"] = [[OK]],
["Feature.VerificationUpsell.Action.UserEmail"] = [[代わりにメールアドレスを使用]],
["Feature.VerificationUpsell.Label.EnterCode"] = [[{phoneNumber} に送信されたコードを入力]],
["Feature.VerificationUpsell.Label.VerifyPhoneNumber"] = [[電話番号を認証]],
["Feature.VerificationUpsell.Message.Confirmation"] = [[認証コードを {phoneNumber} にテキスト送信します。SMS利用料金が発生する場合があります。]],
["Feature.VerificationUpsell.Action.Verify"] = [[認証]],
["Feature.VerificationUpsell.Action.ResendCode"] = [[コードを再送信]],
["Feature.VerificationUpsell.Action.UseEmail"] = [[代わりにメールアドレスを使用]],
["Feature.VerificationUpsell.Message.InvalidSmsCode"] = [[名前が無効です。]],
["Feature.VerificationUpsell.Response.PhoneNumberAlreadyLinked"] = [[この番号はすでに他のアカウントと関連付けられています。]],
["Feature.VerificationUpsell.Response.TooManyVerificationAttemps"] = [[試行回数が多すぎます。数分後にもう一度お試しください。]],
["Feature.VerificationUpsell.Response.TooManyVerificationAttempts"] = [[試行回数が多すぎます。数分後にもう一度お試しください。]],
["Feature.VerificationUpsell.Action.AddYourEmail"] = [[メールアドレスを追加]],
["Feature.VerificationUpsell.Description.HomePageUpsellCardAddEmailText"] = [[友達やアバター、Robuxへのアクセスをキープするには、メールアドレスを追加。]],
["Game.Launch.IDS_ROBLOX_INSTALLED"] = [[Robloxが正常にインストールされました!]],
["Game.Launch.IDS_ROBLOX_TOPLAY"] = [[いずれかの体験に参加するには、「訪問」ボタンをクリック!]],
["Game.Launch.IDS_STUDIO_SUCCESS1"] = [[Roblox Studioが正常にインストールされました!]],
["Game.Launch.IDS_STUDIO_SUCCESS2"] = [[新しい体験を作成するには、「Studioを起動」をクリック!]],
["Game.Launch.IDS_ROBLOX_DOWNLOAD"] = [[Robloxのダウンロードとインストール]],
["Game.Launch.IDS_CHECKING_FILE"] = [[ファイルチェックを実行中...]],
["Game.Launch.IDS_FILE_CHECKED"] = [[ファイルチェックが完了]],
["Game.Launch.IDS_ROBLOX_STARTING"] = [[%sを開始中...]],
["Game.Launch.IDS_ROBLOX_UPTODATE"] = [[%s は最新です]],
["Game.Launch.IDS_ROBLOX_UPGRADING"] = [[%s をアップグレード中...]],
["Game.Launch.IDS_ROBLOX_INSTALLING"] = [[%s をインストール中...]],
["Game.Launch.IDS_ROBLOX_CONNECTING"] = [[%s に接続中...]],
["Game.Launch.IDS_BOOTS_ASK_DOWNLOAD"] = [[最新のブートストラッパーをダウンロードしますか?]],
["Game.Launch.IDS_BOOTS_GET_LATEST"] = [[最新の%sを取得中...]],
["Game.Launch.IDS_PLEASE_WAIT"] = [[お待ちください...]],
["Game.Launch.IDS_BOOTS_SHUTDOWN"] = [[%s をシャットダウン中]],
["Game.Launch.IDS_ROBLOX_UNINSTALLING"] = [[%sをアンインストール中...]],
["Game.Launch.IDS_ROBLOX_UNINSTALLED"] = [[%sをアンインストールしました]],
["Game.Launch.IDS_BOOTS_CONFIGURING"] = [[%s を設定中...]],
["IAPExperience.Text.Test"] = [[テスト用テキスト]],
["IAPExperience.Text.Test2"] = [[テスト用テキスト2]],
["IAPExperience.PurchasePrompt.Title.BuyItem"] = [[アイテムを購入]],
["IAPExperience.PurchasePrompt.Text.BuyItemQuestion"] = [[「{name}」を購入しますか?]],
["IAPExperience.PurchasePrompt.Text.RemainingBalance"] = [[取引後の残高:]],
["IAPExperience.PurchasePrompt.Action.Cancel"] = [[キャンセル]],
["IAPExperience.PurchasePrompt.Text.TestPurchase"] = [[これはテスト購入です。お持ちのアカウントには課金されません。]],
["IAPExperience.PurchasePrompt.Text.RemainingBalanceV2"] = [[この取引後の残高は {robux} になります]],
["IAPExperience.RobuxUpsell.Title.InsufficientFunds"] = [[資金が足りません]],
["IAPExperience.RobuxUpsell.Text.BuyRobuxQuestion"] = [[以下を購入しますか:]],
["IAPExperience.RobuxUpsell.Text.DisclosurePayment"] = [[あなたの支払い方法に課金されます。]],
["IAPExperience.RobuxUpsell.Text.DisclosureTerms"] = [[Roblox利用規約が適用されます。]],
["IAPExperience.RobuxUpsell.Text.RemainingBalance"] = [[残りの {robux} が残高に加算されます。]],
["IAPExperience.RobuxUpsell.Action.Cancel"] = [[キャンセル]],
["IAPExperience.RobuxUpsell.Action.BuyRobux"] = [[Robuxを購入]],
["IAPExperience.RobuxUpsell.Text.BuyRobuxQuestionV2"] = [[{name} を購入しますか?]],
["InGame.InspectMenu.Label.NoResellers"] = [[再販者がいません]],
["InGame.PlayerList.Leaderboard"] = [[リーダーボード]],
["Luobu.Authentication.Login.Label.AntiAddictionText"] = [[該当なし]],
["Luobu.Authentication.Login.Label.NetworkLicense"] = [[該当なし]],
["Search.GlobalSearch.Example.SearchCatalog"] = [[カタログをサーチ]],
["Search.GlobalSearch.Example.SearchGames"] = [[サーチ]],
["Verification.Identity.Heading.VerifyAge"] = [[年齢を確認]],
["Verification.Identity.Label.VerifyAgeInfo"] = [[あなたが共有するすべての情報は、ご自分だけが見れるように表示されています。これは、年齢確認のためだけに使用されます。あなたが18歳以上であることを確認することで、Robloxへの無制限のアクセスを得られます。]],
["Verification.Identity.Action.SkipVerification"] = [[今は確認しない]],
["Verification.Identity.Action.Continue"] = [[続ける]],
["Verification.Identity.Heading.EnterEmail"] = [[メールアドレスを入力]],
["Verification.Identity.Label.EnterEmail"] = [[年齢確認の前にメールアドレスを入力してください。これは、お持ちのアカウントにアクセスできなくなったときのための復元手段となります。]],
["Verification.Identity.Label.VerifyAgeLanding"] = [[あなたが共有するすべての情報は、ご自分だけが見れるように表示されています。これは、年齢確認のためだけに使用されます。あなたが {age} 歳以上であることを確認することで、{permission} を得られます。]],
["Verification.Identity.Label.UnrestrictedAccess"] = [[Robloxへの無制限のアクセス。]],
["Verification.Identity.Label.FailedVerification"] = [[提供済みの書類を認証できませんでした。
後でもう一度お試しください。]],
["Verification.Identity.Action.SkipVoiceChat"] = [[ボイスチャットなしで参加]],
["Verification.Identity.Label.FailedVerificationInvalidDocument"] = [[提供済みの書類を認証できませんでした。
書類が有効か確かめてからもう一度お試しください。]],
["Verification.Identity.Label.FailedVerificationLowQuality"] = [[提供済みの書類を認証できませんでした。
提出済みの画像が中央寄せで対象にフォーカスしてあるか確かめてから、もう一度お試しください。]],
["Verification.Identity.Label.FailedVerificationUnsupportedDocument"] = [[当社の認証プロバイダは提供済みの書類に対応していません。
違う書類でもう一度お試しください。]],
["Verification.Identity.Label.DontShowAgain"] = [[次回から表示しない]],
["Verification.Identity.Description.VerificationFinished"] = [[認証データを送信できました。このウィンドウを閉じて、Robloxに戻れます。]],
} |
lu = require('externals/luaunit/luaunit')
require('scripts/data/data_settings')
require('scripts/utilities_lua')
require('scripts/utilities')
function test_vec_add_3d()
local vec1={x=1,y=2,z=3}
local vec2={x=4,y=5,z=6}
local actual = vec_add(vec1, vec2)
local expected={x=5,y=7,z=9}
lu.assertEquals(actual, expected)
end
function test_vec_add_2d()
local vec1={x=1,z=3}
local vec2={x=4,z=6}
local actual = vec_add(vec1, vec2)
local expected={x=5,z=9}
lu.assertEquals(actual, expected)
end
function test_vec_add_arbitrary_number_of_vectors()
local vec1={x=1,z=3}
local vec2={x=4,z=6}
local vec3={x=7,z=8}
local actual = vec_add_n({vec1, vec2, vec3})
local expected={x=12,z=17}
lu.assertEquals(actual, expected)
end
function test_vec_div_escalar_3d()
local v = {x=2,y=16,z=64}
local actual = vec_div_escalar(v, 2)
local expected = {x=1,y=8,z=32}
lu.assertEquals(actual, expected)
end
function test_vec_div_escalar_2d()
local v = {x=2,z=64}
local actual = vec_div_escalar(v, 2)
local expected = {x=1,z=32}
lu.assertEquals(actual, expected)
end
function test_vec_dot_product()
local vec1={x=1,y=2,z=3}
local vec2={x=4,y=5,z=6}
local actual = vec_dot_product(vec1, vec2)
lu.assertEquals(actual, 32)
end
function test_vec_dot_product_2d()
local vec1={x=1,z=3}
local vec2={x=4,z=6}
local actual = vec_dot_product(vec1, vec2)
lu.assertEquals(actual, 22)
end
function test_normalize_radians_makes_number_non_negative()
local expected = math.pi / 4
local actual = normalize_radians ( expected - (4 * math.pi))
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_radians_makes_number_less_than_2_pi()
local expected = math.pi / 4
local actual = normalize_radians ( expected + (4 * math.pi))
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_radians_leaves_zero_alone()
local expected = 0
local actual = normalize_radians ( expected )
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_radians_reduces_2_pi_to_zero()
local expected = 0
local actual = normalize_radians ( expected + (2 * math.pi))
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_degress_makes_number_non_negative()
local expected = 45
local actual = normalize_degrees ( expected - 720)
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_degrees_makes_number_less_than_360()
local expected =45
local actual = normalize_degrees ( expected + 720)
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_degrees_leaves_zero_alone()
local expected = 0
local actual = normalize_degrees ( expected )
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_normalize_degrees_reduces_360_to_zero()
local expected = 0
local actual = normalize_degrees ( expected + 360)
lu.assertAlmostEquals(actual, expected, 0.001)
end
function test_is_rad_angle_diff_true_if_same()
local actual = is_rad_angle_diff(math.pi, math.pi, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_true_if_b_slightly_smaller()
local actual = is_rad_angle_diff(math.pi, math.pi - g_max_angle_pushback_rad/2, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_false_if_b_smaller()
local actual = is_rad_angle_diff(math.pi, math.pi - (g_max_angle_pushback_rad*1.1), 0)
lu.assertFalse(actual)
end
function test_is_rad_angle_diff_true_if_b_slightly_larger()
local actual = is_rad_angle_diff(math.pi, math.pi + g_max_angle_pushback_rad*0.51, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_false_if_b_larger()
local actual = is_rad_angle_diff(math.pi, math.pi + g_max_angle_pushback_rad*1.1, 0)
lu.assertFalse(actual)
end
function test_is_rad_angle_diff_true_if_close_a_negative()
local actual = is_rad_angle_diff(-g_max_angle_pushback_rad/4, g_max_angle_pushback_rad/4, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_true_if_close_b_negative()
local actual = is_rad_angle_diff(g_max_angle_pushback_rad/4, -g_max_angle_pushback_rad/4, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_false_if_a_negative()
local actual = is_rad_angle_diff(-g_max_angle_pushback_rad*0.51, g_max_angle_pushback_rad*0.51, 0)
lu.assertFalse(actual)
end
function test_is_rad_angle_diff_true_if_close_a_large()
local a = (2 * math.pi) - (g_max_angle_pushback_rad/4)
local b = (g_max_angle_pushback_rad/4)
local actual = is_rad_angle_diff(a,b, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_true_if_close_a_very_large()
local a = (10 * math.pi) - (g_max_angle_pushback_rad/4)
local b = (g_max_angle_pushback_rad/4)
local actual = is_rad_angle_diff(a,b, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_true_if_close_b_very_large()
local a = (8 * math.pi)
local b = a + (g_max_angle_pushback_rad/4)
local actual = is_rad_angle_diff(a,b, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_true_if_close_a_very_large_negative()
local a = -(10 * math.pi) - (g_max_angle_pushback_rad/4)
local b = (g_max_angle_pushback_rad/4)
local actual = is_rad_angle_diff(a,b, 0)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_true_for_expected_angle_small_negative()
local a = 0
local b = math.pi/2
local actual = is_rad_angle_diff(a,b, -0.5 * math.pi)
lu.assertTrue(actual)
end
function test_is_rad_angle_diff_false_for_expected_angle_small_negative()
local a = math.pi/2
local b = 0
local actual = is_rad_angle_diff(a,b, -0.5 * math.pi)
lu.assertFalse(actual)
end
-- Returns the minimum and maximum value of each ordinate.
-- n-dimensional bounding box
function test_bounding_box()
local p1 = {x=12,z=23}
local p2 = {x=9,z=48}
local p3 = {x=48,z=93}
local p4 = {x=56,z=63}
local shape = {p1, p2, p3, p4}
local actual = bounding_box(shape)
local expected={min={x=9,z=23}, max={x=56,z=93}}
lu.assertEquals(actual, expected)
end
function test_bounding_box_with_named_corners()
local p1 = {x=12,z=23}
local p2 = {x=9,z=48}
local p3 = {x=48,z=93}
local p4 = {x=56,z=63}
local shape = {tl=p1, tr=p2, bl=p3, br=p4}
local actual = bounding_box(shape)
local expected={min={x=9,z=23}, max={x=56,z=93}}
lu.assertEquals(actual, expected)
end
function test_point_is_in_bounding_box()
local box={min={x=9,z=23}, max={x=56,z=93}}
local point={x=33,z=78}
lu.assertTrue(is_point_in_bounding_box(point,box))
end
function test_point_is_to_right_of_bounding_box()
local box={min={x=9,z=23}, max={x=56,z=93}}
local point={x=3,z=78}
lu.assertFalse(is_point_in_bounding_box(point,box))
end
function test_point_is_above_bounding_box()
local box={min={x=9,z=23}, max={x=56,z=93}}
local point={x=33,z=178}
lu.assertFalse(is_point_in_bounding_box(point,box))
end
function test_is_in_range_too_small()
lu.assertFalse( is_in_range(12, 9, 23))
end
function test_is_in_range_too_large()
lu.assertFalse( is_in_range(12, 99, 23))
end
function test_is_in_range()
lu.assertTrue( is_in_range(12, 19, 23))
end
function test_is_bounding_boxes_intersecting_return_true()
local box1={min={x=9,z=23}, max={x=56,z=93}}
local box2={min={x=19,z=27}, max={x=66,z=103}}
lu.assertTrue( is_bounding_boxes_intersecting(box1, box2))
end
function test_is_bounding_boxes_intersecting_return_false()
local box1={min={x=9,z=23}, max={x=56,z=93}}
local box2={min={x=87,z=1}, max={x=107,z=103}}
lu.assertFalse( is_bounding_boxes_intersecting(box1, box2))
end
function test_mid_point()
local shape = { {x=1, y=0, z=2}, {x=3,y=0,z=4}, {x=51,y=0,z=52}, {x=54,y=0,z=54}}
local actual = mid_point(shape)
local expected = {x=27.25, y=0, z=28}
lu.assertEquals(actual, expected)
end
function test_mid_point_2d()
local shape = { {x=1,z=2}, {x=3,z=4}, {x=51,z=52}, {x=54,z=54}}
local actual = mid_point(shape)
local expected = {x=27.25, z=28}
lu.assertEquals(actual, expected)
end
function test_is_point_in_2d_triangle_returns_true()
local shape = { {x=1,z=2}, {x=13,z=1}, {x=6,z=52}}
local mid = mid_point(shape)
local actual = is_point_in_2d_triangle(mid, shape[1], shape[2], shape[3])
lu.assertTrue(actual)
end
function test_is_point_in_2d_triangle_returns_false()
local shape = { {x=1,z=2}, {x=13,z=1}, {x=6,z=52}}
local p = {x=0,z=0}
local actual = is_point_in_2d_triangle(p, shape[1], shape[2], shape[3])
lu.assertFalse(actual)
end
function test_is_point_in_2d_shape_returns_false()
local shape = { {x=1,z=2}, {x=51,z=52}, {x=101,z=102}, {x=102,z=103}, {x=151,z=152}}
local p = {x=0,z=0}
local actual = is_point_in_2d_shape(p, shape)
lu.assertFalse(actual)
end
function test_is_point_in_2d_shape_returns_true_if_shape_is_triangle()
local shape = { {x=1,z=2}, {x=13,z=1}, {x=6,z=52}}
local p = mid_point(shape)
local actual = is_point_in_2d_shape(p, shape)
lu.assertTrue(actual)
end
function test_is_point_in_2d_shape_returns_true_if_shape_is_rectangle_point_above_mid()
local shape = { {x=1,z=2}, {x=13,z=1}, {x=6,z=52}}
local p = mid_point(shape)
p['z'] = p['z'] + 1
local actual = is_point_in_2d_shape(p, shape)
lu.assertTrue(actual)
end
function test_is_point_in_2d_shape_returns_true_if_shape_is_rectangle_point_below_mid()
local shape = { {x=1,z=2}, {x=13,z=1}, {x=6,z=52}}
local p = mid_point(shape)
p['z'] = p['z'] + 1
local actual = is_point_in_2d_shape(p, shape)
lu.assertTrue(actual)
end
function test_is_point_in_2d_shape_returns_true_in_first_triangle()
local shape = { {x=1,z=2}, {x=3,z=52}, {x=101,z=102},{x=102,z=103}, {x=151,z=152}}
local shape_mid = mid_point(shape)
local p = mid_point{ shape[1], shape[2], shape_mid}
local actual = is_point_in_2d_shape(p, shape)
lu.assertTrue(actual)
end
function test_is_point_in_2d_shape_returns_true_for_second_to_last_triangle()
local shape = { {x=1,z=2}, {x=3,z=52}, {x=101,z=102},{x=102,z=103}, {x=151,z=152}}
local shape_mid = mid_point(shape)
local p = mid_point{ shape[4], shape[5], shape_mid}
local actual = is_point_in_2d_shape(p, shape)
lu.assertTrue(actual)
end
function test_is_point_in_2d_shape_returns_true_for_last_triangle()
local shape = { {x=1,z=2}, {x=3,z=52}, {x=101,z=102},{x=102,z=103}, {x=151,z=152}}
local shape_mid = mid_point(shape)
local p = mid_point{ shape[5], shape[1], shape_mid}
local actual = is_point_in_2d_shape(p, shape)
lu.assertTrue(actual)
end
function test_is_2d_shapes_intersecting_true()
local shape1 = { {x=1,z=2}, {x=1,z=12}, {x=21,z=12},{x=21,z=12}}
local shape2 = { {x=6,z=7}, {x=6,z=17}, {x=26,z=17},{x=26,z=7}}
local actual = is_2d_shapes_intersecting(shape1, shape2)
lu.assertTrue(actual)
end
function test_is_2d_shapes_intersecting_false()
local shape1 = { {x=1,z=2}, {x=1,z=12}, {x=21,z=12},{x=21,z=12}}
local shape2 = { {x=31,z=2}, {x=31,z=12}, {x=51,z=12},{x=51,z=7}}
local actual = is_2d_shapes_intersecting(shape1, shape2)
lu.assertFalse(actual)
end
function test_from_mu_to_in()
local actual = from_mu_to_in(2)
lu.assertAlmostEquals(actual, g_base_width_in_inches, 0.01)
end
function test_in_to_mu()
local actual = from_in_to_mu(g_base_width_in_inches)
lu.assertAlmostEquals(actual, 2, 0.01)
end
os.exit( lu.LuaUnit.run() )
|
local pdk = require("apioak.pdk")
local yaml = require("tinyyaml")
local io_open = io.open
local ngx_timer_at = ngx.timer.at
local ngx_config_prefix = ngx.config.prefix
local config_objects
local _M = {}
local function loading_configs(premature)
if premature then
return
end
local file, err = io_open(ngx_config_prefix() .. "conf/apioak.yaml", "r")
if err then
pdk.log.error("[sys.config] failed to open configuration file, ", err)
return
end
local content = file:read("*a")
file:close()
local config = yaml.parse(content)
if not config then
pdk.log.error("[sys.config] failed to parse configuration file")
return
end
config_objects = config
end
function _M.init_worker()
ngx_timer_at(0, loading_configs)
end
function _M.query(key)
if not config_objects then
loading_configs()
end
if not config_objects[key] then
return nil, key .. " is not set in the configuration file"
end
return config_objects[key], nil
end
return _M
|
function widget:GetInfo()
return {
name = "Commander Warning",
desc = "Changes UI background color if your commander is attacked",
author = "Nixtux",
date = "13th Aug 2018",
license = "GPLv2",
version = "1.0",
layer = 1,
enabled = true
}
end
local commanderTable = {}
local localTeamID = nil
local warningList = {}
local DISPLAYTIME = 210
local FADETIME = 60
local UPDATERATE = 0.05
local MASTERRATE = 0.08
local GLOWRATE = MASTERRATE
local color = WG["background_opacity_custom"]
local gameover = false
function widget:Initialize()
localTeamID = Spring.GetLocalTeamID()
if Spring.GetSpectatingState() or Spring.IsReplay() then
widgetHandler:RemoveWidget()
return false
end
for id, unitDef in ipairs(UnitDefs) do
if unitDef.customParams.iscommander then
if unitDef.name then
commanderTable[id] = true
end
end
end
end
function widget:UnitDamaged (unitID, unitDefID, unitTeam, damage, paralyzer, weaponID, attackerID, attackerDefID, attackerTeam)
if localTeamID ~= unitTeam or Spring.IsUnitInView(unitID) then
return --ignore other teams and units in view
end
if commanderTable[unitDefID] then
local health, maxhealth = Spring.GetUnitHealth(unitID)
if health > 0 then
local udef = UnitDefs[unitDefID]
local now = Spring.GetGameFrame()
local aName
if attackerDefID then
aName = table.concat({"by ",(UnitDefs[attackerDefID] or "enemy"),"!"})
end
warningList[1] = udef.humanName
warningList[2] = health/maxhealth
warningList[3] = aName
warningList[4] = now
end
end
end
function widget:GameFrame(n)
--WG["background_opacity_custom"] = {0, 0, 0 , color[4]}
if n == 1 then
color = WG["background_opacity_custom"]
end
end
local tick = 0
local lasttick = 0
local colorRed = color[1]
function widget:Update(tock)
tick = tick + tock
if tick > lasttick + UPDATERATE then
lasttick = tick
colorRed = colorRed + GLOWRATE
if colorRed > 0.33 and GLOWRATE > 0 then
GLOWRATE = -MASTERRATE
elseif colorRed < 0.05 and GLOWRATE < 0 then
GLOWRATE = MASTERRATE
end
if #warningList > 0 then
if Spring.GetGameFrame() > warningList[4] + DISPLAYTIME then
warningList = {}
WG["background_opacity_custom"] = color
else
WG["background_opacity_custom"] = {colorRed, colorRed*0.25, colorRed*0.25, color[4]}
--Spring.Echo(colorRed,tock)
end
else
WG["background_opacity_custom"] = color
end
end
end |
object_tangible_storyteller_prop_pr_thm_all_tato_banner_freestand_s01 = object_tangible_storyteller_prop_shared_pr_thm_all_tato_banner_freestand_s01:new {
}
ObjectTemplates:addTemplate(object_tangible_storyteller_prop_pr_thm_all_tato_banner_freestand_s01, "object/tangible/storyteller/prop/pr_thm_all_tato_banner_freestand_s01.iff")
|
return {
tform = {
type = 'tform',
fields = {
top = {
type = 'integer'
},
left = {
type = 'integer'
},
height = {
type = 'integer'
},
clientwidth = {
type = 'integer'
},
clientheight = {
type = 'integer'
},
doublebuffered = {
type = 'boolean'
},
show = {
type = 'procedure'
},
bordericons = {
type = 'set'
},
borderstyle = {
type = 'integer'
},
color = {
type = 'integer'
},
transparentcolor = {
type = 'boolean'
},
transparentcolorvalue = {
type = 'integer'
},
keypreview = {
type = 'boolean'
},
oldcreateorder = {
type = 'boolean'
},
popupmenu = {
type = 'tform'
},
printscale = {
type = 'integer'
},
scaled = {
type = 'boolean'
},
onactivate = {
type = 'procedure'
},
onclose = {
type = 'procedure'
},
oncreate = {
type = 'procedure'
},
onkeydown = {
type = 'procedure'
},
onkeyup = {
type = 'procedure'
},
pixelsperinch = {
type = 'integer'
},
textheight = {
type = 'integer'
},
font = {
type = 'tfont'
},
position = {
type = 'integer'
},
horzscrollbar = {
type = 'tscrollbar'
},
vertscrollbar = {
type = 'tscrollbar'
}
}
},
tcloseaction = {
type = 'tcloseaction',
fields = {
}
},
cafree = {
type = 'integer'
},
bsnone = {
type = 'integer'
},
ponone = {
type = 'integer'
},
poscreencenter = {
type = 'integer'
},
bisystemmenu = {
type = 'integer'
},
vk_down = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_up = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_left = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_right = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_control = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_menu = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_shift = {
-- not sure if this should be in the forms unit
type = 'integer'
},
vk_insert = {
-- not sure if this should be in the forms unit
type = 'integer'
}
}
|
--[[
Name: cl_init.lua
For: SantosRP
By: TalosLife
]]--
include "shared.lua"
function ENT:Initialize()
end
function ENT:Draw()
local normal = self:GetAngles():Forward() *-1
local distance = normal:Dot( self:GetPos() -normal )
local normal2 = self:GetAngles():Forward()
local distance2 = normal2:Dot( self:GetPos() +normal2 )
local normalUp = self:GetAngles():Up() *1
local distanceUp = normalUp:Dot( self:GetPos() -normalUp )
render.EnableClipping( true )
render.PushCustomClipPlane( normal2, distance2 -24.75 )
render.PushCustomClipPlane( normal, distance -0.75 )
self:DrawModel()
render.PopCustomClipPlane()
render.PopCustomClipPlane()
render.PushCustomClipPlane( normalUp, distanceUp +90 )
self:DrawModel()
render.PopCustomClipPlane()
render.EnableClipping( false )
self:DrawScreen()
end
function ENT:DrawScreen() --830 256
local pos, ang = self:LocalToWorld( Vector(-2.75, -26, 75) ), self:LocalToWorldAngles( Angle(180, 270, -90) )
cam.Start3D2D( pos, ang, 0.065 )
surface.SetTextColor( 50, 255, 50, 255 )
surface.SetFont( "DermaLarge" )
surface.SetTextPos( 70, 45 )
surface.DrawText( "Fuel: $".. GAMEMODE.Econ:ApplyTaxToSum("fuel", GAMEMODE.Config.BaseFuelCost).. "/liter" )
cam.End3D2D()
end |
-------------------------------------------------------------------
-- Copyright (c) Roberto Perpuly. All rights reserved.
-- Licensed under the MIT License. See License in the project root for details.
-------------------------------------------------------------------
-- Compile the project. Compiling may use operating system specific build
-- tools.
function compile()
if os.ishost('macosx') then
compileMacXcode('debug', false)
end
end
function compileMacXcode(config)
-- XCode configurations are in title case
if config == "debug" then
config = "Debug"
end
if config == "release" then
config = "Release"
end
BatchExecute('mac', {
string.format('%s -quiet -target %s -configuration %s -project %s build',
XCODE_BUILD, "mac-editor", config, "mac-editor.xcodeproj")
})
end
newaction {
trigger = "compile",
description = "Build the project from the command line.",
execute = compile
}
|
-- plugdebug module
-- luacheck: new_globals Old_export
local F = far.Flags
local PanelEvents = { [0]="FE_CHANGEVIEWMODE","FE_REDRAW","FE_IDLE","FE_CLOSE",
"FE_BREAK","FE_COMMAND","FE_GOTFOCUS","FE_KILLFOCUS","FE_CHANGESORTPARAMS" }
local OpenFrom = { [0]="OPEN_LEFTDISKMENU","OPEN_PLUGINSMENU","OPEN_FINDLIST","OPEN_SHORTCUT",
"OPEN_COMMANDLINE","OPEN_EDITOR","OPEN_VIEWER","OPEN_FILEPANEL","OPEN_DIALOG","OPEN_ANALYSE",
"OPEN_RIGHTDISKMENU","OPEN_FROMMACRO",[100]="OPEN_LUAMACRO" }
local InputEvents = {
[F.KEY_EVENT ] = "KEY_EVENT";
[F.MOUSE_EVENT ] = "MOUSE_EVENT";
[F.WINDOW_BUFFER_SIZE_EVENT] = "WINDOW_BUFFER_SIZE_EVENT";
[F.MENU_EVENT ] = "MENU_EVENT";
[F.FOCUS_EVENT ] = "FOCUS_EVENT";
}
local OpModes = {
[F.OPM_SILENT ] = "OPM_SILENT";
[F.OPM_FIND ] = "OPM_FIND";
[F.OPM_VIEW ] = "OPM_VIEW";
[F.OPM_QUICKVIEW] = "OPM_QUICKVIEW";
[F.OPM_EDIT ] = "OPM_EDIT";
[F.OPM_DESCR ] = "OPM_DESCR";
[F.OPM_TOPLEVEL ] = "OPM_TOPLEVEL";
[F.OPM_PGDN ] = "OPM_PGDN";
[F.OPM_COMMANDS ] = "OPM_COMMANDS";
[0x00 ] = "OPM_NONE";
}
local function quote(var)
return type(var)=="string" and "'"..var.."'" or tostring(var)
end
local function Inject(_, name)
local func = rawget(Old_export, name) -- here rawget is important, otherwise any Lua error would crash Far
if not func then return end
return function(...)
local txt = name
--------------------------------------------------------------------------------
if name=="Analyse" then
local Info = ...
txt = ("%s (%s)"):format(name, quote(Info.FileName))
--------------------------------------------------------------------------------
elseif name=="GetFindData" then
local OpMode = select(3, ...)
txt = ("%s (%s)"):format(name, OpModes[OpMode] or OpMode)
--------------------------------------------------------------------------------
elseif name=="Open" then
local from, _, item = ...
from = OpenFrom[from]
------------------------------------------------------------------------------
if from == "OPEN_FROMMACRO" then
local t = { from }
for k=1, item.n do t[k+1]=quote(item[k]) end
txt = ("%s (%s)"):format(name, table.concat(t,", "))
------------------------------------------------------------------------------
elseif from == "OPEN_COMMANDLINE" then
txt = ("%s (%s, '%s')"):format(name, from, item)
------------------------------------------------------------------------------
elseif from == "OPEN_SHORTCUT" then
local sFlags = item.Flags==0 and "FOSF_NONE" or item.Flags==1 and "FOSF_ACTIVE" or item.Flags
txt = ("%s (%s, '%s', %s, %s)"):format(name,from,item.HostFile,quote(item.ShortcutData),sFlags)
------------------------------------------------------------------------------
else
txt = ("%s (%s)"):format(name, from)
------------------------------------------------------------------------------
end
--------------------------------------------------------------------------------
elseif name=="ProcessEvent" then
local Event, Param = select(3, ...)
if Event==F.FE_IDLE then -- don't show this event
txt = nil
else
txt = ("%s (%s, %s)"):format(name, PanelEvents[Event], quote(Param))
end
--------------------------------------------------------------------------------
elseif name=="ProcessKey" then
local key, ctrlstate = select(3, ...)
txt = ("%s (key=0x%X, ctrlstate=0x%X)"):format(name, key, ctrlstate)
--------------------------------------------------------------------------------
elseif name=="SetDirectory" then
local Dir, OpMode = select(3, ...)
txt = ("%s ('%s', %s)"):format(name, Dir, OpModes[OpMode] or OpMode)
--------------------------------------------------------------------------------
end
if txt then
far.Log(txt)
end
return func(...)
end
end
local function Running()
return Old_export and true
end
local function Start()
-- If table 'export' contains real elements then replace it and add injections.
-- Else do nothing.
if next(export) then
-- Keep Old_export as a global variable to withstand reloading this module.
Old_export, export = export, {}
setmetatable(Old_export, nil)
setmetatable(export, { __index=Inject; })
end
end
local function Stop()
if not next(export) then
export, Old_export = Old_export, nil
setmetatable(export, nil)
end
end
return {
Running = Running;
Start = Start;
Stop = Stop;
}
|
function love.conf(t)
t.window.title = "Binding of Analex"
t.window.width = 1270
t.window.height = 768
t.window.resizable = false
t.window.borderless = false
t.version = "0.10.2"
end
|
if not modules then modules = { } end modules ['s-languages-counters'] = {
version = 1.001,
comment = "companion to s-languages-counters.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
moduledata.languages = moduledata.languages or { }
moduledata.languages.counters = moduledata.languages.counters or { }
local data = converters.verbose.data
function moduledata.languages.counters.showverbose(specification)
specification = interfaces.checkedspecification(specification)
local list = utilities.parsers.settings_to_array(specification.language or "")
if #list == 0 then
return
end
local used = { }
local words = { }
for i=1,#list do
local ai = list[i]
local di = data[ai]
if di and di.words then
used[#used+1] = ai
table.merge(words,di.words)
end
end
context.starttabulate { string.rep("|l",#used) .. "|r|" }
context.HL()
context.NC()
for i=1,#used do
context.bold(used[i])
context.NC()
end
context.bold("number")
context.NC()
context.NR()
context.HL()
for k, v in table.sortedhash(words) do
context.NC()
for i=1,#used do
context(data[used[i]].words[k] or "")
context.NC()
end
context(k)
context.NC()
context.NR()
end
context.stoptabulate()
end
|
-- Beginning of Markdown unnumbered indented bullet list
-- Print each line preceded with indents and an '*'
-- Example:
-- *
-- * x.a
-- * 1
-- * 2
-- * Z
-- * 1.2
-- * A
-- * C
-- * D
-- * 2
function indent(n)
for i=1, n do
io.write(" ")
end
end
function markdown(node)
indent(node.depth)
io.write("* ")
print(node.text)
for k, v in pairs(node.children) do
markdown(v)
end
end
markdown(frangipanni)
|
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local ToCommand = {
Id = "To",
Aliases = { "goto" },
Description = "Teleports you to a player.",
Args = {
{
Type = "player",
Name = "Target player",
Description = "The player to teleport to"
}
}
}
function ToCommand.RunClient(_, targetPlayer)
local localCharacter = LocalPlayer.Character
local targetCharacter = targetPlayer.Character
if localCharacter and targetCharacter then
local targetPosition = targetCharacter:GetPrimaryPartCFrame().Position
localCharacter:MoveTo(targetPosition)
return ("Successfully teleported you to %s."):format(targetPlayer.Name)
else
return "Either you or the target player does not have a character!"
end
end
return ToCommand |
local Package = script:FindFirstAncestorOfClass("Folder")
local baseModule = Package.Base
--^^ Simply adjust the variable so it matches the Base's location. ^^
return require(baseModule)
|
local infinity_wagon = {}
function infinity_wagon.build(entity, tags)
local proxy = entity.surface.create_entity({
name = "ee-infinity-wagon-" .. (entity.name == "ee-infinity-cargo-wagon" and "chest" or "pipe"),
position = entity.position,
force = entity.force,
})
-- create all api lookups here to save time in on_tick()
local data = {
flip = 0,
proxy = proxy,
proxy_fluidbox = proxy.fluidbox,
proxy_inv = proxy.get_inventory(defines.inventory.chest),
wagon = entity,
wagon_fluidbox = entity.fluidbox,
wagon_inv = entity.get_inventory(defines.inventory.cargo_wagon),
wagon_last_position = entity.position,
wagon_name = entity.name,
}
global.wagons[entity.unit_number] = data
-- apply any pre-existing filters
if tags and tags.EditorExtensions then
local ee_tags = tags.EditorExtensions
if entity.name == "ee-infinity-cargo-wagon" then
-- LEGACY: Before v1.9.16, we did not store the `remove unfiltered items` setting
if ee_tags.filters then
data.proxy.infinity_container_filters = ee_tags.filters
data.proxy.remove_unfiltered_items = ee_tags.remove_unfiltered_items
else
data.proxy.infinity_container_filters = ee_tags
end
elseif entity.name == "ee-infinity-fluid-wagon" then
proxy.set_infinity_pipe_filter(ee_tags)
end
end
end
-- clear the wagon's inventory and set FLIP to 3 to prevent it from being refilled
function infinity_wagon.clear_inventory(entity)
global.wagons[entity.unit_number].flip = 3
entity.get_inventory(defines.inventory.cargo_wagon).clear()
end
-- restart syncing the proxy's inventory
function infinity_wagon.reset(entity)
global.wagons[entity.unit_number].flip = 0
end
function infinity_wagon.destroy(entity)
global.wagons[entity.unit_number].proxy.destroy()
global.wagons[entity.unit_number] = nil
end
function infinity_wagon.check_is_wagon(selected)
return selected.name == "ee-infinity-cargo-wagon" or selected.name == "ee-infinity-fluid-wagon"
end
-- called during `on_tick`
function infinity_wagon.flip_inventories()
local abs = math.abs
for _, t in pairs(global.wagons) do
if t.wagon.valid and t.proxy.valid then
if t.wagon_name == "ee-infinity-cargo-wagon" then
if t.flip == 0 then
t.wagon_inv.clear()
for n, c in pairs(t.proxy_inv.get_contents()) do
t.wagon_inv.insert({ name = n, count = c })
end
t.flip = 1
elseif t.flip == 1 then
t.proxy_inv.clear()
for n, c in pairs(t.wagon_inv.get_contents()) do
t.proxy_inv.insert({ name = n, count = c })
end
t.flip = 0
end
elseif t.wagon_name == "ee-infinity-fluid-wagon" then
if t.flip == 0 then
local fluid = t.proxy_fluidbox[1]
t.wagon_fluidbox[1] = fluid
and fluid.amount > 0
and {
name = fluid.name,
amount = (abs(fluid.amount) * 250),
temperature = fluid.temperature,
}
or nil
t.flip = 1
elseif t.flip == 1 then
local fluid = t.wagon_fluidbox[1]
t.proxy_fluidbox[1] = fluid
and fluid.amount > 0
and {
name = fluid.name,
amount = (abs(fluid.amount) / 250),
temperature = fluid.temperature,
}
or nil
t.flip = 0
end
end
local position = t.wagon.position
local last_position = t.wagon_last_position
if last_position.x ~= position.x or last_position.y ~= position.y then
t.proxy.teleport(t.wagon.position)
t.wagon_last_position = last_position
end
end
end
end
function infinity_wagon.open(player, entity)
player.opened = global.wagons[entity.unit_number].proxy
end
function infinity_wagon.paste_settings(source, destination)
global.wagons[destination.unit_number].proxy.copy_settings(global.wagons[source.unit_number].proxy)
end
function infinity_wagon.setup_cargo_blueprint(blueprint_entity, entity)
if entity then
local proxy = global.wagons[entity.unit_number].proxy
if not blueprint_entity.tags then
blueprint_entity.tags = {}
end
blueprint_entity.tags.EditorExtensions = {
filters = proxy.infinity_container_filters,
remove_unfiltered_items = proxy.remove_unfiltered_items,
}
end
return blueprint_entity
end
function infinity_wagon.setup_fluid_blueprint(blueprint_entity, entity)
if entity then
if not blueprint_entity.tags then
blueprint_entity.tags = {}
end
blueprint_entity.tags.EditorExtensions = global.wagons[entity.unit_number].proxy.get_infinity_pipe_filter()
end
return blueprint_entity
end
return infinity_wagon
|
package.cpath = "bin/?.dll"
local iup = require "iuplua"
local bgfx = require "bgfx"
local util = require "util"
local imgui = require "imgui"
local bimgui = require "bgfx.imgui"
local widget = bimgui.widget
local flags = bimgui.flags
local windows = bimgui.windows
local utils = bimgui.util
local ctx = {
canvas = iup.canvas{},
stats = {},
imgui_view = 255,
imgui_font = 18,
}
local dlg = iup.dialog {
ctx.canvas,
title = "X0-imgui",
size = "HALFxHALF",
}
function ctx.init()
bgfx.set_view_clear(0, "CD", 0x303030ff, 1, 0)
end
function ctx.resize(w,h)
bgfx.set_view_rect(0, 0, 0, w, h)
bgfx.reset(w,h, "")
ctx.width = w
ctx.height = h
end
local checkbox = {}
local combobox = { "B" }
local lines = { 1,2,3,2,1 }
local test_window = {
id = "Test",
open = true,
flags = flags.Window { "MenuBar" }, -- "NoClosed"
}
local function run_window(wnd)
if not wnd.open then
return
end
local touch, open = windows.Begin(wnd.id, wnd.flags)
if touch then
wnd:update()
windows.End()
wnd.open = open
end
end
local lists = { "Alice", "Bob" }
local tab_noclosed = flags.TabBar { "NoClosed" }
function test_window:update()
self:menu()
if windows.BeginTabBar "tab_bar" then
if windows.BeginTabItem ("Tab1",tab_noclosed) then
self:tab_update()
windows.EndTabItem()
end
if windows.BeginTabItem ("Tab2",tab_noclosed) then
if widget.Button "Save Ini" then
print(utils.SaveIniSettings())
end
windows.EndTabItem()
end
windows.EndTabBar()
end
end
function test_window:menu()
if widget.BeginMenuBar() then
widget.MenuItem("M1")
widget.MenuItem("M2")
widget.EndMenuBar()
end
end
function test_window:tab_update()
widget.Button "Test"
widget.SmallButton "Small"
if widget.Checkbox("Checkbox", checkbox) then
print("Click Checkbox", checkbox[1])
end
widget.Text("Hello World", 1,0,0)
if widget.BeginCombo( "Combo", combobox ) then
widget.Selectable("A", combobox)
widget.Selectable("B", combobox)
widget.Selectable("C", combobox)
widget.EndCombo()
end
if widget.TreeNode "TreeNodeA" then
widget.TreePop()
end
if widget.TreeNode "TreeNodeB" then
widget.TreePop()
end
if widget.TreeNode "TreeNodeC" then
widget.TreePop()
end
widget.PlotLines("lines", lines)
widget.PlotHistogram("histogram", lines)
if widget.ListBox("##list",lists) then
print(lists.current)
end
end
local function update_ui()
windows.SetNextWindowSizeConstraints(300, 300, 500, 500)
run_window(test_window)
end
local function mainloop()
bgfx.touch(0)
bgfx.frame()
end
--print(enum.ColorEditFlags { "NoAlpha", "HDR" } )
imgui.init(ctx)
util.init(ctx)
dlg:showxy(iup.CENTER,iup.CENTER)
dlg.usersize = nil
util.run(imgui.updatefunc(update_ui,mainloop))
|
local _
local LAM = LibStub:GetLibrary("LibAddonMenu-2.0")
local dirtyModules = false
if BUI == nil then BUI = {} end
function BUI.InitModuleOptions()
local panelData = Init_ModulePanel("Master", "Master Addon Settings")
local optionsTable = {
{
type = "header",
name = "Master Settings",
width = "full",
},
{
type = "checkbox",
name = "Enable Common Interface Module (CIM)",
tooltip = "Enables the use of the completely redesigned \"Enhanced\" interfaces!",
getFunc = function() return BUI.Settings.Modules["CIM"].m_enabled end,
setFunc = function(value) BUI.Settings.Modules["CIM"].m_enabled = value
dirtyModules = true end,
width = "full",
},
{
type = "checkbox",
name = "Enable |c0066FFEnhanced Guild Store|r",
tooltip = "Complete overhaul of the guild store, and MaterMerchant/dataDaedra integration",
getFunc = function() return BUI.Settings.Modules["GuildStore"].m_enabled end,
setFunc = function(value) BUI.Settings.Modules["GuildStore"].m_enabled = value
dirtyModules = true end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
width = "full",
},
{
type = "checkbox",
name = "Enable |c0066FFEnhanced Inventory|r",
tooltip = "Completely redesigns the gamepad's inventory interface",
getFunc = function() return BUI.Settings.Modules["Inventory"].m_enabled end,
setFunc = function(value) BUI.Settings.Modules["Inventory"].m_enabled = value
dirtyModules = true end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
width = "full",
},
{
type = "checkbox",
name = "Enable |c0066FFEnhanced Banking|r",
tooltip = "Completely redesigns the gamepad's banking interface (and has \"Mobile Banking\")",
getFunc = function() return BUI.Settings.Modules["Banking"].m_enabled end,
setFunc = function(value) BUI.Settings.Modules["Banking"].m_enabled = value
dirtyModules = true end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
--disabled = function() return true end,
width = "full",
},
-- {
-- type = "checkbox",
-- name = "Enable |c0066FFEnhanced Store|r",
-- tooltip = "Completely redesigns the gamepad's store purchase interface",
-- getFunc = function() return BUI.Settings.Modules["Store"].m_enabled end,
-- setFunc = function(value) BUI.Settings.Modules["Store"].m_enabled = value
-- dirtyModules = true end,
-- disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
-- width = "full",
-- },
{
type = "checkbox",
name = "Enable Daily Writ module",
tooltip = "Displays the daily writ, and progress, at each crafting station",
getFunc = function() return BUI.Settings.Modules["Writs"].m_enabled end,
setFunc = function(value) BUI.Settings.Modules["Writs"].m_enabled = value
dirtyModules = true end,
width = "full",
},
{
type = "checkbox",
name = "Enable General Interface Improvements",
tooltip = "Vast improvements to the ingame tooltips and unit frames",
getFunc = function() return BUI.Settings.Modules["Tooltips"].m_enabled end,
setFunc = function(value) BUI.Settings.Modules["Tooltips"].m_enabled = value
dirtyModules = true end,
width = "full",
},
-- {
-- type = "checkbox",
-- name = "Enhance Compatibility with other Addons",
-- tooltip = "BUI heavily alters the interface, breaking lots of addons. This will enhance compatibility. Be aware: things MIGHT break!",
-- getFunc = function() return BUI.Settings.Modules["CIM"].enhanceCompat end,
-- setFunc = function(value) BUI.Settings.Modules["CIM"].enhanceCompat = value
-- dirtyModules = true end,
-- width = "full",
-- },
{
type = "button",
name = "Apply Changes",
disabled = function() return not dirtyModules end,
func = function() ReloadUI() end
},
{
type = "header",
name = "Enhanced Interface Global Behaviour",
width = "full",
},
{
type = "editbox",
name = "Mouse Scrolling speed on Left Hand tooltip",
tooltip = "Change how quickly the menu skips when pressing the triggers.",
getFunc = function() return BUI.Settings.Modules["CIM"].rhScrollSpeed end,
setFunc = function(value) BUI.Settings.Modules["CIM"].rhScrollSpeed = value end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
width = "full",
},
{
type = "editbox",
name = "Number of lines to skip on trigger",
tooltip = "Change how quickly the menu skips when pressing the triggers.",
getFunc = function() return BUI.Settings.Modules["CIM"].triggerSpeed end,
setFunc = function(value) BUI.Settings.Modules["CIM"].triggerSpeed = value end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
width = "full",
},
{
type = "header",
name = "Enhanced Interface Global Display",
width = "full",
},
{
type = "checkbox",
name = "Display attribute icons next to the item name",
tooltip = "Allows you to see enchanted, set and stolen items quickly",
getFunc = function() return BUI.Settings.Modules["CIM"].attributeIcons end,
setFunc = function(value) BUI.Settings.Modules["CIM"].attributeIcons = value end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
width = "full",
},
{
type = "checkbox",
name = "Reduce the font size of the item tooltip",
tooltip = "Allows much more item information to be displayed at once on the tooltips",
getFunc = function() return BUI.Settings.Modules["CIM"].condenseLTooltip end,
setFunc = function(value) BUI.Settings.Modules["CIM"].condenseLTooltip = value
ReloadUI() end,
disabled = function() return not BUI.Settings.Modules["CIM"].m_enabled end,
width = "full",
warning="Reloads the UI for the change to propagate"
},
}
LAM:RegisterAddonPanel("BUI_".."Modules", panelData)
LAM:RegisterOptionControls("BUI_".."Modules", optionsTable)
end
function BUI.PostHook(control, method, fn)
if control == nil then return end
local originalMethod = control[method]
control[method] = function(self, ...)
originalMethod(self, ...)
fn(self, ...)
end
end
function BUI.Hook(control, method, postHookFunction, overwriteOriginal)
if control == nil then return end
local originalMethod = control[method]
control[method] = function(self, ...)
if(overwriteOriginal == false) then originalMethod(self, ...) end
postHookFunction(self, ...)
end
end
function BUI.RGBToHex(rgba)
r,g,b,a = unpack(rgba)
return string.format("%02x%02x%02x", r*255, g*255, b*255)
end
function BUI.ModuleOptions(m_namespace, m_options)
m_options = m_namespace.InitModule(m_options)
return m_namespace
end
function BUI.LoadModules()
if(not BUI._initialized) then
ddebug("Initializing BUI...")
BUI.GuildStore.FixMM() -- fix MM is independent of any module
BUI.Player.GetResearch()
if(BUI.Settings.Modules["CIM"].m_enabled) then
BUI.CIM.Setup()
if(BUI.Settings.Modules["GuildStore"].m_enabled) then
BUI.GuildStore.Setup()
end
-- if(BUI.Settings.Modules["Store"].m_enabled) then
-- BUI.Store.Setup()
-- end
if(BUI.Settings.Modules["Inventory"].m_enabled) then
BUI.Inventory.Setup()
end
if(BUI.Settings.Modules["Banking"].m_enabled) then
BUI.Banking.Setup()
end
end
if(BUI.Settings.Modules["Writs"].m_enabled) then
BUI.Writs.Setup()
end
if(BUI.Settings.Modules["Tooltips"].m_enabled) then
BUI.Tooltips.Setup()
end
ddebug("Finished! BUI is loaded")
BUI._initialized = true
end
end
function BUI.Initialize(event, addon)
-- filter for just BUI addon event as EVENT_ADD_ON_LOADED is addon-blind
if addon ~= BUI.name then return end
-- load our saved variables
BUI.Settings = ZO_SavedVars:New("BetterUISavedVars", 2.65, nil, BUI.DefaultSettings)
-- Has the settings savedvars JUST been applied? then re-init the module settings
if(BUI.Settings.firstInstall) then
local m_CIM = BUI.ModuleOptions(BUI.CIM, BUI.Settings.Modules["CIM"])
local m_Inventory = BUI.ModuleOptions(BUI.Inventory, BUI.Settings.Modules["Inventory"])
local m_Banking = BUI.ModuleOptions(BUI.Banking, BUI.Settings.Modules["Banking"])
local m_Writs = BUI.ModuleOptions(BUI.Writs, BUI.Settings.Modules["Writs"])
local m_GuildStore = BUI.ModuleOptions(BUI.GuildStore, BUI.Settings.Modules["GuildStore"])
local m_Store = BUI.ModuleOptions(BUI.GuildStore, BUI.Settings.Modules["Store"])
local m_Tooltips = BUI.ModuleOptions(BUI.Tooltips, BUI.Settings.Modules["Tooltips"])
BUI.Settings.firstInstall = false
end
BUI.EventManager:UnregisterForEvent("BetterUIInitialize", EVENT_ADD_ON_LOADED)
BUI.InitModuleOptions()
if(IsInGamepadPreferredMode()) then
BUI.LoadModules()
else
BUI._initialized = false
end
end
-- register our event handler function to be called to do initialization
BUI.EventManager:RegisterForEvent(BUI.name, EVENT_ADD_ON_LOADED, function(...) BUI.Initialize(...) end)
BUI.EventManager:RegisterForEvent(BUI.name.."_Gamepad", EVENT_GAMEPAD_PREFERRED_MODE_CHANGED, function(code, inGamepad) BUI.LoadModules() end)
|
---
--- 查询菜单和权限项
---
local func = require("func")
local json = require("cjson.safe")
local db_utils = require("db_utils")
local user_id = ngx.req.get_headers()[".USERID"]
local args = ngx.req.get_uri_args()
local project_type = args['project']
if user_id == nil or project_type == nil then
func.invalid_exit("user is null")
end
-- 如果是管理员,返回所有菜单和权限项
local db = db_utils.get_db()
local sql = string.format('select 1 from auth_rel_role_user t join auth_role t1 on t.role_id=t1.role_id and t1.role_type=1 and t1.deleted=0 and t1.project_type="%s" where t.user_id=%s and t.deleted=0 limit 1', project_type, user_id)
ngx.log(ngx.INFO, '执行SQL查询: ' .. sql)
local res, err, errno, sqlstate = db:query(sql)
-- 当前系统的管理员
if res and res[1] then
sql = string.format('select t.group_id g_group_id,t.group_name g_group_name,t.group_url g_group_url,t.project_type g_project_type,t.order g_order,t.is_display g_is_display,t.style g_style,t1.classes_id c_classes_id,t1.classes_name c_classes_name,t1.classes_url c_classes_url,t1.order c_order,t1.is_display c_is_display,t1.style c_style,t2.item_id i_item_id,t2.item_name i_item_name,t2.item_code i_item_code,t2.order i_order,t2.style i_style,t2.outer_url i_outer_url from auth_group t join auth_classes t1 on t1.group_id=t.group_id and t1.deleted=0 join auth_item t2 on t2.classes_id=t1.classes_id and t2.deleted=0 where t.deleted=0 and t.project_type="%s" order by t.order,t1.order,t2.order', project_type)
else
sql = string.format('select t.group_id g_group_id,t.group_name g_group_name,t.group_url g_group_url,t.project_type g_project_type,t.order g_order,t.is_display g_is_display,t.style g_style,t1.classes_id c_classes_id,t1.classes_name c_classes_name,t1.classes_url c_classes_url,t1.order c_order,t1.is_display c_is_display,t1.style c_style,t2.item_id i_item_id,t2.item_name i_item_name,t2.item_code i_item_code,t2.order i_order,t2.style i_style,t2.outer_url i_outer_url from auth_group t join auth_classes t1 on t1.group_id=t.group_id and t1.deleted=0 join auth_item t2 on t2.classes_id=t1.classes_id and t2.deleted=0 join auth_rel_role_item t3 on t3.item_id=t2.item_id and t3.deleted=0 join auth_rel_role_user t4 on t4.role_id=t3.role_id and t4.deleted=0 where t.deleted=0 and t.project_type="%s" and t4.user_id=%s order by t.order,t1.order,t2.order', project_type, user_id)
end
ngx.log(ngx.INFO, '执行SQL查询: ' .. sql)
local res, err, errno, sqlstate = db:query(sql)
if not res[1] then
db_utils.close_db(db)
ngx.log(ngx.INFO, string.format('【%s】未授权访问', user_id))
func.invalid_exit('未授权访问')
end
db_utils.close_db(db)
local function comp(a, b)
if a == nil or b == nil or a['order'] == nil or a['order'] == ngx.null or b['order'] == nil or b['order'] == ngx.null then
return false
end
-- 两个值相当返回true会报错
if a['order'] == b['order'] then
return false
end
return a['order'] < b['order']
end
local group_map = {}
for k, v in ipairs(res) do
local group = {}
group["group_id"] = res[k]["g_group_id"]
group["group_name"] = res[k]["g_group_name"]
group["group_url"] = res[k]["g_group_url"]
group["project_type"] = res[k]["g_project_type"]
group["order"] = res[k]["g_order"]
group["is_display"] = res[k]["g_is_display"]
group["style"] = res[k]["g_style"]
if group_map[group["group_id"]] == nil then
group_map[group["group_id"]] = group
end
local classes = {}
classes["group_id"] = res[k]["g_group_id"]
classes["classes_id"] = res[k]["c_classes_id"]
classes["classes_name"] = res[k]["c_classes_name"]
classes["classes_url"] = res[k]["c_classes_url"]
classes["order"] = res[k]["c_order"]
classes["is_display"] = res[k]["c_is_display"]
classes["style"] = res[k]["c_style"]
if group_map[group["group_id"]]["children"] == nil then
group_map[group["group_id"]]["children"] = {}
end
if group_map[group["group_id"]]["children"][classes["classes_id"]] == nil then
group_map[group["group_id"]]["children"][classes["classes_id"]] = classes
end
if res[k]["i_item_id"] ~= nil and res[k]["i_item_id"] ~= ngx.null then
local item = {}
item["classes_id"] = res[k]["c_classes_id"]
item["item_id"] = res[k]["i_item_id"]
item["item_name"] = res[k]["i_item_name"]
item["item_code"] = res[k]["i_item_code"]
item["order"] = res[k]["i_order"]
item["style"] = res[k]["i_style"]
item["outer_url"] = res[k]["i_outer_url"]
if group_map[group["group_id"]]["children"][classes["classes_id"]]["children"] == nil then
group_map[group["group_id"]]["children"][classes["classes_id"]]["children"] = {}
end
group_map[group["group_id"]]["children"][classes["classes_id"]]["children"][item["item_id"]] = item
end
end
local group_list = {}
for _, v in pairs(group_map) do
local classes_list = {}
for _, v1 in pairs(v["children"]) do
if v1["children"] ~= nil then
local item_list = {}
for _, v2 in pairs(v1["children"]) do
table.insert(item_list, v2)
end
table.sort(item_list, comp)
v1["children"] = item_list
end
table.insert(classes_list, v1)
end
table.sort(classes_list, comp)
v["children"] = classes_list
table.insert(group_list, v)
end
table.sort(group_list, comp)
ngx.deleted = 200
ngx.header.content_type = "application/json; charset=utf-8";
ngx.say(string.format('{"code":0,"msg":null,"data":%s,"success":true}', json.encode(group_list)))
ngx.exit(ngx.OK)
|
local cfg = require'manifestconfig'
local WIN = jit.os == 'Windows'
local OSX = jit.os == 'OSX'
local SEP = WIN and '\\' or '/'
local format, gsub = string.format, string.gsub
local function capture(cmd)
local f = io.popen(cmd)
local s = f:read'*a'
f:close()
return gsub(gsub(gsub(s, '^%s+', ''), '%s+$', ''), '[\n\r]+', ' ')
end
local function mkdir(dir)
os.execute(format(WIN and 'mkdir %q' or 'mkdir -p %q', dir))
end
local function cpdir(dir, dest)
os.execute(format(WIN and 'xcopy /s /e /y %q %q' or 'cp -R %q %q', dir, dest))
end
local NMHJSON = [[{
"name": %q,
"description": %q,
"path": %q,
"type": "stdio",
%q: [%q]
}
]]
local function donmh(dir, ncdir, browser)
mkdir(dir)
local json = format(NMHJSON,
cfg.name, cfg.description,
format('%s%s%s', ncdir, SEP, WIN and 'host.bat' or 'host.sh'),
(browser == 'firefox') and 'allowed_extensions' or 'allowed_origins',
(browser == 'firefox') and cfg.firefoxaddonid or cfg.chromeextensionid)
local path = format('%s%s%s%s.json', dir, SEP, cfg.name, WIN and format('_%s', browser) or '')
local fp = assert(io.open(path, 'w+'))
assert(fp:write(json))
fp:close()
if not WIN then
os.execute(format('chmod o+r %q', path))
end
print(format('+ %s', path))
return path
end
local LAUNCHER_BATCH = [[
@echo off
setlocal
cd "%~dp0data"
call luajit "%~n0.lua" %*
]]
local LAUNCHER_SHELL = [[
#!/bin/sh
cd "$(dirname "$0")/data"
"./luajit" "$(basename "$0" .sh).lua" "$@"
]]
local function dolaunchers(name, dir)
dir = dir or '..'
local path = dir..SEP..name
local f
f = io.open(path..'.bat', 'w+b')
f:write(LAUNCHER_BATCH)
f:close()
f = io.open(path..'.sh', 'w+b')
f:write(LAUNCHER_SHELL)
f:close()
if not WIN then
os.execute(format('chmod +x %q', path..'.sh'))
end
end
local function doclient(dir)
local datadir = dir..SEP..'data'
mkdir(dir)
mkdir(datadir)
cpdir('.', datadir)
dolaunchers('host', dir)
dolaunchers('uninstall', dir)
print(format('+ %s%s', dir, SEP))
print(format('+ %s%s', datadir, SEP))
end
if WIN then
local function doreg(reg, dir)
os.execute(format('reg add "%s" /ve /t REG_SZ /d "%s" /f', reg, dir))
print(format('+ %s', reg))
end
local dir = format('%s\\%s', os.getenv'ProgramFiles', cfg.neatname)
doclient(dir)
local ffpath = donmh(dir, dir, 'firefox')
local gcpath = donmh(dir, dir, 'chrome')
doreg(format('HKCU\\Software\\Mozilla\\NativeMessagingHosts\\%s', cfg.name), ffpath)
doreg(format('HKCU\\Software\\Google\\Chrome\\NativeMessagingHosts\\%s', cfg.name), gcpath)
else
local root = capture'id -un' == 'root'
local home = os.getenv'HOME'
if OSX then
local dir = format('%s/Library/Application Support/Mozilla/%s', home, cfg.neatname)
doclient(dir)
if root then
donmh('/Library/Mozilla/NativeMessagingHosts', dir, 'firefox')
donmh('/Library/Vivaldi/NativeMessagingHosts', dir)
donmh('/Library/Chromium/NativeMessagingHosts', dir)
donmh('/Library/Google/Chrome/NativeMessagingHosts', dir)
else
donmh(home..'/Library/Application Support/Mozilla/NativeMessagingHosts', dir, 'firefox')
donmh(home..'/Library/Application Support/Vivaldi/NativeMessagingHosts', dir)
donmh(home..'/Library/Application Support/Chromium/NativeMessagingHosts', dir)
donmh(home..'/Library/Application Support/Google/Chrome/NativeMessagingHosts', dir)
end
else
local dir = format('%s/.local/lib/%s', home, cfg.name)
doclient(dir)
if root then
donmh('/usr/lib/mozilla/native-messaging-hosts', dir, 'firefox')
donmh('/etc/vivaldi/native-messaging-hosts', dir)
donmh('/etc/chromium/native-messaging-hosts', dir)
donmh('/etc/opt/chrome/native-messaging-hosts', dir)
else
donmh(home..'/.mozilla/native-messaging-hosts', dir, 'firefox')
donmh(home..'/.config/vivaldi/NativeMessagingHosts', dir)
donmh(home..'/.config/chromium/NativeMessagingHosts', dir)
donmh(home..'/.config/google-chrome/NativeMessagingHosts', dir)
end
end
end
dolaunchers('uninstall')
if ... ~= '-y' then
io.write'Done! Press enter to close...'
io.read()
end
|
local stateDelimiter = "|";
local namespace = KEYS[1];
local instanceId = ARGV[1];
local currentStamp = ARGV[2];
local instanceIdxKey = 'cosid' .. ':' .. namespace .. ':itc_idx';
local function convertStingToState(machineState)
local splitIdx = string.find(machineState, stateDelimiter, 1);
local machineId = string.sub(machineState, 1, splitIdx - 1);
local timestamp = string.sub(machineState, splitIdx + 1, -1);
return { tonumber(machineId), tonumber(timestamp) }
end
local function convertStateToString(machineId, timestamp)
return tostring(machineId) .. stateDelimiter .. tostring(timestamp);
end
local function setState(machineId, lastStamp)
local machineState = convertStateToString(machineId, lastStamp);
redis.call('hset', instanceIdxKey, instanceId, machineState);
end
local machineState = redis.call('hget', instanceIdxKey, instanceId)
if machineState then
local states = convertStingToState(machineState)
local machineId = states[1];
setState(machineId, currentStamp);
return 1;
end
return 0;
|
--
-- Copyright 2013 John Pormann
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- TODO: list of other macros for Twine
-- -- http://aliendovecote.com/resources/twine-snippets/
-- -- http://www.glorioustrainwrecks.com/files/Twine1.3.5.Macros.html#9.3
-- images: https://groups.google.com/forum/#!msg/tweecode/_NW7Ky-RlUU/FoDvSnFPvWcJ
-- -- http://eturnerx.blogspot.com/2013/01/how-to-insert-images-into-twine-without.html
-- -- -- suggests using a generic html tag
-- timed goto: http://www.glorioustrainwrecks.com/node/5108
-- "once" and "becomes": http://www.glorioustrainwrecks.com/blog/584
-- -- <<once>>You arrive at the garage.<<becomes>>Back at the garage.<<becomes>>Third visit to the garage.<<endonce>>
-- either() function: http://aliendovecote.com/resources/twine-snippets/
local function add(aa, bb)
return( aa + bb )
end
local function sub(aa, bb)
return( aa - bb )
end
local function mpy(aa, bb)
return( aa * bb )
end
local function mod(aa, bb)
return( aa % bb )
end
local function div(aa, bb)
return( aa / bb )
end
local function neg(aa)
return( -aa )
end
-- we handle true/false (logical ops) as 1/0 math ops
local function l_gt(aa, bb)
return( (aa > bb) and 1 or 0 )
end
local function l_ge(aa, bb)
return( (aa >= bb) and 1 or 0 )
end
local function l_lt(aa, bb)
return( (aa < bb) and 1 or 0 )
end
local function l_le (aa, bb)
return( (aa <= bb) and 1 or 0 )
end
local function l_eq(aa, bb)
return( (aa == bb) and 1 or 0 )
end
local function l_neq(aa, bb)
return( (aa ~= bb) and 1 or 0 )
end
local function l_and(aa, bb)
return( (aa and bb) and 1 or 0 )
end
local function l_or(aa, bb)
return( (aa or bb) and 1 or 0 )
end
local function l_not(aa)
return( (not aa) and 1 or 0 )
end
local function l_random(...)
local rtn = -1
if( arg.n == 0 ) then
rtn = math.random()
elseif( arg.n == 1 ) then
rtn = math.random( arg[1]+0 )
elseif( arg.n == 2 ) then
rtn = math.random( arg[1]+0, arg[2]+0 )
end
return( rtn )
end
local function l_max(...)
local mx = arg[1]
for i=2,arg.n do
if( (arg[i]+0) > mx ) then
mx = arg[i]+0
end
end
return( mx )
end
local function l_min(...)
local mn = arg[1]
for i=2,arg.n do
if( (arg[i]+0) < mn ) then
mn = arg[i]+0
end
end
return( mn )
end
local function l_either(...)
local i = math.random(arg.n)
dprint( 25, "l_either n="..arg.n.." i="..i.." v="..arg[i] )
local rtn = arg[i]
-- TODO: this assumes first and last chars are single/double quotes
-- but does not check, nor does it check that they match
rtn = rtn:sub(2,-2)
return( rtn )
end
local fcn_table = {
random = l_random,
min = math.min,
max = math.max,
either = l_either
}
-- evalMath assumes all tokens in text-string are numbers!
function evalMath( text )
-- make a copy of the string, so we don't corrupt the original
local output = string.rep( text, 1 )
output = output:gsub( "%s+", "" )
dprint( 15, "math-eval ["..output.."]" )
local i, j, a,b,c
-- first, look for functions F(x)
-- this also removes some parens which would otherwise be parsed below
local rctr = 0
i, j, a,b = string.find( output, "(%a+)%((.-)%)" )
while( i ~= nil ) do
dprint( 15, "found fcn at "..i..","..j.."["..a.."|"..b.."]" )
local nargs = 0
if( b:len() > 0 ) then
nargs = 1
end
for q=1,b:len() do
local qq = b:sub(q,q)
if( qq == "," ) then
nargs = nargs + 1
end
end
local val = 0
if( fcn_table[a] ~= nil ) then
local f = fcn_table[a]
if( nargs == 0 ) then
val = f()
elseif( nargs == 1 ) then
val = f( b )
elseif( nargs == 2 ) then
local k = string.find( b, "," )
local bb = b:sub(1,k-1)
local cc = b:sub(k+1)
val = f( bb, cc )
elseif( nargs == 3 ) then
local k = string.find( b, "," )
local bb = b:sub(1,k-1)
local cc = b:sub(k+1)
local kk= string.find( cc, "," )
local ccc = cc:sub(1,kk-1)
local ddd = cc:sub(kk+1)
dprint( 20, " args ["..bb..","..ccc..","..ddd.."]" )
val = f( bb, ccc, ddd )
else
-- TODO: bad function/nargs pair?
val = 0
end
else
-- TODO: bad function name .. what to do?
val = 0
end
output = output:sub(1,i-1) .. val .. output:sub(j+1)
i, j, a,b = string.find( output, "(%a+)%((.-)%)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
dprint( 15, "output ["..output.."]" )
-- TODO: then, look for unary negation (e.g. -5)
-- next, do parens
rctr = 0
i, j, a = string.find( output, "%((.-)%)" )
while( i ~= nil ) do
dprint( 15, "found () at "..i..","..j.."["..a.."]" )
local val = evalMath( a )
output = output:sub(1,i-1) .. val .. output:sub(j+1)
i, j, a = string.find( output, "%((.-)%)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
-- TODO: then, logical not
-- next, do mpy, div, mod
rctr = 0
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)([%*%/%%])(%-*[0-9%.]+)" )
while( i ~= nil ) do
dprint( 15, "found */ at "..i..","..j.."["..a..","..b..","..c.."]" )
local val = 0
if( b == "*" ) then
val = mpy( (a+0),(c+0) )
elseif( b == "/" ) then
val = div( (a+0),(c+0) )
elseif( b == "%" ) then
val = mod( (a+0),(c+0) )
end
output = output:sub(1,i-1) .. val .. output:sub(j+1)
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)([%*%/%%])(%-*[0-9%.]+)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
-- then, do add and sub
rctr = 0
local i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)([%+%-])(%-*[0-9%.]+)" )
while( i ~= nil ) do
dprint( 15, "found +- at "..i..","..j.."["..a..","..b..","..c.."]" )
local val = 0
if( b == "+" ) then
val = add( (a+0),(c+0) )
elseif( b == "-" ) then
val = sub( (a+0),(c+0) )
end
output = output:sub(1,i-1) .. val .. output:sub(j+1)
dprint( 15, " new output ["..output.."]" )
flag = string.find( output, "[%+%-]" )
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)([%+%-])(%-*[0-9%.]+)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
-- TODO: next, do logical comparisons
-- note: we've already handled logical negation, so "~" should only be "~="
rctr = 0
-- TODO: need to rework this regex to catch gt/lte/etc. char sequences
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)([%~%>%<%=]+)(%-*[0-9%.]+)" )
while( i ~= nil ) do
dprint( 15, "found log-op at "..i..","..j.."["..a..","..b..","..c.."]" )
local val = 0
if( (b == ">") or (b == "gt") ) then
val = l_gt( (a+0),(c+0) )
elseif( (b == ">=") or (b == "gte") ) then
val = l_ge( (a+0),(c+0) )
elseif( (b == "<") or (b == "lt") ) then
val = l_lt( (a+0),(c+0) )
elseif( (b == "<=") or (b == "lte") ) then
val = l_le( (a+0),(c+0) )
elseif( (b == "==") or (b == 'eq') or (b == 'is') ) then
val = l_eq( (a+0),(c+0) )
elseif( (b == "~=") or (b == 'neq') ) then
val = l_neq( (a+0),(c+0) )
else
-- TODO: there could be malformed ops that we should catch here
-- e.g. ">>" matches the find pattern but is not valid
val = 0
end
output = output:sub(1,i-1) .. val .. output:sub(j+1)
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)([%~%>%<%=]+)(%-*[0-9%.]+)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
-- then, logical and
rctr = 0
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)(%&%&|and)(%-*[0-9%.]+)" )
while( i ~= nil ) do
dprint( 15, "found +- at "..i..","..j.."["..a..","..b..","..c.."]" )
local val = 0
if( (b == "&&") or (b == 'and') ) then
val = l_and( (a+0),(c+0) )
end
output = output:sub(1,i-1) .. val .. output:sub(j+1)
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)(%&%&)(%-*[0-9%.]+)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
-- last, logical or
rctr = 0
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)(%|%||or)(%-*[0-9%.]+)" )
while( i ~= nil ) do
dprint( 15, "found +- at "..i..","..j.."["..a..","..b..","..c.."]" )
local val = 0
if( (b == "||") or (b == 'or') ) then
val = l_or( (a+0),(c+0) )
end
output = output:sub(1,i-1) .. val .. output:sub(j+1)
i, j, a,b,c = string.find( output, "(%-*[0-9%.]+)(%|%|)(%-*[0-9%.]+)" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
return( output )
end
-- evalString will swap param-key-strings for param-values in text
-- that gives an all-numeric string which it sends to evalMath
function evalString( text, params )
local expr = text:rep(1)
dprint( 15, "string-eval ["..expr.."]" )
local i, j, a
local rctr = 0
if( params ~= nil ) then
dprint( 15, "found params table..." )
for kk,vv in pairs(params) do
dprint( 20, "storyVars["..kk.."]=["..vv.."]" )
end
i, j, a = string.find( expr, "(%$%a+)", 1 )
while( i ~= nil ) do
dprint( 15, "found var at "..i..","..j.."["..a.."]" )
local val = 0
if( params[a] ~= nil ) then
val = params[a]
else
-- TODO: maybe use NaN to force an error?
val = "0"
end
expr = expr:sub(1,i-1) .. val .. expr:sub(j+1)
i, j, a = string.find( expr, "(%$%a+)", j+1 )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
end
dprint( 15, "string-eval-3 ["..expr.."]" )
-- always look for true and false .. substitute with 1 and 0
rctr = 0
i, j = string.find( expr, "true" )
while( i ~= nil ) do
expr = expr:sub(1,i-1) .. "1" .. expr:sub(j+1)
i, j = string.find( expr, "true" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
rctr = 0
i, j = string.find( expr, "false" )
while( i ~= nil ) do
expr = expr:sub(1,i-1) .. "0" .. expr:sub(j+1)
i, j = string.find( expr, "false" )
rctr = rctr + 1
if( rctr > 100 ) then
break
end
end
dprint( 15, "string-eval-4 ["..expr.."]" )
local output = evalMath( expr )
return( output )
end
|
--------------------------------------------------------------------------------
-- Newton-type methods for root finding module.
--
-- Copyright (C) 2011-2014 Stefano Peluchetti. All rights reserved.
--
-- Features, documentation and more: http://www.scilua.org .
--
-- This file is part of the SciLua library, which is released under the MIT
-- license: full text in file LICENSE.TXT in the library's root folder.
--------------------------------------------------------------------------------
-- TODO: Consider math.abs(y0) < epsilon safeguard instead of y0 == 0.
-- Make sure that the ordering is right.
local function rebracket(x1, y1, xl, xu, yl, yu)
if yl*y1 <= 0 then
return xl, x1, yl, y1
else
return x1, xu, y1, yu
end
end
-- Required: f(x) --> y, f1.
local function newton(f, xl, xu, stop)
if not(xl < xu) then
error("xl < xu required: xl="..xl..", xu="..xu)
end
local yl, yu = f(xl), f(xu)
if not (yl*yu <= 0) then
error("root not bracketed by f(xl)="..yl..", f(xu)="..yu)
end
local x0 = xl + 0.5*(xu - xl) -- Avoid xm > xl or xm < xu.
local y0, f10 = f(x0)
while true do
local x1 = x0 - y0/f10
if x1 == x0 then
if y0 == 0 then
return x0, y0, x0, x0, y0, y0
else
return nil, "x1 == x0, f(x0)="..y0..", f1(x0)="..f10
end
end
if not (xl <= x1 and x1 <= xu) then
return nil, "x1 outside bracket, f(x0)="..y0..", f1(x0)="..f10
end
local y1, f11 = f(x1)
if stop(x1, y1, xl, xu, yl, yu) then
return x1, y1, xl, xu, yl, yu
end
xl, xu, yl, yu = rebracket(x1, y1, xl, xu, yl, yu)
x0, y0, f10 = x1, y1, f11
end
end
-- Required: f(x) --> y, f1, f2.
local function halley(f, xl, xu, stop)
if not(xl < xu) then
error("xl < xu required: xl="..xl..", xu="..xu)
end
local yl, yu = f(xl), f(xu)
if not (yl*yu <= 0) then
error("root not bracketed by f(xl)="..yl..", f(xu)="..yu)
end
local x0 = xl + 0.5*(xu - xl) -- Avoid xm > xl or xm < xu.
local y0, f10, f20 = f(x0)
while true do
local x1 = x0 - 2*y0*f10/(2*f10^2 - y0*f20)
if x1 == x0 then
if y0 == 0 then
return x0, y0, x0, x0, y0, y0
else
return nil, "x1 == x0, f(x0)="..y0..", f1(x0)="..f10..", f2(x0)="..f20
end
end
if not (xl <= x1 and x1 <= xu) then
return nil, "x1 outside bracket, f(x0)="..y0..", f1(x0)="..f10
..", f2(x0)="..f20
end
local y1, f11, f21 = f(x1)
if stop(x1, y1, xl, xu, yl, yu) then
return x1, y1, xl, xu, yl, yu
end
xl, xu, yl, yu = rebracket(x1, y1, xl, xu, yl, yu)
x0, y0, f10, f20 = x1, y1, f11, f21
end
end
return {
newton = newton,
halley = halley,
} |
local StartScreenState = class({})
local playButton = require('things/playButton')
local howToButton = require('things/howToButton')
local quitButton = require('things/quitButton')
local arrayButtons = {playButton,howToButton,quitButton}
local startScreen = love.graphics.newImage('assets/startScreen.png')
local arenaSFX = love.audio.newSource("assets/arena.wav", "static")
function StartScreenState:enter()
arenaSFX:setVolume(globalVolume)
arenaSFX:play()
local yCoord = love.graphics:getHeight()/2+64
for i,button in ipairs(arrayButtons) do
button.x,button.y = 64,yCoord
yCoord = yCoord + 1.5*button.height
end
end
function StartScreenState:draw()
love.graphics.setColor(255,255,255)
love.graphics.draw(startScreen,0,0)
for i,button in ipairs(arrayButtons) do
love.graphics.draw(button.image,button.x,button.y)
end
end
function StartScreenState:mousereleased(x, y, mouseButton)
if mouseButton == 'l' then
for i,button in ipairs(arrayButtons) do
if (button.x <= x and x <= button.x + button.width) and (button.y <= y and y <= button.y + button.height) then
if button.name == 'play' then
arenaSFX:stop()
GameState.switch(ChooseColorState)
end
if button.name == 'howTo' then
GameState.switch(HowToState)
end
if button.name == 'quit' then
love.event.quit()
end
end
end
end
end
return StartScreenState
|
--[[
Copyright (c) 2014 Jon Maur
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
]]
local Signal = require "draggin/signal"
local SpriteManager = require "draggin/spritemanager"
local Sprite = {}
--- Create a Sprite instance.
-- A Sprite is a MOAIProp2D with extra stuff like animation.
-- @param _strSprite the name of the sprite data to load
-- @return the new Sprite instance
function Sprite.new(_strSprite)
local spriteData = SpriteManager.getSpriteData(_strSprite)
-- make a sprite, it's also a MOAIProp2D so make that first, then just tack on the "sprite" stuff
local sprite = MOAIProp2D.new()
sprite:setDeck(spriteData.deck)
sprite.anim = MOAIAnim:new()
sprite.anim:reserveLinks(1)
sprite.spriteData = spriteData
local currAnimationName = ""
-- event signals
sprite.sig_spritechanged = Signal.new()
sprite.sig_animationchanged = Signal.new()
sprite.sig_animationcomplete = Signal.new()
--- Set the sprite data to use for this Sprite.
-- Emits a sig_spritechanged signal with the name of the new sprite data
-- @param _strSpriteData the name of the new sprite data to use
-- @param _strAnim name of an animation in the new sprite data to play
-- @param _speed optional speed of the animation
-- @param _mode optional mode of the animation, eg MOAITimer.LOOP
function sprite:setSpriteData(_strSpriteData, _strAnim, _speed, _mode)
--self.anim:stop()
spriteData = SpriteManager.getSpriteData(_strSpriteData)
sprite.sig_spritechanged:emit(_strSpriteData)
self:playAnimation(_strAnim, _speed, _mode)
end
--- Plays an animtion of this Sprite.
-- Emits a sig_animationchanged signal with the new animation name
-- @param _strAnim the name of the animation to play
-- @param _speed optional speed of the animation 1 = normal speed, 0 = paused
-- @param _mode optional mode of the animation, eg MOAITimer.LOOP
function sprite:playAnimation(_strAnim, _speed, _mode)
_speed = _speed or 1
_mode = _mode or MOAITimer.LOOP
if _mode == MOAITimer.LOOP and currAnimationName == _strAnim then
self.anim:setSpeed(_speed)
return
end
self.anim:stop()
self.anim = MOAIAnim:new()
self.anim:reserveLinks(1)
assert(self.spriteData.curves[_strAnim] ~= nil, "Cannot find animation "..tostring(_strAnim))
self.anim:setLink(1, self.spriteData.curves[_strAnim], self, MOAIProp2D.ATTR_INDEX)
self.anim:setMode(_mode)
self.anim:setSpeed(_speed)
self.anim:start()
self.anim:setListener(MOAITimer.EVENT_TIMER_END_SPAN, function() sprite.sig_animationcomplete:emit() end)
currAnimationName = _strAnim
sprite.sig_animationchanged:emit(_strAnim)
end
--- Get the current animation name.
-- @return string, the current animation name of this Sprite.
function sprite:getCurrentAnimationName()
return currAnimationName
end
--- Get the bounds.
-- The bound is determined by only the first frame of the current animation.
-- The bounding box is already cropped to the pixels of the frame.
-- @return the bounding box of the first frame of the current animation scaled by the Sprite's scale.
function sprite:getBounds()
local bounds = {unpack(self.spriteData.bounds[currAnimationName])}
-- scale the bounds
local sx, sy = self:getScl()
bounds[1] = bounds[1] * sx
bounds[2] = bounds[2] * sy
bounds[3] = bounds[3] * sx
bounds[4] = bounds[4] * sy
return bounds
end
return sprite
end
return Sprite
|
function executeCallback(callback, ...)
if type(callback) ~= "function" then
return false
end
local success, err = pcall(callback, ...)
if not success then
outputDebugString("Error in callback: " .. tostring(err))
return false
end
return true
end
function generateDefaultNumberplate(vehicleId)
if not vehicleId then
vehicleId = 0
end
math.randomseed(tonumber(vehicleId))
return tostring(exports.dpUtils:generateString(2)) .. tostring(math.random(10, 99)) .. " " .. tostring(exports.dpUtils:generateString(3))
end |
--[[--
<b style="color: red">WARNING: THIS IS AN INTERNAL MODULE.</b></br></br>
This module contains all the functions that handle plugins.
The NutScript framework allows you to create and add plugins to it in order for
each server to be different. You can add plugins by adding a file/folder in
`plugins` directory under your schema folder.
The NutScript folder also contains default plugins that can be disabled at anytime.
]]
-- @module nut.plugin
nut.plugin = nut.plugin or {}
nut.plugin.list = nut.plugin.list or {}
nut.plugin.unloaded = nut.plugin.unloaded or {}
HOOKS_CACHE = {}
--- This function loads a plugin with a certain ID.
-- It also checks whether the plugin is a single file or a folder with
-- multiple files.
-- @param uniqueID a number.
-- @string path the plugins directory to load the plugins from.
-- @param isSingleFile a boolean value.
-- @string variable a string.
-- @return nothing.
function nut.plugin.load(uniqueID, path, isSingleFile, variable)
if (hook.Run("PluginShouldLoad", uniqueID) == false) then return end
variable = variable or "PLUGIN"
-- Plugins within plugins situation?
local oldPlugin = PLUGIN
local PLUGIN = {folder = path, plugin = oldPlugin, uniqueID = uniqueID, name = "Unknown", desc = "Description not available", author = "Anonymous"}
if (uniqueID == "schema") then
if (SCHEMA) then
PLUGIN = SCHEMA
end
variable = "SCHEMA"
PLUGIN.folder = engine.ActiveGamemode()
elseif (nut.plugin.list[uniqueID]) then
PLUGIN = nut.plugin.list[uniqueID]
end
_G[variable] = PLUGIN
PLUGIN.loading = true
if (!isSingleFile) then
nut.util.includeDir(path.."/libs", true, true)
nut.attribs.loadFromDir(path.."/attributes")
nut.faction.loadFromDir(path.."/factions")
nut.class.loadFromDir(path.."/classes")
nut.item.loadFromDir(path.."/items")
nut.util.includeDir(path.."/derma", true)
nut.plugin.loadEntities(path.."/entities")
nut.lang.loadFromDir(path.."/languages")
nut.plugin.loadFromDir(path.."/plugins")
hook.Run("DoPluginIncludes", path, PLUGIN)
end
nut.util.include(isSingleFile and path or path.."/sh_"..variable:lower()..".lua", "shared")
PLUGIN.loading = false
local uniqueID2 = uniqueID
if (uniqueID2 == "schema") then
uniqueID2 = PLUGIN.name
end
function PLUGIN:setData(value, global, ignoreMap)
nut.data.set(uniqueID2, value, global, ignoreMap)
end
function PLUGIN:getData(default, global, ignoreMap, refresh)
return nut.data.get(uniqueID2, default, global, ignoreMap, refresh) or {}
end
hook.Run("PluginLoaded", uniqueID, PLUGIN)
if (uniqueID != "schema") then
PLUGIN.name = PLUGIN.name or "Unknown"
PLUGIN.desc = PLUGIN.desc or "No description available."
for k, v in pairs(PLUGIN) do
if (type(v) == "function") then
HOOKS_CACHE[k] = HOOKS_CACHE[k] or {}
HOOKS_CACHE[k][PLUGIN] = v
end
end
nut.plugin.list[uniqueID] = PLUGIN
_G[variable] = nil
end
if (PLUGIN.OnLoaded) then
PLUGIN:OnLoaded()
end
end
--- Gets a hook with the specified name.
-- @string pluginName the name of the plugin.
-- @string hookName the name of the a hook.
-- @return a function or nil.
function nut.plugin.getHook(pluginName, hookName)
local h = HOOKS_CACHE[hookName]
if (h) then
local p = nut.plugin.list[pluginName]
if (p) then
return h[p]
end
end
return
end
--- Loads entities present in a specified path.
-- @string path the directory to load the entities from.
-- @return a boolean value.
function nut.plugin.loadEntities(path)
local files, folders
local function IncludeFiles(path2, clientOnly)
if (SERVER and file.Exists(path2.."init.lua", "LUA") or CLIENT) then
nut.util.include(path2.."init.lua", clientOnly and "client" or "server")
if (file.Exists(path2.."cl_init.lua", "LUA")) then
nut.util.include(path2.."cl_init.lua", "client")
end
return true
elseif (file.Exists(path2.."shared.lua", "LUA")) then
nut.util.include(path2.."shared.lua")
return true
end
return false
end
local function HandleEntityInclusion(folder, variable, register, default, clientOnly)
files, folders = file.Find(path.."/"..folder.."/*", "LUA")
default = default or {}
for k, v in ipairs(folders) do
local path2 = path.."/"..folder.."/"..v.."/"
_G[variable] = table.Copy(default)
_G[variable].ClassName = v
if (IncludeFiles(path2, clientOnly) and !client) then
if (clientOnly) then
if (CLIENT) then
register(_G[variable], v)
end
else
register(_G[variable], v)
end
end
_G[variable] = nil
end
for k, v in ipairs(files) do
local niceName = string.StripExtension(v)
_G[variable] = table.Copy(default)
_G[variable].ClassName = niceName
nut.util.include(path.."/"..folder.."/"..v, clientOnly and "client" or "shared")
if (clientOnly) then
if (CLIENT) then
register(_G[variable], niceName)
end
else
register(_G[variable], niceName)
end
_G[variable] = nil
end
end
-- Include entities.
HandleEntityInclusion("entities", "ENT", scripted_ents.Register, {
Type = "anim",
Base = "base_gmodentity",
Spawnable = true
})
-- Include weapons.
HandleEntityInclusion("weapons", "SWEP", weapons.Register, {
Primary = {},
Secondary = {},
Base = "weapon_base"
})
-- Include effects.
HandleEntityInclusion("effects", "EFFECT", effects and effects.Register, nil, true)
end
--- Loads all plugins from the plugins directory and initializes the schema folder.
-- @return nothing.
function nut.plugin.initialize()
nut.plugin.load("schema", engine.ActiveGamemode().."/schema")
hook.Run("InitializedSchema")
nut.plugin.loadFromDir("nutscript/plugins")
nut.plugin.loadFromDir(engine.ActiveGamemode().."/plugins")
hook.Run("InitializedPlugins")
if (SERVER) then
timer.Simple(0, function()
hook.Run("LoadData")
hook.Run("PostLoadData")
end)
end
end
--- Loads all plugins from the plugins directory.
-- @string directory directory to load the plugins from.
-- @return nothing.
function nut.plugin.loadFromDir(directory)
local files, folders = file.Find(directory.."/*", "LUA")
for k, v in ipairs(folders) do
nut.plugin.load(v, directory.."/"..v)
end
for k, v in ipairs(files) do
nut.plugin.load(string.StripExtension(v), directory.."/"..v, true)
end
end
function nut.plugin.setUnloaded(uniqueID, state, noSave)
local plugin = nut.plugin.list[uniqueID]
if (state) then
if (plugin.onLoaded) then
plugin:onLoaded()
end
if (nut.plugin.unloaded[uniqueID]) then
nut.plugin.list[uniqueID] = nut.plugin.unloaded[uniqueID]
nut.plugin.unloaded[uniqueID] = nil
else
return false
end
elseif (plugin) then
if (plugin.onUnload) then
plugin:onUnload()
end
nut.plugin.unloaded[uniqueID] = nut.plugin.list[uniqueID]
nut.plugin.list[uniqueID] = nil
else
return false
end
if (SERVER and !noSave) then
local status
if (state) then
status = true
end
local unloaded = nut.data.get("unloaded", {}, true, true)
unloaded[uniqueID] = status
nut.data.set("unloaded", unloaded, true, true)
end
hook.Run("PluginUnloaded", uniqueID)
return true
end
if (SERVER) then
nut.plugin.repos = nut.plugin.repos or {}
nut.plugin.files = nut.plugin.files or {}
local function ThrowFault(fault)
MsgN(fault)
end
--- Loads a repository with a specified name or URL.
-- @string url the repo's link.
-- @string name the repo's identifier.
-- @param callback a function.
-- @param faultCallback a function.
-- @return Error if it fails.
function nut.plugin.loadRepo(url, name, callback, faultCallback)
name = name or url
local curPlugin = ""
local curPluginName = ""
local cache = {data = {url = url}, files = {}}
MsgN("Loading plugins from '"..url.."'")
http.Fetch(url, function(body)
if (body:find("<h1>")) then
local fault = body:match("<h1>([_%w%s]+)</h1>") or "Unknown Error"
if (faultCallback) then
faultCallback(fault)
end
return MsgN("\t* ERROR: "..fault)
end
local exploded = string.Explode("\n", body)
print(" * Repository identifier set to '"..name.."'")
for k, line in ipairs(exploded) do
if (line:sub(1, 1) == "@") then
local key, value = line:match("@repo%-([_%w]+):[%s*](.+)")
if (key and value) then
if (key == "name") then
print(" * "..value)
end
cache.data[key] = value
end
else
local name = line:match("!%b[]")
if (name) then
curPlugin = name:sub(3, -2)
name = name:sub(8, -2)
curPluginName = name
cache.files[name] = {}
MsgN("\t* Found '"..name.."'")
elseif (curPlugin and line:sub(1, #curPlugin) == curPlugin and cache.files[curPluginName]) then
table.insert(cache.files[curPluginName], line:sub(#curPlugin + 2))
end
end
end
file.CreateDir("nutscript/plugins")
file.CreateDir("nutscript/plugins/"..cache.data.id)
if (callback) then
callback(cache)
end
nut.plugin.repos[name] = cache
end, function(fault)
if (faultCallback) then
faultCallback(fault)
end
MsgN("\t* ERROR: "..fault)
end)
end
--- Downloads plugins from a specified repository, already loaded.
-- @string repo the repo's identifier.
-- @string plugin the plugin's identifier.
-- @param callback a function.
-- @return a boolean value if no success.
function nut.plugin.download(repo, plugin, callback)
local plugins = nut.plugin.repos[repo]
if (plugins) then
if (plugins.files[plugin]) then
local files = plugins.files[plugin]
local baseDir = "nutscript/plugins/"..plugins.data.id.."/"..plugin.."/"
-- Re-create the old file.Write behavior.
local function WriteFile(name, contents)
name = string.StripExtension(name)..".txt"
if (name:find("/")) then
local exploded = string.Explode("/", name)
local tree = ""
for k, v in ipairs(exploded) do
if (k == #exploded) then
file.Write(baseDir..tree..v, contents)
else
tree = tree..v.."/"
file.CreateDir(baseDir..tree)
end
end
else
file.Write(baseDir..name, contents)
end
end
MsgN("* Downloading plugin '"..plugin.."' from '"..repo.."'")
nut.plugin.files[repo.."/"..plugin] = {}
local function DownloadFile(i)
MsgN("\t* Downloading... "..(math.Round(i / #files, 2) * 100).."%")
local url = plugins.data.url.."/repo/"..plugin.."/"..files[i]
http.Fetch(url, function(body)
WriteFile(files[i], body)
nut.plugin.files[repo.."/"..plugin][files[i]] = body
if (i < #files) then
DownloadFile(i + 1)
else
if (callback) then
callback(true)
end
MsgN("* '"..plugin.."' has completed downloading")
end
end, function(fault)
callback(false, fault)
end)
end
DownloadFile(1)
else
return false, "cloud_no_plugin"
end
else
return false, "cloud_no_repo"
end
end
concommand.Add("nut_cloudloadrepo", function(client, _, arguments)
local url = arguments[1]
local name = arguments[2] or "default"
if (!IsValid(client)) then
nut.plugin.loadRepo(url, name)
end
end)
concommand.Add("nut_cloudget", function(client, _, arguments)
if (!IsValid(client)) then
local status, result = nut.plugin.download(arguments[2] or "default", arguments[1])
if (status == false) then
MsgN("* ERROR: "..result)
end
end
end)
end
do
hook.NutCall = hook.NutCall or hook.Call
function hook.Call(name, gm, ...)
local cache = HOOKS_CACHE[name]
if (cache) then
for k, v in pairs(cache) do
local result = {v(k, ...)}
if (#result > 0) then
return unpack(result)
end
end
end
if (SCHEMA and SCHEMA[name]) then
local result = {SCHEMA[name](SCHEMA, ...)}
if (#result > 0) then
return unpack(result)
end
end
return hook.NutCall(name, gm, ...)
end
end
|
if SERVER then
ENT.Base = "lambda_trigger"
ENT.Type = "brush"
DEFINE_BASECLASS( "lambda_trigger" )
SF_TELEPORT_PRESERVE_ANGLES = 32 -- 0x20
SF_TELEPORT_LAMBDA_CHECKPOINT = 8192
function ENT:PreInitialize()
BaseClass.PreInitialize(self)
self.Landmark = ""
self.Target = ""
end
function ENT:Initialize()
BaseClass.Initialize(self)
end
function ENT:KeyValue( key, val )
BaseClass.KeyValue(self, key, val)
if key:iequals("landmark") then
self.Landmark = val
elseif key:iequals("target") then
self.Target = val
end
end
function ENT:Touch(ent)
if self:IsDisabled() == true then
return
end
if self:PassesTriggerFilters(ent) == false then
return
end
local targetEnt = ents.FindFirstByName(self.Target)
if not IsValid(targetEnt) then
return
end
local landmarkEnt = nil
local landmarkOffset = Vector(0, 0, 0)
if self.Landmark ~= "" then
landmarkEnt = ents.FindFirstByName(self.Landmark)
if IsValid(landmarkEnt) then
landmarkOffset = ent:GetPos() - landmarkEnt:GetPos()
end
end
if ent.SetGroundEntity ~= nil then
ent:SetGroundEntity(NULL)
end
local tmp = targetEnt:GetPos()
if not IsValid(landmarkEnt) and ent:IsPlayer() then
tmp.z = tmp.z - ent:OBBMins().z
end
-- Only modify velocity if no landmark is specified.
local ang = ent:GetAngles()
local vel = ent:GetVelocity()
if not IsValid(landmarkEnt) and self:HasSpawnFlags(SF_TELEPORT_PRESERVE_ANGLES) == false then
ang = targetEnt:GetAngles()
vel = Vector(0, 0, 0)
end
tmp = tmp + landmarkOffset
if ent:IsPlayer() then
ent:TeleportPlayer(tmp, ang, vel)
if self:HasSpawnFlags(SF_TELEPORT_LAMBDA_CHECKPOINT) == true and self.CheckpointSet ~= true then
GAMEMODE:SetPlayerCheckpoint({ Pos = tmp, Ang = ang })
self.CheckpointSet = true
end
else
ent:SetPos(tmp)
ent:SetVelocity(vel)
ent:SetAngles(ang)
end
end
end
|
local Activeable = false
local isToolInUse = false
local DefaultSpeed = .50
local ScreenX, ScreenY = guiGetScreenSize()
local NormalX, NormalY = (ScreenX - 826 + 625), (ScreenY - 450)
local OtherX, OtherY = (ScreenX - 826 + 490), (ScreenY - 450)
local CurrentVariableKey = 0
local ControlledElement
local DefaultValues = {CircleRadius = 10, CubeW = 10, CubeD = 10, CubeH = 10, RecW = 5, RecH = 5, SphereRadius = 10, TubeRadius = 10, TubeH = 10}
local CircleRadius = 10
local CubeW, CubeD, CubeH = 10, 10, 10
local RecW, RecH = 5, 5
local SphereRadius = 10
local TubeRadius, TubeH = 10, 10
local CollisionTable, PressedKeys, AllowedButtons, Types = {}, {}, {["num_sub"] = true; ["num_8"] = true; ["num_2"] = true; ["num_6"] = true; ["num_4"] = true; ["num_add"] = true; ["lshift"] = true; ["lalt"] = true; ["arrow_l"] = true; ["arrow_u"] = true; ["arrow_r"] = true; ["arrow_d"] = true; ["pgup"] = true; ["pgdn"] = true}, {"Circle", "Cuboid", "Rectangle", "Sphere", "Tube", "Polygon(Soon)"}
setDevelopmentMode(true)
function getColShapeType(Element) if isElement(Element) then return getElementData(Element, "ColEditor:Type") else return nil end end
function isTableEmpty(Table) local N = 0 for Key, Value in pairs(Table) do N = N + 1 end return N ~= 0 end
function centerWindow(center_window) local screenW, screenH = guiGetScreenSize() local windowW, windowH = guiGetSize(center_window, false) local x, y = (screenW - windowW) /2,(screenH - windowH) /2 return guiSetPosition(center_window, x, y, false) end
ToolBox = guiCreateWindow(NormalX, NormalY, 192, 387, "Col Editor", false)
guiWindowSetSizable(ToolBox, false)
guiSetVisible(ToolBox, false)
guiSetAlpha(ToolBox, 1.00)
Create = guiCreateButton(9, 26, 173, 40, "Stworz >", false, ToolBox)
Delete = guiCreateButton(9, 76, 173, 40, "Usun >", false, ToolBox)
Delete_All = guiCreateButton(9, 126, 173, 40, "Usun Wszystko", false, ToolBox)
Code = guiCreateButton(9, 176, 173, 40, "Kod", false, ToolBox)
Element_Info = guiCreateButton(9, 226, 173, 40, "Sprawdz Informacje", false, ToolBox)
Select = guiCreateButton(9, 276, 173, 40, "Zaznacz >", false, ToolBox)
Close = guiCreateButton(9, 326, 173, 40, "Zamknij", false, ToolBox)
ColList = guiCreateGridList((ScreenX - 770 + 625), (ScreenY - 450), 142, 281, false)
guiGridListAddColumn(ColList, "Collision Type", 0.9)
guiSetVisible(ColList, false)
CreatedList = guiCreateGridList((ScreenX - 770 + 625), (ScreenY - 450), 142, 281, false)
guiGridListAddColumn(CreatedList, "Collision", 0.9)
guiSetVisible(CreatedList, false)
SelectList = guiCreateGridList((ScreenX - 770 + 625), (ScreenY - 450), 142, 281, false)
guiGridListAddColumn(SelectList, "Collision", 0.9)
guiSetVisible(SelectList, false)
Code_output = guiCreateWindow(195, 224, 549, 396, "Code Output", false)
guiWindowSetSizable(Code_output, false)
guiSetVisible(Code_output, false)
guiSetAlpha(Code_output, 1.00)
Code_Memo = guiCreateMemo(9, 26, 530, 317, "", false, Code_output)
guiMemoSetReadOnly(Code_Memo, true)
Code_Copy = guiCreateButton(9, 353, 70, 25, "Copy", false, Code_output)
Code_Close = guiCreateButton(89, 353, 70, 25, "Close", false, Code_output)
addEventHandler("onClientGUIClick", root,
function ()
if source == Code_Close then
guiSetVisible(Code_output, false)
elseif source == Code_Copy then
setClipboard(guiGetText(Code_Memo))
--outputChatBox("#00FF00Mar#FFFF00shme#00FF00l#FF59F0lo#FFFFFF: The Code Was Copied To Clipboard", 0, 0, 0, true)
elseif source == Code then
guiSetVisible(Code_output, not guiGetVisible(Code_output))
end
end
)
for Key, Value in ipairs(Types) do
local Row = guiGridListAddRow(ColList)
guiGridListSetItemText(ColList, Row, 1, Value, false, false)
end
bindKey("lctrl", "both",
function (K, state)
if state == "down" then
Activeable = true
elseif state == "up" then
Activeable = false
end
end
)
bindKey("c", "down",
function ()
if Activeable == true then
if getResourceState(getResourceFromName("freecam")) == "running" then
if not exports["freecam"]:isFreecamEnabled() then
exports["freecam"]:setFreecamEnabled()
isToolInUse = true
guiSetVisible(ToolBox, true)
setElementFrozen(localPlayer, true)
for Key, Value in ipairs(getElementsByType("gui-button", resourceRoot)) do
guiSetEnabled(Value, isCursorShowing())
end
for Key, Value in ipairs(getElementsByType("gui-gridlist", resourceRoot)) do
guiSetEnabled(Value, isCursorShowing())
end
else
exports["freecam"]:setFreecamDisabled()
setCameraTarget(localPlayer)
showCursor(false)
isToolInUse = false
guiSetVisible(ToolBox, false)
guiSetVisible(Code_output, false)
setElementFrozen(localPlayer, false)
guiSetPosition(ToolBox, NormalX, NormalY, false)
guiSetVisible(CreatedList, false)
guiSetVisible(ColList, false)
guiSetText(Delete, "Delete >")
guiSetText(Create, "Create >")
guiSetText(Select, "Select >")
for Key, Value in ipairs(getElementsByType("gui-button", resourceRoot)) do
guiSetEnabled(Value, isCursorShowing())
end
for Key, Value in ipairs(getElementsByType("gui-gridlist", resourceRoot)) do
guiSetEnabled(Value, isCursorShowing())
end
end
end
end
end
)
addEventHandler("onClientKey", root,
function (Button, pressed)
if AllowedButtons[Button] then
if pressed then
PressedKeys[Button] = true
else
PressedKeys[Button] = false
end
end
end
)
function getColFromTable(Element)
for Key, Value in pairs(CollisionTable) do
if Value == Element then
return Key
end
end
end
--[[if PressedKeys["arrow_d"] then
Front["x"]
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X - (Front["x"] DefaultSpeed) , Y - (Front["y"] DefaultSpeed), Z)
updateCode()
end
if PressedKeys["arrow_l"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X+ (Left["x"]*DefaultSpeed), Y + (Left["y"]*DefaultSpeed), Z)
updateCode()
end
if PressedKeys["arrow_r"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X- (Left["x"]*DefaultSpeed), Y - (Left["y"]*DefaultSpeed), Z)
updateCode()
end
if PressedKeys["arrow_u"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X + (Front["x"]*DefaultSpeed), Y+(Front["y"]*DefaultSpeed), Z)
updateCode()
end]]
addEventHandler("onClientRender", root,
function ()
local Front, Right = getCamera()["matrix"]["forward"], getCamera()["matrix"]["right"]
if isElement(ControlledElement) then
if PressedKeys["lalt"] then
DefaultSpeed = .10
elseif PressedKeys["lshift"] then
DefaultSpeed = 1.70
else
DefaultSpeed = .50
end
if PressedKeys["arrow_d"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X - (Front["x"] * DefaultSpeed), Y - (Front["y"] * DefaultSpeed), Z)
updateCode()
end
if PressedKeys["arrow_r"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X + (Right["x"] * DefaultSpeed), Y + (Right["y"] * DefaultSpeed), Z)
updateCode()
end
if PressedKeys["arrow_l"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X - (Right["x"] * DefaultSpeed), Y - (Right["y"] * DefaultSpeed), Z)
updateCode()
end
if PressedKeys["arrow_u"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X + (Front["x"] * DefaultSpeed), Y + (Front["y"] * DefaultSpeed), Z)
updateCode()
end
if PressedKeys["pgup"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X, Y, Z + DefaultSpeed)
updateCode()
end
if PressedKeys["pgdn"] then
local X, Y, Z = getElementPosition(ControlledElement)
setElementPosition(ControlledElement, X, Y, Z - DefaultSpeed)
updateCode()
end
if PressedKeys["num_add"] then
local X, Y, Z = getElementPosition(ControlledElement)
if getColShapeType(ControlledElement) == "Circle" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CircleRadius = CircleRadius + DefaultSpeed > 0 and CircleRadius + DefaultSpeed or 0
ControlledElement = createColCircle(X, Y, CircleRadius + DefaultSpeed)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Circle")
setElementData(ControlledElement, "ColEditor:Additional", {CircleRadius})
elseif getColShapeType(ControlledElement) == "Sphere" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
SphereRadius = SphereRadius + DefaultSpeed > 0 and SphereRadius + DefaultSpeed or 0
ControlledElement = createColSphere(X, Y, Z, SphereRadius + DefaultSpeed)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Sphere")
setElementData(ControlledElement, "ColEditor:Additional", {SphereRadius})
elseif getColShapeType(ControlledElement) == "Cuboid" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CubeW, CubeD, CubeH = CubeW, CubeD, CubeH + DefaultSpeed
ControlledElement = createColCuboid(X, Y, Z, CubeW, CubeD, CubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Cuboid")
setElementData(ControlledElement, "ColEditor:Additional", {CubeW, CubeD, CubeH})
elseif getColShapeType(ControlledElement) == "Tube" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
TubeRadius, TubeH = TubeRadius + DefaultSpeed, TubeH
ControlledElement = createColTube(X, Y, Z, TubeRadius, TubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Tube")
setElementData(ControlledElement, "ColEditor:Additional", {TubeRadius, TubeH})
elseif getColShapeType(ControlledElement) == "Rectangle" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
RecW, RecH = RecW + DefaultSpeed > 0 and RecW + DefaultSpeed or 0, RecH
ControlledElement = createColRectangle(X, Y, RecW, RecH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Rectangle")
setElementData(ControlledElement, "ColEditor:Additional", {RecW, RecH})
end
elseif PressedKeys["num_sub"] then
local X, Y, Z = getElementPosition(ControlledElement)
if getColShapeType(ControlledElement) == "Circle" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CircleRadius = CircleRadius - DefaultSpeed
ControlledElement = createColCircle(X, Y, CircleRadius)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Circle")
setElementData(ControlledElement, "ColEditor:Additional", {CircleRadius})
elseif getColShapeType(ControlledElement) == "Sphere" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
SphereRadius = SphereRadius - DefaultSpeed
ControlledElement = createColSphere(X, Y, Z, SphereRadius)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Sphere")
setElementData(ControlledElement, "ColEditor:Additional", {SphereRadius})
elseif getColShapeType(ControlledElement) == "Cuboid" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CubeW, CubeD, CubeH = CubeW, CubeD, CubeH - DefaultSpeed
ControlledElement = createColCuboid(X, Y, Z, CubeW, CubeD, CubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Cuboid")
setElementData(ControlledElement, "ColEditor:Additional", {CubeW, CubeD, CubeH})
elseif getColShapeType(ControlledElement) == "Tube" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
TubeRadius, TubeH = TubeRadius - DefaultSpeed > 0 and TubeRadius - DefaultSpeed or 0, TubeH
ControlledElement = createColTube(X, Y, Z, TubeRadius, TubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Tube")
setElementData(ControlledElement, "ColEditor:Additional", {TubeRadius, TubeH})
elseif getColShapeType(ControlledElement) == "Rectangle" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
RecW, RecH = RecW - DefaultSpeed, RecH
ControlledElement = createColRectangle(X, Y, RecW, RecH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Rectangle")
setElementData(ControlledElement, "ColEditor:Additional", {RecW, RecH})
end
elseif PressedKeys["num_8"] then
local X, Y, Z = getElementPosition(ControlledElement)
if getColShapeType(ControlledElement) == "Cuboid" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CubeW, CubeD, CubeH = CubeW, CubeD + DefaultSpeed, CubeH
ControlledElement = createColCuboid(X, Y, Z, CubeW, CubeD, CubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Cuboid")
setElementData(ControlledElement, "ColEditor:Additional", {CubeW, CubeD, CubeH})
elseif getColShapeType(ControlledElement) == "Tube" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
TubeRadius, TubeH = TubeRadius, TubeH + DefaultSpeed
ControlledElement = createColTube(X, Y, Z, TubeRadius, TubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Tube")
setElementData(ControlledElement, "ColEditor:Additional", {TubeRadius, TubeH})
end
elseif PressedKeys["num_2"] then
local X, Y, Z = getElementPosition(ControlledElement)
if getColShapeType(ControlledElement) == "Cuboid" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CubeW, CubeD, CubeH = CubeW, CubeD - DefaultSpeed > 0 and CubeD - DefaultSpeed or 0, CubeH
ControlledElement = createColCuboid(X, Y, Z, CubeW, CubeD, CubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Cuboid")
setElementData(ControlledElement, "ColEditor:Additional", {CubeW, CubeD, CubeH})
elseif getColShapeType(ControlledElement) == "Tube" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
TubeRadius, TubeH = TubeRadius, TubeH - DefaultSpeed > 0 and TubeH - DefaultSpeed or 0
ControlledElement = createColTube(X, Y, Z, TubeRadius, TubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Tube")
setElementData(ControlledElement, "ColEditor:Additional", {TubeRadius, TubeH})
end
elseif PressedKeys["num_4"] then
local X, Y, Z = getElementPosition(ControlledElement)
if getColShapeType(ControlledElement) == "Cuboid" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CubeW, CubeD, CubeH = CubeW + DefaultSpeed, CubeD, CubeH
ControlledElement = createColCuboid(X, Y, Z, CubeW, CubeD, CubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Cuboid")
setElementData(ControlledElement, "ColEditor:Additional", {CubeW, CubeD, CubeH})
elseif getColShapeType(ControlledElement) == "Rectangle" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
RecW, RecH = RecW, RecH + DefaultSpeed
ControlledElement = createColRectangle(X, Y, RecW, RecH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Rectangle")
setElementData(ControlledElement, "ColEditor:Additional", {RecW, RecH})
end
elseif PressedKeys["num_6"] then
local X, Y, Z = getElementPosition(ControlledElement)
if getColShapeType(ControlledElement) == "Cuboid" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
CubeW, CubeD, CubeH = CubeW - DefaultSpeed > 0 and CubeW - DefaultSpeed or 0, CubeD, CubeH
ControlledElement = createColCuboid(X, Y, Z, CubeW, CubeD, CubeH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Cuboid")
setElementData(ControlledElement, "ColEditor:Additional", {CubeW, CubeD, CubeH})
elseif getColShapeType(ControlledElement) == "Rectangle" then
local Key = getColFromTable(ControlledElement)
destroyElement(ControlledElement)
RecW, RecH = RecW, RecH - DefaultSpeed > 0 and RecH - DefaultSpeed or 0
ControlledElement = createColRectangle(X, Y, RecW, RecH)
CollisionTable[Key] = ControlledElement
setElementData(ControlledElement, "ColEditor:Type", "Rectangle")
setElementData(ControlledElement, "ColEditor:Additional", {RecW, RecH})
end
end
end
end
)
addEventHandler("onClientGUIClick", root,
function ()
if source == Create then
if guiGetText(Create) == "Create >" then
guiSetPosition(ToolBox, OtherX, OtherY, false)
guiSetVisible(ColList, true)
guiSetText(Create, "Create <")
if guiGetVisible(CreatedList) then
guiSetVisible(CreatedList, false)
guiSetText(Delete, "Delete >")
end
if guiGetVisible(SelectList) then
guiSetVisible(SelectList, false)
guiSetText(Select, "Select >")
end
else
guiSetPosition(ToolBox, NormalX, NormalY, false)
guiSetVisible(ColList, false)
guiSetText(Create, "Create >")
end
elseif source == Select then
if guiGetText(source) == "Select >" then
guiSetPosition(ToolBox, OtherX, OtherY, false)
guiSetVisible(SelectList, true)
guiSetText(Select, "Select <")
if guiGetVisible(CreatedList) then
guiSetVisible(CreatedList, false)
guiSetText(Delete, "Delete >")
end
if guiGetVisible(ColList) then
guiSetVisible(ColList, false)
guiSetText(Create, "Create >")
end
else
guiSetPosition(ToolBox, NormalX, NormalY, false)
guiSetVisible(SelectList, false)
guiSetText(Select, "Select >")
end
elseif source == Delete then
if guiGetText(Delete) == "Delete >" then
guiSetPosition(ToolBox, OtherX, OtherY, false)
guiSetVisible(CreatedList, true)
guiSetText(Delete, "Delete <")
if guiGetVisible(ColList) then
guiSetVisible(ColList, false)
guiSetText(Create, "Create >")
end
if guiGetVisible(SelectList) then
guiSetVisible(SelectList, false)
guiSetText(Select, "Select >")
end
guiGridListClear(CreatedList)
guiGridListClear(SelectList)
for Key, Value in pairs(CollisionTable) do
local Row = guiGridListAddRow(CreatedList)
guiGridListSetItemText(CreatedList, Row, 1, Key, false, false)
guiGridListSetItemData(CreatedList, Row, 1, Value)
local Row2 = guiGridListAddRow(SelectList)
guiGridListSetItemText(SelectList, Row2, 1, Key, false, false)
guiGridListSetItemData(SelectList, Row2, 1, Value)
end
-- Refresh List
else
guiSetPosition(ToolBox, NormalX, NormalY, false)
guiSetVisible(CreatedList, false)
guiSetText(Delete, "Delete >")
end
elseif source == ColList then
local Text = guiGridListGetItemText(source, guiGridListGetSelectedItem(source), 1)
if Text ~= "" and Text ~= "Polygon(Soon)" then
CircleRadius = 10
CubeW, CubeD, CubeH = 10, 10, 10
RecW, RecH = 5, 5
SphereRadius = 10
TubeRadius, TubeH = 10, 10
local X, Y, Z = getCameraMatrix()
local Arguments = Text == "Circle" and "1" or Text == "Cuboid" and "10, 10, 10" or Text == "Rectangle" and "5, 5" or Text == "Sphere" and "10" or Text == "Tube" and "10, 10"
local CreateColElement = loadstring("return createCol"..Text.."("..((Text ~= "Circle" or Text ~= "Rectangle") and X..", "..Y..", "..Z or X..", "..Y)..", "..Arguments..")")
ControlledElement = CreateColElement()
guiSetPosition(ToolBox, NormalX, NormalY, false)
guiSetVisible(ColList, false)
guiSetText(Create, "Create >")
CollisionTable[Text.."Number_"..tostring(CurrentVariableKey)] = ControlledElement
CurrentVariableKey = CurrentVariableKey + 1
setElementData(ControlledElement, "ColEditor:Type", Text)
guiGridListClear(CreatedList)
guiGridListClear(SelectList)
for Key, Value in pairs(CollisionTable) do
local Row = guiGridListAddRow(CreatedList)
guiGridListSetItemText(CreatedList, Row, 1, Key, false, false)
guiGridListSetItemData(CreatedList, Row, 1, Value)
local Row2 = guiGridListAddRow(SelectList)
guiGridListSetItemText(SelectList, Row2, 1, Key, false, false)
guiGridListSetItemData(SelectList, Row2, 1, Value)
end
setElementData(ControlledElement, "ColEditor:Additional", {Arguments})
updateCode()
end
elseif source == Close then
exports["freecam"]:setFreecamDisabled()
setCameraTarget(localPlayer)
showCursor(false)
isToolInUse = false
guiSetVisible(ToolBox, false)
guiSetVisible(Code_output, false)
setElementFrozen(localPlayer, false)
guiSetPosition(ToolBox, NormalX, NormalY, false)
guiSetVisible(CreatedList, false)
guiSetVisible(ColList, false)
guiSetText(Delete, "Delete >")
guiSetText(Create, "Create >")
elseif source == Delete_All then
if isTableEmpty(CollisionTable) then
for Key, Value in pairs(CollisionTable) do
destroyElement(Value)
end
CollisionTable = {}
CurrentVariableKey = 0
guiGridListClear(CreatedList)
guiGridListClear(SelectList)
for Key, Value in pairs(CollisionTable) do
local Row = guiGridListAddRow(CreatedList)
guiGridListSetItemText(CreatedList, Row, 1, Key, false, false)
guiGridListSetItemData(CreatedList, Row, 1, Value)
local Row2 = guiGridListAddRow(SelectList)
guiGridListSetItemText(SelectList, Row2, 1, Key, false, false)
guiGridListSetItemData(SelectList, Row2, 1, Value)
end
CircleRadius = 10
CubeW, CubeD, CubeH = 10, 10, 10
RecW, RecH = 5, 5
SphereRadius = 10
TubeRadius, TubeH = 10, 10
updateCode()
else
--outputChatBox("#00FF00Mar#FFFF00shme#00FFFFl#FF59F0lo#FFFFFF: There's Nothing To Remove :D", 0, 0, 0, true)
end
elseif source == Element_Info then
if type(getColShapeType(ControlledElement)) == "string" then
local X, Y, Z = getElementPosition(ControlledElement)
local Arguments = table["concat"]({unpack(getElementData(ControlledElement, "ColEditor:Additional"))}, ", ")
local Type = getColShapeType(ControlledElement)
--outputChatBox("#00FFFFPosition #0C6EFC: #00FF00[#FFFF00"..X..", "..Y..", "..Z.."#00FF00]", 0, 0, 0, true)
--outputChatBox("#00FFFFArguments #0C6EFC: #00FF00[#FFFF00"..Arguments.."#00FF00]", 0, 0, 0, true)
--outputChatBox("#00FFFFType #0C6EFC: #00FF00[#FFFF00"..Type.."#00FF00]", 0, 0, 0, true)
else
--outputChatBox("#00FF00Mar#FFFF00shme#00FF00l#FF59F0lo#FFFFFF: There's No A Shape In Control", 0, 0, 0, true)
end
end
end
)
addEventHandler("onClientGUIDoubleClick", root,
function ()
if source == CreatedList then
local Key = guiGridListGetItemText(source, guiGridListGetSelectedItem(source), 1)
if Key ~= "" then
destroyElement(CollisionTable[Key])
CollisionTable[Key] = nil
guiGridListClear(CreatedList)
guiGridListClear(SelectList)
CurrentVariableKey = CurrentVariableKey
for Key, Value in pairs(CollisionTable) do
local Row = guiGridListAddRow(CreatedList)
guiGridListSetItemText(CreatedList, Row, 1, Key, false, false)
guiGridListSetItemData(CreatedList, Row, 1, Value)
local Row2 = guiGridListAddRow(SelectList)
guiGridListSetItemText(SelectList, Row2, 1, Key, false, false)
guiGridListSetItemData(SelectList, Row2, 1, Value)
end
updateCode()
end
elseif source == SelectList then
local Key = guiGridListGetItemText(source, guiGridListGetSelectedItem(source), 1)
if Key ~= "" then
ControlledElement = CollisionTable[Key]
local Additional = getElementData(ControlledElement, "ColEditor:Additional")
if getColShapeType(ControlledElement) == "Circle" then
CircleRadius = Additional[1]
elseif getColShapeType(ControlledElement) == "Cuboid" then
CubeW, CubeD, CubeH = unpack(Additional)
elseif getColShapeType(ControlledElement) == "Rectangle" then
RecW, RecH = unpack(Additional)
elseif getColShapeType(ControlledElement) == "Tube" then
TubeRadius, TubeH = unpack(Additional)
end
end
end
end
)
bindKey("f", "down",
function ()
if isToolInUse then
local State = not isCursorShowing()
showCursor(State)
for Key, Value in ipairs(getElementsByType("gui-button", resourceRoot)) do
guiSetEnabled(Value, State)
end
for Key, Value in ipairs(getElementsByType("gui-gridlist", resourceRoot)) do
guiSetEnabled(Value, isCursorShowing())
end
end
end
)
local CodeStart, CodeEnd = [[addEventHandler("onResourceStart", resourceRoot,
function ()]], [[end
)]]
addEventHandler("onClientElementDataChange", root,
function (Data)
if Data == "ColEditor:Additional" then
updateCode()
end
end
)
function updateCode()
local Code = ""
for Variable, CollisionShape in pairs(CollisionTable) do
local Type, Arguments = getElementData(CollisionShape, "ColEditor:Type"), getElementData(CollisionShape, "ColEditor:Additional")
local X, Y, Z = getElementPosition(CollisionShape)
local Position = (Type == "Circle" or Type == "Rectangle") and table["concat"]({X, Y}, ", ") or table["concat"]({getElementPosition(CollisionShape)}, ", ") or
outputChatBox(Position)
Code = Code.."\n "..Variable.." = createCol"..Type.."("..Position..", "..table["concat"]({unpack(Arguments)}, ", ")..")"
end
Code = CodeStart..""..Code.."\n"..CodeEnd
guiSetText(Code_Memo, Code)
end
updateCode() |
local Effect
Effect = require('mae.effect').Effect
local wrap
wrap = require('mae.sugar').wrap
local io = {
Write = Effect('std.io.Write'),
Read = Effect('std.io.Read'),
Flush = Effect('std.io.Flush'),
Close = Effect('std.io.Close')
}
local with_std_io = wrap({
[io.Write] = (function()
local _base_0 = io.stdout
local _fn_0 = _base_0.write
return function(...)
return _fn_0(_base_0, ...)
end
end)(),
[io.Read] = (function()
local _base_0 = io.stdin
local _fn_0 = _base_0.read
return function(...)
return _fn_0(_base_0, ...)
end
end)(),
[io.Flush] = (function()
local _base_0 = io.stdout
local _fn_0 = _base_0.flush
return function(...)
return _fn_0(_base_0, ...)
end
end)(),
[io.Close] = (function()
local _base_0 = io.stdout
local _fn_0 = _base_0.close
return function(...)
return _fn_0(_base_0, ...)
end
end)()
})
local log = {
Fatal = Effect('std.log.Fatal'),
Error = Effect('std.log.Error'),
Warn = Effect('std.log.Warn'),
Info = Effect('std.log.Info'),
Debug = Effect('std.log.Debug'),
Trace = Effect('std.log.Trace')
}
local upper, rep, format
do
local _obj_0 = string
upper, rep, format = _obj_0.upper, _obj_0.rep, _obj_0.format
end
local logimp
logimp = function(level, fmt, ...)
return perform(Write(format("[" .. tostring(upper(level)) .. "]" .. tostring(rep(' ', 6 - #level)) .. "%s " .. tostring(fmt) .. "\n", (os.date('%Y-%m-%d %H:%M:%S')), ...)))
end
local with_io_log = wrap({
[log.Fatal] = function(self, fmt, ...)
return logimp('fatal', fmt, ...)
end,
[log.Error] = function(self, fmt, ...)
return logimp('error', fmt, ...)
end,
[log.Warn] = function(self, fmt, ...)
return logimp('warn', fmt, ...)
end,
[log.Info] = function(self, fmt, ...)
return logimp('info', fmt, ...)
end,
[log.Debug] = function(self, fmt, ...)
return logimp('debug', fmt, ...)
end,
[log.Trace] = function(self, fmt, ...)
return logimp('trace', fmt, ...)
end
})
return {
io = io,
with_std_io = with_std_io,
log = log,
with_io_log = with_io_log
}
|
-- CONFIG --
-- Zombies have a 1 in 150 chance to spawn with guns
-- It will choose a gun in this list when it happens
-- Weapon list here: https://www.se7ensins.com/forums/threads/weapon-and-explosion-hashes-list.1045035/
-- zombie spawn amounts in specific zones, default = 15
zombieZones = {
AIRP = 12,
ALAMO = 5,
ALTA = 12,
ARMYB = 15,
BANHAMC = 3,
BANNING = 6,
BEACH = 10,
BHAMCA = 5,
BRADP = 4,
BRADT = 3,
BURTON = 15,
CALAFB = 2,
CANNY = 5,
CCREAK = 5,
CHAMH = 15,
CHIL = 12,
CHU = 6,
CMSW = 3,
CYPRE = 6,
DAVIS = 15,
DELBE = 10,
DELPE = 12,
DELSOL = 8,
DESRT = 4,
DOWNT = 15,
DTVINE = 13,
EAST_V = 13,
EBURO = 8,
ELGORL = 2,
ELYSIAN = 6,
GALFISH = 3,
GOLF = 1,
GRAPES = 10,
GREATC = 3,
HARMO = 7,
HAWICK = 13,
HORS = 8,
HUMLAB = 15,
JAIL = 15,
KOREAT = 12,
LACT = 3,
LAGO = 2,
LDAM = 3,
LEGSQU = 15,
LMESA = 8,
LOSPUER = 12,
MIRR = 2,
MORN = 14,
MOVIE = 15,
MTCHIL = 2,
MTGORDO = 1,
MTJOSE = 1,
MURRI = 10,
NCHU = 4,
NOOSE = 15,
OCEANA = 0,
PALCOV = 5,
PALETO = 10,
PALFOR = 8,
PALHIGH = 3,
PALMPOW = 14,
PBLUFF = 8,
PBOX = 15,
PROCOB = 5,
RANCHO = 10,
RGLEN = 3,
RICHM = 15,
ROCKF = 15,
RTRAK = 3,
SANAND = 15,
SANCHIA = 4,
SANDY = 13,
SKID = 15,
SLAB = 7,
STAD = 15,
STRAW = 7,
TATAMO = 3,
TERMINA = 8,
TEXTI = 15,
TONGVAH = 4,
TONGVAV = 6,
VCANA = 12,
VESP = 14,
VINE = 15,
WINDF = 5,
WVINE = 13,
ZANCUDO = 6,
ZP_ORT = 4,
ZQ_UAR = 3,
}
local pedModels = {
"A_F_M_Beach_01",
"A_F_M_BevHills_01",
"A_F_M_BevHills_02",
"A_F_M_BodyBuild_01",
"A_F_M_Business_02",
"A_F_M_Downtown_01",
"A_F_M_EastSA_01",
"A_F_M_EastSA_02",
"A_F_M_FatBla_01",
"A_F_M_FatCult_01",
"A_F_M_FatWhite_01",
"A_F_M_KTown_01",
"A_F_M_KTown_02",
"A_F_M_ProlHost_01",
"A_F_M_Salton_01",
"A_F_M_SkidRow_01",
"A_F_M_SouCentMC_01",
"A_F_M_SouCent_01",
"A_F_M_SouCent_02",
"A_F_M_Tourist_01",
"A_F_M_TrampBeac_01",
"A_F_M_Tramp_01",
"A_F_O_GenStreet_01",
"A_F_O_Indian_01",
"A_F_O_KTown_01",
"A_F_O_Salton_01",
"A_F_O_SouCent_01",
"A_F_O_SouCent_02",
"A_F_Y_Beach_01",
"A_F_Y_BevHills_01",
"A_F_Y_BevHills_02",
"A_F_Y_BevHills_03",
"A_F_Y_BevHills_04",
"A_F_Y_Business_01",
"A_F_Y_Business_02",
"A_F_Y_Business_03",
"A_F_Y_Business_04",
"A_F_Y_EastSA_01",
"A_F_Y_EastSA_02",
"A_F_Y_EastSA_03",
"A_F_Y_Epsilon_01",
"A_F_Y_Fitness_01",
"A_F_Y_Fitness_02",
"A_F_Y_GenHot_01",
"A_F_Y_Golfer_01",
"A_F_Y_Hiker_01",
"A_F_Y_Hippie_01",
"A_F_Y_Hipster_01",
"A_F_Y_Hipster_02",
"A_F_Y_Hipster_03",
"A_F_Y_Hipster_04",
"A_F_Y_Indian_01",
"A_F_Y_Juggalo_01",
"A_F_Y_Runner_01",
"A_F_Y_RurMeth_01",
"A_F_Y_SCDressy_01",
"A_F_Y_Skater_01",
"A_F_Y_SouCent_01",
"A_F_Y_SouCent_02",
"A_F_Y_SouCent_03",
"A_F_Y_Tennis_01",
"A_F_Y_Topless_01",
"A_F_Y_Tourist_01",
"A_F_Y_Tourist_02",
"A_F_Y_Vinewood_01",
"A_F_Y_Vinewood_02",
"A_F_Y_Vinewood_03",
"A_F_Y_Vinewood_04",
"A_F_Y_Yoga_01",
"A_M_M_ACult_01",
"A_M_M_AfriAmer_01",
"A_M_M_Beach_01",
"A_M_M_Beach_02",
"A_M_M_BevHills_01",
"A_M_M_BevHills_02",
"A_M_M_Business_01",
"A_M_M_EastSA_01",
"A_M_M_EastSA_02",
"A_M_M_Farmer_01",
"A_M_M_FatLatin_01",
"A_M_M_GenFat_01",
"A_M_M_GenFat_02",
"A_M_M_Golfer_01",
"A_M_M_HasJew_01",
"A_M_M_Hillbilly_01",
"A_M_M_Hillbilly_02",
"A_M_M_Indian_01",
"A_M_M_KTown_01",
"A_M_M_Malibu_01",
"A_M_M_MexCntry_01",
"A_M_M_MexLabor_01",
"A_M_M_OG_Boss_01",
"A_M_M_Paparazzi_01",
"A_M_M_Polynesian_01",
"A_M_M_ProlHost_01",
"A_M_M_RurMeth_01",
"A_M_M_Salton_01",
"A_M_M_Salton_02",
"A_M_M_Salton_03",
"A_M_M_Salton_04",
"A_M_M_Skater_01",
"A_M_M_Skidrow_01",
"A_M_M_SoCenLat_01",
"A_M_M_SouCent_01",
"A_M_M_SouCent_02",
"A_M_M_SouCent_03",
"A_M_M_SouCent_04",
"A_M_M_StLat_02",
"A_M_M_Tennis_01",
"A_M_M_Tourist_01",
"A_M_M_TrampBeac_01",
"A_M_M_Tramp_01",
"A_M_M_TranVest_01",
"A_M_M_TranVest_02",
"A_M_O_ACult_01",
"A_M_O_ACult_02",
"A_M_O_Beach_01",
"A_M_O_GenStreet_01",
"A_M_O_KTown_01",
"A_M_O_Salton_01",
"A_M_O_SouCent_01",
"A_M_O_SouCent_02",
"A_M_O_SouCent_03",
"A_M_O_Tramp_01",
"A_M_Y_ACult_01",
"A_M_Y_ACult_02",
"A_M_Y_BeachVesp_01",
"A_M_Y_BeachVesp_02",
"A_M_Y_Beach_01",
"A_M_Y_Beach_02",
"A_M_Y_Beach_03",
"A_M_Y_BevHills_01",
"A_M_Y_BevHills_02",
"A_M_Y_BreakDance_01",
"A_M_Y_BusiCas_01",
"A_M_Y_Business_01",
"A_M_Y_Business_02",
"A_M_Y_Business_03",
"A_M_Y_Cyclist_01",
"A_M_Y_DHill_01",
"A_M_Y_Downtown_01",
"A_M_Y_EastSA_01",
"A_M_Y_EastSA_02",
"A_M_Y_Epsilon_01",
"A_M_Y_Epsilon_02",
"A_M_Y_Gay_01",
"A_M_Y_Gay_02",
"A_M_Y_GenStreet_01",
"A_M_Y_GenStreet_02",
"A_M_Y_Golfer_01",
"A_M_Y_HasJew_01",
"A_M_Y_Hiker_01",
"A_M_Y_Hippy_01",
"A_M_Y_Hipster_01",
"A_M_Y_Hipster_02",
"A_M_Y_Hipster_03",
"A_M_Y_Indian_01",
"A_M_Y_Jetski_01",
"A_M_Y_Juggalo_01",
"A_M_Y_KTown_01",
"A_M_Y_KTown_02",
"A_M_Y_Latino_01",
"A_M_Y_MethHead_01",
"A_M_Y_MexThug_01",
"A_M_Y_MotoX_01",
"A_M_Y_MotoX_02",
"A_M_Y_MusclBeac_01",
"A_M_Y_MusclBeac_02",
"A_M_Y_Polynesian_01",
"A_M_Y_RoadCyc_01",
"A_M_Y_Runner_01",
"A_M_Y_Runner_02",
"A_M_Y_Salton_01",
"A_M_Y_Skater_01",
"A_M_Y_Skater_02",
"A_M_Y_SouCent_01",
"A_M_Y_SouCent_02",
"A_M_Y_SouCent_03",
"A_M_Y_SouCent_04",
"A_M_Y_StBla_01",
"A_M_Y_StBla_02",
"A_M_Y_StLat_01",
"A_M_Y_StWhi_01",
"A_M_Y_StWhi_02",
"A_M_Y_Sunbathe_01",
"A_M_Y_Surfer_01",
"A_M_Y_VinDouche_01",
"A_M_Y_Vinewood_01",
"A_M_Y_Vinewood_02",
"A_M_Y_Vinewood_03",
"A_M_Y_Vinewood_04",
"A_M_Y_Yoga_01",
"G_F_Y_ballas_01",
"G_F_Y_Families_01",
"G_F_Y_Lost_01",
"G_F_Y_Vagos_01",
"G_M_M_ArmBoss_01",
"G_M_M_ArmGoon_01",
"G_M_M_ArmLieut_01",
"G_M_M_ChemWork_01",
"G_M_M_ChiBoss_01",
"G_M_M_ChiCold_01",
"G_M_M_ChiGoon_01",
"G_M_M_ChiGoon_02",
"G_M_M_KorBoss_01",
"G_M_M_MexBoss_01",
"G_M_M_MexBoss_02",
"G_M_Y_ArmGoon_02",
"G_M_Y_Azteca_01",
"G_M_Y_BallaEast_01",
"G_M_Y_BallaOrig_01",
"G_M_Y_BallaSout_01",
"G_M_Y_FamCA_01",
"G_M_Y_FamDNF_01",
"G_M_Y_FamFor_01",
"G_M_Y_Korean_01",
"G_M_Y_Korean_02",
"G_M_Y_KorLieut_01",
"G_M_Y_Lost_01",
"G_M_Y_Lost_02",
"G_M_Y_Lost_03",
"G_M_Y_MexGang_01",
"G_M_Y_MexGoon_01",
"G_M_Y_MexGoon_02",
"G_M_Y_MexGoon_03",
"G_M_Y_PoloGoon_01",
"G_M_Y_PoloGoon_02",
"G_M_Y_SalvaBoss_01",
"G_M_Y_SalvaGoon_01",
"G_M_Y_SalvaGoon_02",
"G_M_Y_SalvaGoon_03",
"G_M_Y_StrPunk_01",
"G_M_Y_StrPunk_02",
"HC_Driver",
"HC_Gunman",
"HC_Hacker",
"IG_Abigail",
"IG_AmandaTownley",
"IG_Andreas",
"IG_Ashley",
"IG_BallasOG",
"IG_Bankman",
"IG_Barry",
"IG_BestMen",
"IG_Beverly",
"IG_Brad",
"IG_Bride",
"IG_Car3guy1",
"IG_Car3guy2",
"IG_Casey",
"IG_Chef",
"IG_ChengSr",
"IG_ChrisFormage",
"IG_Clay",
"IG_ClayPain",
"IG_Cletus",
"IG_Dale",
"IG_DaveNorton",
"IG_Denise",
"IG_Devin",
"IG_Dom",
"IG_Dreyfuss",
"IG_DrFriedlander",
"IG_Fabien",
"IG_FBISuit_01",
"IG_Floyd",
"IG_Groom",
"IG_Hao",
"IG_Hunter",
"IG_Janet",
"ig_JAY_Norris",
"IG_JewelAss",
"IG_JimmyBoston",
"IG_JimmyDiSanto",
"IG_JoeMinuteMan",
"ig_JohnnyKlebitz",
"IG_Josef",
"IG_Josh",
"IG_KerryMcIntosh",
"IG_LamarDavis",
"IG_LesterCrest",
"IG_LifeInvad_01",
"IG_LifeInvad_02",
"IG_Magenta",
"IG_Manuel",
"IG_Marnie",
"IG_MaryAnn",
"IG_Maude",
"IG_Michelle",
"IG_Milton",
"IG_Molly",
"IG_MRK",
"IG_MrsPhillips",
"IG_MRS_Thornhill",
"IG_Natalia",
"IG_NervousRon",
"IG_Nigel",
"IG_Old_Man1A",
"IG_Old_Man2",
"IG_Omega",
"IG_ONeil",
"IG_Orleans",
"IG_Ortega",
"IG_Paper",
"IG_Patricia",
"IG_Priest",
"IG_ProlSec_02",
"IG_Ramp_Gang",
"IG_Ramp_Hic",
"IG_Ramp_Hipster",
"IG_Ramp_Mex",
"IG_RoccoPelosi",
"IG_RussianDrunk",
"IG_Screen_Writer",
"IG_SiemonYetarian",
"IG_Solomon",
"IG_SteveHains",
"IG_Stretch",
"IG_Talina",
"IG_Tanisha",
"IG_TaoCheng",
"IG_TaosTranslator",
"U_M_Y_Zombie_01"
}
lastTimePlayerShot = 0
Citizen.CreateThread(function()
while true do
Wait(1)
if IsPedShooting(PlayerPedId()) then
lastTimePlayerShot = GetGameTimer()
end
end
end)
function calculateZombieAmount()
local x, y, z = table.unpack(GetEntityCoords(PlayerPedId(), true))
local pedAmount = (zombieZones[ GetNameOfZone(x,y,z) ] or 10)
if type(zombiepedAmount) ~= "number" then
zombiepedAmount = 15
end
zombiepedAmount = math.round((pedAmount/GetPlayersInRadius(500))*1.2)
if lastTimePlayerShot > GetGameTimer()-5000 then
zombiepedAmount = math.round(zombiepedAmount*1.6)
end
return zombiepedAmount
end
function calculateZombieHealth()
if GetClockHours() < 5 or GetClockHours() > 22 then
return math.random(300,500)
else
return math.random(180,300)
end
end
function WillThisPedBeaBoss()
if math.random(0,100) > 98 then
return true
else
return false
end
end
-- CODE --
zombies = {}
peddeletionqueue = {}
Citizen.CreateThread(function()
AddRelationshipGroup("zombeez")
SetRelationshipBetweenGroups(5, GetHashKey("zombeez"), GetHashKey("PLAYER"))
SetRelationshipBetweenGroups(5, GetHashKey("zombeez"), GetHashKey("bandit"))
SetRelationshipBetweenGroups(5, GetHashKey("PLAYER"), GetHashKey("zombeez"))
DecorRegister("C8pE53jw", 2)
DecorRegister("zombie", 2)
DecorRegister("IsBoss", 3)
SetAiMeleeWeaponDamageModifier(2.0)
while true do
Wait(100)
local x, y, z = table.unpack(GetEntityCoords(PlayerPedId(), true))
zombiepedAmount = calculateZombieAmount()
if not isPlayerInSafezone and not IsPlayerDead(PlayerId()) and #zombies < zombiepedAmount then
choosenPed = pedModels[math.random(1, #pedModels)]
choosenPed = string.upper(choosenPed)
RequestModel(GetHashKey(choosenPed))
while not HasModelLoaded(GetHashKey(choosenPed)) or not HasCollisionForModelLoaded(GetHashKey(choosenPed)) do
Wait(1)
end
repeat
Wait(100)
newX = x + math.random(-50, 50)
newY = y + math.random(-50 , 50)
newZ = z + 999.0
for i = -400,10,400 do
RequestCollisionAtCoord(newX, newY, i)
Wait(1)
end
_,newZ = GetGroundZFor_3dCoord(newX+.0,newY+.0,9999.0, 0)
-- for _, player in pairs(players) do -- i have literally no idea what this code does tbh
-- Wait(10)
playerX, playerY = table.unpack(GetEntityCoords(GetPlayerPed(-1), true))
if newX > playerX - 35 and newX < playerX + 35 or newY > playerY - 35 and newY < playerY + 35 then
canSpawn = false
else
canSpawn = true
end
-- end
until canSpawn
ped = CreatePed(4, GetHashKey(choosenPed), newX, newY, newZ, 0.0, true, false)
DecorSetBool(ped, "C8pE53jw", true)
DecorSetBool(ped, "zombie", true)
SetPedArmour(ped, 100)
if WillThisPedBeaBoss() then
local th = math.random(3000,18000)
SetPedMaxHealth(ped, th)
SetEntityHealth(ped, th)
SetPedSeeingRange(ped, 40.0)
SetEntityMaxSpeed(ped, 8.0)
DecorSetInt(ped, "IsBoss", 1)
SetPedSuffersCriticalHits(ped, false)
SetPedRagdollBlockingFlags(ped, 1)
SetPedRagdollBlockingFlags(ped, 4)
else
local th = calculateZombieHealth()
SetPedMaxHealth(ped, th)
SetEntityHealth(ped, th)
SetPedSeeingRange(ped, 20.0)
SetEntityMaxSpeed(ped, 5.0)
end
SetPedAccuracy(ped, 25)
SetPedHearingRange(ped, 65.0)
SetPedFleeAttributes(ped, 0, 0)
SetPedCombatAttributes(ped, 16, 1)
SetPedCombatAttributes(ped, 17, 0)
SetPedCombatAttributes(ped, 46, 1)
SetPedCombatAttributes(ped, 1424, 0)
SetPedCombatAttributes(ped, 5, 1)
SetPedCombatRange(ped,1)
SetPedAlertness(ped,1)
SetAmbientVoiceName(ped, "ALIENS")
SetPedEnableWeaponBlocking(ped, true)
SetPedRelationshipGroupHash(ped, GetHashKey("zombeez"))
DisablePedPainAudio(ped, true)
SetPedDiesInWater(ped, false)
SetPedDiesWhenInjured(ped, false)
-- PlaceObjectOnGroundProperly(ped)
SetPedDiesInstantlyInWater(ped,true)
SetPedIsDrunk(ped, true)
SetPedConfigFlag(ped,100,1)
SetPedConfigFlag(ped, 33, 0)
RequestAnimSet("move_m@drunk@verydrunk")
while not HasAnimSetLoaded("move_m@drunk@verydrunk") do
Wait(1)
end
SetPedMovementClipset(ped, "move_m@drunk@verydrunk", 1.0)
ApplyPedDamagePack(ped,"BigHitByVehicle", 0.0, 9.0)
ApplyPedDamagePack(ped,"SCR_Dumpster", 0.0, 9.0)
ApplyPedDamagePack(ped,"SCR_Torture", 0.0, 9.0)
StopPedSpeaking(ped,true)
TaskWanderStandard(ped, 1.0, 10)
if not NetworkGetEntityIsNetworked(ped) then
NetworkRegisterEntityAsNetworked(ped)
end
table.insert(zombies, ped)
end
for i, ped in pairs(zombies) do
Wait(100)
if DoesEntityExist(ped) == false or not NetworkHasControlOfEntity(ped) then
table.remove(zombies, i)
end
local pedX, pedY, pedZ = table.unpack(GetEntityCoords(ped, true))
if IsPedDeadOrDying(ped, true) then
local pedX, pedY, pedZ = table.unpack(GetEntityCoords(ped, false))
local distancebetweenpedandplayer = #(vector3(pedX,pedY,pedZ) - vector3(x,y,z))
-- Set ped as no longer needed for despawning
if distancebetweenpedandplayer < 200.0 then
local dropChance = math.random(0,100)
if dropChance >= 95 and not DecorGetInt(ped, "IsBoss") == 1 then
TriggerServerEvent("ForceCreateFoodPickupAtCoord", pedX,pedY,pedZ)
elseif DecorGetInt(ped, "IsBoss") == 1 and not IsEntityOnFire(ped) then
writeLog("\nGENERATING BOSS DROP", 1)
local minItems = math.random(3,10)
local minGuns = math.random(1,3)
local items = {}
for i=1,minItems do
local chance = itemChances[ math.random( #itemChances ) ]
local count = math.round(math.random( consumableItems[chance].randomFinds[1], consumableItems[chance].randomFinds[2] ))+0.0
table.insert(items, {id = chance, count = count})
end
for i=1,minGuns do
local chance = weaponChances[math.random(1, #weaponChances)]
local count = 1
if consumableItems[chance].hasammo then
count = math.random(20,60)
end
table.insert(items, {id = chance, count = count})
end
local itemInfo = {
x = pedX,
y = pedY,
z = pedZ,
model = consumableItems[1].model,
pickupItemData = items,
owner = GetPlayerServerId(PlayerId()), -- ideally, this should never be PlayerId(), but added it just in case.
ownerName = GetPlayerName(PlayerId()),
spawned = false
}
writeLog("\nBOSS DROP SHOULD BE CREATED", 1)
TriggerServerEvent("registerPickup", itemInfo,true)
SetEntityHealth(ped, 0)
end
end
--[[
if GetPedSourceOfDeath(ped) == PlayerPedId() then
zombiekillsthislife = zombiekillsthislife+1
zombiekills = zombiekills+1
local money = consumableItems.count[17]
consumableItems.count[17] = math.round(money+10)
end
--]]
local cod = GetPedSourceOfDeath(ped)
local weap = GetPedCauseOfDeath(ped)
if cod ~= 0 and NetworkGetPlayerIndexFromPed(cod) then
TriggerServerEvent("s_killedZombie",GetPlayerServerId(NetworkGetPlayerIndexFromPed(cod)),weap)
end
table.insert(peddeletionqueue, ped)
table.remove(zombies, i)
else
playerX, playerY = table.unpack(GetEntityCoords(GetPlayerPed(-1), true))
if GetPedArmour(ped) <= 90 then
SetPedArmour(ped, GetPedArmour(ped)+5)
end
SetPedAccuracy(ped, 25)
SetPedSeeingRange(ped, 20.0)
SetPedHearingRange(ped, 65.0)
SetPedFleeAttributes(ped, 0, 0)
SetPedCombatAttributes(ped, 16, 1)
SetPedCombatAttributes(ped, 17, 0)
SetPedCombatAttributes(ped, 46, 1)
SetPedCombatAttributes(ped, 1424, 0)
SetPedCombatAttributes(ped, 5, 1)
SetPedCombatRange(ped,1)
SetAmbientVoiceName(ped, "ALIENS")
SetPedEnableWeaponBlocking(ped, true)
SetPedRelationshipGroupHash(ped, GetHashKey("zombeez"))
DisablePedPainAudio(ped, true)
SetPedDiesInWater(ped, false)
SetPedDiesWhenInjured(ped, false)
if #(vector3(pedX, pedY, 0.0) - vector3(playerX, playerY, 0.0)) > 135.0 then
-- Set ped as no longer needed for despawning
local model = GetEntityModel(ped)
DeleteEntity(ped)
SetModelAsNoLongerNeeded(model)
--table.remove(zombies, i) -- the first check takes care of this
end
end
end
end
end)
-- ped assignment
Citizen.CreateThread(function()
while true do
Wait(1000)
local handle, ped = FindFirstPed()
local finished = false -- FindNextPed will turn the first variable to false when it fails to find another ped in the index
repeat
Wait(20)
if not IsPedAPlayer(ped) and not IsPedDeadOrDying(ped, true) and DecorGetBool(ped, "zombie") and not DecorGetBool(ped, "MissionPed") and not DecorGetBool(ped, "bandit") and NetworkHasControlOfEntity(ped) then
local ownedByMe = false
local CanNotControl = false
for i,zombie in pairs(zombies) do
if ped == zombie then
ownedByMe = true
end
end
for i,bandit in pairs(bandits) do
if ped == bandit then
CanNotControl = true
end
end
for i,animal in pairs(animals) do
if ped == animal then
CanNotControl = true
end
end
if NetworkHasControlOfEntity(ped) and (not ownedByMe and not CanNotControl) then
table.insert(zombies, ped)
writeLog("\nFound homeless zombie "..ped..", lets give him a home :heart:!\n", 1)
end
end
finished, ped = FindNextPed(handle) -- first param returns true while entities are found
until not finished
EndFindPed(handle)
end
end)
-- boss light
Citizen.CreateThread(function()
while true do
Wait(1)
for i,ped in pairs(zombies) do
if DecorGetInt(ped, "IsBoss") == 1 then
pedX, pedY, pedZ = table.unpack(GetEntityCoords(ped, true))
DrawLightWithRangeAndShadow(pedX, pedY, pedZ + 0.4, 255, 0, 0, 4.0, 50.0, 5.0)
end
end
end
end)
Citizen.CreateThread(function()
while true do
Wait(math.random(5000,15000))
for i, ped in pairs(peddeletionqueue) do
local model = GetEntityModel(ped)
DeleteEntity(ped)
SetModelAsNoLongerNeeded(model)
table.remove(peddeletionqueue,i)
end
end
end)
RegisterNetEvent("Z:cleanup")
AddEventHandler("Z:cleanup", function()
for i, ped in pairs(zombies) do
-- Set ped as no longer needed for despawning
local model = GetEntityModel(ped)
SetModelAsNoLongerNeeded(model)
SetEntityAsNoLongerNeeded(ped)
table.remove(zombies, i)
end
end)
|
translations.tr = {
name = "tr",
fullname = "Türkçe",
-- Error messages
corrupt_map= "<r>Harita bozulmuş.Başka bir tane yükleniyor.",
corrupt_map_vanilla = "<r>[ERROR] <n>Bu harita hakkında bilgi alınamıyor.",
corrupt_map_mouse_start= "<r>[ERROR] <n>Bu haritanın bir başlangıç noktası olması gerekiyor (fare başlangıç noktası).",
corrupt_map_needing_chair= "<r>[ERROR] <n>Haritanın bitiş koltuğu olması gerekiyor.",
corrupt_map_missing_checkpoints = "<r>[ERROR] <n>Haritada en az bir kontrol noktası olması gerekiyor(sarı çivi).",
corrupt_data = "<r>Malesef, sizin verileriniz kayboldu ve sıfırlandı.",
min_players = "<r>Verinizin kaydedilebilmesi için odada en az 4 farklı oyuncunun bulunması gerekmektedir. <bl>[%s/%s]",
tribe_house = "<r>Veri kabile evlerinde işlenmeyecektir..",
invalid_syntax = "<r>geçersiz söz dizimi.",
code_error = "<r>Bir sorun oluştu: <bl>%s-%s-%s %s",
emergency_mode = "<r>Acildurum modu başlatılıyor, yeni oyunculara izin verilmemektedir. Lütfen başka bir #parkour odasına geçin.",
leaderboard_not_loaded = "<r>Lider tablosu heünz yüklenemedi. Lütfen bekleyin.",
max_power_keys = "<v>[#] <r>You can only have at most %s powers in the same key.",
-- Help window
help = "Yardım",
staff = "Ekip",
rules = "Kurallar",
contribute = "Bağış",
changelog = "Yenilikler",
help_help = "<p align = 'center'><font size = '14'>Hoş geldiniz <T>#parkour!</T></font></p>\n<font size = '12'><p align='center'><J>Amacınız haritayı tamamlayana kadar bütün kontrol noktalarına ulaşmak.</J></p>\n\n<font size='11'><N>• Ayarlar menüsü açmak için klavyeden <O>O</O> tuşuna basabilir, <O>!op</O> yazabilir veya <O>çark</O> simgesine tıklayabilirsiniz.\n• Beceri menüsüne ulaşmak için klavyeden <O>P</O> tuşuna basabilir veya sağ üst köşedeki <O>El</O> simgesine tıklayabilirsiniz.\n• Lider tablosuna ulaşmak için <O>L</O> tuşuna basabilir veya <O>!lb</O> yazabilirsiniz.\n• Ölmek için <O>M</O> veya <O>Delete</O> tuşuna basabilirsiniz. <O>Delete</O> tuşunu kullanabilmek için <J>Ayarlar</J>ksımından <O>M</O> tuşu ile ölmeyi kapatmanız gerekmektedir.\n• Ekip ve parkur kuralları hakkında daha fazla bilgi bilgi almak için, <O>Ekip</O> ve <O>Kurallar</O> sekmesine tıklayın.\n• <a href='event:discord'><o>Buraya Tıklayarak</o></a> discord davet linkimize ulaşabilir ve <a href='event:map_submission'><o>Buraya Tıklayarak</o></a> da harita göndermek için konu bağlantısını alabilirsiniz.\n• Kaydırma yapmanız gerektiğinde <o>yukarı</o> ve <o>aşağı</o> ok tuşlarını kullanın.\n\n<p align = 'center'><font size = '13'><T>Artık bize bağışta bulunabilirsiniz! Daha fazla bilgi için, <O>Bağış</O> sekmesine tıklayın!</T></font></p>",
help_staff = "<p align = 'center'><font size = '13'><r>Bildiri: Parkour ekibi Transformice'ın ekibi DEĞİLDİR, sadece parkour modülünde yetkililerdir.</r>\nParkur ekibi modülün akıcı bir şekilde kalmasını sağlar ve her zaman oyunculara yardımcı olurlar.</font></p>\nEkip listesini görebilmek için <D>!staff</D> yazabilirsiniz.\n\n<font color = '#E7342A'>Administrators:</font> Modülü yönetmek, yeni güncellemeler getirmek ve hataları/bugları düzeltirler.\n\n<font color = '#D0A9F0'>Team Managers:</font> Modları ve Mapperları kontrol eder ve işlerini iyi yaptıklarından emin olurlar. Ayrıca ekibe yeni modlar almaktan da onlar sorumludur.\n\n<font color = '#FFAAAA'>Moderators:</font> Kuralları uygulamak ve uygulamayan oyuncuları cezalandırmaktan sorumludurlar.\n\n<font color = '#25C059'>Mappers:</font> Yeni yapılan haritaları inceler, harita listesine ekler ve siz oyuncularımızın eğlenceli bir oyun deneyimi geçirmenizi sağlarlar.",
help_rules = "<font size = '13'><B><J>Transformice bütün kural ve koşulları #parkour içinde geçerlidir</J></B></font>\n\nEğer kurallara uymayan bir oyuncu görürseniz,oyun içinde parkour ekibindeki modlardan birine mesaj atabilirsiniz. Eğer hiçbir mod çevrim içi değilse discord serverimizde rapor edebilirsiniz.\nRapor ederken lütfen serveri, oda ismini ve oyuncu ismini belirtiniz.\n• Örnek: tr-#parkour10 Sperjump#6504 trolling\nEkran görüntüsü,video ve gifler işe yarayacaktır fakat gerekli değildir..\n\n<font size = '11'>•#parkour odalarında <font color = '#ef1111'>hack ve bug</font>kullanmak YASAKTIR!\n• <font color = '#ef1111'>VPN farming</font> yasaktır, <B>Haksız kazanç elde etmeyin</B> .. <p align = 'center'><font color = '#cc2222' size = '12'><B>\nKuralları çiğneyen herkes banlanacaktır.</B></font></p>\n\n<font size = '12'>Transformice trolleme konseptine izin verir. Fakat, <font color='#cc2222'><B>biz buna parkur modülünde izin vermeyeceğiz.</B></font></font>\n\n<p align = 'center'><J>Trollemek, bir oyuncunun, başka bir oyuncuya haritayı bitirmesini engellemek amacıyla güçlerini veya malzemelerini kullanmasıdır.</j></p>\n• İntikam almak için trollemek <B>geçerli bir sebep değildir</B> ve cezalandırılacaktır.\n• Haritayı tek başına bitirmek isteyen bir oyuncuya zorla yardım etmeye çalışmak trollemek olarak kabul edilecek ve cezalandırılacaktır.\n• <J>Eğer bir oyuncu yardım istemiyorsa ve haritayı tek başına bitirmek istiyorsa, lütfen diğer oyunculara yardım etmeyi deneyin.</J>. Ancak yardım isteyen diğer oyuncu haritayı tek başına yapmak isteyen bir oyuncunun yanındaysa ona yardım edebilirsiniz.\n\nEğer bir oyuncu trollerken (başka bir oyuncunun haritayı bitirmesini engellerken) yakalanırsa, zaman temel alınarak cezalandırılacaktır. Sürekli bir şekilde trollemekten dolayı ceza alan bir oyuncu eğer hala trollemeye devam ederse cezaları daha ağır olacaktır..",
help_contribute = "<font size='14'>\n<p align='center'>Parkour yönetim ekibi açık kaynak kodunu seviyor çünkü <t>bu topluluğa yardım ediyor</t>. Kaynak kodunu <o>görüntüleyebilir</o> ve <o>değiştirebilirsiniz</o> <o><u><a href='event:github'>GitHub'a Git</a></u></o>.\n\nModülün bakımı <t>isteklere göredir</t>, bu yüzden yardımda bulunmak için <t>kodlara</t> göz atmanız, <t>hataları bildirmeniz</t>, <t>öneride bulunmanız</t> ve <t>harita oluşturmanız</t> her zaman <u>hoş karşılanır ve takdir edilir</u>.\n<o><u><a href='event:discord'>Discord</a></u></o> veya <o><u><a href='event:github'>GitHub</a></u></o> hakkında <vp>hataları bildirmeniz</vp> ve <vp>öneride bulunmanız</vp> çok işimize yarıyacaktır.\n<o><u><a href='event:map_submission'>Forumdaki Konumuza</a></u></o> <vp>Haritalarınızı</vp> gönderebilirsiniz.\n\nParkour bakımı pahalı değil, ama ücretsiz de değil. Herhangi bir miktar bağışlayarak bize yardımcı olabilirseniz seviniriz.</t><o><u><a href='event:donate'>Bağış Yapmak İçin Tıkla</a></u></o>.\n<u>Tüm bağışlar modülün geliştirilmesine yönelik olacaktır.</u></p>",
help_changelog = "<font size='13'><p align='center'><o>Versyon 2.5.0 - 05/09/2020</o></p>\n\n<font size='11'>• Oda çökmeleriyle ilgili çoğu hata düzeltildi.\n• <cep>! Staff </cep> komutunun artık bir penceresi var.\n• Bir haritayı bitirdiğinizde, önceki herhangi kontrol noktasına ışınlanmak için <cep>!cp</cep> komutunu kullanabilirsiniz. (örnek: !cp 3)\n• Profil sistemi! oyuncuların profillerini görmek için <cep>!profile [kullanıcıAdı]</cep> yazabilirsiniz.\n• Bazı haritalarda <vp>periyodik olarak</vp> bir anket gösterilecek, böylece haritanın <vp>kalması</vp> veya <r>kaldırılması</r> için oy kullanabilirsiniz.\n• <b>6 yeni güç eklendi!</b>\n• <u>Süren</u> <u>ilk hareketinden sonra</u> saymaya başlayacak.\n• En kısa sürede bitiren oyuncunun kullanacı adı <font color ='#ffffff'>beyaz renk</font> olacaktır.\n• Artık <d> güç tuşu bağlarınızı değiştirebilirsiniz </d>.\n• Kabile evinizde <vp>haritayı atlamak</vp> için <cep>!map</cep> komutunu kullanabilirsiniz\n• <r>Yardım istemiyorum hattını</r> etkinleştirmek veya devre dışı bırakmak için <cep>F</cep> tuşuna basabilirsiniz.\n• <i>(Muhtemelen)</i> yeni hatalar :(",
-- Congratulation messages
reached_level = "<d>Tebrikler! <vp>%s</vp>. Kontrol noktasına ulaştınız.",
finished = "<d><o>%s</o> parkuru <vp>%s</vp> saniyede bitirdi, <fc>Tebrikler!",
unlocked_power = "<ce><d>%s</d>, <vp>%s</vp> becerisini açtı.",
-- Information messages
staff_power = "<r>Parkour personelinin #parkour odalarının dışında hiçbir gücü <b>yoktur</b>.",
donate = "<vp>Bu modül için bağış yapmak istiyorsanız <b>!donate</b> yazın!",
paused_events = "<cep><b>[Dikkat!]</b> <n>Modül kritik seviyeye ulaştı ve durduruluyor.",
resumed_events = "<n2>Modül devam ettirildi.",
welcome = "<n><t>#parkour</t>! Odasına hoş geldiniz.",
module_update = "<r><b>[Dikkat!]</b> <n> Modül <d>%02d:%02d</d> içinde güncellenecektir.",
leaderboard_loaded = "<j>Lider tablosu güncellendi. Görüntülemek için klavyeden L tuşuna basın.",
kill_minutes = "<R>Becerilerin %s dakika boyunca devre dışı bırakılmıştır.",
permbanned = "<r>#Parkour'dan kalıcı olarak yasaklandınız.",
tempbanned = "<r>#Parkour'dan %s dakika boyunca yasaklandınız.",
-- Miscellaneous
options = "<p align='center'><font size='20'>Parkur ayarları</font></p>\n\nKontrol noktaları için parçacıkları kullan\n\n<b>QWERTY</b> klavye kullan (Kapatıldığnda <b>AZERTY</b> klavye kullanılır)\n\nÖlmek için klavyeden <b>M</b> tuşuna bas veya <b>/mort</b> komutunu kullan. (Kapattığında <b>DELETE</b> tuşuna basarak ölebilirsin.)\n\nBeceri bekleme sürelerini göster\n\nBeceriler simgesini göster\n\nYardım butonunu göster\n\nHarita bitirme duyurularını göster\n\nYardım istemiyorum simgesini göster",
cooldown = "<v>[#] <r>Bunu tekrar yapmadan önce birkaç saniye bekleyin",
power_options = ("<font size='13' face='Lucida Console'><b>QWERTY</b> Klavye" ..
"\n\nTamamlanan harita sayısını <b>gizle</b>"),
unlock_power = ("<font size='5'>\n\n</font>Kilidi açmak için" ..
"<font size='13' face='Lucida Console'><p align='center'>harita<v>%s</v> tamamlayınız" ..
"<font size='5'>\n\n</font><v>%s</v>"),
upgrade_power = ("<font size='5'>\n\n</font>Yükseltmek için" ..
"<font size='13' face='Lucida Console'><p align='center'>haritayı <v>%s</v> tamamlayınız" ..
"<font size='5'>\n\n</font><v>%s</v>"),
unlock_power_rank = ("<font size='5'>\n\n</font>Kilidi açmak için" ..
"<font size='13' face='Lucida Console'><p align='center'>sıralamanız <v>%s</v> olmalıdır" ..
"<font size='5'>\n\n</font><v>%s</v>"),
upgrade_power_rank = ("<font size='5'>\n\n</font>Yükseltmek için" ..
"<font size='13' face='Lucida Console'><p align='center'>sıralamanız <v>%s</v> olmalıdır" ..
"<font size='5'>\n\n</font><v>%s</v>"),
maps_info = ("<p align='center'><font size='13' face='Lucida Console'><b><v>%s</v></b>" ..
"<font size='5'>\n\n</font>Tamamlanan Haritalar"),
overall_info = ("<p align='center'><font size='13' face='Lucida Console'><b><v>%s</v></b>" ..
"<font size='5'>\n\n</font>Genel Liderlik Tablosu Sıralamanız"),
weekly_info = ("<p align='center'><font size='13' face='Lucida Console'><b><v>%s</v></b>" ..
"<font size='5'>\n\n</font>Haftalık Liderlik Tablosu Sıralamanız"),
badges = "<font size='14' face='Lucida Console,Verdana'>Rozetler (%s): <a href='event:_help:badge'><j>[?]</j></a>",
private_maps = "<bl>Bu oyuncunun tamamladığı harita sayısı özeldir. <a href='event:_help:private_maps'><j>[?]</j></a></bl>\n",
profile = ("<font size='12' face='Lucida Console,Verdana'>%s%s %s\n\n" ..
"Genel skor tablosu konumu: <b><v>%s</v></b>\n\n" ..
"Haftalık liderlik sıralaması: <b><v>%s</v></b>"),
map_count = "Tamamlanan harita sayısı: <b><v>%s</v></b>",
help_badge = "Rozetler, bir oyuncunun elde edebileceği başarıdır. Açıklamalarını görmek için üzerlerine tıklayın.",
help_private_maps = "Bu oyuncu tamamladığı harita sayısını herkese açık olarak paylaşmaktan hoşlanmıyor! İstersen sen de kendi profilinde bu bilgileri gizleyebilirsin",
help_badge_1 = "Bu oyuncu geçmişte parkur ekibindeydi.",
help_badge_2 = "Bu oyuncu, genel liderlik tablosunun 1. sayfasında yer alıyor.",
help_badge_3 = "Bu oyuncu, genel liderlik tablosunun 2. sayfasında yer alıyor.",
help_badge_4 = "Bu oyuncu, genel liderlik tablosunun 3. sayfasında yer alıyor.",
help_badge_5 = "Bu oyuncu, genel liderlik tablosunun 4. sayfasında yer alıyor.",
help_badge_6 = "Bu oyuncu, genel liderlik tablosunun 5. sayfasında yer alıyor.",
help_badge_7 = "Bu oyuncu, haftalık liderlik tablosunun sonunda podyuma çıktı.",
help_badge_8 = "Bu oyuncunun, saatte 30 harita tamamlamışlığı var.",
help_badge_9 = "Bu oyuncunun, saatte 35 harita tamamlamışlığı var.",
help_badge_10 = "Bu oyuncunun, saatte 40 harita tamamlamışlığı var.",
help_badge_11 = "Bu oyuncunun, saatte 45 harita tamamlamışlığı var.",
help_badge_12 = "Bu oyuncunun, saatte 50 harita tamamlamışlığı var.",
help_badge_13 = "Bu oyuncunun, saatte 55 harita tamamlamışlığı var.",
help_badge_14 = "This player has verified their discord account in the official parkour server (type <b>!discord</b>).",
make_public = "herkese açık",
make_private = "kişiye özel",
moderators = "Moderatörler",
mappers = "Haritacılar",
managers = "Menejerler",
administrators = "Adminler",
close = "Kapat",
cant_load_bot_profile = "<v>[#] <r>#Parkour'un düzgün çalışması için dahil edildiğinden bu botun profilini göremezsiniz.",
cant_load_profile = "<v>[#] <r>Oyuncu <b>%s</b> çevrimdışı gözüküyor veya böyle bir kullanıcı yok.",
like_map = "Bu haritayı beğendin mi?",
yes = "Evet",
no = "Hayır",
idk = "Bilmiyorum",
unknown = "Bilinmiyor",
powers = "Beceriler",
press = "<vp>%s Tuşuna Bas",
click = "<vp>Sol tık",
ranking_pos = "Sıralama #%s",
completed_maps = "<p align='center'><BV><B>Tamamlanan haritalar: %s</B></p></BV>",
leaderboard = "Lider sıralaması",
position = "<V><p align=\"center\">Sıralama",
username = "<V><p align=\"center\">Kullanıcı adı",
community = "<V><p align=\"center\">Topluluk",
completed = "<V><p align=\"center\">Tamamlanan haritalar",
overall_lb = "Genel",
weekly_lb = "Haftalık",
new_lang = "<v>[#] <d>Diliniz Türkçe olarak ayarlandı",
-- Power names
balloon = "Balon",
masterBalloon = "Usta İşi Balon",
bubble = "Baloncuk",
fly = "Uçma",
snowball = "Kar topu",
speed = "Hız",
teleport = "Işınlanma",
smallbox = "Küçük kutu",
cloud = "Bulut",
rip = "Mezar taşı",
choco = "Çukulata Tahta",
bigBox = "Büyük Kutu",
trampoline = "Trambolin",
toilet = "Tuvalet",
pig = "Domuz",
sink = "Lavabo",
bathtub = "Küvet",
campfire = "Kamp Ateşi",
chair = "Sandalye",
}
|
function empty()
return
end
function with_arg()
return argument
end
|
--[[
Copyright (C) 2013 simplex
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
]]--
-- Lists the structure for a tile specification by mapping the possible fields to their
-- default values.
local tile_spec_defaults = {
noise_texture = "images/square.tex",
runsound = "dontstarve/movement/run_dirt",
walksound = "dontstarve/movement/walk_dirt",
snowsound = "dontstarve/movement/run_ice",
mudsound = "dontstarve/movement/run_mud",
}
-- Like the above, but for the minimap tile specification.
local mini_tile_spec_defaults = {
name = "map_edge",
noise_texture = "levels/textures/mini_dirt_noise.tex",
}
------------------------------------------------------------------------
require 'util'
require 'map/terrain'
local Asset = _G.Asset
local tiledefs = require 'worldtiledefs'
local GROUND = _G.GROUND
local GROUND_NAMES = _G.GROUND_NAMES
local resolvefilepath = _G.resolvefilepath
local softresolvefilepath
if VarExists("softresolvefilepath") then
softresolvefilepath = _G.softresolvefilepath
else
softresolvefilepath = function(path)
local status, ret = pcall(resolvefilepath, path)
return status and ret
end
end
--[[
-- The return value from this function should be stored and
-- reused between saves (otherwise the tile information saved in the map may
-- become mismatched if the order of ground value generation changes).
--]]
local function getNewGroundValue(id)
local used = {}
for k, v in pairs(GROUND) do
used[v] = true
end
local i = 1
while used[i] and i < GROUND.UNDERGROUND do
i = i + 1
end
if i >= GROUND.UNDERGROUND then
-- The game assumes values greater than or equal to GROUND.UNDERGROUND
-- represent walls.
return error("No more values available!", 3)
end
return i
end
local GroundAtlas = rawget(_G, "GroundAtlas") or function( name )
return ("levels/tiles/%s.xml"):format(name)
end
local GroundImage = rawget(_G, "GroundImage") or function( name )
return ("levels/tiles/%s.tex"):format(name)
end
local noise_locations = {
"%s.tex",
"levels/textures/%s.tex",
}
local function GroundNoise( name )
local trimmed_name = name:gsub("%.tex$", "")
for _, pattern in ipairs(noise_locations) do
local tentative = pattern:format(trimmed_name)
if softresolvefilepath(tentative) then
return tentative
end
end
-- This is meant to trigger an error.
local status, err = pcall(resolvefilepath, name)
return error(err or "This shouldn't be thrown. But your texture path is invalid, btw.", 3)
end
local function AddAssetsTo(assets_table, specs)
table.insert( assets_table, Asset( "IMAGE", GroundNoise( specs.noise_texture ) ) )
table.insert( assets_table, Asset( "IMAGE", GroundImage( specs.name ) ) )
table.insert( assets_table, Asset( "FILE", GroundAtlas( specs.name ) ) )
end
local function AddAssets(specs)
AddAssetsTo(tiledefs.assets, specs)
TheMod:AddPostRun(function()
modenv.Assets = modenv.Assets or {}
AddAssetsTo(modenv.Assets, specs)
end)
end
--[[
-- name should match the texture/atlas specification in levels/tiles.
-- (it's not just an arbitrary name, it defines the texture used)
--]]
function AddTile(id, numerical_id, name, specs, minispecs)
assert( type(id) == "string" )
assert( numerical_id == nil or type(numerical_id) == "number" )
assert( type(name) == "string" )
assert( GROUND[id] == nil, ("GROUND.%s already exists!"):format(id))
specs = specs or {}
minispecs = minispecs or {}
assert( type(specs) == "table" )
assert( type(minispecs) == "table" )
-- Ideally, this should never be passed, and we would wither generate it or load it
-- from savedata if it had already been generated once for the current map/saveslot.
if numerical_id == nil then
numerical_id = getNewGroundValue()
else
for k, v in pairs(GROUND) do
if v == numerical_id then
return error(("The numerical value %d is already used by GROUND.%s!"):format(v, tostring(k)), 2)
end
end
end
GROUND[id] = numerical_id
GROUND_NAMES[numerical_id] = name
local real_specs = { name = name }
for k, default in pairs(tile_spec_defaults) do
if specs[k] == nil then
real_specs[k] = default
else
-- resolvefilepath() gets called by the world entity.
real_specs[k] = specs[k]
end
end
real_specs.noise_texture = GroundNoise( real_specs.noise_texture )
table.insert(tiledefs.ground, {
GROUND[id], real_specs
})
AddAssets(real_specs)
local real_minispecs = {}
for k, default in pairs(mini_tile_spec_defaults) do
if minispecs[k] == nil then
real_minispecs[k] = default
else
real_minispecs[k] = minispecs[k]
end
end
TheMod:AddPrefabPostInit("minimap", function(inst)
local handle = GLOBAL.MapLayerManager:CreateRenderLayer(
GROUND[id],
resolvefilepath( GroundAtlas(real_minispecs.name) ),
resolvefilepath( GroundImage(real_minispecs.name) ),
resolvefilepath( GroundNoise(real_minispecs.noise_texture) )
)
inst.MiniMap:AddRenderLayer( handle )
end)
AddAssets(real_minispecs)
return real_specs, real_minispecs
end
TheMod:EmbedAdder("Tile", AddTile)
return AddTile
|
local FOV_PATH =({...})[1]:gsub("[%.\\/]fov$", "") .. '/'
local class =require (FOV_PATH .. 'vendor/30log')
local FOV=class{ __name, _lightPasses, _options }
function FOV:__init(lightPassesCallback, options)
self.__name='FOV'
self._lightPasses=lightPassesCallback
self._options={topology=8}
if options then for k,_ in pairs(options) do self._options[k]=options[k] end end
end
function FOV:compute(x, y, R, callback) end
function FOV:_getCircle(cx, cy, r)
local result={}
local dirs, countFactor, startOffset
local topo=self._options.topology
if topo==4 then
countFactor=1
startOffset={0,1}
dirs={
ROT.DIRS.EIGHT[8],
ROT.DIRS.EIGHT[2],
ROT.DIRS.EIGHT[4],
ROT.DIRS.EIGHT[6]
}
elseif topo==8 then
dirs=ROT.DIRS.FOUR
countFactor=2
startOffset={-1,1}
end
local x=cx+startOffset[1]*r
local y=cy+startOffset[2]*r
for i=1,#dirs do
for j=1,r*countFactor do
table.insert(result, {x, y})
x=x+dirs[i][1]
y=y+dirs[i][2]
end
end
return result
end
function FOV:_getRealCircle(cx, cy, r)
local i=0
local result={}
while i<2*math.pi do
i=i+0.05
x = cx + r * math.cos(i)
y = cy + r * math.sin(i)
table.insert(result, {x,y})
end
return result
end
return FOV
|
local log = require "log"
local wlua_request = require "wlua.request"
local wlua_response = require "wlua.response"
local util_file = require "util.file"
local M = {}
local mt = { __index = M }
function M:new(app, id, interface, addr)
local req = wlua_request:new(id, interface)
if not req then
return
end
local res = wlua_response:new(id, interface)
local handlers, params = app.router:match(req.path, req.method)
log.debug("wlua context new. path:", req.path, ", method:", req.method, ", params:", params)
app.router:dump()
local found = false
if handlers then
found = true
end
local instance = {
app = app,
req = req,
res = res,
index = 0,
handlers = handlers or {},
params = params,
found = found,
addr = addr,
}
return setmetatable(instance, mt)
end
function M:next()
self.index = self.index + 1
while self.index <= #self.handlers do
self.handlers[self.index](self)
self.index = self.index + 1
end
end
-- M:send(text, status, content_type)
function M:send(...)
self.res:send(...)
end
-- M:send_json({AA="BB"})
function M:send_json(...)
self.res:send_json(...)
end
function M:file(filepath)
local ret = util_file.static_file[filepath]
local content = ret[1]
local mimetype = ret[2]
if not content then
self.found = false
self.res.status = 404
log.debug("file not exist:", filepath)
return
end
log.debug("file. filepath:", filepath, ", mimetype:", mimetype)
self:send(content, 200, mimetype)
end
function M:set_res_header(header_key, header_value)
self.res:set_header(header_key, header_value)
end
return M
|
fx_version 'cerulean'
games {"gta5", "rdr3"}
author "Project Error"
version '1.0.0'
lua54 'yes'
ui_page 'web/public/index.html'
client_script "client/**/*"
server_script "server/**/*"
files {
'web/public/index.html',
'web/public/**/*'
}
|
local Intro = Object:extend()
--1: normal, 2: hd, 3: hdplus, 4:pixel, 5:pixelhd
Intro.SHEEP = 3
function Intro:new()
self.logoSheep = Sprite(0,0,"logos/sheepolution_".. ({"normal", "hd", "hdplus", "pixel", "pixelhd"})[Intro.SHEEP])
self.logoSheep:setFilter(Intro.SHEEP < 4 and "linear" or "nearest")
self.logoSheep:centerX(WIDTH/2)
self.logoSheep:centerY(HEIGHT/2)
self.logoSheep.scale:set(math.min(WIDTH/ self.logoSheep.width, HEIGHT / self.logoSheep.height))
self.rect = Rect(0, 0, WIDTH, HEIGHT)
self.rect.color = {0, 0, 0}
self.state = "sheep"
self.flux = flux.group()
self.flux:to(self.rect, 0.5, {alpha = 0}):delay(0.1)
:after(0.5, {alpha = 1}):delay(1.2):oncomplete(function() State:endIntro() end)
end
function Intro:update(dt)
self.flux:update(dt)
if Key:isPressed("escape", "return", "start") then
State:endIntro()
end
if self.state == "love" then
self.splash:update(dt)
end
end
function Intro:draw()
self.logoSheep:draw()
if self.state == "love" then
love.graphics.push()
love.graphics.origin()
self.splash:draw(dt)
love.graphics.pop()
end
self.rect:draw()
end
return Intro |
require 'luma.lib.prelude'
describe("(identity)", function()
assert.is.equal(identity(1), 1)
assert.is.equal(identity(2), 2)
local t = {identity("a", "b", "c")}
assert.are.same(t, {"a", "b", "c"})
local f = {}
assert.is.equal(identity(f), f)
end)
describe("(doall)", function()
local old = { 4, 3, 5, 1 }
local new = {}
doall(map(function(i) table.insert(new, i) end, old))
assert.are.same(new, old)
end)
describe("(partial)", function()
assert.is.equal(partial(_ADD_, 3) (4), _ADD_(3, 4))
assert.is.equal(partial(_ADD_, 3) (4, 5), _ADD_(3, 4, 5))
assert.is.equal(partial(_ADD_, 3, 4) (5), _ADD_(3, 4, 5))
end)
describe("(apply)", function()
assert.is.equal(apply(_ADD_, {3, 4}), _ADD_(3, 4))
assert.is.equal(apply(_ADD_, 3, {4}), _ADD_(3, 4))
assert.is.equal(apply(_ADD_, 3, 4, {5}), _ADD_(3, 4, 5))
assert.is.equal(apply(_ADD_, 3, {4, 5}), _ADD_(3, 4, 5))
end)
describe("(comp)", function()
local function sub1(i) return i - 1 end
assert.is.equal(comp(sub1, _ADD_) (2, 2), 3)
assert.is.equal(comp(sub1, _ADD_) (2, 2, 2), 5)
end)
describe("(mapcat)", function()
local a = mapcat(sort, {{3, 1}, {4, 2}, {5, 1}}):totable()
local b = {1, 3, 2, 4, 1, 5}
assert.are.same(a, b)
end)
describe("(table)", function()
assert.are.same(table("a", 1, "b", 2), {a = 1, b = 2})
end)
describe("(array)", function()
assert.are.same(array("a", 1, "b", 2), {"a", 1, "b", 2})
end)
describe("(get)", function()
t = { a = 1, b = 2, [1] = 3 }
assert.is.equal(get(t, 'a'), t.a)
assert.is.equal(get(t, 'b'), t.b)
assert.is.equal(get(t, 1), t[1])
end)
describe("(get-in)", function()
t = { a = {b = 3} }
assert.is.equal(get_in(t, {"a", "b"}), t.a.b)
end)
describe("(assoc!)", function()
local old = {a = 2, b = 3}
local new = assoc_BANG_(old, "a", 4)
assert.is.equal(new, old)
assert.is.equal(get(new, "a"), 4)
end)
|
local M = {}
local _cp = require 'coatp.Persistent'
local log = require "hmlog"
function M.init(dbpath)
log.debug("Create Table PKVStore")
local cls = _cp.persistent('PKVStore')
cls.has_p.key = {is = 'rw', isa = 'string'}
cls.has_p.value = {is = 'rw', isa = 'string'}
cls.has_p.vtype = {is = 'rw', isa = 'string'}
local sql_create = [[
CREATE TABLE PKVStore (
id INTEGER PRIMARY KEY AUTOINCREMENT,
key TEXT UNIQUE,
value TEXT default(''),
vtype TEXT
)
]]
PKVStore.establish_connection('sqlite3', dbpath):execute(sql_create)
end
return M |
#! /usr/bin/env lua
local oldprint = print
_G.print = function (...)
oldprint (...)
io.stdout:flush ()
end
local oldexecute = os.execute
_G.os.execute = function (...)
print (...)
return oldexecute (...)
end
_G.table.unpack = table.unpack or unpack
local Arguments = require "argparse"
local Bit = require "bit"
local Copas = require "copas"
local Inotify = require "inotify"
local Json = require "cjson"
local Lfs = require "lfs"
local Magic = require "magic"
local Md5 = require "md5"
local Websocket = require "websocket"
local magic = Magic.open (Magic.MIME_TYPE, Magic.NO_CHECK_COMPRESS)
assert (magic:load () == 0)
local inotify = Inotify.init {
blocking = false,
}
local options = 0
for _, option in ipairs {
Inotify.IN_ACCESS,
Inotify.IN_ATTRIB,
Inotify.IN_CLOSE_WRITE,
Inotify.IN_CLOSE_NOWRITE,
Inotify.IN_CREATE,
Inotify.IN_DELETE,
Inotify.IN_DELETE_SELF,
Inotify.IN_MODIFY,
Inotify.IN_MOVE_SELF,
Inotify.IN_MOVED_FROM,
Inotify.IN_MOVED_TO,
Inotify.IN_OPEN,
} do
options = Bit.bor (options, option)
end
local parser = Arguments () {
name = "ws-inotify",
description = "Inotify with websocket",
}
parser:flag "--mime" {
description = "compute mime type",
}
parser:flag "--md5" {
description = "compute md5",
}
parser:option "--port" {
description = "port",
convert = tonumber,
default = 8080,
}
parser:option "--directory" {
description = "directory to watch",
default = "/data",
}
local arguments = parser:parse ()
local clients = {}
local info = {}
local function walk (path)
path = path or arguments.directory
if Lfs.attributes (path, "mode") == "directory" then
info [path] = {
type = "directory",
path = path:sub (#arguments.directory+1),
watcher = info [path]
and info [path].watcher
or inotify:addwatch (path, options),
}
print ("watch", path)
if info [path].watcher then
info [info [path].watcher] = info [path]
end
for entry in Lfs.dir (path) do
if entry ~= "." and entry ~= ".." then
walk (path .. "/" .. entry)
end
end
elseif Lfs.attributes (path, "mode") == "file" then
local file = io.open (path, "r")
local md5 = Md5.sumhexa (file:read "*a")
file:close ()
info [path] = {
type = "file",
path = path:sub (#arguments.directory+1),
mime = arguments.mime and magic:file (path),
md5 = arguments.md5 and md5,
}
end
end
local copas_addserver = Copas.addserver
Copas.addserver = function (socket, f)
arguments.last = os.time ()
arguments.socket = socket
arguments.host, arguments.port = socket:getsockname ()
print ("listening on:", arguments.host, arguments.port)
copas_addserver (socket, f)
end
Websocket.server.copas.listen {
port = arguments.port,
default = function (ws)
print ("connection:", "open")
clients [ws] = true
while ws.state == "OPEN" do
pcall (function ()
local message = ws:receive ()
message = Json.decode (message)
if message.type == "list" then
local result = {}
for key, t in pairs (info) do
if type (key) == "string"
and not result [t.path] then
result [t.path] = {
type = t.type,
mime = t.mime,
path = t.path,
md5 = t.md5,
}
end
end
ws:send (Json.encode (result))
end
end)
end
clients [ws] = nil
print ("connection:", "close")
end,
protocols = {},
}
Copas.addthread (function ()
while true do
Copas.sleep (1)
for event in inotify:events () do
local message = {
path = info [event.wd].path .. (event.name and "/" .. event.name or ""),
access = 0 ~= Bit.band (event.mask, Inotify.IN_ACCESS),
attrib = 0 ~= Bit.band (event.mask, Inotify.IN_ATTRIB),
close_write = 0 ~= Bit.band (event.mask, Inotify.IN_CLOSE_WRITE),
close_nowrite = 0 ~= Bit.band (event.mask, Inotify.IN_CLOSE_NOWRITE),
create = 0 ~= Bit.band (event.mask, Inotify.IN_CREATE),
delete = 0 ~= Bit.band (event.mask, Inotify.IN_DELETE),
delete_self = 0 ~= Bit.band (event.mask, Inotify.IN_DELETE_SELF),
modify = 0 ~= Bit.band (event.mask, Inotify.IN_MODIFY),
move_self = 0 ~= Bit.band (event.mask, Inotify.IN_MOVE_SELF),
moved_from = 0 ~= Bit.band (event.mask, Inotify.IN_MOVED_FROM),
moved_to = 0 ~= Bit.band (event.mask, Inotify.IN_MOVED_TO),
open = 0 ~= Bit.band (event.mask, Inotify.IN_OPEN),
}
if message.access
or message.attrib
or message.open then
local _ = false -- do nothing
elseif message.close_write
or message.modify then
walk (message.path)
elseif message.create then
walk (message.path)
elseif message.delete then
info [event.name] = nil
elseif message.delete_self then
print ("unwatch", info [event.wd].path)
info [info [event.wd].path] = nil
info [event.wd] = nil
inotify:rmwatch (event.wd)
elseif message.move_self then
print ("unwatch", info [event.wd].path)
info [info [event.wd].path] = nil
info [event.wd] = nil
inotify:rmwatch (event.wd)
elseif message.moved_from then
info [event.name] = nil
elseif message.moved_to then
walk (arguments.directory .. "/" .. event.name)
end
message = Json.encode (message)
for ws in pairs (clients) do
ws:send (message)
end
end
end
end)
Copas.addserver = copas_addserver
walk ()
Copas.loop ()
|
--------------------------------------------------------------------------------
-- 0040-util-path_mt.lua: Tests for path-based DSL walker hook micro-language
-- This file is a part of le-dsl-fsm project
-- Copyright (c) LogicEditor <[email protected]>
-- Copyright (c) le-dsl-fsm authors
-- See file `COPYRIGHT` for the license.
--------------------------------------------------------------------------------
local log, dbg, spam, log_error
= import 'lua-aplicado/log.lua' { 'make_loggers' } (
"dsl-fsm/test/util-path_mt", "0040"
)
--------------------------------------------------------------------------------
local ensure,
ensure_equals,
ensure_tdeepequals,
ensure_returns
= import 'lua-nucleo/ensure.lua'
{
'ensure',
'ensure_equals',
'ensure_tdeepequals',
'ensure_returns'
}
local tstr
= import 'lua-nucleo/tstr.lua'
{
'tstr'
}
local tclone
= import 'lua-nucleo/table-utils.lua'
{
'tclone'
}
local make_path_based_walker
= import 'lua-nucleo/dsl/path_based_walker.lua'
{
'make_path_based_walker'
}
--------------------------------------------------------------------------------
local create_path_mt,
imports
= import 'dsl-fsm/util/path_mt.lua'
{
'create_path_mt'
}
--------------------------------------------------------------------------------
local test = (...)("dsl-fsm-dsl_bootstrap", imports)
--------------------------------------------------------------------------------
test:tests_for "create_path_mt"
--------------------------------------------------------------------------------
-- NOTE: A *very* basic test.
test "smoke" (function()
local log = { }
local rules = { }
rules.down, rules.up = ensure(
"create path mt",
create_path_mt(function()
on
{
"alpha"; "beta";
function(path)
log[#log + 1] = { "path", path }
return true
end
}
: down(function(self, t)
ensure_equals("down self", self, rules)
log[#log + 1] = { "down", tclone(t) }
return #log
end)
: up(function(self, t)
ensure_equals("up self", self, rules)
log[#log + 1] = { "up", tclone(t) }
return #log
end)
end)
)
local calls =
{
{ "down", { "alpha", "beta", "gamma" }, { "gamma-v" } };
{ "up", { "alpha", "beta", "gamma" }, { "gamma-v" } };
}
for i = 1, #calls do
local dir = ensure("dir `" .. calls[i][1] .. "'", rules[calls[i][1]])
local handler = ensure(
"handler `" .. calls[i][1] .. "' `" .. tstr(calls[i][2]) .. "'",
dir[calls[i][2]]
)
ensure_returns(
"return value",
1, { #log + 1 },
handler(rules, calls[i][3])
)
end
ensure_tdeepequals(
"call log",
log,
{
{ "path", "gamma" };
{ "down", { "gamma-v" } };
{ "path", "gamma" };
{ "up", { "gamma-v" } };
}
)
end)
--------------------------------------------------------------------------------
|
spawnX, spawnY, spawnZ = 1566.17, -1310.42, 17.15
handler = call ( getResourceFromName ( "rp_mysql" ), "getDbHandler")
-- funkcja na respawn gracza
function respawnPlayer(player)
spawnPlayer(player, spawnX, spawnY, spawnZ)
setCameraTarget(player, player)
setElementModel(player, getElementData(player, "player.skin"))
end
-- test
function onPlayerLoginSQL()
-- source?
--outputChatBox("zalogowal sie jakis gnuj "..getPlayerName(source))
end
addEvent ( "onPlayerLoginSQL", true )
addEventHandler ( "onPlayerLoginSQL", getRootElement(), onPlayerLoginSQL )
function submitServerLogin(password)
if string.len(password) > 0 then
-- nowe mysql
local query = dbQuery(handler, "SELECT * FROM lsrp_members LEFT JOIN lsrp_characters ON user_id = char_gid WHERE char_name ='".. getPlayerName(client) .."' AND user_passhash = MD5(CONCAT(MD5(user_salt), MD5('"..password.."')))")
local result = dbPoll ( query, -1 )
if result[1] and type(result) == 'table' then
outputDebugString("[login] Gracz "..result[1]['char_name'].." (UID: "..result[1]['char_uid']..") zalogował się do gry")
else
outputChatBox("#990000Wpisałeś błędne hasło!", client, 255, 255, 255, true);
triggerClientEvent(client, "setPlayerToLogin", client)
return
end
-- tutaj sprawdzanie hasła i zapis wszystkiego i tak dalej
setElementData(client, "player.displayname", getPlayerName(client))
setElementData(client, "player.originalname", getPlayerName(client))
-- zespawnuj gracza
--[[setElementData(client, "player.logged", true)
spawnPlayer(client, spawnX, spawnY, spawnZ)
fadeCamera(client, true)
setCameraTarget(client, client)]]--
-- Start: New spawning --
-- Some strange error when fresh connect.
setElementData(client, "player.logged", true)
if tonumber(result[1]["char_spawnplace"]) == 1 then
-- znajdź drzwi o uid
local uid = tonumber(result[1]["char_house"])
local door = exports.rp_doors:getDoorElementByUID(uid)
if not door then
spawnPlayer(client, spawnX, spawnY, spawnZ)
else
spawnPlayer(client, tonumber(getElementData(door, "door.exitx")), tonumber(getElementData(door, "door.exity")), tonumber(getElementData(door, "door.exitz")))
setElementDimension(client, tonumber(getElementData(door, "door.exitvw")))
setElementInterior(client, tonumber(getElementData(door, "door.exitint")))
end
else
spawnPlayer(client, spawnX, spawnY, spawnZ)
end
--fadeCamera(client, true)
--setCameraTarget(client, client)
-- END: New spawning --
-- przypisz wartości
setElementModel(client, result[1]["char_skin"])
setPlayerMoney(client, result[1]["char_cash"])
setElementData(client, "player.cash", result[1]["char_cash"])
setElementData(client, "player.bankcash", result[1]["char_bankcash"])
setElementData(client, "player.uid", result[1]["char_uid"])
setElementData(client, "player.gid", result[1]["char_gid"])
setElementData(client, "player.skin", result[1]["char_skin"])
setElementData(client, "player.afk", 0)
setElementData(client, "player.admin", result[1]["user_admin"])
setElementData(client, "player.dl", 0)
setElementData(client, "player.gtx", false)
setElementData(source, "player.vehedit", nil)
setElementData(source, "player.coledit", nil)
setElementData(client, "player.gname", result[1]["user_name"])
setElementData(client, "player.color", result[1]["user_color"])
setElementData(client, "player.objedit", -1)
setElementData(client, "player.gamescore", tonumber(result[1]["user_gamepoints"]))
setElementData(client, "player.logged", true)
setElementData(client, "player.aj", result[1]["char_aj"])
setElementData(client, "player.hours", result[1]["char_hours"])
setElementData(client, "player.minutes", result[1]["char_minutes"])
setElementData(client, "player.weapons", nil)
setElementData(client, "player.bw", tonumber(result[1]["char_bw"]))
setElementData(client, "player.lastw", false)
setElementData(client, "player.shooting", tonumber(result[1]["char_shooting"]))
setElementData(client, "player.phonenumber", tonumber(0))
setElementData(client, "player.showtags", tonumber(result[1]["user_showtags"]))
setElementData(client, "player.shaders", tonumber(result[1]["user_shaders"]))
-- Miejsce na bronie
setElementData(client, "player.pweapon", nil)
setElementData(client, "player.sweapon", nil)
local admin = tonumber(result[1]["user_admin"])
if admin ~= 0 then
-- admin
if admin > 0 then
outputChatBox("#FF574F> Posiadasz uprawnienia administratora!", client, 255, 255, 255, true)
else
outputChatBox("#3399CC> Posiadasz uprawnienia supportera!", client, 255, 255, 255, true)
end
else
-- nie admin
-- kickPlayer(client, "Work in progress...")
-- return
end
-- Active
if tonumber(result[1]["user_active"]) <= 0 then
kickPlayer(client, "Twoje konto nie jest aktywne.")
return
end
-- Beta
if tonumber(result[1]["user_beta_access"] <= 0) then
kickPlayer(client, "Nie masz dostępu do beta.")
return
end
-- styl chodu dla faceta
if result[1]["char_sex"] == 1 then
setPedWalkingStyle(client, 118)
end
-- styl chodu dla baby
if result[1]["char_sex"] == 2 then
setPedWalkingStyle(client, 129)
end
-- opis
setElementData(client, "player.describe", nil)
-- Dodaj event
triggerEvent ( "onPlayerLoginSQL", client)
-- wyczyść pamięć
if query then dbFree(query) end
-- tepnij do AJa po reconnecie
exports.rp_punish:checkJail(client)
-- ustaw numer telefonu
exports.rp_items:setPlayerPhoneNumberOnJoin(client)
setPlayerNametagShowing(client, false)
outputChatBox("#336699Witaj #FFFFFF".. result[1]["user_name"] .."#336699! Zalogowałeś się do #FFFFFFLos Santos Role Play#336699, miłej gry!", client, 255, 255, 255, true)
-- sprawdź czy ma BW
setPlayerAfterLogBW(client, tonumber(result[1]["char_posx"]), tonumber(result[1]["char_posy"]), tonumber(result[1]["char_posz"]), tonumber(result[1]["char_int"]), tonumber(result[1]["char_vw"]))
-- dodaj, że postać zalogowana
local query = dbQuery(handler, "UPDATE lsrp_characters SET char_online = 1 WHERE char_uid = ".. getElementData(client, "player.uid") ..";")
dbFree(query)
-- HUD
setPlayerHudComponentVisible( client, "radar", false )
setPlayerHudComponentVisible( client, "ammo", false )
setPlayerHudComponentVisible( client, "health", false )
setPlayerHudComponentVisible( client, "clock", false )
setPlayerHudComponentVisible( client, "money", false )
setPlayerHudComponentVisible( client, "armour", false )
setPlayerHudComponentVisible( client, "weapon", false )
-- Nowe logowanie
if getElementDimension(client) == 0 then
triggerClientEvent(client, "closePlayerLoginForm", client, false)
else
setCameraTarget(client, client)
triggerClientEvent(client, "closePlayerLoginForm", client, true)
end
end
end
addEvent("submitServerLogin",true)
addEventHandler("submitServerLogin", root, submitServerLogin) |
-- ============
-- UNIT TESTING
-- ============
-- CLEAR TEST RESULTS
-- ==================
ClearTestResults()
-- PERFORM TESTS
-- =============
Ext.Require('AuxFunctions/Tests/General_tests.lua')
-- PRINT TEST RESULTS
-- ==================
ShowTestResults() |
local StarGraph = require 'framework.stargraph'
local a = StarGraph:new()
print(a:addPlanet('crum'))
print(a:addSatellite('abcd'))
|
---
-- A test program for the http server.
--look for packages one folder up.
package.path = package.path .. ";;;../../?.lua;../../?/init.lua"
local lumen = require'lumen'
local log = lumen.log
local sched = lumen.sched
log.setlevel('ALL', 'HTTP')
log.setlevel('ALL')
local selector = require 'lumen.tasks.selector'
local service = _G.arg [1] or 'luasocket'
selector.init({service=service})
local http_server = require "lumen.tasks.http-server"
http_server.serve_static_content_from_ram('/', '../tasks/http-server/www')
http_server.serve_static_content_from_table('/big/', {['/file.txt']=string.rep('x',10000000)})
if service=='nixio' then
http_server.serve_static_content_from_stream('/docs/', '../docs')
else
http_server.serve_static_content_from_ram('/docs/', '../docs')
end
http_server.set_websocket_protocol('lumen-shell-protocol', function(ws)
local shell = require 'lumen.tasks.shell'
local sh = shell.new_shell()
sched.run(function()
while true do
local message,opcode = ws:receive()
if not message then
ws:close()
return
end
if opcode == ws.TEXT then
sh.pipe_in:write('line', message)
end
end
end):attach(sh.task)
sched.run(function()
while true do
local _, prompt, out = sh.pipe_out:read()
if out then
assert(ws:send(tostring(out)..'\r\n'))
end
if prompt then
assert(ws:send(prompt))
end
end
end)
end)
local conf = {
ip='127.0.0.1',
port=8080,
ws_enable = true,
max_age = {ico=5, css=60},
}
http_server.init(conf)
print ('http server listening on', conf.ip, conf.port)
for _, h in pairs (http_server.request_handlers) do
print ('url:', h.pattern)
end
sched.loop()
|
----------------------------------------------------------------------------------------------------
-- localized English (bindings module) strings
--
--get the add-on engine
local AddOnName = ...;
--prepare locale
local L = LibStub("AceLocale-3.0"):NewLocale(AddOnName, "enUS", true);
if not L then return; end
L["BINDINGS_SETTINGS"] = "Keybindings"
L["BINDINGS_LAUNCH"] = "Open Quick Talents UI"
L["BINDINGS_LAUNCH_DESC"] = "Change the keybinding for opening the Quick Talents UI"
L["BINDINGS_SHORTCUTS"] = "Shortcuts"
L["BINDINGS_UP"] = "Selection Up"
L["BINDINGS_UP_DESC"] = "Change the shorcut for move selection up"
L["BINDINGS_DOWN"] = "Selection Down"
L["BINDINGS_DOWN_DESC"] = "Change the shorcut for move selection down"
L["BINDINGS_LEFT"] = "Selection Left"
L["BINDINGS_LEFT_DESC"] = "Change the shorcut for move selection left"
L["BINDINGS_RIGHT"] = "Selection Right"
L["BINDINGS_RIGHT_DESC"] = "Change the shorcut for move selection right"
L["BINDINGS_SELECT"] = "Activate Selection"
L["BINDINGS_SELECT_DESC"] = "Change the shorcut for activate the selected talents"
L["BINDINGS_EXPAND"] = "Expand Window"
L["BINDINGS_EXPAND_DESC"] = "Change the shorcut for expanding the main window"
L["BINDINGS_CLOSE"] = "Close Window"
L["BINDINGS_CLOSE_DESC"] = "Change the shorcut for close the window"
L["BINDINGS_COPY"] = "Copy Selection"
L["BINDINGS_COPY_DESC"] = "Change the shorcut for copying the selected talents"
L["BINDINGS_PASTE"] = "Paste Copied"
L["BINDINGS_PASTE_DESC"] = "Change the shorcut for move paste copied talents"
L["BINDINGS_CURRENT"] = "Current Talents"
L["BINDINGS_CURRENT_DESC"] = "Change the shorcut for set the selection to your current talents"
L["BINDINGS_TOME"] = "Use Tome"
L["BINDINGS_TOME_DESC"] = "Change the shorcut for use one 'Tome of the Tranquil Mind'"
L["BINDINGS_SETTINGS_BUTTON"] = "Open Settings"
L["BINDINGS_SETTINGS_BUTTON_DESC"] = "Change the shorcut for open the settings"
L["BINDINGS_HELP"] = [[Shortcuts are only usable when the UI window is show for a quick way to switch your talents and cand be disabled anytime.
]]
L["BINDINGS_DISABLE"] = "Disable Shortcuts"
L["BINDINGS_DISABLE_DESC"] = "Toggle to disable all shortcuts"
|
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
description "DLRP Characters"
author "Ori#8628"
ui_page 'ui/index.html'
server_script "server/sv_main.lua"
client_scripts {
'config.lua',
'client/cl_functions.lua',
'client/cl_main.lua'
}
files{
'ui/index.html',
'ui/main.js',
'ui/style.css'
} |
dofile("common.inc");
xOffset = 0;
yOffset = 0;
pointingSpeed = 2000; --ms
function doit()
askForWindow("Test to find text in regions (windows) such building windows.\n\nEnter text value and optional offset. Mouse will point to location. Useful to finding where a macro is clicking.\n\nTo test image locations, use test_findImage_offset.lua\n\nPress Shift (while hovering ATITD) to continue.");
while true do
findStuff();
end
end
function pointToLocation()
window = 1;
while 1 do
if lsMouseIsDown(1) then
lsSleep(50);
-- Don't move mouse until we let go of mouse button
else
lsSleep(100); -- wait a moment in case we moved mouse while clicking
if not tonumber(xOffset) then
xOffset = 0;
end
if not tonumber(yOffset) then
yOffset = 0;
end
for i=#findBlah, 1, -1 do
srSetMousePos(findBlah[i][0]+xOffset,findBlah[i][1]+yOffset);
sleepWithStatus(pointingSpeed, "Pointing to Window " .. window .. "/" .. #findBlah .. "\n\nX Offset: "
.. xOffset .. "\nY Offset: " .. yOffset .. "\n\nMouse Location: " .. findBlah[i][0]+xOffset .. ", " ..
findBlah[i][1]+yOffset, nil, 0.7, 0.7);
window = window + 1;
end
break;
end
end
end
function findStuff()
local scale = 0.7;
local y = 20;
local foo;
local text = "";
local result = "";
local pos = getMousePos();
checkBreak();
srReadScreen();
lsPrint(10, y, z, scale, scale, 0xFFFFFFff, "Search Text (case sensitive):");
y = y + 20;
foo, text = lsEditBox("text", 10, y, z, 200, 25, scale, scale, 0x000000ff);
y = y + 50;
lsPrint(5, y, z, scale, scale, 0xFFFFFFff, "X offset: +/-");
lsSetCamera(0,0,lsScreenX*1.3,lsScreenY*1.3); -- Shrink the text boxes and text down
is_done, xOffset = lsEditBox("xoffset", 130 , y+25, z, 50, 30, scale, scale, 0x000000ff, xOffset);
lsSetCamera(0,0,lsScreenX*1.0,lsScreenY*1.0); -- Shrink the text boxes and text down
y = y + 40;
lsPrint(5, y-10, z, scale, scale, 0xFFFFFFff, "Y offset: +/-");
lsSetCamera(0,0,lsScreenX*1.3,lsScreenY*1.3); -- Shrink the text boxes and text down
is_done, yOffset = lsEditBox("yoffset", 130, y+25, z, 50, 30, scale, scale, 0x000000ff, yOffset);
lsSetCamera(0,0,lsScreenX*1.0,lsScreenY*1.0); -- Shrink the text boxes and text down
y = y + 30;
local startPos = findCoords();
if startPos then
lsPrint(10, y, z, scale, scale, 0xFFFFFFff, "ATITD Clock Coordinates: " .. startPos[0] .. ", " .. startPos[1]);
else
lsPrint(10, y, z, scale, scale, 0xFFFFFFff, "ATITD Clock Coordinates: Not Found");
end
y = y + 20;
lsPrint(10, y, z, scale, scale, 0xFFFFFFff, "Current Mouse Position: " .. pos[0] .. ", " .. pos[1]);
if text ~= "" then
findBlah = findAllText(text);
findCount = #findBlah;
else
findCount = 0;
end
if findCount == 0 then
result = " Not Found";
else
result = " FOUND (" .. findCount .. ") Windows";
lsPrint(10, y+80, z, scale, scale, 0xFFFFFFff, "Click Point to move mouse to location(s).");
if lsButtonText(10, lsScreenY - 30, z, 100, 0xFFFFFFff, "Point") then
pointToLocation();
end
end
y = y + 30;
if text ~= "" then
lsPrint(10, y, z, scale, scale, 0xFFFFFFff, "Searching for \"" .. text .. "\"");
y = y + 20;
lsPrint(10, y, z, scale, scale, 0xFFFFFFff, "Results: " .. result);
end
if lsButtonText(lsScreenX - 110, lsScreenY - 30, z, 100, 0xFFFFFFff, "End script") then
error "Clicked End Script button";
end
lsDoFrame();
lsSleep(10);
end |
local color1 = GetHexColor(SL.Global.ActiveColorIndex-1)
local color2 = GetHexColor(SL.Global.ActiveColorIndex)
local style = ThemePrefs.Get("VisualTheme")
local t = Def.ActorFrame{ OffCommand=function(self) self:linear(1) end }
-- centers
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+50) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-250)
:accelerate(0.3):addy(20):diffusealpha(0)
end,
--top center
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flycenter"))..{
InitCommand=function(self) self:diffuse(color2):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(50):zoom(1):diffusealpha(0.4)
--:sleep(0):zoom(0)
end
},
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flycenter"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-50):zoom(0.6):diffusealpha(0.6)
--:sleep(0):zoom(0)
end
},
}
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+380) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-250)
:accelerate(0.3):addy(80):diffusealpha(0)
end,
--bottom center
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flycenter"))..{
InitCommand=function(self) self:diffuse(color2):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(50):zoom(0.6):diffusealpha(0.6)
--:sleep(0):zoom(0)
end
},
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flycenter"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-50):zoom(1):diffusealpha(0.4)
--:sleep(0):zoom(0)
end
}
}
-- up 200
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-200)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--top left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-200):zoom(1):diffusealpha(0.6)
--:sleep(0):zoom(0)
end
},
--top right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(200):zoom(1):diffusealpha(0.4)
--:sleep(0):zoom(0)
end
}
}
--up 250
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.5):addy(-250)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--top left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color2):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-200):zoom(1.5):diffusealpha(0.3)
--:sleep(0):zoom(0)
end
},
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-200):zoom(0.8):diffusealpha(0.6)
--:sleep(0):zoom(0)
end
},
--top right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(200):zoom(1.5):diffusealpha(0.2)
--:sleep(0):zoom(0)
end
},
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color2):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(200):zoom(0.8):diffusealpha(0.4)
--:sleep(0):zoom(0)
end
}
}
--up 150, out 280
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-150)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--top left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-280):zoom(1.2):diffusealpha(0.6)
--:sleep(0):zoom(0)
end
},
--top right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(280):zoom(1.2):diffusealpha(0.4)
--:sleep(0):zoom(0)
end
}
}
--up 250, out 280
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-250)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--top left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-280):zoom(0.2):diffusealpha(0.3)
--:sleep(0):zoom(0)
end
},
--top right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flytop"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(280):zoom(0.2):diffusealpha(0.2)
--:sleep(0):zoom(0)
end
}
}
--up 200
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-200)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--bottom left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-200):zoom(1):diffusealpha(0.3)
--:sleep(0):zoom(0)
end
},
--bottom right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(200):zoom(1):diffusealpha(0.2)
--:sleep(0):zoom(0)
end
}
}
--up 250
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-250)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
-- bottom left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color2):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-200):zoom(1.5):diffusealpha(0.6)
--:sleep(0):zoom(0)
end
},
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-200):zoom(0.8):diffusealpha(0.3)
--:sleep(0):zoom(0)
end
},
-- bottom right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(200):zoom(1.5):diffusealpha(0.4)
--:sleep(0):zoom(0)
end
},
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color2):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(200):zoom(0.8):diffusealpha(0.2)
--:sleep(0):zoom(0)
end
}
}
--up 150, out 280
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-150)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--bottom left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-280):zoom(1.2):diffusealpha(0.3)
--:sleep(0):zoom(0)
end
},
--bottom right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(280):zoom(1.2):diffusealpha(0.2)
--:sleep(0):zoom(0)
end
}
}
--up 250, out 280
t[#t+1] = Def.ActorFrame {
InitCommand=function(self) self:xy(_screen.cx, _screen.cy+200) end,
OnCommand=function(self)
self:decelerate(0.4):addy(-250)
:accelerate(0.3):addy(100):diffusealpha(0)
end,
--bottom left
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):rotationy(180):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(-280):zoom(0.2):diffusealpha(0.3)
--:sleep(0):zoom(0)
end
},
--bottom right
LoadActor(THEME:GetPathG("", "_VisualStyles/".. style .."/TitleMenu flybottom"))..{
InitCommand=function(self) self:diffuse(color1):diffusealpha(0):zoom(0) end,
OnCommand=function(self)
self:accelerate(0.8):addx(280):zoom(0.2):diffusealpha(0.2)
--:sleep(0):zoom(0)
end
}
}
return t |
package("nanovdb")
set_homepage("https://developer.nvidia.com/nanovdb")
set_description("Developed by NVIDIA, NanoVDB adds real-time rendering GPU support for OpenVDB.")
add_urls("https://github.com/AcademySoftwareFoundation/openvdb.git")
add_versions("20201219", "9b79bb0dd66a442149083c8093deefcb03f881c3")
add_deps("cmake")
add_deps("cuda", "optix", {system = true})
add_deps("openvdb")
on_load("windows", function (package)
package:add("defines", "_USE_MATH_DEFINES")
package:add("defines", "NOMINMAX")
end)
on_install("macosx", "linux", "windows", function (package)
os.cd("nanovdb")
local configs = {"-DNANOVDB_BUILD_UNITTESTS=OFF", "-DNANOVDB_BUILD_EXAMPLES=OFF", "-DNANOVDB_BUILD_BENCHMARK=OFF", "-DOPENVDB_USE_STATIC_LIBS=ON", "-DBoost_USE_STATIC_LIBS=ON"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
local optix = package:dep("optix"):fetch()
table.insert(configs, "-DOptiX_ROOT=" .. path.directory(optix.sysincludedirs[1]))
if package:is_plat("windows") then
table.insert(configs, "-DBoost_USE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
table.insert(configs, "-DCMAKE_CUDA_FLAGS_DEBUG=-Xcompiler /" .. package:config("vs_runtime"))
table.insert(configs, "-DCMAKE_CUDA_FLAGS_RELEASE=-Xcompiler /" .. package:config("vs_runtime"))
end
import("package.tools.cmake").install(package, configs)
os.mv(package:installdir("nanovdb"), package:installdir("include"))
package:addenv("PATH", "bin")
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
nanovdb::GridBuilder<float> builder(0.0f);
auto acc = builder.getAccessor();
acc.setValue(nanovdb::Coord(1, 2, 3), 1.0f);
}
]]}, {configs = {languages = "c++14"},
includes = {"nanovdb/util/GridBuilder.h"}}))
end)
|
--[[
Story Mission 4
March of the Cavaliers
This is the longest and most complicated mission I've ever created, bar none. It makes the 1st story mission look very simple by comparison.
ADDITIONAL REQUIREMENTS TO DO THIS MISSION:
- Story Mission 3 done.
- Cavaliers Rank 4.
- Cavaliers Strength 2. (Done Deliver Advance Materials at least 1)
ROUGH OUTLINE:
- Meet with other Cavaliers
- Meet at the start location.
- First Jump - minor pirate attack.
- Second Jump - Animosity boss fight.
- Third Jump - Crosses barrier + major xsotan attack.
- Fourth Jump - Find artifact + minor xsotan attack.
DANGER LEVEL:
- 5+ The mission starts at Danger Level 5. It is a fixed value since this is a non-repeatable* story mission.
]]
package.path = package.path .. ";data/scripts/lib/?.lua"
package.path = package.path .. ";data/scripts/?.lua"
--Run the rest of the includes.
include("callable")
include("randomext")
include("structuredmission")
ESCCUtil = include("esccutil")
LLTEUtil = include("llteutil")
local SectorGenerator = include ("sectorgenerator")
local PirateGenerator = include("pirategenerator")
local AsyncPirateGenerator = include ("asyncpirategenerator")
local AsyncShipGenerator = include ("asyncshipgenerator")
local SectorSpecifics = include ("sectorspecifics")
local Balancing = include ("galaxy")
local SpawnUtility = include ("spawnutility")
local Xsotan = include("story/xsotan")
local Placer = include("placer")
mission._Debug = 0
mission._Name = "March of The Cavaliers"
local _TransferMinTime = 118 --118 / 12
local _TransferMaxTime = 124 --124 / 14
local _TransferTimerTime = 125 --125 / 15
local _TransferTimerHalfTime = 60 --60 / 6
--region #INIT
local llte_storymission_init = initialize
function initialize()
local _MethodName = "initialize"
mission.Log(_MethodName, "March of the Cavaliers Begin...")
if onServer()then
if not _restoring then
--Standard mission data.
mission.data.brief = mission._Name
mission.data.title = mission._Name
mission.data.icon = "data/textures/icons/cavaliers.png"
mission.data.priority = 9
mission.data.description = {
"In order to defeat the threat of the Xsotan, the Cavaliers are pushing past the barrier.",
{ text = "Read Adriana's mail", bulletPoint = true, fulfilled = false },
--If any of these have an X / Y coordinate, they will be updated with the correct location when starting the appropriate phase.
{ text = "Meet The Cavaliers in sector (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Make the jump to (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false },
{ text = "At least two of the three capital ships '${_SHIP1}', '${_SHIP2}', and '${_SHIP3}' must survive", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Defeat the pirate attack", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Make the next jump to (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Defeat the Animosity", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Make the next jump to (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Defeat the Xsotan attack", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Make the next jump to (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Investigate the signals in sector (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Protect the recovery ship while it recovers the Xsotan wreckage", bulletPoint = true, fulfilled = false, visible = false },
{ text = "Return to The Cavaliers fleet in sector (${_X}:${_Y})", bulletPoint = true, fulfilled = false, visible = false }
}
--[[=====================================================
CUSTOM MISSION DATA:
.dangerLevel
.pirateLevel
.capitalsSpawned
.sector1
.sector2
.sector3
.sector4
.sector5
.beaconsector
.phase2DialogAdded
.phase3TimerStarted
.phase4TimerStarted
.phase5TimerStarted
.phase6TimerStarted
.phase7TimerStarted
.initialPhase7Startup
.secondScoutWaveSpawned
.empressBladeid
.animosityid
.capitalsLost
.transferring
.miniswarm
.xsotankilled
.tugs
=========================================================]]
mission.data.custom.dangerLevel = 5 --This is a story mission, so we keep things predictable.
mission.data.custom.pirateLevel = Player():getValue("_llte_pirate_faction_vengeance")
mission.data.custom.capitalsLost = 0
mission.data.custom.xsotankilled = 0
mission.data.custom.tugs = 0
local missionReward = 1000000
missionData_in = {location = nil, reward = {credits = missionReward}}
llte_storymission_init(missionData_in)
else
--Restoring
llte_storymission_init()
end
end
if onClient() then
if not _restoring then
initialSync()
else
sync()
end
end
end
--endregion
--region #PHASE CALLS
mission.globalPhase = {}
mission.globalPhase.timers = {}
mission.globalPhase.triggers = {}
mission.globalPhase.timers[1] = {
time = 60,
callback = function()
if onServer() then
local _MethodName = "Global Phase Timer 1 Callback"
mission.Log(_MethodName, "Beginning...")
--Don't do this until phase 2 at least, and don't do this if the blade of the empress is not in the sector.
if mission.data.custom.phase2DialogAdded and ESCCUtil.countEntitiesByValue("_llte_empressblade") > 0 then
local _Defenders = 0
local _HeavyDefenders = 0
local _CavShips = {Sector():getEntitiesByScriptValue("is_cavaliers")}
for _, _Cav in pairs(_CavShips) do
if _Cav:getValue("is_defender") then
if _Cav:getValue("is_heavy_defender") then
_HeavyDefenders = _HeavyDefenders + 1
else
_Defenders = _Defenders + 1
end
end
end
local _D2S = math.max(3 - _Defenders, 0)
local _HD2S = math.max(3 - _HeavyDefenders, 0)
mission.Log(_MethodName, "Spawning " .. tostring(_D2S) .. " defenders and " .. tostring(_HD2S) .. " heavy defenders.")
spawnCavalierShips(_D2S, _HD2S)
end
end
end,
repeating = true
}
mission.globalPhase.onAbandon = function()
Player():unregisterCallback("onPreRenderHud", "onMarkArtifact")
runFullSectorCleanup()
end
mission.globalPhase.onFail = function()
--If there are any Cavaliers ships, they warp out.
local _MethodName = "On Fail"
mission.Log(_MethodName, "Beginning...")
--Pirates, Xsotan, and Cavaliers withdraw.
LLTEUtil.allCavaliersDepart()
local _AnimosityTable = {Sector():getEntitiesByScriptValue("is_animosity")}
if #_AnimosityTable >= 1 then
local _Animosity = _AnimosityTable[1]
Player():sendChatMessage(_Animosity, 0, "So much for the vaunted strength of The Cavaliers...")
end
ESCCUtil.allPiratesDepart()
ESCCUtil.allXsotanDepart()
--Add a script to the mission location to nuke it if we are there, nuke it remotely otherwise.
runFullSectorCleanup()
--Send fail mail.
local _Player = Player()
local _Rank = _Player:getValue("_llte_cavaliers_rank")
local _Mail = Mail()
_Mail.text = Format("%1% %2%,\n\nDespite our new equipment and our best efforts, we lost too many ships on our push to the center of the galaxy and will need to withdraw our forces for the time being. We'll try again!\nGet yourself some stronger weapons and shields, and I'll reorganize the fleet for another push towards the galactic core. We must unravel the mystery of the Xsotan to defeat them once and for all!\n\nEmpress Adriana Stahl", _Rank, _Player.name)
_Mail.header = "Forced to Withdraw"
_Mail.sender = "Empress Adriana Stahl @TheCavaliers"
_Mail.id = "_llte_story4_mailfail"
_Player:addMail(_Mail)
end
mission.globalPhase.onAccomplish = function()
local _Player = Player()
local _Rank = _Player:getValue("_llte_cavaliers_rank")
local _Mail = Mail()
_Mail.text = Format("%1% %2%,\n\nThank you once again for your help with reaching the center. Despite being newcomers, we've managed to establish ourselves as one of the strongest military powers in the region. Securing the remnants of the factions here is going smoothly, and we're holding off the Xsotan about as well as can be expected. They're much stronger here!\n\nRegarding the artifact, we've spent a considerable amount of time running deep scans on it. As far as we can tell, it seems to be some sort of beacon that's capable of entering a high-energy state and emitting incredibly strong signals over subspace. Judging from their behavior when we first breached the barrier, these signals will draw Xsotan like moths to a flame.\nWe think we can use this as bait to lure in Xsotan to destroy, but we haven't figured out a way to deliberately activate the artifact. I'll contact you again with an update.\n\nEmpress Adriana Stahl", _Rank, _Player.name)
_Mail.header = "Our Analysis Continues"
_Mail.sender = "Empress Adriana Stahl @TheCavaliers"
_Mail.id = "_llte_story4_mailwin"
_Player:addMail(_Mail)
end
mission.globalPhase.onEntityDestroyed = function(id, lastDamageInflictor)
local _MethodName = "Global Phase On Entity Destroyed"
local _Entity = Entity(id)
if valid(_Entity) then
if _Entity:getValue("_llte_cav_supercap") then
mission.data.custom.capitalsLost = mission.data.custom.capitalsLost + 1
mission.Log(_MethodName, "Lost a SuperCap - increasing count of capital ships lost. Currently " .. tostring(mission.data.custom.capitalsLost) .. " are lost.")
end
if _Entity:getValue("is_animosity") then
Player():setValue("_llte_got_animosity_loot", true)
Player():setValue("encyclopedia_llte_animosity_found", true)
mission.data.description[8].fulfilled = true
ESCCUtil.allPiratesDepart()
sync()
invokeClientFunction(Player(), "onPhase4Dialog2", mission.data.custom.empressBladeid)
end
end
if mission.data.custom.capitalsLost > 1 then
runFullSectorCleanup()
fail()
end
end
mission.phases[1] = {}
mission.phases[1].showUpdateOnEnd = true
mission.phases[1].noBossEncountersTargetSector = true
mission.phases[1].onBeginServer = function()
local _MethodName = "Phase 1 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.custom.sector1 = getNextLocation(1)
local _X, _Y = mission.data.custom.sector1.x, mission.data.custom.sector1.y
local _Player = Player()
local _Rank = _Player:getValue("_llte_cavaliers_rank")
local _Mail = Mail()
_Mail.text = Format("%1% %2%,\n\nThe Avorion that you delivered to us offers an incredible opportunity - one to push into the center of the galaxy and deal with the Xsotan threat once and for all. I'm planning an operation to do exactly that!\nThe fleet is gathering in sector (%3%:%4%) - meet us there and I'll brief you on our plan.\n\nEmpress Adriana Stahl", _Rank, _Player.name, _X, _Y)
_Mail.header = "Crossing the Barrier"
_Mail.sender = "Empress Adriana Stahl @TheCavaliers"
_Mail.id = "_llte_story4_mail1"
_Player:addMail(_Mail)
end
mission.phases[1].playerCallbacks =
{
{
name = "onMailRead",
func = function(_PlayerIndex, _MailIndex)
if onServer() then
local _Player = Player()
local _Mail = _Player:getMail(_MailIndex)
if _Mail.id == "_llte_story4_mail1" then
nextPhase()
end
end
end
}
}
mission.phases[2] = {}
mission.phases[2].timers = {}
mission.phases[2].showUpdateOnEnd = false
mission.phases[2].noBossEncountersTargetSector = true
mission.phases[2].onBeginServer = function()
local _MethodName = "Phase 2 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.location = mission.data.custom.sector1
mission.data.custom.sector2 = getNextLocation(2)
mission.data.description[2].fulfilled = true
mission.data.description[3].arguments = { _X = mission.data.location.x, _Y = mission.data.location.y }
mission.data.description[3].visible = true
mission.data.description[4].arguments = { _X = mission.data.custom.sector2.x, _Y = mission.data.custom.sector2.y }
end
mission.phases[2].onTargetLocationEntered = function(_X, _Y)
local _MethodName = "Phase 2 on Target Location Entered"
mission.Log(_MethodName, "Beginning...")
if not mission.data.custom.capitalsSpawned then
local _EmpressBlade = LLTEUtil.spawnBladeOfEmpress(false)
local _SuperCap1 = LLTEUtil.spawnCavalierSupercap(false)
local _SuperCap2 = LLTEUtil.spawnCavalierSupercap(false)
local _SuperCap3 = LLTEUtil.spawnCavalierSupercap(false)
spawnCavalierShips(3, 3)
mission.data.custom.empressBladeid = _EmpressBlade.id
mission.data.description[5].arguments = { _SHIP1 = _SuperCap1.name, _SHIP2 = _SuperCap2.name, _SHIP3 = _SuperCap3.name }
mission.data.custom.capitalsSpawned = true
end
end
mission.phases[2].onTargetLocationArrivalConfirmed = function(_X, _Y)
local _MethodName = "Phase 2 on Target Location Arrival Confirmed"
mission.Log(_MethodName, "Beginning...")
--Add dialog to Empress Blade. Once that is done, set transferring to true and have the ships make the jump in 2 minutes.
if not mission.data.custom.phase2DialogAdded then
invokeClientFunction(Player(), "onPhase2Dialog", mission.data.custom.empressBladeid)
mission.data.custom.phase2DialogAdded = true
end
end
mission.phases[3] = {}
mission.phases[3].timers = {}
mission.phases[3].triggers = {}
mission.phases[3].showUpdateOnEnd = false
mission.phases[3].noBossEncountersTargetSector = true
mission.phases[3].onBeginServer = function()
local _MethodName = "Phase 3 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.custom.sector3 = getNextLocation(3)
end
mission.phases[3].onEntityDestroyed = function(id, lastDamageInflictor)
local _MethodName = "Phase 3 On Entity Destroyed"
local _Entity = Entity(id)
if valid(_Entity) and _Entity:getValue("is_pirate") and not mission.data.custom.secondScoutWaveSpawned then
spawnPirateWave(1)
--Set up a trigger to attach a script once the pirates are dead. For some reason a vanquish check doesn't work.
mission.phases[3].triggers[1] = {
condition = function()
if onServer() then
return ESCCUtil.countEntitiesByValue("is_pirate") == 0
else
--We don't do this on the client.
return true
end
end,
callback = function()
if onServer() then
local _MethodName = "Phase 3 Pirate Vanquish Trigger Callback"
invokeClientFunction(Player(), "onPhase3Dialog", mission.data.custom.empressBladeid)
end
end,
repeating = false
}
mission.data.custom.secondScoutWaveSpawned = true
end
end
mission.phases[3].updateTargetLocationServer = function(_TimeStep)
local _MethodName = "Phase 3 Update Target Location Server"
--It's possible that the player jumped ahead of The Cavaliers, so we only start this timer once the player is on-site.
if not mission.data.custom.phase3TimerStarted then
mission.Log(_MethodName, "Starting first pirate attack timer.")
mission.data.description[4].fulfilled = true --Since this effectively serves as our "on arrived" we can set the objective / sync here.
showMissionUpdated(mission._Name)
mission.phases[3].timers[1] = { time = 11, callback = function()
broadcastEmpressBladeMsg("Subspace signals detected! Get ready for a fight!")
end, repeating = false}
mission.phases[3].timers[2] = { time = 14, callback = function()
spawnPirateWave(1)
mission.data.description[6].visible = true
showMissionUpdated(mission._Name)
sync()
end, repeating = false}
sync()
mission.data.custom.phase3TimerStarted = true
end
end
mission.phases[4] = {}
mission.phases[4].timers = {}
mission.phases[4].showUpdateOnEnd = false
mission.phases[4].noBossEncountersTargetSector = true
mission.phases[4].noPlayerEventsTargetSector = true
mission.phases[4].noLocalPlayerEventsTargetSector = true
mission.phases[4].onBeginServer = function()
local _MethodName = "Phase 4 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.custom.sector4 = getNextLocation(4)
end
mission.phases[4].updateTargetLocationServer = function(_TimeStep)
local _MethodName = "Phase 4 Update Target Location Server"
--It's possible that the player jumped ahead of The Cavaliers, so we only start this timer once the player is on-site.
if not mission.data.custom.phase4TimerStarted then
mission.Log(_MethodName, "Starting Animosity attack timer.")
mission.data.description[7].fulfilled = true --Since this effectively serves as our "on arrived" we can set the objective / sync here.
showMissionUpdated(mission._Name)
mission.phases[4].timers[1] = { time = 11, callback = function()
broadcastEmpressBladeMsg("More subspace signals detected...")
end, repeating = false}
mission.phases[4].timers[2] = { time = 14, callback = function()
--Spawn the Animosity
local _GotLoot = Player():getValue("_llte_got_animosity_loot")
local _AddLoot = true
if _GotLoot then _AddLoot = false end
local _Animosity = LLTEUtil.spawnAnimosity(mission.data.custom.pirateLevel, _AddLoot)
mission.data.custom.animosityid = _Animosity.id
--Make ALL CAVALIERS SHIPS passive.
local _CavShips = {Sector():getEntitiesByScriptValue("is_cavaliers")}
for _, _Cav in pairs(_CavShips) do
local _AI = ShipAI(_Cav.index)
_AI:setPassive()
_AI:stop()
end
ShipAI(_Animosity.index):setPassive()
--Attach dialog script to the Animosity.
_Animosity:addScriptOnce("player/missions/empress/story/story4/lltestory4animosity.lua")
Shield(_Animosity.id).invincible = true
mission.data.description[8].visible = true
showMissionUpdated(mission._Name)
sync()
end, repeating = false}
sync()
mission.data.custom.phase4TimerStarted = true
end
end
mission.phases[5] = {}
mission.phases[5].timers = {}
mission.phases[5].triggers = {}
mission.phases[5].triggers[1] = {
condition = function()
if onServer() then
return true
else
local _ScriptUI = ScriptUI(mission.data.custom.empressBladeid)
return _ScriptUI ~= nil
end
end,
callback = function()
if onClient() then
onPhase5Dialog1(mission.data.custom.empressBladeid)
end
end,
repeating = false
}
mission.phases[5].showUpdateOnEnd = false
mission.phases[5].noBossEncountersTargetSector = true
mission.phases[5].onBeginServer = function()
local _MethodName = "Phase 5 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.custom.sector5 = getNextLocation(5) --This is the last jump location.
end
mission.phases[5].onEntityDestroyed = function(id, lastDamageInflictor)
local _MethodName = "Phase 5 On Entity Destroyed"
local _Entity = Entity(id)
if valid(_Entity) and _Entity:getValue("_llte_miniswarm_xsotan") then
if mission.data.custom.miniswarm then
mission.data.custom.xsotankilled = mission.data.custom.xsotankilled + 1
end
if mission.data.custom.xsotankilled >= 40 then
mission.data.custom.miniswarm = false
end
end
end
mission.phases[5].updateTargetLocationServer = function(_TimeStep)
local _MethodName = "Phase 5 Update Target Location Server"
--Remember, the player could have jumped ahead, so we need to activate this phase here and not in an "on sector entered"
--^^^ Y'know, in case you don't see this comment in the previous 2 phase calls.
local _EmpressBlade = Entity(mission.data.custom.empressBladeid)
if valid(_EmpressBlade) then
--I had to split this into this method / a client only trigger due to the dialog displaying immediately, but it is what it is.
if not mission.data.custom.phase5TimerStarted then
mission.Log(_MethodName, "Updating mission for phase 5")
mission.data.description[9].fulfilled = true --Since this effectively serves as our "on arrived" we can set the objective / sync here.
showMissionUpdated(mission._Name)
sync()
mission.data.custom.phase5TimerStarted = true
end
end
end
mission.phases[6] = {}
mission.phases[6].timers = {}
mission.phases[6].triggers = {}
mission.phases[6].triggers[1] = {
condition = function()
if onServer() then
return true
else
local _ScriptUI = ScriptUI(mission.data.custom.empressBladeid)
return _ScriptUI ~= nil
end
end,
callback = function()
if onClient() then
onPhase6Dialog(mission.data.custom.empressBladeid, mission.data.custom.beaconsector.x, mission.data.custom.beaconsector.y)
end
end,
repeating = false
}
mission.phases[6].showUpdateOnEnd = false
mission.phases[6].noBossEncountersTargetSector = true
mission.phases[6].onBeginServer = function()
local _MethodName = "Phase 6 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.custom.beaconsector = getBeaconLocation()
end
mission.phases[6].updateTargetLocationServer = function(_TimeStep)
local _MethodName = "Phase 5 Update Target Location Server"
--Blah blah jumped ahead. Blah blah. You know the drill by now.
local _EmpressBlade = Entity(mission.data.custom.empressBladeid)
local _Sector = Sector()
local _X, _Y = _Sector:getCoordinates()
if valid(_EmpressBlade) then
if not mission.data.custom.phase6TimerStarted then --This is a bit of a misnomer, but I'm leaving the name the same for consistency reasons.
mission.Log(_MethodName, "Updating mission for phase 6")
mission.data.description[11].fulfilled = true --Since this effectively serves as our "on arrived" we can set the objective / sync here.
showMissionUpdated(mission._Name)
sync()
mission.data.custom.phase6TimerStarted = true
end
end
end
mission.phases[7] = {}
mission.phases[7].timers = {}
mission.phases[7].triggers = {}
mission.phases[7].showUpdateOnStart = true
mission.phases[7].noBossEncountersTargetSector = true
mission.phases[7].onBeginServer = function()
local _MethodName = "Phase 7 On Begin Server"
mission.Log(_MethodName, "Beginning...")
mission.data.description[12].arguments = { _X = mission.data.custom.beaconsector.x, _Y = mission.data.custom.beaconsector.y }
mission.data.description[12].visible = true
mission.data.location = mission.data.custom.beaconsector
end
mission.phases[7].onTargetLocationEntered = function(_X, _Y)
if not mission.data.custom.initialPhase7Startup then
--Make a fairly large asteroid field.
local _Generator = SectorGenerator(_X, _Y)
local _Sector = Sector()
for _ = 1, 5 do
_Generator:createAsteroidField()
end
for _ = 1, 7 do
_Generator:createSmallAsteroidField()
end
--Make a xsotan wreckage with a becaon somewhere.
spawnXsotanWave(3)
local _XsotanEntities = {_Sector:getEntitiesByScriptValue("is_xsotan")}
for _, _X in pairs(_XsotanEntities) do
_X:destroy(_X.id)
end
mission.data.custom.initialPhase7Startup = true
end
end
mission.phases[7].onTargetLocationArrivalConfirmed = function(_X, _Y)
if not mission.data.custom.phase7TimerStarted then
local _Sector = Sector()
local _Rgen = ESCCUtil.getRand()
Player():sendChatMessage("Adriana Stahl", 0, "Whatever is causing the signals seems to be emanating from one of the wrecks in this sector. We've marked it on your HUD.")
--Kill all loot.
for _, entity in pairs({_Sector:getEntities()}) do
if entity.type == EntityType.Loot then
_Sector:deleteEntity(entity)
end
end
local _WreckageEntities = {_Sector:getEntitiesByType(EntityType.Wreckage)}
local _TargetWreck
shuffle(_WreckageEntities)
for idx = 1, #_WreckageEntities do
local _XWreck = _WreckageEntities[idx]
local _XPlan = Plan(_XWreck.id)
if _XPlan.numBlocks >= 200 then
_TargetWreck = _XWreck
break
end
end
--Sort of the same thing as making a wreckage out of a ship, but we just make a wreckage out of a wreckage. According to SDK, this will not have a despawn timer.
local _Plan = _TargetWreck:getMovePlan()
_TargetWreck:setPlan(BlockPlan())
local _ActualWreck = _Sector:createWreckage(_Plan, _TargetWreck.position)
_ActualWreck:setValue("_llte_story4_xsotan_artifact", true)
--Register prerender call.
registerMarkArtifact()
--Timers - 1 => tug + damage wreck to keep it active / 2 => actually spawn tug / 3 => xsotan swarm timer
--Start the timer for the tug.
mission.phases[7].timers[1] = {
time = 60,
callback = function()
local _MethodName = "Phase 7 Timer 1"
local _X, _Y = Sector():getCoordinates()
if _X ~= mission.data.location.x or _Y ~= mission.data.location.y then
mission.Log(_MethodName, "Not in mission location. Cancelling execution of this trigger.")
return
end
local _TugCount = ESCCUtil.countEntitiesByValue("_llte_story4_artifactsalvager")
if _TugCount == 0 then
mission.data.custom.tugs = mission.data.custom.tugs + 1
if mission.data.custom.tugs == 1 then
Player():sendChatMessage("Adriana Stahl", 0, "We're sending in a recovery ship. Protect it while it recovers the whatever is causing those signals!")
else
Player():sendChatMessage("Adriana Stahl", 0, "We're sending in another recovery ship. Try not to lose this one too!")
end
--Start timer to spawn tug.
mission.phases[7].timers[2] = {
time = 8,
callback = function()
spawnWreckageSalvager()
end,
repeating = false
}
end
end,
repeating = true
}
--Start the timers for the 2nd mini-swarm.
mission.phases[7].timers[3] = {
time = 30,
callback = function()
spawnXsotanWave(1, 20)
end,
repeating = true
}
mission.data.custom.phase7TimerStarted = true
end
end
mission.phases[8] = {}
mission.phases[8].timers = {}
mission.phases[8].triggers = {}
mission.phases[8].triggers[1] = {
condition = function()
if onServer() then
return true
else
local _ScriptUI = ScriptUI(mission.data.custom.empressBladeid)
return _ScriptUI ~= nil
end
end,
callback = function()
if onClient() then
onPhase8Dialog(mission.data.custom.empressBladeid)
end
end,
repeating = false
}
mission.phases[8].showUpdateOnEnd = false
mission.phases[8].noBossEncountersTargetSector = true
mission.phases[8].onBeginServer = function()
local _MissionName = "Phase 8 On Begin Server"
mission.data.description[14].arguments = { _X = mission.data.custom.sector5.x, _Y = mission.data.custom.sector5.y }
mission.data.description[14].visible = true
mission.data.description[13].fulfilled = true
mission.data.location = mission.data.custom.sector5
end
--endregion
--region #SERVER CALLS
--region #SPAWN OBJECTS
function spawnCavalierShips(_Defenders, _HeavyDefenders)
local _Faction = Galaxy():findFaction("The Cavaliers")
local _Generator = AsyncShipGenerator(nil, onCavaliersFinished)
_Generator:startBatch()
if _Defenders > 0 then
for _ = 1, _Defenders do
_Generator:createDefender(_Faction, PirateGenerator.getGenericPosition())
end
end
if _HeavyDefenders > 0 then
for _ = 1, _HeavyDefenders do
_Generator:createHeavyDefender(_Faction, PirateGenerator.getGenericPosition())
end
end
_Generator:endBatch()
end
function spawnPirateWave(_Type)
local _PirateGenerator = AsyncPirateGenerator(nil, onPirateWaveFinished)
_PirateGenerator.pirateLevel = mission.data.custom.pirateLevel --I believe this has a built-in failsafe.
local _WaveTable
if _Type == 1 then
_WaveTable = ESCCUtil.getStandardWave(mission.data.custom.dangerLevel, 5, "Low")
elseif _Type == 2 then
_WaveTable = ESCCUtil.getStandardWave(10, 5, "High")
end
local _PosCounter = 1
local _PiratePositions = _PirateGenerator:getStandardPositions(#_WaveTable, 150)
_PirateGenerator:startBatch()
for _, _P in pairs(_WaveTable) do
_PirateGenerator:createScaledPirateByName(_P, _PiratePositions[_PosCounter])
_PosCounter = _PosCounter + 1
end
_PirateGenerator:endBatch()
end
function spawnXsotanWave(_Type, _XsotanMax)
local _MethodName = "Spawn Xsotan Wave"
_Type = _Type or 1
_XsotanMax = _XsotanMax or 25
local _Sector = Sector()
local _Generator = SectorGenerator(_Sector:getCoordinates())
local _Players = {_Sector:getPlayers()}
local _XsotanCount = ESCCUtil.countEntitiesByValue("is_xsotan")
local _Rgen = ESCCUtil.getRand()
local _XsotanToSpawn = _XsotanMax - _XsotanCount
--Don't spawn more than 5 at once for performance reasons.
if _XsotanToSpawn > 5 then
_XsotanToSpawn = 5
end
local _XsoMinSize = 1
local _XsoMaxSize = 3
local _BigXsoChance = 1
local _BigXsoFactor = 2
local _FirepowerFactor = 1
if _Type == 2 then --Shows up for the 2nd half.
_XsoMinSize = 4
_XsoMaxSize = 7
_BigXsoChance = 2
_BigXsoFactor = 2.5
_FirepowerFactor = 2
elseif _Type == 3 then --These waves will only show up if the player / cavaliers are killing the Xsotan too quickly.
_XsoMinSize = 6
_XsoMaxSize = 10
_BigXsoChance = 2
_BigXsoFactor = 3
_FirepowerFactor = 4
end
mission.Log(_MethodName, "Spawning final count of " .. tostring(_XsotanToSpawn) .. " Xsotan ships.")
local _XsotanTable = {}
--Spawn Xsotan based on what's in the nametable.
for _ = 1, _XsotanToSpawn do
local _Xsotan = nil
local _Dist = 1500
local _XsoSize = _Rgen:getInt(_XsoMinSize, _XsoMaxSize)
if _Rgen:getInt(1, 4) <= _BigXsoChance then
_XsoSize = _XsoSize * _BigXsoFactor --% chance to make a beefier Xsotan.
end
_Xsotan = Xsotan.createShip(_Generator:getPositionInSector(_Dist), _XsoSize)
if _Xsotan then
if valid(_Xsotan) then
for _, p in pairs(_Players) do
ShipAI(_Xsotan.id):registerEnemyFaction(p.index)
end
ShipAI(_Xsotan.id):setAggressive()
end
_Xsotan:setValue("_llte_miniswarm_xsotan", true)
table.insert(_XsotanTable, _Xsotan)
else
mission.Log(_MethodName, "ERROR - Xsotan was nil")
end
end
SpawnUtility.addEnemyBuffs(_XsotanTable)
for _, _X in pairs(_XsotanTable) do
_X.damageMultiplier = (_X.damageMultiplier or 1) * _FirepowerFactor
end
end
function spawnWreckageSalvager()
local _Faction = Galaxy():findFaction("The Cavaliers")
local _Generator = AsyncShipGenerator(nil, onWreckageSalvagerFinished)
local _Sector = Sector()
local _X, _Y = _Sector:getCoordinates()
local _SalvagerVolume = Balancing_GetSectorShipVolume(_X, _Y) * 8
_Generator:startBatch()
_Generator:createMiningShip(_Faction, _Generator:getGenericPosition(), _SalvagerVolume)
_Generator:endBatch()
end
--endregion
--region #DESPAWN OBJECTS
function runFullSectorCleanup()
local _Sector = Sector()
local _X, _Y = Sector():getCoordinates()
local _EntityTypes = { EntityType.Ship, EntityType.Station, EntityType.Torpedo, EntityType.Fighter, EntityType.Asteroid, EntityType.Wreckage, EntityType.Unknown, EntityType.Other, EntityType.Loot }
_Sector:addScriptOnce("sector/deleteentitiesonplayersleft.lua", _EntityTypes)
if _X == mission.data.location.x and _Y == mission.data.location.y then
_Sector:addScriptOnce("sector/deleteentitiesonplayersleft.lua", _EntityTypes)
else
local _MX, _MY = mission.data.location.x, mission.data.location.y
Galaxy():loadSector(_MX, _MY)
invokeSectorFunction(_MX, _MY, true, "lltesectormonitor.lua", "clearMissionAssets", _MX, _MY, true, true)
end
end
--endregion
function broadcastEmpressBladeMsg(_Msg, ...)
local _Sector = Sector()
local _EmpressBlade = {_Sector:getEntitiesByScriptValue("_llte_empressblade")}
_Sector:broadcastChatMessage(_EmpressBlade[1], ChatMessageType.Normal, _Msg, ...)
end
function onCavaliersFinished(_Generated)
local _MethodName = "On Cavaliers Finished"
for _, _S in pairs(_Generated) do
_S.title = "Cavaliers " .. _S.title
_S:setValue("npc_chatter", nil)
_S:setValue("is_cavaliers", true)
_S:addScript("ai/withdrawatlowhealth.lua", 0.15)
_S:removeScript("antismuggle.lua")
LLTEUtil.rebuildShipWeapons(_S, Player():getValue("_llte_cavaliers_strength"))
end
end
function onWreckageSalvagerFinished(_Generated)
local _MethodName = "On Wreckage Salvager Finished"
local _Miner = _Generated[1]
_Miner.title = "Cavaliers Recovery Ship"
_Miner:removeScript("civilship.lua")
_Miner:removeScript("dialogs/storyhints.lua")
_Miner:setValue("is_civil", nil)
_Miner:setValue("is_miner", nil)
_Miner:setValue("npc_chatter", nil)
_Miner:setValue("is_cavaliers", true)
_Miner:setValue("_llte_story4_artifactsalvager", true)
local _StoryWrecks = {Sector():getEntitiesByScriptValue("_llte_story4_xsotan_artifact")}
local _StoryWreck = _StoryWrecks[1]
_Miner:addScript("player/missions/empress/story/story4/lltestory4artifactship.lua", _StoryWreck)
mission.Log(_MethodName, "Updating mission objectives")
mission.data.description[12].fulfilled = true
mission.data.description[13].visible = true
sync()
end
function onPirateWaveFinished(_Generated)
SpawnUtility.addEnemyBuffs(_Generated)
end
function returnToLastStop()
local _MethodName = "Return to Last Stop"
mission.Log(_MethodName, "Beginning...")
local _Sector = Sector()
local _X, _Y = mission.data.custom.sector5.x, mission.data.custom.sector5.y
--jump the artifact ship to the previous sector
local _RecoveryShips = {_Sector:getEntitiesByScriptValue("_llte_story4_artifactsalvager")}
Sector():transferEntity(_RecoveryShips[1], _X, _Y, SectorChangeType.Jump)
--jump the wreck to the previous sector
local _Wrecks = {_Sector:getEntitiesByScriptValue("_llte_story4_xsotan_artifact")}
Sector():transferEntity(_Wrecks[1], _X, _Y, SectorChangeType.Jump)
Player():sendChatMessage("Adriana Stahl", 0, "Artifact retrieved! Come back to \\s(%1%:%2%) for debriefing.", _X, _Y)
Player():setValue("encyclopedia_llte_xsotan_artifact_found", true)
--move to final stage of mission
nextPhase()
end
function getNextLocation(_Location)
local _MethodName = "Get Next Location"
mission.Log(_MethodName, "Getting a location.")
local x, y = Sector():getCoordinates()
local target = {}
local _NxTable = {
{ _RingPos = 187, _InBarrier = false },
{ _RingPos = 180, _InBarrier = false },
{ _RingPos = 160, _InBarrier = false },
{ _RingPos = 140, _InBarrier = true },
{ _RingPos = 120, _InBarrier = true }
}
local _Nx, _Ny = ESCCUtil.getPosOnRing(x, y, _NxTable[_Location]._RingPos)
target.x, target.y = MissionUT.getSector(math.floor(_Nx), math.floor(_Ny), 1, 4, false, false, false, false, _NxTable[_Location]._InBarrier)
if target == nil or target.x == nil or target.y == nil then
print("Could not get a location - enacting failsafe")
target.x, target.y = MissionUT.getSector(x, y, 1, 20, false, false, false, false, _NxTable[_Location]._InBarrier)
end
return target
end
function runTransfer(_FromLocation, _ToLocation)
--If the player is in the mission sector, transfer the entities one by one. Otherwise, transfer them all at once - when the last one is transferred, advance the phase.
local _Rgen = ESCCUtil.getRand()
local _Cavaliers = {Sector():getEntitiesByScriptValue("is_cavaliers")}
for _, _Cav in pairs(_Cavaliers) do
_Cav:addScriptOnce("entity/utility/delayedjump.lua", _ToLocation.x, _ToLocation.y, _Rgen:getFloat(_TransferMinTime, _TransferMaxTime))
end
end
function getBeaconLocation()
local _MethodName = "Get Beacon Location"
mission.Log(_MethodName, "Getting beacon location.")
local x, y = Sector():getCoordinates()
local _Target = {}
_Target.x, _Target.y = MissionUT.getSector(x, y, 3, 6, false, false, false, false)
return _Target
end
function finishAndReward()
local _MethodName = "Finish and Reward"
mission.Log(_MethodName, "Running win condition.")
local _Player = Player()
local _Rank = _Player:getValue("_llte_cavaliers_rank")
local _Rgen = ESCCUtil.getRand()
local _WinMsgTable = {
"Great job, " .. _Rank .. "!"
}
_Player:setValue("_llte_cavaliers_inbarrier", true)
_Player:setValue("_llte_story_4_accomplished", true)
--Increase reputation by 8
_Player:setValue("_llte_cavaliers_rep", _Player:getValue("_llte_cavaliers_rep") + 8)
_Player:sendChatMessage("Adriana Stahl", 0, _WinMsgTable[_Rgen:getInt(1, #_WinMsgTable)] .. " Here is your reward, as promised.")
reward()
accomplish()
end
--endregion
--region #CLIENT CALLS
--Oh look, another prerender UI call -_-
function onMarkArtifact()
local _MethodName = "On Mark Artifact"
local player = Player()
if not player then return end
if player.state == PlayerStateType.BuildCraft or player.state == PlayerStateType.BuildTurret then return end
local renderer = UIRenderer()
local _Artifact = {Sector():getEntitiesByScriptValue("_llte_story4_xsotan_artifact")}
for _, _A in pairs(_Artifact) do
local _StandardOrange = ESCCUtil.getSaneColor(255, 173, 0)
renderer:renderEntityTargeter(_A, _StandardOrange)
renderer:renderEntityArrow(_A, 30, 10, 250, _StandardOrange)
end
renderer:display()
end
--Since we do multiple interactions we can't use singleinteraction-derived scripts.
function onPhase2Dialog(_ID)
--At the start of the mission.
local _MethodName = "On Phase 2 Dialog"
mission.Log(_MethodName, "Beginning... ID is: " .. tostring(_ID))
local d0 = {}
local d1 = {}
local d2 = {}
local d3 = {}
local d4 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
local _Player = Player()
local _PlayerRank = _Player:getValue("_llte_cavaliers_rank")
local _PlayerName = _Player.name
--d0
d0.text = _PlayerRank .. " " .. _PlayerName .. "! Glad to see you here!"
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.answers = {
{ answer = "So, what's the plan?", followUp = d1 }
}
d1.text = "We've taken the Avorion that you delivered to us and fitted it to our hyperspace drives. We'll start here, then push all the way to the barrier. Lastly, enough of our ships have to make it through this, or it's all for nothing."
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.followUp = d4
d4.text = "Once we reach the barrier we... just jump through it? That feels strange to say. 200 years of isolation and it's over just like that?"
d4.talker = _Talker
d4.textColor = _TextColor
d4.talkerColor = _TalkerColor
d4.answers = {
{ answer = "It was a lot of work to make that happen, I'll have you know.", followUp = d2 }
}
d2.text = "You're right. Thank you for your efforts!"
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.answers = {
{ answer = "You're welcome.", followUp = d3 }
}
d3.text = "We'll need a couple of minutes after each jump for our ships to recharge their hyperspace engines. We'll also transmit each jump location, so you should be able to keep up with us! Not that there was any doubt of that. Are you ready?"
d3.talker = _Talker
d3.textColor = _TextColor
d3.talkerColor = _TalkerColor
d3.answers = {
{ answer = "I'm ready. Let's do this.", onSelect = "onPhase2DialogEnd" }
}
ScriptUI(_ID):interactShowDialog(d0, false)
end
function onPhase3Dialog(_ID)
--After the pirate attack.
local _MethodName = "On Phase 3 Dialog"
mission.Log(_MethodName, "Beginning... ID is: " .. tostring(_ID))
local d0 = {}
local d1 = {}
local d2 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
--d0
d0.text = "That was strange. It barely even counted as an attack. What is going on?"
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.answers = {
{ answer = "Scouts, maybe?", followUp = d1 },
{ answer = "It's probably nothing to worry about.", followUp = d2 }
}
--d1
d1.text = "Maybe. I don't like this. We'll be jumping to the next sector in two minutes. Stay alert."
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.onEnd = "onPhase3DialogEnd"
--d1
d2.text = "... Maybe. I don't like this. It doesn't make any sense - they must be up to something. We'll be jumping to the next sector in two minutes. Keep your eyes open."
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.onEnd = "onPhase3DialogEnd"
ScriptUI(_ID):interactShowDialog(d0, false)
end
function onPhase4Dialog2(_ID)
--After animosity is destroyed.
local _MethodName = "On Phase 4 Dialog 2"
mission.Log(_MethodName, "Beginning... ID is: " .. tostring(_ID))
local d0 = {}
local d1 = {}
local d2 = {}
local d3 = {}
local d4 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
local _Player = Player()
local _PlayerRank = _Player:getValue("_llte_cavaliers_rank")
local _PlayerName = _Player.name
--d0
d0.text = "That ship was incredibly powerful. I've never seen its like before."
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.followUp = d1
d1.text = "It's a shame. Just think of what they could have done with it. Instead, they threw their lives away to try and kill us."
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.followUp = d2
d2.text = "I keep thinking about what they said about the galactic order. As long as people feel like they've been abandoned, there will always be pirates, won't there?"
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.followUp = d3
d3.text = "Perhaps... destroying pirates isn't the only way to keep the peace. Maybe there's more that we could do."
d3.talker = _Talker
d3.textColor = _TextColor
d3.talkerColor = _TalkerColor
d3.followUp = d4
d4.text = "I'll have to think about it. Regardless, the Xsotan are still a threat. Let's keep moving, " .. _PlayerRank .. "."
d4.talker = _Talker
d4.textColor = _TextColor
d4.talkerColor = _TalkerColor
d4.onEnd = "onPhase4Dialog2End"
ScriptUI(_ID):interactShowDialog(d0, false)
end
function onPhase5Dialog1(_ID)
--immediatley after getting into the core.
local _MethodName = "On Phase 5 Dialog 1"
mission.Log(_MethodName, "Beginning...")
local d0 = {}
local d1 = {}
local d2 = {}
local d3 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
--d0
d0.text = "So, this is the galactic core..."
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.answers = {
{ answer = "You sound disappointed.", followUp = d1 }
}
--d1
d1.text = "Oh, I was just... expecting it to be different, somehow?"
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.answers = {
{ answer = "You haven't been here for long. Give it some time.", followUp = d2 },
{ answer = "There are a lot more Xsotan here, and they are aggressive.", followUp = d3 }
}
--d2
d2.text = "You're right, of course. Is there anything that we should be on the lookout for?"
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.answers = {
{ answer = "There are a lot more Xsotan here, and they are aggressive.", followUp = d3 }
}
--d3
d3.text = "That would worry anyone else, but that's what we're here for! We'll destroy them just like the pirates."
d3.talker = _Talker
d3.textColor = _TextColor
d3.talkerColor = _TalkerColor
d3.onEnd = "onPhase5Dialog1End"
local _Entities = {Sector():getEntitiesByScriptValue("_llte_empressblade")}
ScriptUI(_Entities[1].id):interactShowDialog(d0, false)
end
function onPhase5Dialog2(_ID)
--after big xsotan attack.
local _MethodName = "On Phase 5 Dialog 2"
mission.Log(_MethodName, "Beginning...")
local d0 = {}
local d1 = {}
local d2 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
--d0
d0.text = "That was intense! Do the Xsotan always do this inside the barrier?"
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.answers = {
{ answer = "Not always. This is unusual.", followUp = d1 }
}
d1.text = "Interesting... I wonder if..."
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.answers = {
{ answer = "Wonder if what?", followUp = d2 }
}
d2.text = "We'll get to that shortly! I'd like to move on from here just in case the Xsotan decide to attack again."
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.onEnd = "onPhase5Dialog2End"
ScriptUI(_ID):interactShowDialog(d0, false)
end
function onPhase6Dialog(_ID, _X, _Y)
--after jump after big xsotan attack - before being sent to get artifact.
local _MethodName = "On Phase 6 Dialog"
mission.Log(_MethodName, "Beginning... ID is: " .. tostring(_ID))
local d0 = {}
local d1 = {}
local d2 = {}
local d3 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
--d0
d0.text = "Before we jumped away from the sector where the Xsotan attacked us, we picked up some strange signals in a nearby sector. I wonder if it had to do with why we were attacked?"
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.answers = {
{ answer = "Possibly. What of it?", followUp = d1 }
}
d1.text = "Whatever is causing those signals... I'd like to investgate it! If we could recover what's causing them, we might be able to figure out how to use it against the Xsotan."
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.answers = {
{ answer = "And you want me to recover it, don't you?", followUp = d2 }
}
d2.text = "It would be easier that way. We need to repair, rearm, and consolidate our base of operations here. We would also be able to provide a point for you to retreat to if you ran into trouble."
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.answers = {
{ answer = "That makes sense. Where am I heading?", followUp = d3 }
}
d3.text = "Whatever is causing the signals should be in (" .. _X .. ":" .. _Y .. ")! Head there and investigate it. Make sure to send us the telemetry."
d3.talker = _Talker
d3.textColor = _TextColor
d3.talkerColor = _TalkerColor
d3.onEnd = "onPhase6DialogEnd"
ScriptUI(_ID):interactShowDialog(d0, false)
end
function onPhase8Dialog(_ID)
--after artifact recovery.
local _MethodName = "On Phase 8 Dialog"
mission.Log(_MethodName, "Beginning... ID is: " .. tostring(_ID))
local d0 = {}
local d1 = {}
local d2 = {}
local _Talker = "Adriana Stahl"
local _TalkerColor = MissionUT.getDialogTalkerColor1()
local _TextColor = MissionUT.getDialogTextColor1()
local _Player = Player()
local _PlayerRank = _Player:getValue("_llte_cavaliers_rank")
local _PlayerName = _Player.name
--d0
d0.text = "Hello " .. _PlayerRank .. "! We've had some time to figure out what is going on with those signals. They were coming from a strange artifact that we found embedded in the ship."
d0.talker = _Talker
d0.textColor = _TextColor
d0.talkerColor = _TalkerColor
d0.followUp = d1
d1.text = "I ordered a salvage team to cut the artifact out of the hull of the ship, and we've moved it aboard the Blade of the Empress. I'll have our research teams start looking at it immediately."
d1.talker = _Talker
d1.textColor = _TextColor
d1.talkerColor = _TalkerColor
d1.followUp = d2
d2.text = "Once we figure out some more about the artifact, I'll contact you with the details. Until then, take care!"
d2.talker = _Talker
d2.textColor = _TextColor
d2.talkerColor = _TalkerColor
d2.onEnd = "onPhase8DialogEnd"
ScriptUI(_ID):interactShowDialog(d0, false)
end
--endregion
--region #CLIENT / SERVER CALLS
function registerMarkArtifact()
local _MethodName = "Register Mark Artifact"
if onClient() then
_MethodName = _MethodName .. " [CLIENT]"
mission.Log(_MethodName, "Reigstering onPreRenderHud callback.")
local _Player = Player()
if _Player:registerCallback("onPreRenderHud", "onMarkArtifact") == 1 then
mission.Log(_MethodName, "WARNING - Could not attach prerender callback to script.")
end
else
_MethodName = _MethodName .. " [SERVER]"
mission.Log(_MethodName, "Invoking on Client")
invokeClientFunction(Player(), "registerMarkArtifact")
end
end
function onPhase2DialogEnd()
local _MethodName = "On Phase 2 Dialog End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase2DialogEnd")
return
else
mission.Log(_MethodName, "Calling on Server")
mission.data.description[3].fulfilled = true
mission.data.description[4].visible = true
mission.data.description[5].visible = true
mission.data.location = mission.data.custom.sector2
--Start transfer timer.
runTransfer(mission.data.custom.sector1, mission.data.custom.sector2)
mission.phases[2].timers[1] = { time = _TransferTimerTime, callback = function() nextPhase() end, repeating = false}
mission.phases[2].timers[2] = { time = _TransferTimerHalfTime, callback = function()
local _MethodName = "Phase 2 Timer 2 Callback"
mission.Log(_MethodName, "Beginning...")
local _X, _Y = mission.data.custom.sector2.x, mission.data.custom.sector2.y
broadcastEmpressBladeMsg("Attention all ships! We're jumping to \\s(%1%:%2%) in 60 seconds!", _X, _Y)
end, repeating = false}
sync()
end
end
callable(nil, "onPhase2DialogEnd")
function onPhase3DialogEnd()
local _MethodName = "On Phase 3 Dialog End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase3DialogEnd")
return
else
mission.Log(_MethodName, "Calling on Server")
mission.data.description[6].fulfilled = true
mission.data.description[7].arguments = { _X = mission.data.custom.sector3.x, _Y = mission.data.custom.sector3.y }
mission.data.description[7].visible = true
mission.data.location = mission.data.custom.sector3
--Start transfer timer
runTransfer(mission.data.custom.sector2, mission.data.custom.sector3)
mission.phases[3].timers[3] = { time = _TransferTimerTime, callback = function() nextPhase() end, repeating = false }
mission.phases[3].timers[4] = { time = _TransferTimerHalfTime, callback = function()
local _X, _Y = mission.data.custom.sector3.x, mission.data.custom.sector3.y
broadcastEmpressBladeMsg("Attention all ships! We're jumping to \\s(%1%:%2%) in 60 seconds!", _X, _Y)
end, repeating = false}
showMissionUpdated(mission._Name)
sync()
end
end
callable(nil, "onPhase3DialogEnd")
function onPhase4Dialog1End()
local _MethodName = "On Phase 4 Dialog End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase4Dialog1End")
return
else
--Add siege gun to Animosity.
local _Sector = Sector()
local _AnimosityTable = {_Sector:getEntitiesByScriptValue("is_animosity")}
local _Animosity = _AnimosityTable[1]
local _SGD = {}
_SGD._CodesCracked = false
_SGD._Velocity = 220
_SGD._ShotCycle = 30
_SGD._ShotCycleSupply = 0
_SGD._ShotCycleTimer = 30
_SGD._UseSupply = false
_SGD._FragileShots = false
_SGD._BaseDamagePerShot = 825000
_SGD._TargetPriority = 6
_SGD._TargetTag = "_llte_cav_supercap"
_Animosity:addScript("entity/stationsiegegun.lua", _SGD)
_Animosity:addScript("player/missions/empress/story/story4/lltestory4animositybehavior.lua")
--Spawn a pirate wave immediately and add a pirate DCD to the sector.
spawnPirateWave(2)
local _DCD = {}
_DCD._DefenseLeader = _Animosity.id
_DCD._CanTransfer = false
_DCD._CodesCracked = false
_DCD._DefenderCycleTime = 65
_DCD._DangerLevel = 10
_DCD._MaxDefenders = 7
_DCD._MaxDefendersSpawn = 5
_DCD._DefenderHPThreshold = 0.25
_DCD._DefenderOmicronThreshold = 0.25
_DCD._ForceWaveAtThreshold = 0.7
_DCD._ForcedDefenderDamageScale = 1.5
_DCD._IsPirate = true
_DCD._Factionid = _Animosity.factionIndex
_DCD._PirateLevel = mission.data.custom.pirateLevel
_DCD._UseLeaderSupply = false
_DCD._LowTable = "High"
_Sector:addScript("sector/background/defensecontroller.lua", _DCD)
--Set all cavaliers ships to aggressive.
local _CavShips = {_Sector:getEntitiesByScriptValue("is_cavaliers")}
for _, _Cav in pairs(_CavShips) do
ShipAI(_Cav.index):setAggressive()
end
local _PirateShips = {_Sector:getEntitiesByScriptValue("is_pirate")}
for _, _Pirate in pairs(_PirateShips) do
ShipAI(_Pirate.index):setAggressive()
if _Pirate:getValue("is_animosity") then --drop immune shield.
Shield(_Pirate.id).invincible = false
end
end
--Register Animosity as a boss [taken care of on client].
end
end
callable(nil, "onPhase4Dialog1End")
function onPhase4Dialog2End()
local _MethodName = "On Phase 4 Dialog End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase4Dialog2End")
return
else
mission.Log(_MethodName, "Calling on Server")
mission.data.description[9].arguments = { _X = mission.data.custom.sector4.x, _Y = mission.data.custom.sector4.y }
mission.data.description[9].visible = true
mission.data.location = mission.data.custom.sector4
--Start transfer timer
runTransfer(mission.data.custom.sector3, mission.data.custom.sector4)
mission.phases[4].timers[3] = { time = _TransferTimerTime, callback = function() nextPhase() end, repeating = false }
mission.phases[4].timers[4] = { time = _TransferTimerHalfTime, callback = function()
local _X, _Y = mission.data.custom.sector4.x, mission.data.custom.sector4.y
broadcastEmpressBladeMsg("Attention all ships! We're jumping to \\s(%1%:%2%) in 60 seconds! This is going to take us past the barrier!", _X, _Y)
end, repeating = false}
showMissionUpdated(mission._Name)
sync()
end
end
callable(nil, "onPhase4Dialog2End")
function onPhase5Dialog1End()
local _MethodName = "On Phase 5 Dialog 1 End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase5Dialog1End")
return
else
--Set the first timer
mission.Log(_MethodName, "Setting warning timer.")
mission.phases[5].timers[1] = { time = 11, callback = function()
broadcastEmpressBladeMsg("These subspace signals are too strong for our scanners! What is this!?")
end, repeating = false}
--Set the 2nd timer.
mission.Log(_MethodName, "Setting swarm timer.")
mission.phases[5].timers[2] = { time = 14, callback = function()
mission.data.custom.miniswarm = true
mission.data.description[10].visible = true
spawnXsotanWave(1)
mission.phases[5].timers[3] = { time = 20, callback = function()
local _MethodName = "Phase 5 Timer 3"
if mission.data.custom.miniswarm and atTargetLocation() then
mission.Log(_MethodName, "Spawning next Xsotan wave.")
local _WaveType = 1
if mission.data.custom.xsotankilled >= 20 then
_WaveType = 2
end
spawnXsotanWave(_WaveType)
end
end, repeating = true }
showMissionUpdated(mission._Name)
sync()
end, repeating = false}
--Set the first trigger.
mission.Log(_MethodName, "Setting swarm vanquish trigger.")
mission.phases[5].triggers[2] = {
condition = function()
if onServer() then
return ESCCUtil.countEntitiesByValue("is_xsotan") == 0 and not mission.data.custom.miniswarm and mission.data.custom.xsotankilled >= 40 and atTargetLocation()
else
--We don't do this on the client.
return true
end
end,
callback = function()
if onServer() then
local _MethodName = "Phase 5 Xsotan Vanquish Trigger Callback"
mission.data.description[10].fulfilled = true
sync()
invokeClientFunction(Player(), "onPhase5Dialog2", mission.data.custom.empressBladeid)
end
end,
repeating = false
}
--Set the 2nd trigger.
mission.Log(_MethodName, "Setting swarm continuation trigger.")
mission.phases[5].triggers[3] = {
condition = function()
if onServer() then
return ESCCUtil.countEntitiesByValue("is_xsotan") <= 1 and mission.data.custom.miniswarm
else
--Server-only trigger.
return true
end
end,
callback = function()
if onServer() and atTargetLocation() then
spawnXsotanWave(3)
end
end,
repeating = true
}
end
end
callable(nil, "onPhase5Dialog1End")
function onPhase5Dialog2End()
local _MethodName = "On Phase 5 Dialog 2 End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase5Dialog2End")
return
else
mission.Log(_MethodName, "Calling on Server")
mission.data.description[11].arguments = { _X = mission.data.custom.sector5.x, _Y = mission.data.custom.sector5.y }
mission.data.description[11].visible = true
mission.data.location = mission.data.custom.sector5
--Start transfer timer
runTransfer(mission.data.custom.sector4, mission.data.custom.sector5)
mission.phases[5].timers[4] = { time = _TransferTimerTime, callback = function() nextPhase() end, repeating = false }
mission.phases[5].timers[5] = { time = _TransferTimerHalfTime, callback = function()
local _X, _Y = mission.data.custom.sector5.x, mission.data.custom.sector5.y
broadcastEmpressBladeMsg("Attention all ships! We're jumping to \\s(%1%:%2%) in 60 seconds!", _X, _Y)
end, repeating = false}
showMissionUpdated(mission._Name)
sync()
end
end
callable(nil, "onPhase5Dialog2End")
function onPhase6DialogEnd()
local _MethodName = "On Phase 6 Dialog End"
--This one is blessedly simple.
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase6DialogEnd")
return
else
mission.Log(_MethodName, "Calling on Server")
nextPhase()
end
end
callable(nil, "onPhase6DialogEnd")
function onPhase8DialogEnd()
local _MethodName = "On Phase 8 Dialog End"
if onClient() then
mission.Log(_MethodName, "Calling on Client - invoking on Server")
invokeServerFunction("onPhase8DialogEnd")
return
else
mission.Log(_MethodName, "Calling on Server")
--We are finally, FINALLY done with this mission. Holy shit.
runFullSectorCleanup()
finishAndReward()
end
end
callable(nil, "onPhase8DialogEnd")
--endregion |
local inspect = require 'inspect'
local storage_collector_wrapper_factory = require 'nginx-metrix.storage.collector_wrapper_factory'
local exports = {}
local collectors = { { name = 'dummy' } } -- dummy item for correct work iter function
local collectors_iter = iter(collectors)
table.remove(collectors, 1) -- removing dummy item
---
-- @param collector table
-- @return bool
---
local collector_exists = function(collector)
return index(collector.name, collectors_iter:map(function(c) return c.name end)) ~= nil
end
---
-- @param collector table
---
local collector_validate = function(collector)
assert(
type(collector) == 'table',
('Collector MUST be a table, got %s: %s'):format(type(collector), inspect(collector))
)
assert(
type(collector.name) == 'string',
('Collector must have string property "name", got %s: %s'):format(type(collector.name), inspect(collector))
)
-- collector exists
assert(
not collector_exists(collector),
('Collector<%s> already exists'):format(collector.name)
)
assert(
type(collector.ngx_phases) == 'table',
('Collector<%s>.ngx_phases must be an array, given: %s'):format(collector.name, type(collector.ngx_phases))
)
assert(
all(function(phase) return type(phase) == 'string' end, collector.ngx_phases),
('Collector<%s>.ngx_phases must be an array of strings, given: %s'):format(collector.name, inspect(collector.ngx_phases))
)
assert(
is.callable(collector.on_phase),
('Collector<%s>:on_phase must be a function or callable table, given: %s'):format(collector.name, type(collector.on_phase))
)
assert(
type(collector.fields) == 'table',
('Collector<%s>.fields must be a table, given: %s'):format(collector.name, type(collector.fields))
)
assert(
all(function(field, params) return type(field) == 'string' and type(params) == 'table' end, collector.fields),
('Collector<%s>.fields must be an table[string, table], given: %s'):format(collector.name, inspect(collector.fields))
)
end
---
-- @param collector table
-- @return table
---
local collector_extend = function(collector)
local _metatable = {
init = function(self, storage)
self.storage = storage
end,
handle_ngx_phase = function(self, phase)
self:on_phase(phase)
end,
aggregate = function(self)
iter(self.fields):each(function(field, params)
if params.mean then
self.storage:mean_flush(field)
elseif params.cyclic then
self.storage:cyclic_flush(field, params.window)
end
end)
end,
get_raw_stats = function(self)
return iter(self.fields):map(function(k, _)
return k, (self.storage:get(k) or 0)
end)
end,
get_text_stats = function(self, output_helper)
return output_helper.render_stats(self)
end,
get_html_stats = function(self, output_helper)
return output_helper.render_stats(self)
end
}
_metatable.__index = _metatable
setmetatable(collector, _metatable)
return collector
end
---
-- @param collector table
-- @return table
---
local collector_register = function(collector)
collector_validate(collector)
collector = collector_extend(collector)
local storage = storage_collector_wrapper_factory.create(collector)
collector:init(storage)
table.insert(collectors, collector)
return collector
end
--------------------------------------------------------------------------------
-- EXPORTS
--------------------------------------------------------------------------------
exports.register = collector_register
exports.all = collectors_iter
exports.set_window_size = storage_collector_wrapper_factory.set_window_size
if __TEST__ then
exports.__private__ = {
collectors = function(value)
if value ~= nil then
local count = length(collectors)
while count > 0 do table.remove(collectors); count = count - 1 end
iter(value):each(function(collector) table.insert(collectors, collector) end)
end
return collectors
end,
collector_exists = collector_exists,
collector_extend = collector_extend,
collector_validate = collector_validate,
}
end
return exports
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.